├── .dockerignore ├── .editorconfig ├── .env ├── .env.development ├── .env.local.example ├── .env.production ├── .env.test ├── .gitattributes ├── .github ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ └── feature_request.yml ├── PULL_REQUEST_TEMPLATE.md ├── SECURITY.md └── workflows │ ├── ci_checks.yml │ ├── release_docker_image.yml │ └── release_standalone.yml ├── .gitignore ├── .swcrc ├── .yarnrc.yml ├── Dockerfile ├── LICENSE.md ├── README.md ├── docker-compose.yml ├── docs ├── README.md ├── developers.md ├── installation.md └── shareable_links.md ├── eslint.config.mjs ├── gulpfile.mjs ├── jest.config.mjs ├── lefthook.yml ├── next.config.ts ├── package.json ├── playwright.config.ts ├── postcss.config.js ├── public ├── assets │ ├── duck.svg │ ├── icon-192-maskable.png │ ├── icon-192.png │ ├── icon-512-maskable.png │ ├── icon-512.png │ ├── mstile-150x150.png │ └── silhouette-icon.svg ├── browserconfig.xml └── index.html ├── src ├── app │ ├── [lang] │ │ ├── NotFoundBody.tsx │ │ ├── [...catchAll] │ │ │ └── page.ts │ │ ├── components │ │ │ ├── BuilderSteps.test.tsx │ │ │ ├── BuilderSteps.tsx │ │ │ ├── DialogLoadingPlaceholder.tsx │ │ │ ├── Footer.tsx │ │ │ ├── JotaiProvider.tsx │ │ │ ├── NavBar │ │ │ │ ├── LanguageSelector │ │ │ │ │ ├── LanguageMenuItem.tsx │ │ │ │ │ ├── LanguageSelector.test.tsx │ │ │ │ │ ├── LanguageSelector.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── NavBar.test.tsx │ │ │ │ ├── NavBar.tsx │ │ │ │ ├── NodeSelector │ │ │ │ │ ├── CustomNodeDialogContent.tsx │ │ │ │ │ ├── NodeMenuItem.tsx │ │ │ │ │ ├── NodeSelector.test.tsx │ │ │ │ │ ├── NodeSelector.tsx │ │ │ │ │ ├── NodeSelectorButtonText.tsx │ │ │ │ │ ├── ViewConfigDialogContent.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── Settings │ │ │ │ │ ├── ConnectWallet.tsx │ │ │ │ │ ├── ConnectWalletConnected.test.tsx │ │ │ │ │ ├── ConnectWalletUnconnected.test.tsx │ │ │ │ │ ├── SettingsDialog.test.tsx │ │ │ │ │ ├── SettingsDialog.tsx │ │ │ │ │ ├── SettingsForm.tsx │ │ │ │ │ └── index.ts │ │ │ │ └── index.ts │ │ │ ├── PageLoadingPlaceholder.tsx │ │ │ ├── PageTitleHeading │ │ │ │ ├── PageTitleHeading.test.tsx │ │ │ │ ├── PageTitleHeading.tsx │ │ │ │ ├── TxnPresetBadge.tsx │ │ │ │ └── index.ts │ │ │ ├── ThemeChanger.tsx │ │ │ ├── ToastNotification.tsx │ │ │ ├── ToastProvider.tsx │ │ │ ├── ToastViewport.tsx │ │ │ ├── form │ │ │ │ ├── CheckboxField.test.tsx │ │ │ │ ├── CheckboxField.tsx │ │ │ │ ├── FieldErrorMessage.tsx │ │ │ │ ├── FieldGroup.test.tsx │ │ │ │ ├── FieldGroup.tsx │ │ │ │ ├── FieldTip.test.tsx │ │ │ │ ├── FieldTip.tsx │ │ │ │ ├── FileField.test.tsx │ │ │ │ ├── FileField.tsx │ │ │ │ ├── NumberField.test.tsx │ │ │ │ ├── NumberField.tsx │ │ │ │ ├── RadioButtonGroupField.test.tsx │ │ │ │ ├── RadioButtonGroupField.tsx │ │ │ │ ├── SelectField.test.tsx │ │ │ │ ├── SelectField.tsx │ │ │ │ ├── TextAreaField.test.tsx │ │ │ │ ├── TextAreaField.tsx │ │ │ │ ├── TextField.test.tsx │ │ │ │ ├── TextField.tsx │ │ │ │ ├── ToggleField.test.tsx │ │ │ │ ├── ToggleField.tsx │ │ │ │ ├── index.ts │ │ │ │ └── types.ts │ │ │ ├── index.ts │ │ │ └── wallet │ │ │ │ ├── MagicAuthPrompt.tsx │ │ │ │ ├── WalletDialogContent.tsx │ │ │ │ ├── WalletProvider.tsx │ │ │ │ └── index.ts │ │ ├── group │ │ │ ├── page.test.tsx │ │ │ └── page.tsx │ │ ├── layout.tsx │ │ ├── not-found.tsx │ │ ├── opengraph-image.png │ │ │ └── route.tsx │ │ ├── page.tsx │ │ ├── privacy-policy │ │ │ ├── page.test.tsx │ │ │ └── page.tsx │ │ └── txn │ │ │ ├── TxnPreset.tsx │ │ │ ├── TxnPresetsList.test.tsx │ │ │ ├── TxnPresetsList.tsx │ │ │ ├── compose │ │ │ ├── components │ │ │ │ ├── ComposeForm.test.tsx │ │ │ │ ├── ComposeForm.tsx │ │ │ │ ├── ComposeFormValidation.test.tsx │ │ │ │ ├── ComposeSubmitButton.test.tsx │ │ │ │ ├── ComposeSubmitButton.tsx │ │ │ │ ├── fields │ │ │ │ │ ├── AppCallFields │ │ │ │ │ │ ├── AppAccts.tsx │ │ │ │ │ │ ├── AppArgs.tsx │ │ │ │ │ │ ├── AppDependencies.tsx │ │ │ │ │ │ ├── AppId.tsx │ │ │ │ │ │ ├── AppProperties.tsx │ │ │ │ │ │ ├── ApprovalProg.tsx │ │ │ │ │ │ ├── Boxes.tsx │ │ │ │ │ │ ├── ClearStateProg.tsx │ │ │ │ │ │ ├── ExtraPages.tsx │ │ │ │ │ │ ├── ForeignApps.tsx │ │ │ │ │ │ ├── ForeignAssets.tsx │ │ │ │ │ │ ├── GlobalByteSlices.tsx │ │ │ │ │ │ ├── GlobalInts.tsx │ │ │ │ │ │ ├── LocalByteSlices.tsx │ │ │ │ │ │ ├── LocalInts.tsx │ │ │ │ │ │ ├── OnComplete.tsx │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── AssetConfigFields │ │ │ │ │ │ ├── AssetId.tsx │ │ │ │ │ │ ├── AssetName.tsx │ │ │ │ │ │ ├── ClawbackAddr.tsx │ │ │ │ │ │ ├── DecimalPlaces.tsx │ │ │ │ │ │ ├── DefaultFrozen.tsx │ │ │ │ │ │ ├── FreezeAddr.tsx │ │ │ │ │ │ ├── ManagerAddr.tsx │ │ │ │ │ │ ├── MetadataHash.tsx │ │ │ │ │ │ ├── ReserveAddr.tsx │ │ │ │ │ │ ├── Total.tsx │ │ │ │ │ │ ├── URL.tsx │ │ │ │ │ │ ├── UnitName.tsx │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── AssetFreezeFields │ │ │ │ │ │ ├── AssetId.tsx │ │ │ │ │ │ ├── Freeze.tsx │ │ │ │ │ │ ├── TargetAddr.tsx │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── AssetTransferFields │ │ │ │ │ │ ├── Amount.tsx │ │ │ │ │ │ ├── AssetId.tsx │ │ │ │ │ │ ├── ClawbackTarget.tsx │ │ │ │ │ │ ├── CloseTo.tsx │ │ │ │ │ │ ├── Receiver.tsx │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── GeneralFields │ │ │ │ │ │ ├── Fee.tsx │ │ │ │ │ │ ├── FirstValid.tsx │ │ │ │ │ │ ├── LastValid.tsx │ │ │ │ │ │ ├── Lease.tsx │ │ │ │ │ │ ├── Note.tsx │ │ │ │ │ │ ├── Rekey.tsx │ │ │ │ │ │ ├── Sender.tsx │ │ │ │ │ │ ├── TxnType.tsx │ │ │ │ │ │ ├── ValidRounds.tsx │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── KeyRegFields │ │ │ │ │ │ ├── FirstVoteRound.tsx │ │ │ │ │ │ ├── KeyDilution.tsx │ │ │ │ │ │ ├── LastVoteRound.tsx │ │ │ │ │ │ ├── Nonparticipation.tsx │ │ │ │ │ │ ├── SelectionKey.tsx │ │ │ │ │ │ ├── StateProofKey.tsx │ │ │ │ │ │ ├── VoteKey.tsx │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── LoadingPlaceholders │ │ │ │ │ │ ├── ArrayFieldGroup.tsx │ │ │ │ │ │ ├── ExtraSmallField.tsx │ │ │ │ │ │ ├── FullWidthField.tsx │ │ │ │ │ │ ├── LargeAreaField.tsx │ │ │ │ │ │ ├── LargeField.tsx │ │ │ │ │ │ ├── SmallField.tsx │ │ │ │ │ │ ├── SwitchField.tsx │ │ │ │ │ │ └── index.ts │ │ │ │ │ └── PaymentFields │ │ │ │ │ │ ├── Amount.tsx │ │ │ │ │ │ ├── CloseTo.tsx │ │ │ │ │ │ ├── Receiver.tsx │ │ │ │ │ │ └── index.ts │ │ │ │ └── wallet │ │ │ │ │ ├── ConnectWallet.tsx │ │ │ │ │ ├── WalletConnected.test.tsx │ │ │ │ │ ├── WalletFieldWidget.tsx │ │ │ │ │ └── WalletUnconnected.test.tsx │ │ │ ├── page.test.tsx │ │ │ └── page.tsx │ │ │ ├── page.test.tsx │ │ │ ├── page.tsx │ │ │ ├── send │ │ │ ├── components │ │ │ │ ├── SendTxn.test.tsx │ │ │ │ └── SendTxn.tsx │ │ │ ├── page.test.tsx │ │ │ └── page.tsx │ │ │ └── sign │ │ │ ├── components │ │ │ ├── NextStepButton.tsx │ │ │ ├── SignTxn.tsx │ │ │ ├── SignTxnConnected.test.tsx │ │ │ ├── SignTxnUnconnected.test.tsx │ │ │ ├── TxnDataTable.test.tsx │ │ │ ├── TxnDataTable.tsx │ │ │ ├── TxnImport.test.tsx │ │ │ └── TxnImport.tsx │ │ │ ├── page.test.tsx │ │ │ └── page.tsx │ ├── apple-icon.png │ ├── favicon.ico │ ├── globals.css │ ├── i18n │ │ ├── client.ts │ │ ├── index.ts │ │ ├── locales │ │ │ ├── en │ │ │ │ ├── app.yml │ │ │ │ ├── common.yml │ │ │ │ ├── compose_txn.yml │ │ │ │ ├── grp_presets.yml │ │ │ │ ├── home.yml │ │ │ │ ├── privacy_policy.yml │ │ │ │ ├── send_txn.yml │ │ │ │ ├── sign_txn.yml │ │ │ │ └── txn_presets.yml │ │ │ └── es │ │ │ │ ├── app.yml │ │ │ │ ├── common.yml │ │ │ │ ├── compose_txn.yml │ │ │ │ ├── grp_presets.yml │ │ │ │ ├── home.yml │ │ │ │ ├── privacy_policy.yml │ │ │ │ ├── send_txn.yml │ │ │ │ ├── sign_txn.yml │ │ │ │ └── txn_presets.yml │ │ └── settings.ts │ ├── icon.svg │ ├── layout.tsx │ ├── lib │ │ ├── app-settings.ts │ │ ├── fonts.ts │ │ ├── node-config.ts │ │ ├── testing │ │ │ ├── duck_poem.txt │ │ │ ├── i18nextClientMock.ts │ │ │ ├── test_compiled.teal │ │ │ ├── test_signed.txn.msgpack │ │ │ ├── test_unsigned.txn.msgpack │ │ │ ├── textcoderPolyfill.js │ │ │ └── useWalletMock.ts │ │ ├── txn-data │ │ │ ├── atoms.ts │ │ │ ├── constants.ts │ │ │ ├── data-utils.ts │ │ │ ├── field-validation.ts │ │ │ ├── form-validation.ts │ │ │ ├── index.ts │ │ │ ├── processor.test.ts │ │ │ ├── processor.ts │ │ │ ├── stored.ts │ │ │ ├── types.ts │ │ │ └── validation-rules.ts │ │ ├── utils.test.ts │ │ ├── utils.ts │ │ ├── validation-set-locale.ts │ │ └── wallet-utils.ts │ └── robots.ts ├── e2e │ ├── compose_txn.spec.ts │ ├── compose_txn_settings.spec.ts │ ├── flow_single_txn.spec.ts │ ├── flow_wallet_connection_sync.spec.ts │ ├── home.spec.ts │ ├── not_found.spec.ts │ ├── pageModels │ │ ├── ComposeTxnPage.ts │ │ ├── HomePage.ts │ │ ├── NotFoundPage.ts │ │ ├── PrivacyPolicyPage.ts │ │ ├── SendTxnPage.ts │ │ ├── SignTxnPage.ts │ │ ├── TxnPresetsPage.ts │ │ └── index.ts │ ├── privacy_policy.spec.ts │ ├── send_txn.spec.ts │ ├── shared │ │ ├── AlgodMockResponses.ts │ │ ├── LanguageSupport.ts │ │ ├── NavBarComponent.ts │ │ └── index.ts │ ├── sign_txn.spec.ts │ └── txn_presets.spec.ts └── proxy.ts ├── tsconfig.json └── yarn.lock /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/.dockerignore -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/.env -------------------------------------------------------------------------------- /.env.development: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/.env.development -------------------------------------------------------------------------------- /.env.local.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/.env.local.example -------------------------------------------------------------------------------- /.env.production: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/.env.production -------------------------------------------------------------------------------- /.env.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/.env.test -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/.github/ISSUE_TEMPLATE/feature_request.yml -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/.github/SECURITY.md -------------------------------------------------------------------------------- /.github/workflows/ci_checks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/.github/workflows/ci_checks.yml -------------------------------------------------------------------------------- /.github/workflows/release_docker_image.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/.github/workflows/release_docker_image.yml -------------------------------------------------------------------------------- /.github/workflows/release_standalone.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/.github/workflows/release_standalone.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/.gitignore -------------------------------------------------------------------------------- /.swcrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/.swcrc -------------------------------------------------------------------------------- /.yarnrc.yml: -------------------------------------------------------------------------------- 1 | nodeLinker: node-modules 2 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/README.md -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/developers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/docs/developers.md -------------------------------------------------------------------------------- /docs/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/docs/installation.md -------------------------------------------------------------------------------- /docs/shareable_links.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/docs/shareable_links.md -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/eslint.config.mjs -------------------------------------------------------------------------------- /gulpfile.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/gulpfile.mjs -------------------------------------------------------------------------------- /jest.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/jest.config.mjs -------------------------------------------------------------------------------- /lefthook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/lefthook.yml -------------------------------------------------------------------------------- /next.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/next.config.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/package.json -------------------------------------------------------------------------------- /playwright.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/playwright.config.ts -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/assets/duck.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/public/assets/duck.svg -------------------------------------------------------------------------------- /public/assets/icon-192-maskable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/public/assets/icon-192-maskable.png -------------------------------------------------------------------------------- /public/assets/icon-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/public/assets/icon-192.png -------------------------------------------------------------------------------- /public/assets/icon-512-maskable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/public/assets/icon-512-maskable.png -------------------------------------------------------------------------------- /public/assets/icon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/public/assets/icon-512.png -------------------------------------------------------------------------------- /public/assets/mstile-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/public/assets/mstile-150x150.png -------------------------------------------------------------------------------- /public/assets/silhouette-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/public/assets/silhouette-icon.svg -------------------------------------------------------------------------------- /public/browserconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/public/browserconfig.xml -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/public/index.html -------------------------------------------------------------------------------- /src/app/[lang]/NotFoundBody.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/[lang]/NotFoundBody.tsx -------------------------------------------------------------------------------- /src/app/[lang]/[...catchAll]/page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/[lang]/[...catchAll]/page.ts -------------------------------------------------------------------------------- /src/app/[lang]/components/BuilderSteps.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/[lang]/components/BuilderSteps.test.tsx -------------------------------------------------------------------------------- /src/app/[lang]/components/BuilderSteps.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/[lang]/components/BuilderSteps.tsx -------------------------------------------------------------------------------- /src/app/[lang]/components/DialogLoadingPlaceholder.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/[lang]/components/DialogLoadingPlaceholder.tsx -------------------------------------------------------------------------------- /src/app/[lang]/components/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/[lang]/components/Footer.tsx -------------------------------------------------------------------------------- /src/app/[lang]/components/JotaiProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/[lang]/components/JotaiProvider.tsx -------------------------------------------------------------------------------- /src/app/[lang]/components/NavBar/LanguageSelector/LanguageMenuItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/[lang]/components/NavBar/LanguageSelector/LanguageMenuItem.tsx -------------------------------------------------------------------------------- /src/app/[lang]/components/NavBar/LanguageSelector/LanguageSelector.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/[lang]/components/NavBar/LanguageSelector/LanguageSelector.test.tsx -------------------------------------------------------------------------------- /src/app/[lang]/components/NavBar/LanguageSelector/LanguageSelector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/[lang]/components/NavBar/LanguageSelector/LanguageSelector.tsx -------------------------------------------------------------------------------- /src/app/[lang]/components/NavBar/LanguageSelector/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/[lang]/components/NavBar/LanguageSelector/index.ts -------------------------------------------------------------------------------- /src/app/[lang]/components/NavBar/NavBar.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/[lang]/components/NavBar/NavBar.test.tsx -------------------------------------------------------------------------------- /src/app/[lang]/components/NavBar/NavBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/[lang]/components/NavBar/NavBar.tsx -------------------------------------------------------------------------------- /src/app/[lang]/components/NavBar/NodeSelector/CustomNodeDialogContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/[lang]/components/NavBar/NodeSelector/CustomNodeDialogContent.tsx -------------------------------------------------------------------------------- /src/app/[lang]/components/NavBar/NodeSelector/NodeMenuItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/[lang]/components/NavBar/NodeSelector/NodeMenuItem.tsx -------------------------------------------------------------------------------- /src/app/[lang]/components/NavBar/NodeSelector/NodeSelector.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/[lang]/components/NavBar/NodeSelector/NodeSelector.test.tsx -------------------------------------------------------------------------------- /src/app/[lang]/components/NavBar/NodeSelector/NodeSelector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/[lang]/components/NavBar/NodeSelector/NodeSelector.tsx -------------------------------------------------------------------------------- /src/app/[lang]/components/NavBar/NodeSelector/NodeSelectorButtonText.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/[lang]/components/NavBar/NodeSelector/NodeSelectorButtonText.tsx -------------------------------------------------------------------------------- /src/app/[lang]/components/NavBar/NodeSelector/ViewConfigDialogContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/[lang]/components/NavBar/NodeSelector/ViewConfigDialogContent.tsx -------------------------------------------------------------------------------- /src/app/[lang]/components/NavBar/NodeSelector/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/[lang]/components/NavBar/NodeSelector/index.ts -------------------------------------------------------------------------------- /src/app/[lang]/components/NavBar/Settings/ConnectWallet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/[lang]/components/NavBar/Settings/ConnectWallet.tsx -------------------------------------------------------------------------------- /src/app/[lang]/components/NavBar/Settings/ConnectWalletConnected.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/[lang]/components/NavBar/Settings/ConnectWalletConnected.test.tsx -------------------------------------------------------------------------------- /src/app/[lang]/components/NavBar/Settings/ConnectWalletUnconnected.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/[lang]/components/NavBar/Settings/ConnectWalletUnconnected.test.tsx -------------------------------------------------------------------------------- /src/app/[lang]/components/NavBar/Settings/SettingsDialog.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/[lang]/components/NavBar/Settings/SettingsDialog.test.tsx -------------------------------------------------------------------------------- /src/app/[lang]/components/NavBar/Settings/SettingsDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/[lang]/components/NavBar/Settings/SettingsDialog.tsx -------------------------------------------------------------------------------- /src/app/[lang]/components/NavBar/Settings/SettingsForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/[lang]/components/NavBar/Settings/SettingsForm.tsx -------------------------------------------------------------------------------- /src/app/[lang]/components/NavBar/Settings/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/[lang]/components/NavBar/Settings/index.ts -------------------------------------------------------------------------------- /src/app/[lang]/components/NavBar/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/[lang]/components/NavBar/index.ts -------------------------------------------------------------------------------- /src/app/[lang]/components/PageLoadingPlaceholder.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/[lang]/components/PageLoadingPlaceholder.tsx -------------------------------------------------------------------------------- /src/app/[lang]/components/PageTitleHeading/PageTitleHeading.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/[lang]/components/PageTitleHeading/PageTitleHeading.test.tsx -------------------------------------------------------------------------------- /src/app/[lang]/components/PageTitleHeading/PageTitleHeading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/[lang]/components/PageTitleHeading/PageTitleHeading.tsx -------------------------------------------------------------------------------- /src/app/[lang]/components/PageTitleHeading/TxnPresetBadge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/[lang]/components/PageTitleHeading/TxnPresetBadge.tsx -------------------------------------------------------------------------------- /src/app/[lang]/components/PageTitleHeading/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/[lang]/components/PageTitleHeading/index.ts -------------------------------------------------------------------------------- /src/app/[lang]/components/ThemeChanger.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/[lang]/components/ThemeChanger.tsx -------------------------------------------------------------------------------- /src/app/[lang]/components/ToastNotification.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/[lang]/components/ToastNotification.tsx -------------------------------------------------------------------------------- /src/app/[lang]/components/ToastProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/[lang]/components/ToastProvider.tsx -------------------------------------------------------------------------------- /src/app/[lang]/components/ToastViewport.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/[lang]/components/ToastViewport.tsx -------------------------------------------------------------------------------- /src/app/[lang]/components/form/CheckboxField.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/[lang]/components/form/CheckboxField.test.tsx -------------------------------------------------------------------------------- /src/app/[lang]/components/form/CheckboxField.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/[lang]/components/form/CheckboxField.tsx -------------------------------------------------------------------------------- /src/app/[lang]/components/form/FieldErrorMessage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/[lang]/components/form/FieldErrorMessage.tsx -------------------------------------------------------------------------------- /src/app/[lang]/components/form/FieldGroup.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/[lang]/components/form/FieldGroup.test.tsx -------------------------------------------------------------------------------- /src/app/[lang]/components/form/FieldGroup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/[lang]/components/form/FieldGroup.tsx -------------------------------------------------------------------------------- /src/app/[lang]/components/form/FieldTip.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/[lang]/components/form/FieldTip.test.tsx -------------------------------------------------------------------------------- /src/app/[lang]/components/form/FieldTip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/[lang]/components/form/FieldTip.tsx -------------------------------------------------------------------------------- /src/app/[lang]/components/form/FileField.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/[lang]/components/form/FileField.test.tsx -------------------------------------------------------------------------------- /src/app/[lang]/components/form/FileField.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/[lang]/components/form/FileField.tsx -------------------------------------------------------------------------------- /src/app/[lang]/components/form/NumberField.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/[lang]/components/form/NumberField.test.tsx -------------------------------------------------------------------------------- /src/app/[lang]/components/form/NumberField.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/[lang]/components/form/NumberField.tsx -------------------------------------------------------------------------------- /src/app/[lang]/components/form/RadioButtonGroupField.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/[lang]/components/form/RadioButtonGroupField.test.tsx -------------------------------------------------------------------------------- /src/app/[lang]/components/form/RadioButtonGroupField.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/[lang]/components/form/RadioButtonGroupField.tsx -------------------------------------------------------------------------------- /src/app/[lang]/components/form/SelectField.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/[lang]/components/form/SelectField.test.tsx -------------------------------------------------------------------------------- /src/app/[lang]/components/form/SelectField.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/[lang]/components/form/SelectField.tsx -------------------------------------------------------------------------------- /src/app/[lang]/components/form/TextAreaField.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/[lang]/components/form/TextAreaField.test.tsx -------------------------------------------------------------------------------- /src/app/[lang]/components/form/TextAreaField.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/[lang]/components/form/TextAreaField.tsx -------------------------------------------------------------------------------- /src/app/[lang]/components/form/TextField.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/[lang]/components/form/TextField.test.tsx -------------------------------------------------------------------------------- /src/app/[lang]/components/form/TextField.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/[lang]/components/form/TextField.tsx -------------------------------------------------------------------------------- /src/app/[lang]/components/form/ToggleField.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/[lang]/components/form/ToggleField.test.tsx -------------------------------------------------------------------------------- /src/app/[lang]/components/form/ToggleField.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/[lang]/components/form/ToggleField.tsx -------------------------------------------------------------------------------- /src/app/[lang]/components/form/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/[lang]/components/form/index.ts -------------------------------------------------------------------------------- /src/app/[lang]/components/form/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/[lang]/components/form/types.ts -------------------------------------------------------------------------------- /src/app/[lang]/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/[lang]/components/index.ts -------------------------------------------------------------------------------- /src/app/[lang]/components/wallet/MagicAuthPrompt.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/[lang]/components/wallet/MagicAuthPrompt.tsx -------------------------------------------------------------------------------- /src/app/[lang]/components/wallet/WalletDialogContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/[lang]/components/wallet/WalletDialogContent.tsx -------------------------------------------------------------------------------- /src/app/[lang]/components/wallet/WalletProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/[lang]/components/wallet/WalletProvider.tsx -------------------------------------------------------------------------------- /src/app/[lang]/components/wallet/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/[lang]/components/wallet/index.ts -------------------------------------------------------------------------------- /src/app/[lang]/group/page.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/[lang]/group/page.test.tsx -------------------------------------------------------------------------------- /src/app/[lang]/group/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/[lang]/group/page.tsx -------------------------------------------------------------------------------- /src/app/[lang]/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/[lang]/layout.tsx -------------------------------------------------------------------------------- /src/app/[lang]/not-found.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/[lang]/not-found.tsx -------------------------------------------------------------------------------- /src/app/[lang]/opengraph-image.png/route.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/[lang]/opengraph-image.png/route.tsx -------------------------------------------------------------------------------- /src/app/[lang]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/[lang]/page.tsx -------------------------------------------------------------------------------- /src/app/[lang]/privacy-policy/page.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/[lang]/privacy-policy/page.test.tsx -------------------------------------------------------------------------------- /src/app/[lang]/privacy-policy/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/[lang]/privacy-policy/page.tsx -------------------------------------------------------------------------------- /src/app/[lang]/txn/TxnPreset.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/[lang]/txn/TxnPreset.tsx -------------------------------------------------------------------------------- /src/app/[lang]/txn/TxnPresetsList.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/[lang]/txn/TxnPresetsList.test.tsx -------------------------------------------------------------------------------- /src/app/[lang]/txn/TxnPresetsList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/[lang]/txn/TxnPresetsList.tsx -------------------------------------------------------------------------------- /src/app/[lang]/txn/compose/components/ComposeForm.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/[lang]/txn/compose/components/ComposeForm.test.tsx -------------------------------------------------------------------------------- /src/app/[lang]/txn/compose/components/ComposeForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/[lang]/txn/compose/components/ComposeForm.tsx -------------------------------------------------------------------------------- /src/app/[lang]/txn/compose/components/ComposeFormValidation.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/[lang]/txn/compose/components/ComposeFormValidation.test.tsx -------------------------------------------------------------------------------- /src/app/[lang]/txn/compose/components/ComposeSubmitButton.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/[lang]/txn/compose/components/ComposeSubmitButton.test.tsx -------------------------------------------------------------------------------- /src/app/[lang]/txn/compose/components/ComposeSubmitButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/[lang]/txn/compose/components/ComposeSubmitButton.tsx -------------------------------------------------------------------------------- /src/app/[lang]/txn/compose/components/fields/AppCallFields/AppAccts.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/[lang]/txn/compose/components/fields/AppCallFields/AppAccts.tsx -------------------------------------------------------------------------------- /src/app/[lang]/txn/compose/components/fields/AppCallFields/AppArgs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/[lang]/txn/compose/components/fields/AppCallFields/AppArgs.tsx -------------------------------------------------------------------------------- /src/app/[lang]/txn/compose/components/fields/AppCallFields/AppDependencies.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/[lang]/txn/compose/components/fields/AppCallFields/AppDependencies.tsx -------------------------------------------------------------------------------- /src/app/[lang]/txn/compose/components/fields/AppCallFields/AppId.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/[lang]/txn/compose/components/fields/AppCallFields/AppId.tsx -------------------------------------------------------------------------------- /src/app/[lang]/txn/compose/components/fields/AppCallFields/AppProperties.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/[lang]/txn/compose/components/fields/AppCallFields/AppProperties.tsx -------------------------------------------------------------------------------- /src/app/[lang]/txn/compose/components/fields/AppCallFields/ApprovalProg.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/[lang]/txn/compose/components/fields/AppCallFields/ApprovalProg.tsx -------------------------------------------------------------------------------- /src/app/[lang]/txn/compose/components/fields/AppCallFields/Boxes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/[lang]/txn/compose/components/fields/AppCallFields/Boxes.tsx -------------------------------------------------------------------------------- /src/app/[lang]/txn/compose/components/fields/AppCallFields/ClearStateProg.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/[lang]/txn/compose/components/fields/AppCallFields/ClearStateProg.tsx -------------------------------------------------------------------------------- /src/app/[lang]/txn/compose/components/fields/AppCallFields/ExtraPages.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/[lang]/txn/compose/components/fields/AppCallFields/ExtraPages.tsx -------------------------------------------------------------------------------- /src/app/[lang]/txn/compose/components/fields/AppCallFields/ForeignApps.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/[lang]/txn/compose/components/fields/AppCallFields/ForeignApps.tsx -------------------------------------------------------------------------------- /src/app/[lang]/txn/compose/components/fields/AppCallFields/ForeignAssets.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/[lang]/txn/compose/components/fields/AppCallFields/ForeignAssets.tsx -------------------------------------------------------------------------------- /src/app/[lang]/txn/compose/components/fields/AppCallFields/GlobalByteSlices.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/[lang]/txn/compose/components/fields/AppCallFields/GlobalByteSlices.tsx -------------------------------------------------------------------------------- /src/app/[lang]/txn/compose/components/fields/AppCallFields/GlobalInts.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/[lang]/txn/compose/components/fields/AppCallFields/GlobalInts.tsx -------------------------------------------------------------------------------- /src/app/[lang]/txn/compose/components/fields/AppCallFields/LocalByteSlices.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/[lang]/txn/compose/components/fields/AppCallFields/LocalByteSlices.tsx -------------------------------------------------------------------------------- /src/app/[lang]/txn/compose/components/fields/AppCallFields/LocalInts.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/[lang]/txn/compose/components/fields/AppCallFields/LocalInts.tsx -------------------------------------------------------------------------------- /src/app/[lang]/txn/compose/components/fields/AppCallFields/OnComplete.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/[lang]/txn/compose/components/fields/AppCallFields/OnComplete.tsx -------------------------------------------------------------------------------- /src/app/[lang]/txn/compose/components/fields/AppCallFields/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/[lang]/txn/compose/components/fields/AppCallFields/index.ts -------------------------------------------------------------------------------- /src/app/[lang]/txn/compose/components/fields/AssetConfigFields/AssetId.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/[lang]/txn/compose/components/fields/AssetConfigFields/AssetId.tsx -------------------------------------------------------------------------------- /src/app/[lang]/txn/compose/components/fields/AssetConfigFields/AssetName.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/[lang]/txn/compose/components/fields/AssetConfigFields/AssetName.tsx -------------------------------------------------------------------------------- /src/app/[lang]/txn/compose/components/fields/AssetConfigFields/ClawbackAddr.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/[lang]/txn/compose/components/fields/AssetConfigFields/ClawbackAddr.tsx -------------------------------------------------------------------------------- /src/app/[lang]/txn/compose/components/fields/AssetConfigFields/DecimalPlaces.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/[lang]/txn/compose/components/fields/AssetConfigFields/DecimalPlaces.tsx -------------------------------------------------------------------------------- /src/app/[lang]/txn/compose/components/fields/AssetConfigFields/DefaultFrozen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/[lang]/txn/compose/components/fields/AssetConfigFields/DefaultFrozen.tsx -------------------------------------------------------------------------------- /src/app/[lang]/txn/compose/components/fields/AssetConfigFields/FreezeAddr.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/[lang]/txn/compose/components/fields/AssetConfigFields/FreezeAddr.tsx -------------------------------------------------------------------------------- /src/app/[lang]/txn/compose/components/fields/AssetConfigFields/ManagerAddr.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/[lang]/txn/compose/components/fields/AssetConfigFields/ManagerAddr.tsx -------------------------------------------------------------------------------- /src/app/[lang]/txn/compose/components/fields/AssetConfigFields/MetadataHash.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/[lang]/txn/compose/components/fields/AssetConfigFields/MetadataHash.tsx -------------------------------------------------------------------------------- /src/app/[lang]/txn/compose/components/fields/AssetConfigFields/ReserveAddr.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/[lang]/txn/compose/components/fields/AssetConfigFields/ReserveAddr.tsx -------------------------------------------------------------------------------- /src/app/[lang]/txn/compose/components/fields/AssetConfigFields/Total.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/[lang]/txn/compose/components/fields/AssetConfigFields/Total.tsx -------------------------------------------------------------------------------- /src/app/[lang]/txn/compose/components/fields/AssetConfigFields/URL.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/[lang]/txn/compose/components/fields/AssetConfigFields/URL.tsx -------------------------------------------------------------------------------- /src/app/[lang]/txn/compose/components/fields/AssetConfigFields/UnitName.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/[lang]/txn/compose/components/fields/AssetConfigFields/UnitName.tsx -------------------------------------------------------------------------------- /src/app/[lang]/txn/compose/components/fields/AssetConfigFields/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/[lang]/txn/compose/components/fields/AssetConfigFields/index.ts -------------------------------------------------------------------------------- /src/app/[lang]/txn/compose/components/fields/AssetFreezeFields/AssetId.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/[lang]/txn/compose/components/fields/AssetFreezeFields/AssetId.tsx -------------------------------------------------------------------------------- /src/app/[lang]/txn/compose/components/fields/AssetFreezeFields/Freeze.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/[lang]/txn/compose/components/fields/AssetFreezeFields/Freeze.tsx -------------------------------------------------------------------------------- /src/app/[lang]/txn/compose/components/fields/AssetFreezeFields/TargetAddr.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/[lang]/txn/compose/components/fields/AssetFreezeFields/TargetAddr.tsx -------------------------------------------------------------------------------- /src/app/[lang]/txn/compose/components/fields/AssetFreezeFields/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/[lang]/txn/compose/components/fields/AssetFreezeFields/index.ts -------------------------------------------------------------------------------- /src/app/[lang]/txn/compose/components/fields/AssetTransferFields/Amount.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/[lang]/txn/compose/components/fields/AssetTransferFields/Amount.tsx -------------------------------------------------------------------------------- /src/app/[lang]/txn/compose/components/fields/AssetTransferFields/AssetId.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/[lang]/txn/compose/components/fields/AssetTransferFields/AssetId.tsx -------------------------------------------------------------------------------- /src/app/[lang]/txn/compose/components/fields/AssetTransferFields/ClawbackTarget.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/[lang]/txn/compose/components/fields/AssetTransferFields/ClawbackTarget.tsx -------------------------------------------------------------------------------- /src/app/[lang]/txn/compose/components/fields/AssetTransferFields/CloseTo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/[lang]/txn/compose/components/fields/AssetTransferFields/CloseTo.tsx -------------------------------------------------------------------------------- /src/app/[lang]/txn/compose/components/fields/AssetTransferFields/Receiver.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/[lang]/txn/compose/components/fields/AssetTransferFields/Receiver.tsx -------------------------------------------------------------------------------- /src/app/[lang]/txn/compose/components/fields/AssetTransferFields/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/[lang]/txn/compose/components/fields/AssetTransferFields/index.ts -------------------------------------------------------------------------------- /src/app/[lang]/txn/compose/components/fields/GeneralFields/Fee.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/[lang]/txn/compose/components/fields/GeneralFields/Fee.tsx -------------------------------------------------------------------------------- /src/app/[lang]/txn/compose/components/fields/GeneralFields/FirstValid.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/[lang]/txn/compose/components/fields/GeneralFields/FirstValid.tsx -------------------------------------------------------------------------------- /src/app/[lang]/txn/compose/components/fields/GeneralFields/LastValid.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/[lang]/txn/compose/components/fields/GeneralFields/LastValid.tsx -------------------------------------------------------------------------------- /src/app/[lang]/txn/compose/components/fields/GeneralFields/Lease.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/[lang]/txn/compose/components/fields/GeneralFields/Lease.tsx -------------------------------------------------------------------------------- /src/app/[lang]/txn/compose/components/fields/GeneralFields/Note.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/[lang]/txn/compose/components/fields/GeneralFields/Note.tsx -------------------------------------------------------------------------------- /src/app/[lang]/txn/compose/components/fields/GeneralFields/Rekey.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/[lang]/txn/compose/components/fields/GeneralFields/Rekey.tsx -------------------------------------------------------------------------------- /src/app/[lang]/txn/compose/components/fields/GeneralFields/Sender.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/[lang]/txn/compose/components/fields/GeneralFields/Sender.tsx -------------------------------------------------------------------------------- /src/app/[lang]/txn/compose/components/fields/GeneralFields/TxnType.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/[lang]/txn/compose/components/fields/GeneralFields/TxnType.tsx -------------------------------------------------------------------------------- /src/app/[lang]/txn/compose/components/fields/GeneralFields/ValidRounds.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/[lang]/txn/compose/components/fields/GeneralFields/ValidRounds.tsx -------------------------------------------------------------------------------- /src/app/[lang]/txn/compose/components/fields/GeneralFields/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/[lang]/txn/compose/components/fields/GeneralFields/index.ts -------------------------------------------------------------------------------- /src/app/[lang]/txn/compose/components/fields/KeyRegFields/FirstVoteRound.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/[lang]/txn/compose/components/fields/KeyRegFields/FirstVoteRound.tsx -------------------------------------------------------------------------------- /src/app/[lang]/txn/compose/components/fields/KeyRegFields/KeyDilution.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/[lang]/txn/compose/components/fields/KeyRegFields/KeyDilution.tsx -------------------------------------------------------------------------------- /src/app/[lang]/txn/compose/components/fields/KeyRegFields/LastVoteRound.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/[lang]/txn/compose/components/fields/KeyRegFields/LastVoteRound.tsx -------------------------------------------------------------------------------- /src/app/[lang]/txn/compose/components/fields/KeyRegFields/Nonparticipation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/[lang]/txn/compose/components/fields/KeyRegFields/Nonparticipation.tsx -------------------------------------------------------------------------------- /src/app/[lang]/txn/compose/components/fields/KeyRegFields/SelectionKey.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/[lang]/txn/compose/components/fields/KeyRegFields/SelectionKey.tsx -------------------------------------------------------------------------------- /src/app/[lang]/txn/compose/components/fields/KeyRegFields/StateProofKey.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/[lang]/txn/compose/components/fields/KeyRegFields/StateProofKey.tsx -------------------------------------------------------------------------------- /src/app/[lang]/txn/compose/components/fields/KeyRegFields/VoteKey.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/[lang]/txn/compose/components/fields/KeyRegFields/VoteKey.tsx -------------------------------------------------------------------------------- /src/app/[lang]/txn/compose/components/fields/KeyRegFields/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/[lang]/txn/compose/components/fields/KeyRegFields/index.ts -------------------------------------------------------------------------------- /src/app/[lang]/txn/compose/components/fields/LoadingPlaceholders/ArrayFieldGroup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/[lang]/txn/compose/components/fields/LoadingPlaceholders/ArrayFieldGroup.tsx -------------------------------------------------------------------------------- /src/app/[lang]/txn/compose/components/fields/LoadingPlaceholders/ExtraSmallField.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/[lang]/txn/compose/components/fields/LoadingPlaceholders/ExtraSmallField.tsx -------------------------------------------------------------------------------- /src/app/[lang]/txn/compose/components/fields/LoadingPlaceholders/FullWidthField.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/[lang]/txn/compose/components/fields/LoadingPlaceholders/FullWidthField.tsx -------------------------------------------------------------------------------- /src/app/[lang]/txn/compose/components/fields/LoadingPlaceholders/LargeAreaField.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/[lang]/txn/compose/components/fields/LoadingPlaceholders/LargeAreaField.tsx -------------------------------------------------------------------------------- /src/app/[lang]/txn/compose/components/fields/LoadingPlaceholders/LargeField.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/[lang]/txn/compose/components/fields/LoadingPlaceholders/LargeField.tsx -------------------------------------------------------------------------------- /src/app/[lang]/txn/compose/components/fields/LoadingPlaceholders/SmallField.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/[lang]/txn/compose/components/fields/LoadingPlaceholders/SmallField.tsx -------------------------------------------------------------------------------- /src/app/[lang]/txn/compose/components/fields/LoadingPlaceholders/SwitchField.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/[lang]/txn/compose/components/fields/LoadingPlaceholders/SwitchField.tsx -------------------------------------------------------------------------------- /src/app/[lang]/txn/compose/components/fields/LoadingPlaceholders/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/[lang]/txn/compose/components/fields/LoadingPlaceholders/index.ts -------------------------------------------------------------------------------- /src/app/[lang]/txn/compose/components/fields/PaymentFields/Amount.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/[lang]/txn/compose/components/fields/PaymentFields/Amount.tsx -------------------------------------------------------------------------------- /src/app/[lang]/txn/compose/components/fields/PaymentFields/CloseTo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/[lang]/txn/compose/components/fields/PaymentFields/CloseTo.tsx -------------------------------------------------------------------------------- /src/app/[lang]/txn/compose/components/fields/PaymentFields/Receiver.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/[lang]/txn/compose/components/fields/PaymentFields/Receiver.tsx -------------------------------------------------------------------------------- /src/app/[lang]/txn/compose/components/fields/PaymentFields/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/[lang]/txn/compose/components/fields/PaymentFields/index.ts -------------------------------------------------------------------------------- /src/app/[lang]/txn/compose/components/wallet/ConnectWallet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/[lang]/txn/compose/components/wallet/ConnectWallet.tsx -------------------------------------------------------------------------------- /src/app/[lang]/txn/compose/components/wallet/WalletConnected.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/[lang]/txn/compose/components/wallet/WalletConnected.test.tsx -------------------------------------------------------------------------------- /src/app/[lang]/txn/compose/components/wallet/WalletFieldWidget.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/[lang]/txn/compose/components/wallet/WalletFieldWidget.tsx -------------------------------------------------------------------------------- /src/app/[lang]/txn/compose/components/wallet/WalletUnconnected.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/[lang]/txn/compose/components/wallet/WalletUnconnected.test.tsx -------------------------------------------------------------------------------- /src/app/[lang]/txn/compose/page.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/[lang]/txn/compose/page.test.tsx -------------------------------------------------------------------------------- /src/app/[lang]/txn/compose/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/[lang]/txn/compose/page.tsx -------------------------------------------------------------------------------- /src/app/[lang]/txn/page.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/[lang]/txn/page.test.tsx -------------------------------------------------------------------------------- /src/app/[lang]/txn/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/[lang]/txn/page.tsx -------------------------------------------------------------------------------- /src/app/[lang]/txn/send/components/SendTxn.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/[lang]/txn/send/components/SendTxn.test.tsx -------------------------------------------------------------------------------- /src/app/[lang]/txn/send/components/SendTxn.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/[lang]/txn/send/components/SendTxn.tsx -------------------------------------------------------------------------------- /src/app/[lang]/txn/send/page.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/[lang]/txn/send/page.test.tsx -------------------------------------------------------------------------------- /src/app/[lang]/txn/send/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/[lang]/txn/send/page.tsx -------------------------------------------------------------------------------- /src/app/[lang]/txn/sign/components/NextStepButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/[lang]/txn/sign/components/NextStepButton.tsx -------------------------------------------------------------------------------- /src/app/[lang]/txn/sign/components/SignTxn.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/[lang]/txn/sign/components/SignTxn.tsx -------------------------------------------------------------------------------- /src/app/[lang]/txn/sign/components/SignTxnConnected.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/[lang]/txn/sign/components/SignTxnConnected.test.tsx -------------------------------------------------------------------------------- /src/app/[lang]/txn/sign/components/SignTxnUnconnected.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/[lang]/txn/sign/components/SignTxnUnconnected.test.tsx -------------------------------------------------------------------------------- /src/app/[lang]/txn/sign/components/TxnDataTable.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/[lang]/txn/sign/components/TxnDataTable.test.tsx -------------------------------------------------------------------------------- /src/app/[lang]/txn/sign/components/TxnDataTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/[lang]/txn/sign/components/TxnDataTable.tsx -------------------------------------------------------------------------------- /src/app/[lang]/txn/sign/components/TxnImport.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/[lang]/txn/sign/components/TxnImport.test.tsx -------------------------------------------------------------------------------- /src/app/[lang]/txn/sign/components/TxnImport.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/[lang]/txn/sign/components/TxnImport.tsx -------------------------------------------------------------------------------- /src/app/[lang]/txn/sign/page.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/[lang]/txn/sign/page.test.tsx -------------------------------------------------------------------------------- /src/app/[lang]/txn/sign/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/[lang]/txn/sign/page.tsx -------------------------------------------------------------------------------- /src/app/apple-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/apple-icon.png -------------------------------------------------------------------------------- /src/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/favicon.ico -------------------------------------------------------------------------------- /src/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/globals.css -------------------------------------------------------------------------------- /src/app/i18n/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/i18n/client.ts -------------------------------------------------------------------------------- /src/app/i18n/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/i18n/index.ts -------------------------------------------------------------------------------- /src/app/i18n/locales/en/app.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/i18n/locales/en/app.yml -------------------------------------------------------------------------------- /src/app/i18n/locales/en/common.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/i18n/locales/en/common.yml -------------------------------------------------------------------------------- /src/app/i18n/locales/en/compose_txn.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/i18n/locales/en/compose_txn.yml -------------------------------------------------------------------------------- /src/app/i18n/locales/en/grp_presets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/i18n/locales/en/grp_presets.yml -------------------------------------------------------------------------------- /src/app/i18n/locales/en/home.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/i18n/locales/en/home.yml -------------------------------------------------------------------------------- /src/app/i18n/locales/en/privacy_policy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/i18n/locales/en/privacy_policy.yml -------------------------------------------------------------------------------- /src/app/i18n/locales/en/send_txn.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/i18n/locales/en/send_txn.yml -------------------------------------------------------------------------------- /src/app/i18n/locales/en/sign_txn.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/i18n/locales/en/sign_txn.yml -------------------------------------------------------------------------------- /src/app/i18n/locales/en/txn_presets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/i18n/locales/en/txn_presets.yml -------------------------------------------------------------------------------- /src/app/i18n/locales/es/app.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/i18n/locales/es/app.yml -------------------------------------------------------------------------------- /src/app/i18n/locales/es/common.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/i18n/locales/es/common.yml -------------------------------------------------------------------------------- /src/app/i18n/locales/es/compose_txn.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/i18n/locales/es/compose_txn.yml -------------------------------------------------------------------------------- /src/app/i18n/locales/es/grp_presets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/i18n/locales/es/grp_presets.yml -------------------------------------------------------------------------------- /src/app/i18n/locales/es/home.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/i18n/locales/es/home.yml -------------------------------------------------------------------------------- /src/app/i18n/locales/es/privacy_policy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/i18n/locales/es/privacy_policy.yml -------------------------------------------------------------------------------- /src/app/i18n/locales/es/send_txn.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/i18n/locales/es/send_txn.yml -------------------------------------------------------------------------------- /src/app/i18n/locales/es/sign_txn.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/i18n/locales/es/sign_txn.yml -------------------------------------------------------------------------------- /src/app/i18n/locales/es/txn_presets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/i18n/locales/es/txn_presets.yml -------------------------------------------------------------------------------- /src/app/i18n/settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/i18n/settings.ts -------------------------------------------------------------------------------- /src/app/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/icon.svg -------------------------------------------------------------------------------- /src/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/layout.tsx -------------------------------------------------------------------------------- /src/app/lib/app-settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/lib/app-settings.ts -------------------------------------------------------------------------------- /src/app/lib/fonts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/lib/fonts.ts -------------------------------------------------------------------------------- /src/app/lib/node-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/lib/node-config.ts -------------------------------------------------------------------------------- /src/app/lib/testing/duck_poem.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/lib/testing/duck_poem.txt -------------------------------------------------------------------------------- /src/app/lib/testing/i18nextClientMock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/lib/testing/i18nextClientMock.ts -------------------------------------------------------------------------------- /src/app/lib/testing/test_compiled.teal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/lib/testing/test_compiled.teal -------------------------------------------------------------------------------- /src/app/lib/testing/test_signed.txn.msgpack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/lib/testing/test_signed.txn.msgpack -------------------------------------------------------------------------------- /src/app/lib/testing/test_unsigned.txn.msgpack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/lib/testing/test_unsigned.txn.msgpack -------------------------------------------------------------------------------- /src/app/lib/testing/textcoderPolyfill.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/lib/testing/textcoderPolyfill.js -------------------------------------------------------------------------------- /src/app/lib/testing/useWalletMock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/lib/testing/useWalletMock.ts -------------------------------------------------------------------------------- /src/app/lib/txn-data/atoms.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/lib/txn-data/atoms.ts -------------------------------------------------------------------------------- /src/app/lib/txn-data/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/lib/txn-data/constants.ts -------------------------------------------------------------------------------- /src/app/lib/txn-data/data-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/lib/txn-data/data-utils.ts -------------------------------------------------------------------------------- /src/app/lib/txn-data/field-validation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/lib/txn-data/field-validation.ts -------------------------------------------------------------------------------- /src/app/lib/txn-data/form-validation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/lib/txn-data/form-validation.ts -------------------------------------------------------------------------------- /src/app/lib/txn-data/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/lib/txn-data/index.ts -------------------------------------------------------------------------------- /src/app/lib/txn-data/processor.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/lib/txn-data/processor.test.ts -------------------------------------------------------------------------------- /src/app/lib/txn-data/processor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/lib/txn-data/processor.ts -------------------------------------------------------------------------------- /src/app/lib/txn-data/stored.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/lib/txn-data/stored.ts -------------------------------------------------------------------------------- /src/app/lib/txn-data/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/lib/txn-data/types.ts -------------------------------------------------------------------------------- /src/app/lib/txn-data/validation-rules.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/lib/txn-data/validation-rules.ts -------------------------------------------------------------------------------- /src/app/lib/utils.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/lib/utils.test.ts -------------------------------------------------------------------------------- /src/app/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/lib/utils.ts -------------------------------------------------------------------------------- /src/app/lib/validation-set-locale.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/lib/validation-set-locale.ts -------------------------------------------------------------------------------- /src/app/lib/wallet-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/lib/wallet-utils.ts -------------------------------------------------------------------------------- /src/app/robots.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/app/robots.ts -------------------------------------------------------------------------------- /src/e2e/compose_txn.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/e2e/compose_txn.spec.ts -------------------------------------------------------------------------------- /src/e2e/compose_txn_settings.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/e2e/compose_txn_settings.spec.ts -------------------------------------------------------------------------------- /src/e2e/flow_single_txn.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/e2e/flow_single_txn.spec.ts -------------------------------------------------------------------------------- /src/e2e/flow_wallet_connection_sync.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/e2e/flow_wallet_connection_sync.spec.ts -------------------------------------------------------------------------------- /src/e2e/home.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/e2e/home.spec.ts -------------------------------------------------------------------------------- /src/e2e/not_found.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/e2e/not_found.spec.ts -------------------------------------------------------------------------------- /src/e2e/pageModels/ComposeTxnPage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/e2e/pageModels/ComposeTxnPage.ts -------------------------------------------------------------------------------- /src/e2e/pageModels/HomePage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/e2e/pageModels/HomePage.ts -------------------------------------------------------------------------------- /src/e2e/pageModels/NotFoundPage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/e2e/pageModels/NotFoundPage.ts -------------------------------------------------------------------------------- /src/e2e/pageModels/PrivacyPolicyPage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/e2e/pageModels/PrivacyPolicyPage.ts -------------------------------------------------------------------------------- /src/e2e/pageModels/SendTxnPage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/e2e/pageModels/SendTxnPage.ts -------------------------------------------------------------------------------- /src/e2e/pageModels/SignTxnPage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/e2e/pageModels/SignTxnPage.ts -------------------------------------------------------------------------------- /src/e2e/pageModels/TxnPresetsPage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/e2e/pageModels/TxnPresetsPage.ts -------------------------------------------------------------------------------- /src/e2e/pageModels/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/e2e/pageModels/index.ts -------------------------------------------------------------------------------- /src/e2e/privacy_policy.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/e2e/privacy_policy.spec.ts -------------------------------------------------------------------------------- /src/e2e/send_txn.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/e2e/send_txn.spec.ts -------------------------------------------------------------------------------- /src/e2e/shared/AlgodMockResponses.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/e2e/shared/AlgodMockResponses.ts -------------------------------------------------------------------------------- /src/e2e/shared/LanguageSupport.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/e2e/shared/LanguageSupport.ts -------------------------------------------------------------------------------- /src/e2e/shared/NavBarComponent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/e2e/shared/NavBarComponent.ts -------------------------------------------------------------------------------- /src/e2e/shared/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/e2e/shared/index.ts -------------------------------------------------------------------------------- /src/e2e/sign_txn.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/e2e/sign_txn.spec.ts -------------------------------------------------------------------------------- /src/e2e/txn_presets.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/e2e/txn_presets.spec.ts -------------------------------------------------------------------------------- /src/proxy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/src/proxy.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Cash-7970/txnDuck/HEAD/yarn.lock --------------------------------------------------------------------------------