├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ ├── build.yml │ └── codeql-analysis.yml ├── .gitignore ├── .husky ├── .gitignore └── pre-commit ├── .npmrc ├── .nvmrc ├── .tx └── transifex.yml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── docker └── regtest │ ├── .env.example │ ├── .gitignore │ ├── common.sh │ ├── docker-compose-common.yml │ ├── docker-compose.yml │ ├── dockerfile-deps │ ├── bitcoin │ │ └── regtest-initializer │ │ │ ├── Dockerfile │ │ │ ├── entrypoint.sh │ │ │ ├── mine-blocks.sh │ │ │ ├── wait-for-bitcoind.sh │ │ │ └── wait-for-blocks.sh │ ├── joinmarket │ │ ├── directory_node │ │ │ ├── Dockerfile │ │ │ ├── README.md │ │ │ ├── autostart │ │ │ ├── default.cfg │ │ │ ├── docker-entrypoint.sh │ │ │ ├── start-dn.py │ │ │ └── supervisor-conf │ │ │ │ ├── directory-node.conf │ │ │ │ └── supervisord.conf │ │ ├── latest │ │ │ ├── Dockerfile │ │ │ ├── autostart │ │ │ ├── default.cfg │ │ │ ├── jam-entrypoint.sh │ │ │ ├── supervisor-conf │ │ │ │ ├── jmwalletd.conf │ │ │ │ ├── ob-watcher.conf │ │ │ │ ├── supervisord.conf │ │ │ │ └── tor.conf │ │ │ └── torrc │ │ └── webui-standalone │ │ │ ├── Dockerfile │ │ │ └── default.cfg │ └── nginx │ │ └── default.conf.template │ ├── fund-wallet.sh │ ├── generate-onion-address.sh │ ├── init-setup.sh │ ├── mine-block.sh │ ├── prepare-setup.sh │ └── readme.md ├── docs ├── assets │ ├── citadel.png │ ├── mynode.png │ ├── raspiblitz-dark.svg │ ├── raspiblitz-light.svg │ ├── raspibolt.png │ ├── readme-header-dark.svg │ ├── readme-header-light.svg │ ├── screenshot-dark.png │ ├── screenshot-light.png │ ├── start9.png │ └── umbrel.svg ├── developing.md └── releasing.md ├── package.json ├── public ├── android-chrome-192x192.png ├── android-chrome-512x512.png ├── apple-touch-icon.png ├── browserconfig.xml ├── favicon.ico ├── favicon.svg ├── index.html ├── mstile-144x144.png ├── mstile-150x150.png ├── mstile-310x150.png ├── mstile-310x310.png ├── mstile-70x70.png ├── robots.txt ├── safari-pinned-tab.svg ├── site.webmanifest └── sprite.svg ├── scripts └── changelog.mjs ├── src ├── components │ ├── Accordion.tsx │ ├── ActivityIndicators.tsx │ ├── Alert.tsx │ ├── App.test.tsx │ ├── App.tsx │ ├── Balance.module.css │ ├── Balance.test.tsx │ ├── Balance.tsx │ ├── BitcoinAmountInput.test.tsx │ ├── BitcoinAmountInput.tsx │ ├── BitcoinQR.tsx │ ├── Cheatsheet.module.css │ ├── Cheatsheet.tsx │ ├── CoinjoinPreconditionViolationAlert.tsx │ ├── CopyButton.tsx │ ├── CreateWallet.test.tsx │ ├── CreateWallet.tsx │ ├── DevSetupPage.tsx │ ├── Divider.module.css │ ├── Divider.tsx │ ├── Earn.module.css │ ├── Earn.tsx │ ├── EarnReport.module.css │ ├── EarnReport.test.tsx │ ├── EarnReport.tsx │ ├── ErrorPage.tsx │ ├── ExtendedLink.tsx │ ├── Footer.tsx │ ├── ImportWallet.tsx │ ├── Jam.module.css │ ├── Jam.tsx │ ├── JarSelectorModal.module.css │ ├── JarSelectorModal.tsx │ ├── Jars.module.css │ ├── Jars.tsx │ ├── Layout.tsx │ ├── LogOverlay.module.css │ ├── LogOverlay.tsx │ ├── MainWalletView.module.css │ ├── MainWalletView.tsx │ ├── MnemonicPhraseInput.tsx │ ├── MnemonicWordInput.module.css │ ├── MnemonicWordInput.test.tsx │ ├── MnemonicWordInput.tsx │ ├── Modal.module.css │ ├── Modal.tsx │ ├── Navbar.module.css │ ├── Navbar.tsx │ ├── Onboarding.module.css │ ├── Onboarding.tsx │ ├── Orderbook.module.css │ ├── Orderbook.tsx │ ├── PageTitle.tsx │ ├── PaymentConfirmModal.module.css │ ├── PaymentConfirmModal.tsx │ ├── PreventLeavingPageByMistake.tsx │ ├── Receive.module.css │ ├── Receive.tsx │ ├── RescanChain.tsx │ ├── ScheduleProgress.module.css │ ├── ScheduleProgress.tsx │ ├── Seedphrase.module.css │ ├── Seedphrase.tsx │ ├── SegmentedTabs.module.css │ ├── SegmentedTabs.tsx │ ├── Send │ │ ├── AmountInputField.module.css │ │ ├── AmountInputField.tsx │ │ ├── CollaboratorsSelector.module.css │ │ ├── CollaboratorsSelector.tsx │ │ ├── DestinationInputField.tsx │ │ ├── FeeBreakdown.tsx │ │ ├── SendForm.module.css │ │ ├── SendForm.tsx │ │ ├── ShowUtxos.module.css │ │ ├── ShowUtxos.tsx │ │ ├── SourceJarSelector.module.css │ │ ├── SourceJarSelector.tsx │ │ ├── SweepBreakdown.module.css │ │ ├── SweepBreakdown.tsx │ │ ├── helpers.ts │ │ └── index.tsx │ ├── Settings.module.css │ ├── Settings.test.tsx │ ├── Settings.tsx │ ├── ShareButton.tsx │ ├── Sprite.tsx │ ├── TablePagination.module.css │ ├── TablePagination.tsx │ ├── ToggleSwitch.module.css │ ├── ToggleSwitch.tsx │ ├── Wallet.module.css │ ├── Wallet.test.tsx │ ├── Wallet.tsx │ ├── WalletCreationConfirmation.tsx │ ├── WalletCreationForm.module.css │ ├── WalletCreationForm.tsx │ ├── Wallets.test.tsx │ ├── Wallets.tsx │ ├── fb │ │ ├── CreateFidelityBond.module.css │ │ ├── CreateFidelityBond.tsx │ │ ├── ExistingFidelityBond.module.css │ │ ├── ExistingFidelityBond.tsx │ │ ├── FidelityBondSteps.module.css │ │ ├── FidelityBondSteps.tsx │ │ ├── LockdateForm.test.tsx │ │ ├── LockdateForm.tsx │ │ ├── SpendFidelityBondModal.module.css │ │ ├── SpendFidelityBondModal.tsx │ │ ├── utils.test.ts │ │ └── utils.ts │ ├── jar_details │ │ ├── DisplayBranch.module.css │ │ ├── DisplayBranch.tsx │ │ ├── JarDetailsOverlay.module.css │ │ ├── JarDetailsOverlay.tsx │ │ ├── UtxoDetailModal.module.css │ │ ├── UtxoDetailModal.tsx │ │ ├── UtxoList.module.css │ │ └── UtxoList.tsx │ ├── jars │ │ ├── Jar.module.css │ │ └── Jar.tsx │ ├── settings │ │ ├── FeeConfigModal.module.css │ │ ├── FeeConfigModal.tsx │ │ ├── SeedModal.tsx │ │ └── TxFeeInputField.tsx │ └── utxo │ │ ├── Confirmations.module.css │ │ ├── Confirmations.tsx │ │ ├── UtxoIcon.module.css │ │ ├── UtxoIcon.tsx │ │ ├── UtxoTags.module.css │ │ ├── UtxoTags.tsx │ │ └── utils.ts ├── constants │ ├── bip39words.ts │ ├── debugFeatures.ts │ ├── features.ts │ ├── jam.ts │ ├── jm.ts │ └── routes.ts ├── context │ ├── BalanceSummary.test.tsx │ ├── BalanceSummary.ts │ ├── ServiceConfigContext.tsx │ ├── ServiceInfoContext.tsx │ ├── SettingsContext.tsx │ ├── WalletContext.tsx │ └── WebsocketContext.tsx ├── fonts │ ├── Inter-Black.woff │ ├── Inter-Black.woff2 │ ├── Inter-BlackItalic.woff │ ├── Inter-BlackItalic.woff2 │ ├── Inter-Bold.woff │ ├── Inter-Bold.woff2 │ ├── Inter-BoldItalic.woff │ ├── Inter-BoldItalic.woff2 │ ├── Inter-ExtraBold.woff │ ├── Inter-ExtraBold.woff2 │ ├── Inter-ExtraBoldItalic.woff │ ├── Inter-ExtraBoldItalic.woff2 │ ├── Inter-ExtraLight.woff │ ├── Inter-ExtraLight.woff2 │ ├── Inter-ExtraLightItalic.woff │ ├── Inter-ExtraLightItalic.woff2 │ ├── Inter-Italic.woff │ ├── Inter-Italic.woff2 │ ├── Inter-Light.woff │ ├── Inter-Light.woff2 │ ├── Inter-LightItalic.woff │ ├── Inter-LightItalic.woff2 │ ├── Inter-Medium.woff │ ├── Inter-Medium.woff2 │ ├── Inter-MediumItalic.woff │ ├── Inter-MediumItalic.woff2 │ ├── Inter-Regular.woff │ ├── Inter-Regular.woff2 │ ├── Inter-SemiBold.woff │ ├── Inter-SemiBold.woff2 │ ├── Inter-SemiBoldItalic.woff │ ├── Inter-SemiBoldItalic.woff2 │ ├── Inter-Thin.woff │ ├── Inter-Thin.woff2 │ ├── Inter-ThinItalic.woff │ ├── Inter-ThinItalic.woff2 │ ├── Inter-italic.var.woff2 │ ├── Inter-roman.var.woff2 │ ├── Inter.var.woff2 │ └── SatoshiSymbol.otf ├── globals.d.ts ├── hooks │ ├── CoinjoinRequirements.test.ts │ ├── CoinjoinRequirements.ts │ ├── Fees.test.ts │ ├── Fees.ts │ └── WaitForUtxosToBeSpent.ts ├── i18n │ ├── README.md │ ├── config.ts │ ├── languages.ts │ ├── locales │ │ ├── de │ │ │ └── translation.json │ │ ├── en │ │ │ └── translation.json │ │ ├── fr │ │ │ └── translation.json │ │ ├── it │ │ │ └── translation.json │ │ ├── pt_BR │ │ │ └── translation.json │ │ ├── ru │ │ │ └── translation.json │ │ ├── zh_Hans │ │ │ └── translation.json │ │ └── zh_Hant │ │ │ └── translation.json │ └── testConfig.ts ├── index.css ├── index.tsx ├── libs │ ├── JamApi.ts │ ├── JmObwatchApi.ts │ └── JmWalletApi.ts ├── session.ts ├── setupProxy.js ├── setupTests.ts ├── testUtils.tsx ├── utils.test.ts └── utils.ts ├── tsconfig.json └── typings.d.ts /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/.gitignore: -------------------------------------------------------------------------------- 1 | _ 2 | -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | 2 | npx lint-staged 3 | -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | git-tag-version = false 2 | engine-strict = true 3 | -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | v22.11.0 2 | -------------------------------------------------------------------------------- /.tx/transifex.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/.tx/transifex.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/README.md -------------------------------------------------------------------------------- /docker/regtest/.env.example: -------------------------------------------------------------------------------- 1 | JM_DIRECTORY_NODES=replaceme 2 | 3 | -------------------------------------------------------------------------------- /docker/regtest/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | out/ 3 | .tmp/ 4 | .env.generated 5 | -------------------------------------------------------------------------------- /docker/regtest/common.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/docker/regtest/common.sh -------------------------------------------------------------------------------- /docker/regtest/docker-compose-common.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/docker/regtest/docker-compose-common.yml -------------------------------------------------------------------------------- /docker/regtest/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/docker/regtest/docker-compose.yml -------------------------------------------------------------------------------- /docker/regtest/dockerfile-deps/bitcoin/regtest-initializer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/docker/regtest/dockerfile-deps/bitcoin/regtest-initializer/Dockerfile -------------------------------------------------------------------------------- /docker/regtest/dockerfile-deps/bitcoin/regtest-initializer/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/docker/regtest/dockerfile-deps/bitcoin/regtest-initializer/entrypoint.sh -------------------------------------------------------------------------------- /docker/regtest/dockerfile-deps/bitcoin/regtest-initializer/mine-blocks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/docker/regtest/dockerfile-deps/bitcoin/regtest-initializer/mine-blocks.sh -------------------------------------------------------------------------------- /docker/regtest/dockerfile-deps/bitcoin/regtest-initializer/wait-for-bitcoind.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/docker/regtest/dockerfile-deps/bitcoin/regtest-initializer/wait-for-bitcoind.sh -------------------------------------------------------------------------------- /docker/regtest/dockerfile-deps/bitcoin/regtest-initializer/wait-for-blocks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/docker/regtest/dockerfile-deps/bitcoin/regtest-initializer/wait-for-blocks.sh -------------------------------------------------------------------------------- /docker/regtest/dockerfile-deps/joinmarket/directory_node/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/docker/regtest/dockerfile-deps/joinmarket/directory_node/Dockerfile -------------------------------------------------------------------------------- /docker/regtest/dockerfile-deps/joinmarket/directory_node/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/docker/regtest/dockerfile-deps/joinmarket/directory_node/README.md -------------------------------------------------------------------------------- /docker/regtest/dockerfile-deps/joinmarket/directory_node/autostart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/docker/regtest/dockerfile-deps/joinmarket/directory_node/autostart -------------------------------------------------------------------------------- /docker/regtest/dockerfile-deps/joinmarket/directory_node/default.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/docker/regtest/dockerfile-deps/joinmarket/directory_node/default.cfg -------------------------------------------------------------------------------- /docker/regtest/dockerfile-deps/joinmarket/directory_node/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/docker/regtest/dockerfile-deps/joinmarket/directory_node/docker-entrypoint.sh -------------------------------------------------------------------------------- /docker/regtest/dockerfile-deps/joinmarket/directory_node/start-dn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/docker/regtest/dockerfile-deps/joinmarket/directory_node/start-dn.py -------------------------------------------------------------------------------- /docker/regtest/dockerfile-deps/joinmarket/directory_node/supervisor-conf/directory-node.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/docker/regtest/dockerfile-deps/joinmarket/directory_node/supervisor-conf/directory-node.conf -------------------------------------------------------------------------------- /docker/regtest/dockerfile-deps/joinmarket/directory_node/supervisor-conf/supervisord.conf: -------------------------------------------------------------------------------- 1 | [supervisord] 2 | nodaemon=true 3 | -------------------------------------------------------------------------------- /docker/regtest/dockerfile-deps/joinmarket/latest/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/docker/regtest/dockerfile-deps/joinmarket/latest/Dockerfile -------------------------------------------------------------------------------- /docker/regtest/dockerfile-deps/joinmarket/latest/autostart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/docker/regtest/dockerfile-deps/joinmarket/latest/autostart -------------------------------------------------------------------------------- /docker/regtest/dockerfile-deps/joinmarket/latest/default.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/docker/regtest/dockerfile-deps/joinmarket/latest/default.cfg -------------------------------------------------------------------------------- /docker/regtest/dockerfile-deps/joinmarket/latest/jam-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/docker/regtest/dockerfile-deps/joinmarket/latest/jam-entrypoint.sh -------------------------------------------------------------------------------- /docker/regtest/dockerfile-deps/joinmarket/latest/supervisor-conf/jmwalletd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/docker/regtest/dockerfile-deps/joinmarket/latest/supervisor-conf/jmwalletd.conf -------------------------------------------------------------------------------- /docker/regtest/dockerfile-deps/joinmarket/latest/supervisor-conf/ob-watcher.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/docker/regtest/dockerfile-deps/joinmarket/latest/supervisor-conf/ob-watcher.conf -------------------------------------------------------------------------------- /docker/regtest/dockerfile-deps/joinmarket/latest/supervisor-conf/supervisord.conf: -------------------------------------------------------------------------------- 1 | [supervisord] 2 | nodaemon=true 3 | user=root 4 | -------------------------------------------------------------------------------- /docker/regtest/dockerfile-deps/joinmarket/latest/supervisor-conf/tor.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/docker/regtest/dockerfile-deps/joinmarket/latest/supervisor-conf/tor.conf -------------------------------------------------------------------------------- /docker/regtest/dockerfile-deps/joinmarket/latest/torrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/docker/regtest/dockerfile-deps/joinmarket/latest/torrc -------------------------------------------------------------------------------- /docker/regtest/dockerfile-deps/joinmarket/webui-standalone/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/docker/regtest/dockerfile-deps/joinmarket/webui-standalone/Dockerfile -------------------------------------------------------------------------------- /docker/regtest/dockerfile-deps/joinmarket/webui-standalone/default.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/docker/regtest/dockerfile-deps/joinmarket/webui-standalone/default.cfg -------------------------------------------------------------------------------- /docker/regtest/dockerfile-deps/nginx/default.conf.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/docker/regtest/dockerfile-deps/nginx/default.conf.template -------------------------------------------------------------------------------- /docker/regtest/fund-wallet.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/docker/regtest/fund-wallet.sh -------------------------------------------------------------------------------- /docker/regtest/generate-onion-address.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/docker/regtest/generate-onion-address.sh -------------------------------------------------------------------------------- /docker/regtest/init-setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/docker/regtest/init-setup.sh -------------------------------------------------------------------------------- /docker/regtest/mine-block.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/docker/regtest/mine-block.sh -------------------------------------------------------------------------------- /docker/regtest/prepare-setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/docker/regtest/prepare-setup.sh -------------------------------------------------------------------------------- /docker/regtest/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/docker/regtest/readme.md -------------------------------------------------------------------------------- /docs/assets/citadel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/docs/assets/citadel.png -------------------------------------------------------------------------------- /docs/assets/mynode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/docs/assets/mynode.png -------------------------------------------------------------------------------- /docs/assets/raspiblitz-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/docs/assets/raspiblitz-dark.svg -------------------------------------------------------------------------------- /docs/assets/raspiblitz-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/docs/assets/raspiblitz-light.svg -------------------------------------------------------------------------------- /docs/assets/raspibolt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/docs/assets/raspibolt.png -------------------------------------------------------------------------------- /docs/assets/readme-header-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/docs/assets/readme-header-dark.svg -------------------------------------------------------------------------------- /docs/assets/readme-header-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/docs/assets/readme-header-light.svg -------------------------------------------------------------------------------- /docs/assets/screenshot-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/docs/assets/screenshot-dark.png -------------------------------------------------------------------------------- /docs/assets/screenshot-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/docs/assets/screenshot-light.png -------------------------------------------------------------------------------- /docs/assets/start9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/docs/assets/start9.png -------------------------------------------------------------------------------- /docs/assets/umbrel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/docs/assets/umbrel.svg -------------------------------------------------------------------------------- /docs/developing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/docs/developing.md -------------------------------------------------------------------------------- /docs/releasing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/docs/releasing.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/package.json -------------------------------------------------------------------------------- /public/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/public/android-chrome-192x192.png -------------------------------------------------------------------------------- /public/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/public/android-chrome-512x512.png -------------------------------------------------------------------------------- /public/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/public/apple-touch-icon.png -------------------------------------------------------------------------------- /public/browserconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/public/browserconfig.xml -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/public/favicon.svg -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/public/index.html -------------------------------------------------------------------------------- /public/mstile-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/public/mstile-144x144.png -------------------------------------------------------------------------------- /public/mstile-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/public/mstile-150x150.png -------------------------------------------------------------------------------- /public/mstile-310x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/public/mstile-310x150.png -------------------------------------------------------------------------------- /public/mstile-310x310.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/public/mstile-310x310.png -------------------------------------------------------------------------------- /public/mstile-70x70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/public/mstile-70x70.png -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/public/robots.txt -------------------------------------------------------------------------------- /public/safari-pinned-tab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/public/safari-pinned-tab.svg -------------------------------------------------------------------------------- /public/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/public/site.webmanifest -------------------------------------------------------------------------------- /public/sprite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/public/sprite.svg -------------------------------------------------------------------------------- /scripts/changelog.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/scripts/changelog.mjs -------------------------------------------------------------------------------- /src/components/Accordion.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/components/Accordion.tsx -------------------------------------------------------------------------------- /src/components/ActivityIndicators.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/components/ActivityIndicators.tsx -------------------------------------------------------------------------------- /src/components/Alert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/components/Alert.tsx -------------------------------------------------------------------------------- /src/components/App.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/components/App.test.tsx -------------------------------------------------------------------------------- /src/components/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/components/App.tsx -------------------------------------------------------------------------------- /src/components/Balance.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/components/Balance.module.css -------------------------------------------------------------------------------- /src/components/Balance.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/components/Balance.test.tsx -------------------------------------------------------------------------------- /src/components/Balance.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/components/Balance.tsx -------------------------------------------------------------------------------- /src/components/BitcoinAmountInput.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/components/BitcoinAmountInput.test.tsx -------------------------------------------------------------------------------- /src/components/BitcoinAmountInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/components/BitcoinAmountInput.tsx -------------------------------------------------------------------------------- /src/components/BitcoinQR.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/components/BitcoinQR.tsx -------------------------------------------------------------------------------- /src/components/Cheatsheet.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/components/Cheatsheet.module.css -------------------------------------------------------------------------------- /src/components/Cheatsheet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/components/Cheatsheet.tsx -------------------------------------------------------------------------------- /src/components/CoinjoinPreconditionViolationAlert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/components/CoinjoinPreconditionViolationAlert.tsx -------------------------------------------------------------------------------- /src/components/CopyButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/components/CopyButton.tsx -------------------------------------------------------------------------------- /src/components/CreateWallet.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/components/CreateWallet.test.tsx -------------------------------------------------------------------------------- /src/components/CreateWallet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/components/CreateWallet.tsx -------------------------------------------------------------------------------- /src/components/DevSetupPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/components/DevSetupPage.tsx -------------------------------------------------------------------------------- /src/components/Divider.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/components/Divider.module.css -------------------------------------------------------------------------------- /src/components/Divider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/components/Divider.tsx -------------------------------------------------------------------------------- /src/components/Earn.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/components/Earn.module.css -------------------------------------------------------------------------------- /src/components/Earn.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/components/Earn.tsx -------------------------------------------------------------------------------- /src/components/EarnReport.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/components/EarnReport.module.css -------------------------------------------------------------------------------- /src/components/EarnReport.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/components/EarnReport.test.tsx -------------------------------------------------------------------------------- /src/components/EarnReport.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/components/EarnReport.tsx -------------------------------------------------------------------------------- /src/components/ErrorPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/components/ErrorPage.tsx -------------------------------------------------------------------------------- /src/components/ExtendedLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/components/ExtendedLink.tsx -------------------------------------------------------------------------------- /src/components/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/components/Footer.tsx -------------------------------------------------------------------------------- /src/components/ImportWallet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/components/ImportWallet.tsx -------------------------------------------------------------------------------- /src/components/Jam.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/components/Jam.module.css -------------------------------------------------------------------------------- /src/components/Jam.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/components/Jam.tsx -------------------------------------------------------------------------------- /src/components/JarSelectorModal.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/components/JarSelectorModal.module.css -------------------------------------------------------------------------------- /src/components/JarSelectorModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/components/JarSelectorModal.tsx -------------------------------------------------------------------------------- /src/components/Jars.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/components/Jars.module.css -------------------------------------------------------------------------------- /src/components/Jars.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/components/Jars.tsx -------------------------------------------------------------------------------- /src/components/Layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/components/Layout.tsx -------------------------------------------------------------------------------- /src/components/LogOverlay.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/components/LogOverlay.module.css -------------------------------------------------------------------------------- /src/components/LogOverlay.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/components/LogOverlay.tsx -------------------------------------------------------------------------------- /src/components/MainWalletView.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/components/MainWalletView.module.css -------------------------------------------------------------------------------- /src/components/MainWalletView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/components/MainWalletView.tsx -------------------------------------------------------------------------------- /src/components/MnemonicPhraseInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/components/MnemonicPhraseInput.tsx -------------------------------------------------------------------------------- /src/components/MnemonicWordInput.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/components/MnemonicWordInput.module.css -------------------------------------------------------------------------------- /src/components/MnemonicWordInput.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/components/MnemonicWordInput.test.tsx -------------------------------------------------------------------------------- /src/components/MnemonicWordInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/components/MnemonicWordInput.tsx -------------------------------------------------------------------------------- /src/components/Modal.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/components/Modal.module.css -------------------------------------------------------------------------------- /src/components/Modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/components/Modal.tsx -------------------------------------------------------------------------------- /src/components/Navbar.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/components/Navbar.module.css -------------------------------------------------------------------------------- /src/components/Navbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/components/Navbar.tsx -------------------------------------------------------------------------------- /src/components/Onboarding.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/components/Onboarding.module.css -------------------------------------------------------------------------------- /src/components/Onboarding.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/components/Onboarding.tsx -------------------------------------------------------------------------------- /src/components/Orderbook.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/components/Orderbook.module.css -------------------------------------------------------------------------------- /src/components/Orderbook.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/components/Orderbook.tsx -------------------------------------------------------------------------------- /src/components/PageTitle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/components/PageTitle.tsx -------------------------------------------------------------------------------- /src/components/PaymentConfirmModal.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/components/PaymentConfirmModal.module.css -------------------------------------------------------------------------------- /src/components/PaymentConfirmModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/components/PaymentConfirmModal.tsx -------------------------------------------------------------------------------- /src/components/PreventLeavingPageByMistake.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/components/PreventLeavingPageByMistake.tsx -------------------------------------------------------------------------------- /src/components/Receive.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/components/Receive.module.css -------------------------------------------------------------------------------- /src/components/Receive.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/components/Receive.tsx -------------------------------------------------------------------------------- /src/components/RescanChain.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/components/RescanChain.tsx -------------------------------------------------------------------------------- /src/components/ScheduleProgress.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/components/ScheduleProgress.module.css -------------------------------------------------------------------------------- /src/components/ScheduleProgress.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/components/ScheduleProgress.tsx -------------------------------------------------------------------------------- /src/components/Seedphrase.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/components/Seedphrase.module.css -------------------------------------------------------------------------------- /src/components/Seedphrase.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/components/Seedphrase.tsx -------------------------------------------------------------------------------- /src/components/SegmentedTabs.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/components/SegmentedTabs.module.css -------------------------------------------------------------------------------- /src/components/SegmentedTabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/components/SegmentedTabs.tsx -------------------------------------------------------------------------------- /src/components/Send/AmountInputField.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/components/Send/AmountInputField.module.css -------------------------------------------------------------------------------- /src/components/Send/AmountInputField.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/components/Send/AmountInputField.tsx -------------------------------------------------------------------------------- /src/components/Send/CollaboratorsSelector.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/components/Send/CollaboratorsSelector.module.css -------------------------------------------------------------------------------- /src/components/Send/CollaboratorsSelector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/components/Send/CollaboratorsSelector.tsx -------------------------------------------------------------------------------- /src/components/Send/DestinationInputField.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/components/Send/DestinationInputField.tsx -------------------------------------------------------------------------------- /src/components/Send/FeeBreakdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/components/Send/FeeBreakdown.tsx -------------------------------------------------------------------------------- /src/components/Send/SendForm.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/components/Send/SendForm.module.css -------------------------------------------------------------------------------- /src/components/Send/SendForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/components/Send/SendForm.tsx -------------------------------------------------------------------------------- /src/components/Send/ShowUtxos.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/components/Send/ShowUtxos.module.css -------------------------------------------------------------------------------- /src/components/Send/ShowUtxos.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/components/Send/ShowUtxos.tsx -------------------------------------------------------------------------------- /src/components/Send/SourceJarSelector.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/components/Send/SourceJarSelector.module.css -------------------------------------------------------------------------------- /src/components/Send/SourceJarSelector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/components/Send/SourceJarSelector.tsx -------------------------------------------------------------------------------- /src/components/Send/SweepBreakdown.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/components/Send/SweepBreakdown.module.css -------------------------------------------------------------------------------- /src/components/Send/SweepBreakdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/components/Send/SweepBreakdown.tsx -------------------------------------------------------------------------------- /src/components/Send/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/components/Send/helpers.ts -------------------------------------------------------------------------------- /src/components/Send/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/components/Send/index.tsx -------------------------------------------------------------------------------- /src/components/Settings.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/components/Settings.module.css -------------------------------------------------------------------------------- /src/components/Settings.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/components/Settings.test.tsx -------------------------------------------------------------------------------- /src/components/Settings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/components/Settings.tsx -------------------------------------------------------------------------------- /src/components/ShareButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/components/ShareButton.tsx -------------------------------------------------------------------------------- /src/components/Sprite.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/components/Sprite.tsx -------------------------------------------------------------------------------- /src/components/TablePagination.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/components/TablePagination.module.css -------------------------------------------------------------------------------- /src/components/TablePagination.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/components/TablePagination.tsx -------------------------------------------------------------------------------- /src/components/ToggleSwitch.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/components/ToggleSwitch.module.css -------------------------------------------------------------------------------- /src/components/ToggleSwitch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/components/ToggleSwitch.tsx -------------------------------------------------------------------------------- /src/components/Wallet.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/components/Wallet.module.css -------------------------------------------------------------------------------- /src/components/Wallet.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/components/Wallet.test.tsx -------------------------------------------------------------------------------- /src/components/Wallet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/components/Wallet.tsx -------------------------------------------------------------------------------- /src/components/WalletCreationConfirmation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/components/WalletCreationConfirmation.tsx -------------------------------------------------------------------------------- /src/components/WalletCreationForm.module.css: -------------------------------------------------------------------------------- 1 | .input { 2 | height: 3.5rem; 3 | width: 100%; 4 | } 5 | -------------------------------------------------------------------------------- /src/components/WalletCreationForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/components/WalletCreationForm.tsx -------------------------------------------------------------------------------- /src/components/Wallets.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/components/Wallets.test.tsx -------------------------------------------------------------------------------- /src/components/Wallets.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/components/Wallets.tsx -------------------------------------------------------------------------------- /src/components/fb/CreateFidelityBond.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/components/fb/CreateFidelityBond.module.css -------------------------------------------------------------------------------- /src/components/fb/CreateFidelityBond.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/components/fb/CreateFidelityBond.tsx -------------------------------------------------------------------------------- /src/components/fb/ExistingFidelityBond.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/components/fb/ExistingFidelityBond.module.css -------------------------------------------------------------------------------- /src/components/fb/ExistingFidelityBond.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/components/fb/ExistingFidelityBond.tsx -------------------------------------------------------------------------------- /src/components/fb/FidelityBondSteps.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/components/fb/FidelityBondSteps.module.css -------------------------------------------------------------------------------- /src/components/fb/FidelityBondSteps.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/components/fb/FidelityBondSteps.tsx -------------------------------------------------------------------------------- /src/components/fb/LockdateForm.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/components/fb/LockdateForm.test.tsx -------------------------------------------------------------------------------- /src/components/fb/LockdateForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/components/fb/LockdateForm.tsx -------------------------------------------------------------------------------- /src/components/fb/SpendFidelityBondModal.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/components/fb/SpendFidelityBondModal.module.css -------------------------------------------------------------------------------- /src/components/fb/SpendFidelityBondModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/components/fb/SpendFidelityBondModal.tsx -------------------------------------------------------------------------------- /src/components/fb/utils.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/components/fb/utils.test.ts -------------------------------------------------------------------------------- /src/components/fb/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/components/fb/utils.ts -------------------------------------------------------------------------------- /src/components/jar_details/DisplayBranch.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/components/jar_details/DisplayBranch.module.css -------------------------------------------------------------------------------- /src/components/jar_details/DisplayBranch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/components/jar_details/DisplayBranch.tsx -------------------------------------------------------------------------------- /src/components/jar_details/JarDetailsOverlay.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/components/jar_details/JarDetailsOverlay.module.css -------------------------------------------------------------------------------- /src/components/jar_details/JarDetailsOverlay.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/components/jar_details/JarDetailsOverlay.tsx -------------------------------------------------------------------------------- /src/components/jar_details/UtxoDetailModal.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/components/jar_details/UtxoDetailModal.module.css -------------------------------------------------------------------------------- /src/components/jar_details/UtxoDetailModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/components/jar_details/UtxoDetailModal.tsx -------------------------------------------------------------------------------- /src/components/jar_details/UtxoList.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/components/jar_details/UtxoList.module.css -------------------------------------------------------------------------------- /src/components/jar_details/UtxoList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/components/jar_details/UtxoList.tsx -------------------------------------------------------------------------------- /src/components/jars/Jar.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/components/jars/Jar.module.css -------------------------------------------------------------------------------- /src/components/jars/Jar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/components/jars/Jar.tsx -------------------------------------------------------------------------------- /src/components/settings/FeeConfigModal.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/components/settings/FeeConfigModal.module.css -------------------------------------------------------------------------------- /src/components/settings/FeeConfigModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/components/settings/FeeConfigModal.tsx -------------------------------------------------------------------------------- /src/components/settings/SeedModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/components/settings/SeedModal.tsx -------------------------------------------------------------------------------- /src/components/settings/TxFeeInputField.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/components/settings/TxFeeInputField.tsx -------------------------------------------------------------------------------- /src/components/utxo/Confirmations.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/components/utxo/Confirmations.module.css -------------------------------------------------------------------------------- /src/components/utxo/Confirmations.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/components/utxo/Confirmations.tsx -------------------------------------------------------------------------------- /src/components/utxo/UtxoIcon.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/components/utxo/UtxoIcon.module.css -------------------------------------------------------------------------------- /src/components/utxo/UtxoIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/components/utxo/UtxoIcon.tsx -------------------------------------------------------------------------------- /src/components/utxo/UtxoTags.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/components/utxo/UtxoTags.module.css -------------------------------------------------------------------------------- /src/components/utxo/UtxoTags.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/components/utxo/UtxoTags.tsx -------------------------------------------------------------------------------- /src/components/utxo/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/components/utxo/utils.ts -------------------------------------------------------------------------------- /src/constants/bip39words.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/constants/bip39words.ts -------------------------------------------------------------------------------- /src/constants/debugFeatures.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/constants/debugFeatures.ts -------------------------------------------------------------------------------- /src/constants/features.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/constants/features.ts -------------------------------------------------------------------------------- /src/constants/jam.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/constants/jam.ts -------------------------------------------------------------------------------- /src/constants/jm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/constants/jm.ts -------------------------------------------------------------------------------- /src/constants/routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/constants/routes.ts -------------------------------------------------------------------------------- /src/context/BalanceSummary.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/context/BalanceSummary.test.tsx -------------------------------------------------------------------------------- /src/context/BalanceSummary.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/context/BalanceSummary.ts -------------------------------------------------------------------------------- /src/context/ServiceConfigContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/context/ServiceConfigContext.tsx -------------------------------------------------------------------------------- /src/context/ServiceInfoContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/context/ServiceInfoContext.tsx -------------------------------------------------------------------------------- /src/context/SettingsContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/context/SettingsContext.tsx -------------------------------------------------------------------------------- /src/context/WalletContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/context/WalletContext.tsx -------------------------------------------------------------------------------- /src/context/WebsocketContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/context/WebsocketContext.tsx -------------------------------------------------------------------------------- /src/fonts/Inter-Black.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/fonts/Inter-Black.woff -------------------------------------------------------------------------------- /src/fonts/Inter-Black.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/fonts/Inter-Black.woff2 -------------------------------------------------------------------------------- /src/fonts/Inter-BlackItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/fonts/Inter-BlackItalic.woff -------------------------------------------------------------------------------- /src/fonts/Inter-BlackItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/fonts/Inter-BlackItalic.woff2 -------------------------------------------------------------------------------- /src/fonts/Inter-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/fonts/Inter-Bold.woff -------------------------------------------------------------------------------- /src/fonts/Inter-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/fonts/Inter-Bold.woff2 -------------------------------------------------------------------------------- /src/fonts/Inter-BoldItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/fonts/Inter-BoldItalic.woff -------------------------------------------------------------------------------- /src/fonts/Inter-BoldItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/fonts/Inter-BoldItalic.woff2 -------------------------------------------------------------------------------- /src/fonts/Inter-ExtraBold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/fonts/Inter-ExtraBold.woff -------------------------------------------------------------------------------- /src/fonts/Inter-ExtraBold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/fonts/Inter-ExtraBold.woff2 -------------------------------------------------------------------------------- /src/fonts/Inter-ExtraBoldItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/fonts/Inter-ExtraBoldItalic.woff -------------------------------------------------------------------------------- /src/fonts/Inter-ExtraBoldItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/fonts/Inter-ExtraBoldItalic.woff2 -------------------------------------------------------------------------------- /src/fonts/Inter-ExtraLight.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/fonts/Inter-ExtraLight.woff -------------------------------------------------------------------------------- /src/fonts/Inter-ExtraLight.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/fonts/Inter-ExtraLight.woff2 -------------------------------------------------------------------------------- /src/fonts/Inter-ExtraLightItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/fonts/Inter-ExtraLightItalic.woff -------------------------------------------------------------------------------- /src/fonts/Inter-ExtraLightItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/fonts/Inter-ExtraLightItalic.woff2 -------------------------------------------------------------------------------- /src/fonts/Inter-Italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/fonts/Inter-Italic.woff -------------------------------------------------------------------------------- /src/fonts/Inter-Italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/fonts/Inter-Italic.woff2 -------------------------------------------------------------------------------- /src/fonts/Inter-Light.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/fonts/Inter-Light.woff -------------------------------------------------------------------------------- /src/fonts/Inter-Light.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/fonts/Inter-Light.woff2 -------------------------------------------------------------------------------- /src/fonts/Inter-LightItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/fonts/Inter-LightItalic.woff -------------------------------------------------------------------------------- /src/fonts/Inter-LightItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/fonts/Inter-LightItalic.woff2 -------------------------------------------------------------------------------- /src/fonts/Inter-Medium.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/fonts/Inter-Medium.woff -------------------------------------------------------------------------------- /src/fonts/Inter-Medium.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/fonts/Inter-Medium.woff2 -------------------------------------------------------------------------------- /src/fonts/Inter-MediumItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/fonts/Inter-MediumItalic.woff -------------------------------------------------------------------------------- /src/fonts/Inter-MediumItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/fonts/Inter-MediumItalic.woff2 -------------------------------------------------------------------------------- /src/fonts/Inter-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/fonts/Inter-Regular.woff -------------------------------------------------------------------------------- /src/fonts/Inter-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/fonts/Inter-Regular.woff2 -------------------------------------------------------------------------------- /src/fonts/Inter-SemiBold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/fonts/Inter-SemiBold.woff -------------------------------------------------------------------------------- /src/fonts/Inter-SemiBold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/fonts/Inter-SemiBold.woff2 -------------------------------------------------------------------------------- /src/fonts/Inter-SemiBoldItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/fonts/Inter-SemiBoldItalic.woff -------------------------------------------------------------------------------- /src/fonts/Inter-SemiBoldItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/fonts/Inter-SemiBoldItalic.woff2 -------------------------------------------------------------------------------- /src/fonts/Inter-Thin.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/fonts/Inter-Thin.woff -------------------------------------------------------------------------------- /src/fonts/Inter-Thin.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/fonts/Inter-Thin.woff2 -------------------------------------------------------------------------------- /src/fonts/Inter-ThinItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/fonts/Inter-ThinItalic.woff -------------------------------------------------------------------------------- /src/fonts/Inter-ThinItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/fonts/Inter-ThinItalic.woff2 -------------------------------------------------------------------------------- /src/fonts/Inter-italic.var.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/fonts/Inter-italic.var.woff2 -------------------------------------------------------------------------------- /src/fonts/Inter-roman.var.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/fonts/Inter-roman.var.woff2 -------------------------------------------------------------------------------- /src/fonts/Inter.var.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/fonts/Inter.var.woff2 -------------------------------------------------------------------------------- /src/fonts/SatoshiSymbol.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/fonts/SatoshiSymbol.otf -------------------------------------------------------------------------------- /src/globals.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/globals.d.ts -------------------------------------------------------------------------------- /src/hooks/CoinjoinRequirements.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/hooks/CoinjoinRequirements.test.ts -------------------------------------------------------------------------------- /src/hooks/CoinjoinRequirements.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/hooks/CoinjoinRequirements.ts -------------------------------------------------------------------------------- /src/hooks/Fees.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/hooks/Fees.test.ts -------------------------------------------------------------------------------- /src/hooks/Fees.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/hooks/Fees.ts -------------------------------------------------------------------------------- /src/hooks/WaitForUtxosToBeSpent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/hooks/WaitForUtxosToBeSpent.ts -------------------------------------------------------------------------------- /src/i18n/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/i18n/README.md -------------------------------------------------------------------------------- /src/i18n/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/i18n/config.ts -------------------------------------------------------------------------------- /src/i18n/languages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/i18n/languages.ts -------------------------------------------------------------------------------- /src/i18n/locales/de/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/i18n/locales/de/translation.json -------------------------------------------------------------------------------- /src/i18n/locales/en/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/i18n/locales/en/translation.json -------------------------------------------------------------------------------- /src/i18n/locales/fr/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/i18n/locales/fr/translation.json -------------------------------------------------------------------------------- /src/i18n/locales/it/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/i18n/locales/it/translation.json -------------------------------------------------------------------------------- /src/i18n/locales/pt_BR/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/i18n/locales/pt_BR/translation.json -------------------------------------------------------------------------------- /src/i18n/locales/ru/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/i18n/locales/ru/translation.json -------------------------------------------------------------------------------- /src/i18n/locales/zh_Hans/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/i18n/locales/zh_Hans/translation.json -------------------------------------------------------------------------------- /src/i18n/locales/zh_Hant/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/i18n/locales/zh_Hant/translation.json -------------------------------------------------------------------------------- /src/i18n/testConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/i18n/testConfig.ts -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/index.css -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/index.tsx -------------------------------------------------------------------------------- /src/libs/JamApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/libs/JamApi.ts -------------------------------------------------------------------------------- /src/libs/JmObwatchApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/libs/JmObwatchApi.ts -------------------------------------------------------------------------------- /src/libs/JmWalletApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/libs/JmWalletApi.ts -------------------------------------------------------------------------------- /src/session.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/session.ts -------------------------------------------------------------------------------- /src/setupProxy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/setupProxy.js -------------------------------------------------------------------------------- /src/setupTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/setupTests.ts -------------------------------------------------------------------------------- /src/testUtils.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/testUtils.tsx -------------------------------------------------------------------------------- /src/utils.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/utils.test.ts -------------------------------------------------------------------------------- /src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/src/utils.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/tsconfig.json -------------------------------------------------------------------------------- /typings.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joinmarket-webui/jam/HEAD/typings.d.ts --------------------------------------------------------------------------------