├── .dockerignore ├── .env.sample ├── .git-commit-template.txt ├── .github └── workflows │ ├── CI.yml │ ├── docker-publish.yml │ └── docs.yml ├── .gitignore ├── .gitmodules ├── .pre-commit-config.yaml ├── .prettierignore ├── .prettierrc ├── CHANGELOG.md ├── Dockerfile ├── LICENSE ├── README.md ├── boltz.conf.patch ├── check-assets.mjs ├── cliff.toml ├── docs ├── .vitepress │ ├── config.mts │ └── theme │ │ ├── index.ts │ │ └── style.css ├── assets │ ├── android-0.jpeg │ ├── android-1.jpeg │ ├── boltz-web_app_header.png │ ├── desktop-0.png │ ├── desktop-1.png │ ├── desktop-2.png │ ├── ios-0.jpeg │ ├── ios-1.jpeg │ └── ios-2.jpeg ├── index.md ├── public │ └── assets │ │ └── logo.svg ├── pwa.md └── urlParams.md ├── e2e ├── bolt12.spec.ts ├── boltzClient.ts ├── chainSwaps │ ├── chainSwaps.spec.ts │ ├── overpayment.spec.ts │ └── zeroAmount.spec.ts ├── create.spec.ts ├── evm │ └── noBrowserWallet.spec.ts ├── fees.spec.ts ├── locale.spec.ts ├── rescue │ ├── claim.spec.ts │ ├── existingRescueFile.json │ ├── noLockup.png │ ├── refund.spec.ts │ ├── refundFile.spec.ts │ └── rescueFile.spec.ts ├── reverseSwap.spec.ts ├── submarineSwap.spec.ts ├── urlParams.spec.ts └── utils.ts ├── eslint.config.mjs ├── index-template-vars.mjs ├── index.template.html ├── nginx.conf ├── optimize-assets.mjs ├── package.json ├── playwright.config.ts ├── public ├── android-chrome-144x144.png ├── android-chrome-192x192.png ├── android-chrome-256x256.png ├── android-chrome-512x512.png ├── apple-touch-icon.png ├── boltz-icon.svg ├── boltz-preview.jpg ├── boltz.svg ├── favicon-16x16.png ├── favicon-32x32.png ├── favicon.ico ├── manifest.json ├── pro │ ├── android-chrome-144x144.png │ ├── android-chrome-192x192.png │ ├── android-chrome-256x256.png │ ├── android-chrome-512x512.png │ ├── apple-touch-icon.png │ ├── boltz-icon.svg │ ├── boltz-preview.jpg │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ ├── favicon.ico │ ├── icon.svg │ └── manifest.json └── service-worker.js ├── release.sh ├── src ├── assets │ ├── alby.svg │ ├── aqua.svg │ ├── arklabs.svg │ ├── banco-libre.svg │ ├── bitcoin-icon.svg │ ├── blitz.svg │ ├── blockstream.webp │ ├── boltz-btc-logo.svg │ ├── boltz.svg │ ├── btc.svg │ ├── btcpay-illustration.webp │ ├── btcpay-screenshot.svg │ ├── bull-bitcoin.svg │ ├── cakepay.svg │ ├── diamondhands.svg │ ├── fedi.svg │ ├── fuji.webp │ ├── geyser.svg │ ├── helm.svg │ ├── ledger.svg │ ├── lightning-icon.svg │ ├── liquid-icon.svg │ ├── ln-circuit-pro.svg │ ├── ln-circuit.svg │ ├── lnbits.svg │ ├── logo-breez-header.svg │ ├── neon-tube.webp │ ├── nostr.svg │ ├── reload.svg │ ├── rootstock-icon.svg │ ├── rootstocklabs.svg │ ├── rsk-icon.svg │ ├── rtl.svg │ ├── sat.svg │ ├── speed.svg │ ├── stashPay.webp │ ├── thunderhub.svg │ ├── trezor.svg │ ├── tropykus.svg │ ├── vulpem.svg │ └── wallet-connect.svg ├── chatwoot.ts ├── components │ ├── Accordion.tsx │ ├── AddressInput.tsx │ ├── Asset.tsx │ ├── AssetSelect.tsx │ ├── BlockExplorer.tsx │ ├── BlockExplorerLink.tsx │ ├── Chart.tsx │ ├── ConnectWallet.tsx │ ├── ContractTransaction.tsx │ ├── CopyBox.tsx │ ├── CopyButton.tsx │ ├── CreateButton.tsx │ ├── FeeComparisonTable.tsx │ ├── Fees.tsx │ ├── FiatAmount.tsx │ ├── Footer.tsx │ ├── HardwareDerivationPaths.tsx │ ├── InvoiceInput.tsx │ ├── LoadingSpinner.tsx │ ├── LockupEvm.tsx │ ├── MnemonicInput.tsx │ ├── Nav.tsx │ ├── Notification.tsx │ ├── OptimizedRoute.tsx │ ├── Pagination.tsx │ ├── PayInvoice.tsx │ ├── PayOnchain.tsx │ ├── ProBanner.tsx │ ├── QrCode.tsx │ ├── QrScan.tsx │ ├── RefundButton.tsx │ ├── RefundEta.tsx │ ├── Reverse.tsx │ ├── SwapChecker.tsx │ ├── SwapIcons.tsx │ ├── SwapList.tsx │ ├── SwapListLogs.tsx │ ├── WalletConnect.tsx │ ├── Warning.tsx │ ├── Warnings.tsx │ ├── WeblnButton.tsx │ └── settings │ │ ├── Denomination.tsx │ │ ├── FiatAmountSetting.tsx │ │ ├── Logs.tsx │ │ ├── PrivacyMode.tsx │ │ ├── RescueKey.tsx │ │ ├── ResetRescueKey.tsx │ │ ├── Separator.tsx │ │ ├── SettingsCog.tsx │ │ ├── SettingsMenu.tsx │ │ ├── Tooltip.tsx │ │ └── ZeroConf.tsx ├── configs │ ├── base.ts │ ├── beta.ts │ ├── mainnet.ts │ ├── pro.ts │ ├── regtest.ts │ └── testnet.ts ├── consts │ ├── Assets.ts │ ├── CopyContent.ts │ ├── Enums.ts │ ├── LocalStorage.ts │ ├── SwapStatus.ts │ └── Types.ts ├── context │ ├── Create.tsx │ ├── Global.tsx │ ├── Pay.tsx │ ├── Rescue.tsx │ └── Web3.tsx ├── i18n │ ├── detect.ts │ └── i18n.ts ├── index.tsx ├── lazy │ ├── Loader.ts │ ├── bolt12.ts │ ├── ledger.ts │ ├── secp.ts │ ├── trezor.ts │ └── walletConnect.ts ├── pages │ ├── Backup.tsx │ ├── BackupMnemonic.tsx │ ├── BackupVerify.tsx │ ├── ClaimRescue.tsx │ ├── Create.tsx │ ├── Error.tsx │ ├── ErrorWasm.tsx │ ├── FeeComparison.tsx │ ├── Hero.tsx │ ├── History.tsx │ ├── MnemonicVerify.tsx │ ├── NotFound.tsx │ ├── Pay.tsx │ ├── Privacy.tsx │ ├── RefundEvm.tsx │ ├── RefundRescue.tsx │ ├── Rescue.tsx │ ├── RescueExternal.tsx │ ├── Terms.tsx │ └── products │ │ ├── Btcpay.tsx │ │ ├── Client.tsx │ │ ├── Pro.tsx │ │ ├── Products.tsx │ │ └── pro-fee-sample.json ├── rif │ ├── Contracts.ts │ ├── Relay.ts │ ├── Signer.ts │ ├── Utils.ts │ └── types │ │ ├── TypedRequestData.ts │ │ └── Utility.ts ├── status │ ├── InvoiceExpired.tsx │ ├── InvoiceFailedToPay.tsx │ ├── InvoicePending.tsx │ ├── InvoiceSet.tsx │ ├── SwapCreated.tsx │ ├── SwapExpired.tsx │ ├── SwapRefunded.tsx │ ├── TransactionClaimed.tsx │ ├── TransactionConfirmed.tsx │ ├── TransactionLockupFailed.tsx │ └── TransactionMempool.tsx ├── style │ ├── asset.scss │ ├── btcpay.scss │ ├── client.scss │ ├── footer.scss │ ├── hero.scss │ ├── index.scss │ ├── legal.scss │ ├── loadingSpinner.scss │ ├── nav.scss │ ├── notification.scss │ ├── pagination.scss │ ├── pro.scss │ ├── products.scss │ ├── qrcode.scss │ ├── qrscan.scss │ ├── settings.scss │ ├── swaplist.scss │ ├── tabs.scss │ ├── theme.scss │ ├── tooltip.scss │ ├── vars.scss │ └── web3.scss ├── utils │ ├── WalletConnectProvider.ts │ ├── blockchain.ts │ ├── boltzClient.ts │ ├── calculate.ts │ ├── claim.ts │ ├── compat.ts │ ├── contractLogs.ts │ ├── denomination.ts │ ├── dnssec │ │ ├── README.md │ │ ├── dnssec_prover_wasm.d.ts │ │ ├── dnssec_prover_wasm.js │ │ ├── dnssec_prover_wasm_bg.wasm │ │ ├── dnssec_prover_wasm_bg.wasm.d.ts │ │ └── dohLookup.ts │ ├── download.ts │ ├── ecpair.ts │ ├── errors.ts │ ├── fees.ts │ ├── fiat.ts │ ├── hardware │ │ ├── HardwareSigner.ts │ │ ├── LedgerSigner.ts │ │ └── TrezorSigner.ts │ ├── helper.ts │ ├── http.ts │ ├── invoice.ts │ ├── logs.ts │ ├── magicRoutingHint.ts │ ├── migration.ts │ ├── pairs.ts │ ├── patches.ts │ ├── promise.ts │ ├── provider.ts │ ├── refundFile.ts │ ├── rescue.ts │ ├── rescueFile.ts │ ├── rootstock.ts │ ├── strings.ts │ ├── swapCreator.ts │ ├── taproot │ │ └── musig.ts │ ├── urlParams.ts │ ├── validation.ts │ ├── wasmSupport.ts │ └── webln.ts └── webln-types.d.ts ├── tests ├── components │ ├── Accordion.spec.tsx │ ├── AddressInput.spec.tsx │ ├── AssetSelect.spec.tsx │ ├── BlockExplorer.spec.tsx │ ├── BlockExplorerLink.spec.tsx │ ├── CopyBox.spec.tsx │ ├── CopyButton.spec.tsx │ ├── CreateButton.spec.tsx │ ├── Denomination.spec.tsx │ ├── FeeComparisonTable.spec.tsx │ ├── Fees.spec.tsx │ ├── InvoiceInput.spec.tsx │ ├── Logs.spec.tsx │ ├── MnemonicInput.spec.tsx │ ├── Pagination.spec.tsx │ ├── PayOnchain.spec.tsx │ ├── RefundButton.spec.tsx │ ├── Reverse.spec.tsx │ ├── SwapList.spec.tsx │ └── WeblnButton.spec.tsx ├── context │ └── Create.spec.tsx ├── helper.tsx ├── i18n │ ├── detect.spec.ts │ └── i18n.spec.ts ├── mocks │ ├── LedgerMock.ts │ ├── StylesMock.tsx │ ├── SvgMock.tsx │ ├── TrezorMock.ts │ └── bolt12.ts ├── pages │ ├── BackupVerify.spec.tsx │ ├── Create.spec.tsx │ ├── Error.spec.tsx │ ├── ErrorWasm.spec.tsx │ ├── History.spec.tsx │ ├── MnemonicVerify.spec.tsx │ ├── Nav.spec.tsx │ ├── Pay.spec.tsx │ └── RescueExternal.spec.tsx ├── pairs.ts ├── setup.ts ├── status │ ├── TransactionClaimed.spec.tsx │ └── TransactionLockupFailed.spec.tsx ├── utils.ts └── utils │ ├── blockchain.spec.ts │ ├── calculate.spec.ts │ ├── compat.spec.ts │ ├── denomination.spec.ts │ ├── errors.spec.ts │ ├── fees.spec.ts │ ├── fetchInvoice.spec.ts │ ├── fiat.spec.ts │ ├── helper.spec.ts │ ├── invoice.spec.ts │ ├── logs.spec.ts │ ├── migration.spec.ts │ ├── pairs.spec.ts │ ├── promise.spec.ts │ ├── refundFile.spec.ts │ ├── rescue.spec.ts │ ├── rescueFile.spec.ts │ ├── rootstock.spec.ts │ ├── validation.spec.ts │ └── webln.spec.ts ├── tsconfig.json ├── vite-env.d.ts └── vite.config.mjs /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/.dockerignore -------------------------------------------------------------------------------- /.env.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/.env.sample -------------------------------------------------------------------------------- /.git-commit-template.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/.git-commit-template.txt -------------------------------------------------------------------------------- /.github/workflows/CI.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/.github/workflows/CI.yml -------------------------------------------------------------------------------- /.github/workflows/docker-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/.github/workflows/docker-publish.yml -------------------------------------------------------------------------------- /.github/workflows/docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/.github/workflows/docs.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/.gitmodules -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/.prettierrc -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/README.md -------------------------------------------------------------------------------- /boltz.conf.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/boltz.conf.patch -------------------------------------------------------------------------------- /check-assets.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/check-assets.mjs -------------------------------------------------------------------------------- /cliff.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/cliff.toml -------------------------------------------------------------------------------- /docs/.vitepress/config.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/docs/.vitepress/config.mts -------------------------------------------------------------------------------- /docs/.vitepress/theme/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/docs/.vitepress/theme/index.ts -------------------------------------------------------------------------------- /docs/.vitepress/theme/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/docs/.vitepress/theme/style.css -------------------------------------------------------------------------------- /docs/assets/android-0.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/docs/assets/android-0.jpeg -------------------------------------------------------------------------------- /docs/assets/android-1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/docs/assets/android-1.jpeg -------------------------------------------------------------------------------- /docs/assets/boltz-web_app_header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/docs/assets/boltz-web_app_header.png -------------------------------------------------------------------------------- /docs/assets/desktop-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/docs/assets/desktop-0.png -------------------------------------------------------------------------------- /docs/assets/desktop-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/docs/assets/desktop-1.png -------------------------------------------------------------------------------- /docs/assets/desktop-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/docs/assets/desktop-2.png -------------------------------------------------------------------------------- /docs/assets/ios-0.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/docs/assets/ios-0.jpeg -------------------------------------------------------------------------------- /docs/assets/ios-1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/docs/assets/ios-1.jpeg -------------------------------------------------------------------------------- /docs/assets/ios-2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/docs/assets/ios-2.jpeg -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/public/assets/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/docs/public/assets/logo.svg -------------------------------------------------------------------------------- /docs/pwa.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/docs/pwa.md -------------------------------------------------------------------------------- /docs/urlParams.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/docs/urlParams.md -------------------------------------------------------------------------------- /e2e/bolt12.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/e2e/bolt12.spec.ts -------------------------------------------------------------------------------- /e2e/boltzClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/e2e/boltzClient.ts -------------------------------------------------------------------------------- /e2e/chainSwaps/chainSwaps.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/e2e/chainSwaps/chainSwaps.spec.ts -------------------------------------------------------------------------------- /e2e/chainSwaps/overpayment.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/e2e/chainSwaps/overpayment.spec.ts -------------------------------------------------------------------------------- /e2e/chainSwaps/zeroAmount.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/e2e/chainSwaps/zeroAmount.spec.ts -------------------------------------------------------------------------------- /e2e/create.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/e2e/create.spec.ts -------------------------------------------------------------------------------- /e2e/evm/noBrowserWallet.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/e2e/evm/noBrowserWallet.spec.ts -------------------------------------------------------------------------------- /e2e/fees.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/e2e/fees.spec.ts -------------------------------------------------------------------------------- /e2e/locale.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/e2e/locale.spec.ts -------------------------------------------------------------------------------- /e2e/rescue/claim.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/e2e/rescue/claim.spec.ts -------------------------------------------------------------------------------- /e2e/rescue/existingRescueFile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/e2e/rescue/existingRescueFile.json -------------------------------------------------------------------------------- /e2e/rescue/noLockup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/e2e/rescue/noLockup.png -------------------------------------------------------------------------------- /e2e/rescue/refund.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/e2e/rescue/refund.spec.ts -------------------------------------------------------------------------------- /e2e/rescue/refundFile.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/e2e/rescue/refundFile.spec.ts -------------------------------------------------------------------------------- /e2e/rescue/rescueFile.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/e2e/rescue/rescueFile.spec.ts -------------------------------------------------------------------------------- /e2e/reverseSwap.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/e2e/reverseSwap.spec.ts -------------------------------------------------------------------------------- /e2e/submarineSwap.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/e2e/submarineSwap.spec.ts -------------------------------------------------------------------------------- /e2e/urlParams.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/e2e/urlParams.spec.ts -------------------------------------------------------------------------------- /e2e/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/e2e/utils.ts -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/eslint.config.mjs -------------------------------------------------------------------------------- /index-template-vars.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/index-template-vars.mjs -------------------------------------------------------------------------------- /index.template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/index.template.html -------------------------------------------------------------------------------- /nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/nginx.conf -------------------------------------------------------------------------------- /optimize-assets.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/optimize-assets.mjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/package.json -------------------------------------------------------------------------------- /playwright.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/playwright.config.ts -------------------------------------------------------------------------------- /public/android-chrome-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/public/android-chrome-144x144.png -------------------------------------------------------------------------------- /public/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/public/android-chrome-192x192.png -------------------------------------------------------------------------------- /public/android-chrome-256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/public/android-chrome-256x256.png -------------------------------------------------------------------------------- /public/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/public/android-chrome-512x512.png -------------------------------------------------------------------------------- /public/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/public/apple-touch-icon.png -------------------------------------------------------------------------------- /public/boltz-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/public/boltz-icon.svg -------------------------------------------------------------------------------- /public/boltz-preview.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/public/boltz-preview.jpg -------------------------------------------------------------------------------- /public/boltz.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/public/boltz.svg -------------------------------------------------------------------------------- /public/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/public/favicon-16x16.png -------------------------------------------------------------------------------- /public/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/public/favicon-32x32.png -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/pro/android-chrome-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/public/pro/android-chrome-144x144.png -------------------------------------------------------------------------------- /public/pro/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/public/pro/android-chrome-192x192.png -------------------------------------------------------------------------------- /public/pro/android-chrome-256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/public/pro/android-chrome-256x256.png -------------------------------------------------------------------------------- /public/pro/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/public/pro/android-chrome-512x512.png -------------------------------------------------------------------------------- /public/pro/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/public/pro/apple-touch-icon.png -------------------------------------------------------------------------------- /public/pro/boltz-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/public/pro/boltz-icon.svg -------------------------------------------------------------------------------- /public/pro/boltz-preview.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/public/pro/boltz-preview.jpg -------------------------------------------------------------------------------- /public/pro/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/public/pro/favicon-16x16.png -------------------------------------------------------------------------------- /public/pro/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/public/pro/favicon-32x32.png -------------------------------------------------------------------------------- /public/pro/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/public/pro/favicon.ico -------------------------------------------------------------------------------- /public/pro/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/public/pro/icon.svg -------------------------------------------------------------------------------- /public/pro/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/public/pro/manifest.json -------------------------------------------------------------------------------- /public/service-worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/public/service-worker.js -------------------------------------------------------------------------------- /release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/release.sh -------------------------------------------------------------------------------- /src/assets/alby.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/assets/alby.svg -------------------------------------------------------------------------------- /src/assets/aqua.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/assets/aqua.svg -------------------------------------------------------------------------------- /src/assets/arklabs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/assets/arklabs.svg -------------------------------------------------------------------------------- /src/assets/banco-libre.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/assets/banco-libre.svg -------------------------------------------------------------------------------- /src/assets/bitcoin-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/assets/bitcoin-icon.svg -------------------------------------------------------------------------------- /src/assets/blitz.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/assets/blitz.svg -------------------------------------------------------------------------------- /src/assets/blockstream.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/assets/blockstream.webp -------------------------------------------------------------------------------- /src/assets/boltz-btc-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/assets/boltz-btc-logo.svg -------------------------------------------------------------------------------- /src/assets/boltz.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/assets/boltz.svg -------------------------------------------------------------------------------- /src/assets/btc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/assets/btc.svg -------------------------------------------------------------------------------- /src/assets/btcpay-illustration.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/assets/btcpay-illustration.webp -------------------------------------------------------------------------------- /src/assets/btcpay-screenshot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/assets/btcpay-screenshot.svg -------------------------------------------------------------------------------- /src/assets/bull-bitcoin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/assets/bull-bitcoin.svg -------------------------------------------------------------------------------- /src/assets/cakepay.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/assets/cakepay.svg -------------------------------------------------------------------------------- /src/assets/diamondhands.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/assets/diamondhands.svg -------------------------------------------------------------------------------- /src/assets/fedi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/assets/fedi.svg -------------------------------------------------------------------------------- /src/assets/fuji.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/assets/fuji.webp -------------------------------------------------------------------------------- /src/assets/geyser.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/assets/geyser.svg -------------------------------------------------------------------------------- /src/assets/helm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/assets/helm.svg -------------------------------------------------------------------------------- /src/assets/ledger.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/assets/ledger.svg -------------------------------------------------------------------------------- /src/assets/lightning-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/assets/lightning-icon.svg -------------------------------------------------------------------------------- /src/assets/liquid-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/assets/liquid-icon.svg -------------------------------------------------------------------------------- /src/assets/ln-circuit-pro.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/assets/ln-circuit-pro.svg -------------------------------------------------------------------------------- /src/assets/ln-circuit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/assets/ln-circuit.svg -------------------------------------------------------------------------------- /src/assets/lnbits.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/assets/lnbits.svg -------------------------------------------------------------------------------- /src/assets/logo-breez-header.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/assets/logo-breez-header.svg -------------------------------------------------------------------------------- /src/assets/neon-tube.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/assets/neon-tube.webp -------------------------------------------------------------------------------- /src/assets/nostr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/assets/nostr.svg -------------------------------------------------------------------------------- /src/assets/reload.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/assets/reload.svg -------------------------------------------------------------------------------- /src/assets/rootstock-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/assets/rootstock-icon.svg -------------------------------------------------------------------------------- /src/assets/rootstocklabs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/assets/rootstocklabs.svg -------------------------------------------------------------------------------- /src/assets/rsk-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/assets/rsk-icon.svg -------------------------------------------------------------------------------- /src/assets/rtl.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/assets/rtl.svg -------------------------------------------------------------------------------- /src/assets/sat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/assets/sat.svg -------------------------------------------------------------------------------- /src/assets/speed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/assets/speed.svg -------------------------------------------------------------------------------- /src/assets/stashPay.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/assets/stashPay.webp -------------------------------------------------------------------------------- /src/assets/thunderhub.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/assets/thunderhub.svg -------------------------------------------------------------------------------- /src/assets/trezor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/assets/trezor.svg -------------------------------------------------------------------------------- /src/assets/tropykus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/assets/tropykus.svg -------------------------------------------------------------------------------- /src/assets/vulpem.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/assets/vulpem.svg -------------------------------------------------------------------------------- /src/assets/wallet-connect.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/assets/wallet-connect.svg -------------------------------------------------------------------------------- /src/chatwoot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/chatwoot.ts -------------------------------------------------------------------------------- /src/components/Accordion.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/components/Accordion.tsx -------------------------------------------------------------------------------- /src/components/AddressInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/components/AddressInput.tsx -------------------------------------------------------------------------------- /src/components/Asset.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/components/Asset.tsx -------------------------------------------------------------------------------- /src/components/AssetSelect.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/components/AssetSelect.tsx -------------------------------------------------------------------------------- /src/components/BlockExplorer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/components/BlockExplorer.tsx -------------------------------------------------------------------------------- /src/components/BlockExplorerLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/components/BlockExplorerLink.tsx -------------------------------------------------------------------------------- /src/components/Chart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/components/Chart.tsx -------------------------------------------------------------------------------- /src/components/ConnectWallet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/components/ConnectWallet.tsx -------------------------------------------------------------------------------- /src/components/ContractTransaction.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/components/ContractTransaction.tsx -------------------------------------------------------------------------------- /src/components/CopyBox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/components/CopyBox.tsx -------------------------------------------------------------------------------- /src/components/CopyButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/components/CopyButton.tsx -------------------------------------------------------------------------------- /src/components/CreateButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/components/CreateButton.tsx -------------------------------------------------------------------------------- /src/components/FeeComparisonTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/components/FeeComparisonTable.tsx -------------------------------------------------------------------------------- /src/components/Fees.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/components/Fees.tsx -------------------------------------------------------------------------------- /src/components/FiatAmount.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/components/FiatAmount.tsx -------------------------------------------------------------------------------- /src/components/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/components/Footer.tsx -------------------------------------------------------------------------------- /src/components/HardwareDerivationPaths.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/components/HardwareDerivationPaths.tsx -------------------------------------------------------------------------------- /src/components/InvoiceInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/components/InvoiceInput.tsx -------------------------------------------------------------------------------- /src/components/LoadingSpinner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/components/LoadingSpinner.tsx -------------------------------------------------------------------------------- /src/components/LockupEvm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/components/LockupEvm.tsx -------------------------------------------------------------------------------- /src/components/MnemonicInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/components/MnemonicInput.tsx -------------------------------------------------------------------------------- /src/components/Nav.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/components/Nav.tsx -------------------------------------------------------------------------------- /src/components/Notification.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/components/Notification.tsx -------------------------------------------------------------------------------- /src/components/OptimizedRoute.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/components/OptimizedRoute.tsx -------------------------------------------------------------------------------- /src/components/Pagination.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/components/Pagination.tsx -------------------------------------------------------------------------------- /src/components/PayInvoice.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/components/PayInvoice.tsx -------------------------------------------------------------------------------- /src/components/PayOnchain.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/components/PayOnchain.tsx -------------------------------------------------------------------------------- /src/components/ProBanner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/components/ProBanner.tsx -------------------------------------------------------------------------------- /src/components/QrCode.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/components/QrCode.tsx -------------------------------------------------------------------------------- /src/components/QrScan.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/components/QrScan.tsx -------------------------------------------------------------------------------- /src/components/RefundButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/components/RefundButton.tsx -------------------------------------------------------------------------------- /src/components/RefundEta.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/components/RefundEta.tsx -------------------------------------------------------------------------------- /src/components/Reverse.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/components/Reverse.tsx -------------------------------------------------------------------------------- /src/components/SwapChecker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/components/SwapChecker.tsx -------------------------------------------------------------------------------- /src/components/SwapIcons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/components/SwapIcons.tsx -------------------------------------------------------------------------------- /src/components/SwapList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/components/SwapList.tsx -------------------------------------------------------------------------------- /src/components/SwapListLogs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/components/SwapListLogs.tsx -------------------------------------------------------------------------------- /src/components/WalletConnect.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/components/WalletConnect.tsx -------------------------------------------------------------------------------- /src/components/Warning.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/components/Warning.tsx -------------------------------------------------------------------------------- /src/components/Warnings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/components/Warnings.tsx -------------------------------------------------------------------------------- /src/components/WeblnButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/components/WeblnButton.tsx -------------------------------------------------------------------------------- /src/components/settings/Denomination.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/components/settings/Denomination.tsx -------------------------------------------------------------------------------- /src/components/settings/FiatAmountSetting.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/components/settings/FiatAmountSetting.tsx -------------------------------------------------------------------------------- /src/components/settings/Logs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/components/settings/Logs.tsx -------------------------------------------------------------------------------- /src/components/settings/PrivacyMode.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/components/settings/PrivacyMode.tsx -------------------------------------------------------------------------------- /src/components/settings/RescueKey.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/components/settings/RescueKey.tsx -------------------------------------------------------------------------------- /src/components/settings/ResetRescueKey.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/components/settings/ResetRescueKey.tsx -------------------------------------------------------------------------------- /src/components/settings/Separator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/components/settings/Separator.tsx -------------------------------------------------------------------------------- /src/components/settings/SettingsCog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/components/settings/SettingsCog.tsx -------------------------------------------------------------------------------- /src/components/settings/SettingsMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/components/settings/SettingsMenu.tsx -------------------------------------------------------------------------------- /src/components/settings/Tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/components/settings/Tooltip.tsx -------------------------------------------------------------------------------- /src/components/settings/ZeroConf.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/components/settings/ZeroConf.tsx -------------------------------------------------------------------------------- /src/configs/base.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/configs/base.ts -------------------------------------------------------------------------------- /src/configs/beta.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/configs/beta.ts -------------------------------------------------------------------------------- /src/configs/mainnet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/configs/mainnet.ts -------------------------------------------------------------------------------- /src/configs/pro.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/configs/pro.ts -------------------------------------------------------------------------------- /src/configs/regtest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/configs/regtest.ts -------------------------------------------------------------------------------- /src/configs/testnet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/configs/testnet.ts -------------------------------------------------------------------------------- /src/consts/Assets.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/consts/Assets.ts -------------------------------------------------------------------------------- /src/consts/CopyContent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/consts/CopyContent.ts -------------------------------------------------------------------------------- /src/consts/Enums.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/consts/Enums.ts -------------------------------------------------------------------------------- /src/consts/LocalStorage.ts: -------------------------------------------------------------------------------- 1 | export const referralIdKey = "ref"; 2 | -------------------------------------------------------------------------------- /src/consts/SwapStatus.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/consts/SwapStatus.ts -------------------------------------------------------------------------------- /src/consts/Types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/consts/Types.ts -------------------------------------------------------------------------------- /src/context/Create.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/context/Create.tsx -------------------------------------------------------------------------------- /src/context/Global.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/context/Global.tsx -------------------------------------------------------------------------------- /src/context/Pay.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/context/Pay.tsx -------------------------------------------------------------------------------- /src/context/Rescue.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/context/Rescue.tsx -------------------------------------------------------------------------------- /src/context/Web3.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/context/Web3.tsx -------------------------------------------------------------------------------- /src/i18n/detect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/i18n/detect.ts -------------------------------------------------------------------------------- /src/i18n/i18n.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/i18n/i18n.ts -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/index.tsx -------------------------------------------------------------------------------- /src/lazy/Loader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/lazy/Loader.ts -------------------------------------------------------------------------------- /src/lazy/bolt12.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/lazy/bolt12.ts -------------------------------------------------------------------------------- /src/lazy/ledger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/lazy/ledger.ts -------------------------------------------------------------------------------- /src/lazy/secp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/lazy/secp.ts -------------------------------------------------------------------------------- /src/lazy/trezor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/lazy/trezor.ts -------------------------------------------------------------------------------- /src/lazy/walletConnect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/lazy/walletConnect.ts -------------------------------------------------------------------------------- /src/pages/Backup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/pages/Backup.tsx -------------------------------------------------------------------------------- /src/pages/BackupMnemonic.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/pages/BackupMnemonic.tsx -------------------------------------------------------------------------------- /src/pages/BackupVerify.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/pages/BackupVerify.tsx -------------------------------------------------------------------------------- /src/pages/ClaimRescue.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/pages/ClaimRescue.tsx -------------------------------------------------------------------------------- /src/pages/Create.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/pages/Create.tsx -------------------------------------------------------------------------------- /src/pages/Error.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/pages/Error.tsx -------------------------------------------------------------------------------- /src/pages/ErrorWasm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/pages/ErrorWasm.tsx -------------------------------------------------------------------------------- /src/pages/FeeComparison.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/pages/FeeComparison.tsx -------------------------------------------------------------------------------- /src/pages/Hero.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/pages/Hero.tsx -------------------------------------------------------------------------------- /src/pages/History.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/pages/History.tsx -------------------------------------------------------------------------------- /src/pages/MnemonicVerify.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/pages/MnemonicVerify.tsx -------------------------------------------------------------------------------- /src/pages/NotFound.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/pages/NotFound.tsx -------------------------------------------------------------------------------- /src/pages/Pay.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/pages/Pay.tsx -------------------------------------------------------------------------------- /src/pages/Privacy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/pages/Privacy.tsx -------------------------------------------------------------------------------- /src/pages/RefundEvm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/pages/RefundEvm.tsx -------------------------------------------------------------------------------- /src/pages/RefundRescue.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/pages/RefundRescue.tsx -------------------------------------------------------------------------------- /src/pages/Rescue.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/pages/Rescue.tsx -------------------------------------------------------------------------------- /src/pages/RescueExternal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/pages/RescueExternal.tsx -------------------------------------------------------------------------------- /src/pages/Terms.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/pages/Terms.tsx -------------------------------------------------------------------------------- /src/pages/products/Btcpay.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/pages/products/Btcpay.tsx -------------------------------------------------------------------------------- /src/pages/products/Client.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/pages/products/Client.tsx -------------------------------------------------------------------------------- /src/pages/products/Pro.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/pages/products/Pro.tsx -------------------------------------------------------------------------------- /src/pages/products/Products.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/pages/products/Products.tsx -------------------------------------------------------------------------------- /src/pages/products/pro-fee-sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/pages/products/pro-fee-sample.json -------------------------------------------------------------------------------- /src/rif/Contracts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/rif/Contracts.ts -------------------------------------------------------------------------------- /src/rif/Relay.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/rif/Relay.ts -------------------------------------------------------------------------------- /src/rif/Signer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/rif/Signer.ts -------------------------------------------------------------------------------- /src/rif/Utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/rif/Utils.ts -------------------------------------------------------------------------------- /src/rif/types/TypedRequestData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/rif/types/TypedRequestData.ts -------------------------------------------------------------------------------- /src/rif/types/Utility.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/rif/types/Utility.ts -------------------------------------------------------------------------------- /src/status/InvoiceExpired.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/status/InvoiceExpired.tsx -------------------------------------------------------------------------------- /src/status/InvoiceFailedToPay.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/status/InvoiceFailedToPay.tsx -------------------------------------------------------------------------------- /src/status/InvoicePending.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/status/InvoicePending.tsx -------------------------------------------------------------------------------- /src/status/InvoiceSet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/status/InvoiceSet.tsx -------------------------------------------------------------------------------- /src/status/SwapCreated.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/status/SwapCreated.tsx -------------------------------------------------------------------------------- /src/status/SwapExpired.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/status/SwapExpired.tsx -------------------------------------------------------------------------------- /src/status/SwapRefunded.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/status/SwapRefunded.tsx -------------------------------------------------------------------------------- /src/status/TransactionClaimed.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/status/TransactionClaimed.tsx -------------------------------------------------------------------------------- /src/status/TransactionConfirmed.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/status/TransactionConfirmed.tsx -------------------------------------------------------------------------------- /src/status/TransactionLockupFailed.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/status/TransactionLockupFailed.tsx -------------------------------------------------------------------------------- /src/status/TransactionMempool.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/status/TransactionMempool.tsx -------------------------------------------------------------------------------- /src/style/asset.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/style/asset.scss -------------------------------------------------------------------------------- /src/style/btcpay.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/style/btcpay.scss -------------------------------------------------------------------------------- /src/style/client.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/style/client.scss -------------------------------------------------------------------------------- /src/style/footer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/style/footer.scss -------------------------------------------------------------------------------- /src/style/hero.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/style/hero.scss -------------------------------------------------------------------------------- /src/style/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/style/index.scss -------------------------------------------------------------------------------- /src/style/legal.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/style/legal.scss -------------------------------------------------------------------------------- /src/style/loadingSpinner.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/style/loadingSpinner.scss -------------------------------------------------------------------------------- /src/style/nav.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/style/nav.scss -------------------------------------------------------------------------------- /src/style/notification.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/style/notification.scss -------------------------------------------------------------------------------- /src/style/pagination.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/style/pagination.scss -------------------------------------------------------------------------------- /src/style/pro.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/style/pro.scss -------------------------------------------------------------------------------- /src/style/products.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/style/products.scss -------------------------------------------------------------------------------- /src/style/qrcode.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/style/qrcode.scss -------------------------------------------------------------------------------- /src/style/qrscan.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/style/qrscan.scss -------------------------------------------------------------------------------- /src/style/settings.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/style/settings.scss -------------------------------------------------------------------------------- /src/style/swaplist.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/style/swaplist.scss -------------------------------------------------------------------------------- /src/style/tabs.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/style/tabs.scss -------------------------------------------------------------------------------- /src/style/theme.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/style/theme.scss -------------------------------------------------------------------------------- /src/style/tooltip.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/style/tooltip.scss -------------------------------------------------------------------------------- /src/style/vars.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/style/vars.scss -------------------------------------------------------------------------------- /src/style/web3.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/style/web3.scss -------------------------------------------------------------------------------- /src/utils/WalletConnectProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/utils/WalletConnectProvider.ts -------------------------------------------------------------------------------- /src/utils/blockchain.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/utils/blockchain.ts -------------------------------------------------------------------------------- /src/utils/boltzClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/utils/boltzClient.ts -------------------------------------------------------------------------------- /src/utils/calculate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/utils/calculate.ts -------------------------------------------------------------------------------- /src/utils/claim.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/utils/claim.ts -------------------------------------------------------------------------------- /src/utils/compat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/utils/compat.ts -------------------------------------------------------------------------------- /src/utils/contractLogs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/utils/contractLogs.ts -------------------------------------------------------------------------------- /src/utils/denomination.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/utils/denomination.ts -------------------------------------------------------------------------------- /src/utils/dnssec/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/utils/dnssec/README.md -------------------------------------------------------------------------------- /src/utils/dnssec/dnssec_prover_wasm.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/utils/dnssec/dnssec_prover_wasm.d.ts -------------------------------------------------------------------------------- /src/utils/dnssec/dnssec_prover_wasm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/utils/dnssec/dnssec_prover_wasm.js -------------------------------------------------------------------------------- /src/utils/dnssec/dnssec_prover_wasm_bg.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/utils/dnssec/dnssec_prover_wasm_bg.wasm -------------------------------------------------------------------------------- /src/utils/dnssec/dnssec_prover_wasm_bg.wasm.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/utils/dnssec/dnssec_prover_wasm_bg.wasm.d.ts -------------------------------------------------------------------------------- /src/utils/dnssec/dohLookup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/utils/dnssec/dohLookup.ts -------------------------------------------------------------------------------- /src/utils/download.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/utils/download.ts -------------------------------------------------------------------------------- /src/utils/ecpair.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/utils/ecpair.ts -------------------------------------------------------------------------------- /src/utils/errors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/utils/errors.ts -------------------------------------------------------------------------------- /src/utils/fees.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/utils/fees.ts -------------------------------------------------------------------------------- /src/utils/fiat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/utils/fiat.ts -------------------------------------------------------------------------------- /src/utils/hardware/HardwareSigner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/utils/hardware/HardwareSigner.ts -------------------------------------------------------------------------------- /src/utils/hardware/LedgerSigner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/utils/hardware/LedgerSigner.ts -------------------------------------------------------------------------------- /src/utils/hardware/TrezorSigner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/utils/hardware/TrezorSigner.ts -------------------------------------------------------------------------------- /src/utils/helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/utils/helper.ts -------------------------------------------------------------------------------- /src/utils/http.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/utils/http.ts -------------------------------------------------------------------------------- /src/utils/invoice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/utils/invoice.ts -------------------------------------------------------------------------------- /src/utils/logs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/utils/logs.ts -------------------------------------------------------------------------------- /src/utils/magicRoutingHint.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/utils/magicRoutingHint.ts -------------------------------------------------------------------------------- /src/utils/migration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/utils/migration.ts -------------------------------------------------------------------------------- /src/utils/pairs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/utils/pairs.ts -------------------------------------------------------------------------------- /src/utils/patches.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/utils/patches.ts -------------------------------------------------------------------------------- /src/utils/promise.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/utils/promise.ts -------------------------------------------------------------------------------- /src/utils/provider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/utils/provider.ts -------------------------------------------------------------------------------- /src/utils/refundFile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/utils/refundFile.ts -------------------------------------------------------------------------------- /src/utils/rescue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/utils/rescue.ts -------------------------------------------------------------------------------- /src/utils/rescueFile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/utils/rescueFile.ts -------------------------------------------------------------------------------- /src/utils/rootstock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/utils/rootstock.ts -------------------------------------------------------------------------------- /src/utils/strings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/utils/strings.ts -------------------------------------------------------------------------------- /src/utils/swapCreator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/utils/swapCreator.ts -------------------------------------------------------------------------------- /src/utils/taproot/musig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/utils/taproot/musig.ts -------------------------------------------------------------------------------- /src/utils/urlParams.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/utils/urlParams.ts -------------------------------------------------------------------------------- /src/utils/validation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/utils/validation.ts -------------------------------------------------------------------------------- /src/utils/wasmSupport.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/utils/wasmSupport.ts -------------------------------------------------------------------------------- /src/utils/webln.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/utils/webln.ts -------------------------------------------------------------------------------- /src/webln-types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/src/webln-types.d.ts -------------------------------------------------------------------------------- /tests/components/Accordion.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/tests/components/Accordion.spec.tsx -------------------------------------------------------------------------------- /tests/components/AddressInput.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/tests/components/AddressInput.spec.tsx -------------------------------------------------------------------------------- /tests/components/AssetSelect.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/tests/components/AssetSelect.spec.tsx -------------------------------------------------------------------------------- /tests/components/BlockExplorer.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/tests/components/BlockExplorer.spec.tsx -------------------------------------------------------------------------------- /tests/components/BlockExplorerLink.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/tests/components/BlockExplorerLink.spec.tsx -------------------------------------------------------------------------------- /tests/components/CopyBox.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/tests/components/CopyBox.spec.tsx -------------------------------------------------------------------------------- /tests/components/CopyButton.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/tests/components/CopyButton.spec.tsx -------------------------------------------------------------------------------- /tests/components/CreateButton.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/tests/components/CreateButton.spec.tsx -------------------------------------------------------------------------------- /tests/components/Denomination.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/tests/components/Denomination.spec.tsx -------------------------------------------------------------------------------- /tests/components/FeeComparisonTable.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/tests/components/FeeComparisonTable.spec.tsx -------------------------------------------------------------------------------- /tests/components/Fees.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/tests/components/Fees.spec.tsx -------------------------------------------------------------------------------- /tests/components/InvoiceInput.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/tests/components/InvoiceInput.spec.tsx -------------------------------------------------------------------------------- /tests/components/Logs.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/tests/components/Logs.spec.tsx -------------------------------------------------------------------------------- /tests/components/MnemonicInput.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/tests/components/MnemonicInput.spec.tsx -------------------------------------------------------------------------------- /tests/components/Pagination.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/tests/components/Pagination.spec.tsx -------------------------------------------------------------------------------- /tests/components/PayOnchain.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/tests/components/PayOnchain.spec.tsx -------------------------------------------------------------------------------- /tests/components/RefundButton.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/tests/components/RefundButton.spec.tsx -------------------------------------------------------------------------------- /tests/components/Reverse.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/tests/components/Reverse.spec.tsx -------------------------------------------------------------------------------- /tests/components/SwapList.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/tests/components/SwapList.spec.tsx -------------------------------------------------------------------------------- /tests/components/WeblnButton.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/tests/components/WeblnButton.spec.tsx -------------------------------------------------------------------------------- /tests/context/Create.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/tests/context/Create.spec.tsx -------------------------------------------------------------------------------- /tests/helper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/tests/helper.tsx -------------------------------------------------------------------------------- /tests/i18n/detect.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/tests/i18n/detect.spec.ts -------------------------------------------------------------------------------- /tests/i18n/i18n.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/tests/i18n/i18n.spec.ts -------------------------------------------------------------------------------- /tests/mocks/LedgerMock.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/mocks/StylesMock.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/tests/mocks/StylesMock.tsx -------------------------------------------------------------------------------- /tests/mocks/SvgMock.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/tests/mocks/SvgMock.tsx -------------------------------------------------------------------------------- /tests/mocks/TrezorMock.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/mocks/bolt12.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/pages/BackupVerify.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/tests/pages/BackupVerify.spec.tsx -------------------------------------------------------------------------------- /tests/pages/Create.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/tests/pages/Create.spec.tsx -------------------------------------------------------------------------------- /tests/pages/Error.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/tests/pages/Error.spec.tsx -------------------------------------------------------------------------------- /tests/pages/ErrorWasm.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/tests/pages/ErrorWasm.spec.tsx -------------------------------------------------------------------------------- /tests/pages/History.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/tests/pages/History.spec.tsx -------------------------------------------------------------------------------- /tests/pages/MnemonicVerify.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/tests/pages/MnemonicVerify.spec.tsx -------------------------------------------------------------------------------- /tests/pages/Nav.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/tests/pages/Nav.spec.tsx -------------------------------------------------------------------------------- /tests/pages/Pay.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/tests/pages/Pay.spec.tsx -------------------------------------------------------------------------------- /tests/pages/RescueExternal.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/tests/pages/RescueExternal.spec.tsx -------------------------------------------------------------------------------- /tests/pairs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/tests/pairs.ts -------------------------------------------------------------------------------- /tests/setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/tests/setup.ts -------------------------------------------------------------------------------- /tests/status/TransactionClaimed.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/tests/status/TransactionClaimed.spec.tsx -------------------------------------------------------------------------------- /tests/status/TransactionLockupFailed.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/tests/status/TransactionLockupFailed.spec.tsx -------------------------------------------------------------------------------- /tests/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/tests/utils.ts -------------------------------------------------------------------------------- /tests/utils/blockchain.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/tests/utils/blockchain.spec.ts -------------------------------------------------------------------------------- /tests/utils/calculate.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/tests/utils/calculate.spec.ts -------------------------------------------------------------------------------- /tests/utils/compat.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/tests/utils/compat.spec.ts -------------------------------------------------------------------------------- /tests/utils/denomination.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/tests/utils/denomination.spec.ts -------------------------------------------------------------------------------- /tests/utils/errors.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/tests/utils/errors.spec.ts -------------------------------------------------------------------------------- /tests/utils/fees.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/tests/utils/fees.spec.ts -------------------------------------------------------------------------------- /tests/utils/fetchInvoice.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/tests/utils/fetchInvoice.spec.ts -------------------------------------------------------------------------------- /tests/utils/fiat.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/tests/utils/fiat.spec.ts -------------------------------------------------------------------------------- /tests/utils/helper.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/tests/utils/helper.spec.ts -------------------------------------------------------------------------------- /tests/utils/invoice.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/tests/utils/invoice.spec.ts -------------------------------------------------------------------------------- /tests/utils/logs.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/tests/utils/logs.spec.ts -------------------------------------------------------------------------------- /tests/utils/migration.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/tests/utils/migration.spec.ts -------------------------------------------------------------------------------- /tests/utils/pairs.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/tests/utils/pairs.spec.ts -------------------------------------------------------------------------------- /tests/utils/promise.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/tests/utils/promise.spec.ts -------------------------------------------------------------------------------- /tests/utils/refundFile.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/tests/utils/refundFile.spec.ts -------------------------------------------------------------------------------- /tests/utils/rescue.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/tests/utils/rescue.spec.ts -------------------------------------------------------------------------------- /tests/utils/rescueFile.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/tests/utils/rescueFile.spec.ts -------------------------------------------------------------------------------- /tests/utils/rootstock.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/tests/utils/rootstock.spec.ts -------------------------------------------------------------------------------- /tests/utils/validation.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/tests/utils/validation.spec.ts -------------------------------------------------------------------------------- /tests/utils/webln.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/tests/utils/webln.spec.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vite-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/vite-env.d.ts -------------------------------------------------------------------------------- /vite.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-web-app/HEAD/vite.config.mjs --------------------------------------------------------------------------------