├── .dockerignore ├── .eslintignore ├── .eslintrc.js ├── .github ├── dependabot.yml └── workflows │ └── update_deps.yml ├── .gitignore ├── .husky ├── .gitignore ├── post-merge └── pre-commit ├── .nvmrc ├── Dockerfile ├── Makefile ├── README.md ├── babel.config.js ├── nginx.conf ├── package.json ├── prettier.config.js ├── public ├── apple-touch-icon.png ├── favicon.ico ├── icon-192.png ├── icon-512.png ├── icon.svg ├── images │ ├── av-network-banner.png │ └── og-image.jpg ├── manifest.json ├── robots.txt └── settings │ └── env-config.js ├── src ├── App.tsx ├── assets │ └── svg │ │ └── url-illustration.svg ├── components │ ├── BalanceInfo │ │ ├── index.tsx │ │ └── styles.scss │ ├── BipPathInput.tsx │ ├── ClaimableBalances.tsx │ ├── ErrorMessage │ │ ├── index.tsx │ │ └── styles.scss │ ├── Header.tsx │ ├── KeyPairWithLabels │ │ ├── index.tsx │ │ └── styles.scss │ ├── LabelAndValue │ │ ├── index.tsx │ │ └── styles.scss │ ├── LayoutRow │ │ ├── index.tsx │ │ └── styles.scss │ ├── LayoutSection │ │ ├── index.tsx │ │ └── styles.scss │ ├── LiquidityPoolTransactions.tsx │ ├── Network.tsx │ ├── NewKeyPairForm.tsx │ ├── PrivateRoute.tsx │ ├── ReceiveTransaction.tsx │ ├── SendTransaction │ │ ├── ConfirmTransaction.tsx │ │ ├── CreateTransaction.tsx │ │ ├── FailedTransaction.tsx │ │ ├── SendTransactionFlow.tsx │ │ ├── SuccessfulTransaction.tsx │ │ └── WarningMessages │ │ │ ├── AccountFlagged.tsx │ │ │ └── AccountIsUnsafe.tsx │ ├── SignIn │ │ ├── SignInAlbedoForm.tsx │ │ ├── SignInFreighterForm.tsx │ │ ├── SignInLedgerForm.tsx │ │ ├── SignInSecretKeyForm.tsx │ │ └── SignInTrezorForm.tsx │ ├── TransactionHistory.tsx │ ├── WalletButton │ │ ├── index.tsx │ │ └── styles.scss │ └── WalletModalContent │ │ ├── index.tsx │ │ └── styles.scss ├── config │ └── store.ts ├── constants │ ├── settings.ts │ └── wallets.tsx ├── ducks │ ├── account.ts │ ├── claimableBalances.ts │ ├── flaggedAccounts.ts │ ├── keyStore.ts │ ├── liquidityPoolTx.ts │ ├── memoRequiredAccounts.ts │ ├── sendTx.ts │ ├── settings.ts │ ├── txHistory.ts │ └── wallet │ │ ├── albedo.ts │ │ ├── freighter.ts │ │ ├── ledger.ts │ │ └── trezor.ts ├── helpers │ ├── Struct.ts │ ├── buildPaymentTransaction.ts │ ├── formatAmount.ts │ ├── getAccountLPTransactions.ts │ ├── getClaimableBalances.ts │ ├── getErrorString.ts │ ├── getFlaggedAccounts.ts │ ├── getMemoRequiredAccounts.ts │ ├── getMemoTypeText.ts │ ├── getNetworkConfig.ts │ ├── getOrSaveLocalStorageData.ts │ ├── getUserThemeSettings.ts │ ├── isAccountFunded.ts │ ├── keyManager.ts │ ├── makeDisplayablePayments.ts │ ├── signLedgerTransaction.ts │ ├── signTrezorTransaction.ts │ ├── stroopConversion.ts │ ├── submitPaymentTransaction.ts │ └── tracking.ts ├── hooks │ ├── useErrorMessage.ts │ └── useRedux.ts ├── index.html ├── index.tsx ├── pages │ ├── Dashboard.tsx │ ├── Landing.tsx │ └── NotFound.tsx ├── react-app-env.d.ts ├── setupTests.ts ├── styles.scss └── types │ ├── @modules.d.ts │ ├── styled-components.d.ts │ └── types.ts ├── temp.md ├── tsconfig.json ├── webpack.common.js ├── webpack.dev.js ├── webpack.prod.js └── yarn.lock /.dockerignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | .tmp 4 | -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/account-viewer-v2/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/account-viewer-v2/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/account-viewer-v2/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/update_deps.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/account-viewer-v2/HEAD/.github/workflows/update_deps.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/account-viewer-v2/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/.gitignore: -------------------------------------------------------------------------------- 1 | _ 2 | -------------------------------------------------------------------------------- /.husky/post-merge: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | . "$(dirname "$0")/_/husky.sh" 3 | 4 | yarn install-if-package-changed 5 | -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | . "$(dirname "$0")/_/husky.sh" 3 | 4 | yarn pre-commit 5 | -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | v18 2 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/account-viewer-v2/HEAD/Dockerfile -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/account-viewer-v2/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/account-viewer-v2/HEAD/README.md -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/account-viewer-v2/HEAD/babel.config.js -------------------------------------------------------------------------------- /nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/account-viewer-v2/HEAD/nginx.conf -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/account-viewer-v2/HEAD/package.json -------------------------------------------------------------------------------- /prettier.config.js: -------------------------------------------------------------------------------- 1 | module.exports = require("@stellar/prettier-config"); 2 | -------------------------------------------------------------------------------- /public/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/account-viewer-v2/HEAD/public/apple-touch-icon.png -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/account-viewer-v2/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/icon-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/account-viewer-v2/HEAD/public/icon-192.png -------------------------------------------------------------------------------- /public/icon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/account-viewer-v2/HEAD/public/icon-512.png -------------------------------------------------------------------------------- /public/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/account-viewer-v2/HEAD/public/icon.svg -------------------------------------------------------------------------------- /public/images/av-network-banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/account-viewer-v2/HEAD/public/images/av-network-banner.png -------------------------------------------------------------------------------- /public/images/og-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/account-viewer-v2/HEAD/public/images/og-image.jpg -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/account-viewer-v2/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/account-viewer-v2/HEAD/public/robots.txt -------------------------------------------------------------------------------- /public/settings/env-config.js: -------------------------------------------------------------------------------- 1 | window._env_ = { 2 | AMPLITUDE_API_KEY: "", 3 | }; 4 | -------------------------------------------------------------------------------- /src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/account-viewer-v2/HEAD/src/App.tsx -------------------------------------------------------------------------------- /src/assets/svg/url-illustration.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/account-viewer-v2/HEAD/src/assets/svg/url-illustration.svg -------------------------------------------------------------------------------- /src/components/BalanceInfo/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/account-viewer-v2/HEAD/src/components/BalanceInfo/index.tsx -------------------------------------------------------------------------------- /src/components/BalanceInfo/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/account-viewer-v2/HEAD/src/components/BalanceInfo/styles.scss -------------------------------------------------------------------------------- /src/components/BipPathInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/account-viewer-v2/HEAD/src/components/BipPathInput.tsx -------------------------------------------------------------------------------- /src/components/ClaimableBalances.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/account-viewer-v2/HEAD/src/components/ClaimableBalances.tsx -------------------------------------------------------------------------------- /src/components/ErrorMessage/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/account-viewer-v2/HEAD/src/components/ErrorMessage/index.tsx -------------------------------------------------------------------------------- /src/components/ErrorMessage/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/account-viewer-v2/HEAD/src/components/ErrorMessage/styles.scss -------------------------------------------------------------------------------- /src/components/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/account-viewer-v2/HEAD/src/components/Header.tsx -------------------------------------------------------------------------------- /src/components/KeyPairWithLabels/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/account-viewer-v2/HEAD/src/components/KeyPairWithLabels/index.tsx -------------------------------------------------------------------------------- /src/components/KeyPairWithLabels/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/account-viewer-v2/HEAD/src/components/KeyPairWithLabels/styles.scss -------------------------------------------------------------------------------- /src/components/LabelAndValue/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/account-viewer-v2/HEAD/src/components/LabelAndValue/index.tsx -------------------------------------------------------------------------------- /src/components/LabelAndValue/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/account-viewer-v2/HEAD/src/components/LabelAndValue/styles.scss -------------------------------------------------------------------------------- /src/components/LayoutRow/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/account-viewer-v2/HEAD/src/components/LayoutRow/index.tsx -------------------------------------------------------------------------------- /src/components/LayoutRow/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/account-viewer-v2/HEAD/src/components/LayoutRow/styles.scss -------------------------------------------------------------------------------- /src/components/LayoutSection/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/account-viewer-v2/HEAD/src/components/LayoutSection/index.tsx -------------------------------------------------------------------------------- /src/components/LayoutSection/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/account-viewer-v2/HEAD/src/components/LayoutSection/styles.scss -------------------------------------------------------------------------------- /src/components/LiquidityPoolTransactions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/account-viewer-v2/HEAD/src/components/LiquidityPoolTransactions.tsx -------------------------------------------------------------------------------- /src/components/Network.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/account-viewer-v2/HEAD/src/components/Network.tsx -------------------------------------------------------------------------------- /src/components/NewKeyPairForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/account-viewer-v2/HEAD/src/components/NewKeyPairForm.tsx -------------------------------------------------------------------------------- /src/components/PrivateRoute.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/account-viewer-v2/HEAD/src/components/PrivateRoute.tsx -------------------------------------------------------------------------------- /src/components/ReceiveTransaction.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/account-viewer-v2/HEAD/src/components/ReceiveTransaction.tsx -------------------------------------------------------------------------------- /src/components/SendTransaction/ConfirmTransaction.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/account-viewer-v2/HEAD/src/components/SendTransaction/ConfirmTransaction.tsx -------------------------------------------------------------------------------- /src/components/SendTransaction/CreateTransaction.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/account-viewer-v2/HEAD/src/components/SendTransaction/CreateTransaction.tsx -------------------------------------------------------------------------------- /src/components/SendTransaction/FailedTransaction.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/account-viewer-v2/HEAD/src/components/SendTransaction/FailedTransaction.tsx -------------------------------------------------------------------------------- /src/components/SendTransaction/SendTransactionFlow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/account-viewer-v2/HEAD/src/components/SendTransaction/SendTransactionFlow.tsx -------------------------------------------------------------------------------- /src/components/SendTransaction/SuccessfulTransaction.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/account-viewer-v2/HEAD/src/components/SendTransaction/SuccessfulTransaction.tsx -------------------------------------------------------------------------------- /src/components/SendTransaction/WarningMessages/AccountFlagged.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/account-viewer-v2/HEAD/src/components/SendTransaction/WarningMessages/AccountFlagged.tsx -------------------------------------------------------------------------------- /src/components/SendTransaction/WarningMessages/AccountIsUnsafe.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/account-viewer-v2/HEAD/src/components/SendTransaction/WarningMessages/AccountIsUnsafe.tsx -------------------------------------------------------------------------------- /src/components/SignIn/SignInAlbedoForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/account-viewer-v2/HEAD/src/components/SignIn/SignInAlbedoForm.tsx -------------------------------------------------------------------------------- /src/components/SignIn/SignInFreighterForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/account-viewer-v2/HEAD/src/components/SignIn/SignInFreighterForm.tsx -------------------------------------------------------------------------------- /src/components/SignIn/SignInLedgerForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/account-viewer-v2/HEAD/src/components/SignIn/SignInLedgerForm.tsx -------------------------------------------------------------------------------- /src/components/SignIn/SignInSecretKeyForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/account-viewer-v2/HEAD/src/components/SignIn/SignInSecretKeyForm.tsx -------------------------------------------------------------------------------- /src/components/SignIn/SignInTrezorForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/account-viewer-v2/HEAD/src/components/SignIn/SignInTrezorForm.tsx -------------------------------------------------------------------------------- /src/components/TransactionHistory.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/account-viewer-v2/HEAD/src/components/TransactionHistory.tsx -------------------------------------------------------------------------------- /src/components/WalletButton/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/account-viewer-v2/HEAD/src/components/WalletButton/index.tsx -------------------------------------------------------------------------------- /src/components/WalletButton/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/account-viewer-v2/HEAD/src/components/WalletButton/styles.scss -------------------------------------------------------------------------------- /src/components/WalletModalContent/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/account-viewer-v2/HEAD/src/components/WalletModalContent/index.tsx -------------------------------------------------------------------------------- /src/components/WalletModalContent/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/account-viewer-v2/HEAD/src/components/WalletModalContent/styles.scss -------------------------------------------------------------------------------- /src/config/store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/account-viewer-v2/HEAD/src/config/store.ts -------------------------------------------------------------------------------- /src/constants/settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/account-viewer-v2/HEAD/src/constants/settings.ts -------------------------------------------------------------------------------- /src/constants/wallets.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/account-viewer-v2/HEAD/src/constants/wallets.tsx -------------------------------------------------------------------------------- /src/ducks/account.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/account-viewer-v2/HEAD/src/ducks/account.ts -------------------------------------------------------------------------------- /src/ducks/claimableBalances.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/account-viewer-v2/HEAD/src/ducks/claimableBalances.ts -------------------------------------------------------------------------------- /src/ducks/flaggedAccounts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/account-viewer-v2/HEAD/src/ducks/flaggedAccounts.ts -------------------------------------------------------------------------------- /src/ducks/keyStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/account-viewer-v2/HEAD/src/ducks/keyStore.ts -------------------------------------------------------------------------------- /src/ducks/liquidityPoolTx.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/account-viewer-v2/HEAD/src/ducks/liquidityPoolTx.ts -------------------------------------------------------------------------------- /src/ducks/memoRequiredAccounts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/account-viewer-v2/HEAD/src/ducks/memoRequiredAccounts.ts -------------------------------------------------------------------------------- /src/ducks/sendTx.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/account-viewer-v2/HEAD/src/ducks/sendTx.ts -------------------------------------------------------------------------------- /src/ducks/settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/account-viewer-v2/HEAD/src/ducks/settings.ts -------------------------------------------------------------------------------- /src/ducks/txHistory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/account-viewer-v2/HEAD/src/ducks/txHistory.ts -------------------------------------------------------------------------------- /src/ducks/wallet/albedo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/account-viewer-v2/HEAD/src/ducks/wallet/albedo.ts -------------------------------------------------------------------------------- /src/ducks/wallet/freighter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/account-viewer-v2/HEAD/src/ducks/wallet/freighter.ts -------------------------------------------------------------------------------- /src/ducks/wallet/ledger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/account-viewer-v2/HEAD/src/ducks/wallet/ledger.ts -------------------------------------------------------------------------------- /src/ducks/wallet/trezor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/account-viewer-v2/HEAD/src/ducks/wallet/trezor.ts -------------------------------------------------------------------------------- /src/helpers/Struct.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/account-viewer-v2/HEAD/src/helpers/Struct.ts -------------------------------------------------------------------------------- /src/helpers/buildPaymentTransaction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/account-viewer-v2/HEAD/src/helpers/buildPaymentTransaction.ts -------------------------------------------------------------------------------- /src/helpers/formatAmount.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/account-viewer-v2/HEAD/src/helpers/formatAmount.ts -------------------------------------------------------------------------------- /src/helpers/getAccountLPTransactions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/account-viewer-v2/HEAD/src/helpers/getAccountLPTransactions.ts -------------------------------------------------------------------------------- /src/helpers/getClaimableBalances.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/account-viewer-v2/HEAD/src/helpers/getClaimableBalances.ts -------------------------------------------------------------------------------- /src/helpers/getErrorString.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/account-viewer-v2/HEAD/src/helpers/getErrorString.ts -------------------------------------------------------------------------------- /src/helpers/getFlaggedAccounts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/account-viewer-v2/HEAD/src/helpers/getFlaggedAccounts.ts -------------------------------------------------------------------------------- /src/helpers/getMemoRequiredAccounts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/account-viewer-v2/HEAD/src/helpers/getMemoRequiredAccounts.ts -------------------------------------------------------------------------------- /src/helpers/getMemoTypeText.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/account-viewer-v2/HEAD/src/helpers/getMemoTypeText.ts -------------------------------------------------------------------------------- /src/helpers/getNetworkConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/account-viewer-v2/HEAD/src/helpers/getNetworkConfig.ts -------------------------------------------------------------------------------- /src/helpers/getOrSaveLocalStorageData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/account-viewer-v2/HEAD/src/helpers/getOrSaveLocalStorageData.ts -------------------------------------------------------------------------------- /src/helpers/getUserThemeSettings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/account-viewer-v2/HEAD/src/helpers/getUserThemeSettings.ts -------------------------------------------------------------------------------- /src/helpers/isAccountFunded.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/account-viewer-v2/HEAD/src/helpers/isAccountFunded.ts -------------------------------------------------------------------------------- /src/helpers/keyManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/account-viewer-v2/HEAD/src/helpers/keyManager.ts -------------------------------------------------------------------------------- /src/helpers/makeDisplayablePayments.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/account-viewer-v2/HEAD/src/helpers/makeDisplayablePayments.ts -------------------------------------------------------------------------------- /src/helpers/signLedgerTransaction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/account-viewer-v2/HEAD/src/helpers/signLedgerTransaction.ts -------------------------------------------------------------------------------- /src/helpers/signTrezorTransaction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/account-viewer-v2/HEAD/src/helpers/signTrezorTransaction.ts -------------------------------------------------------------------------------- /src/helpers/stroopConversion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/account-viewer-v2/HEAD/src/helpers/stroopConversion.ts -------------------------------------------------------------------------------- /src/helpers/submitPaymentTransaction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/account-viewer-v2/HEAD/src/helpers/submitPaymentTransaction.ts -------------------------------------------------------------------------------- /src/helpers/tracking.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/account-viewer-v2/HEAD/src/helpers/tracking.ts -------------------------------------------------------------------------------- /src/hooks/useErrorMessage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/account-viewer-v2/HEAD/src/hooks/useErrorMessage.ts -------------------------------------------------------------------------------- /src/hooks/useRedux.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/account-viewer-v2/HEAD/src/hooks/useRedux.ts -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/account-viewer-v2/HEAD/src/index.html -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/account-viewer-v2/HEAD/src/index.tsx -------------------------------------------------------------------------------- /src/pages/Dashboard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/account-viewer-v2/HEAD/src/pages/Dashboard.tsx -------------------------------------------------------------------------------- /src/pages/Landing.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/account-viewer-v2/HEAD/src/pages/Landing.tsx -------------------------------------------------------------------------------- /src/pages/NotFound.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/account-viewer-v2/HEAD/src/pages/NotFound.tsx -------------------------------------------------------------------------------- /src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /src/setupTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/account-viewer-v2/HEAD/src/setupTests.ts -------------------------------------------------------------------------------- /src/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/account-viewer-v2/HEAD/src/styles.scss -------------------------------------------------------------------------------- /src/types/@modules.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/account-viewer-v2/HEAD/src/types/@modules.d.ts -------------------------------------------------------------------------------- /src/types/styled-components.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/account-viewer-v2/HEAD/src/types/styled-components.d.ts -------------------------------------------------------------------------------- /src/types/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/account-viewer-v2/HEAD/src/types/types.ts -------------------------------------------------------------------------------- /temp.md: -------------------------------------------------------------------------------- 1 | Temp file to trigger PR preview updates 2 | 3 | - 1 4 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/account-viewer-v2/HEAD/tsconfig.json -------------------------------------------------------------------------------- /webpack.common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/account-viewer-v2/HEAD/webpack.common.js -------------------------------------------------------------------------------- /webpack.dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/account-viewer-v2/HEAD/webpack.dev.js -------------------------------------------------------------------------------- /webpack.prod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/account-viewer-v2/HEAD/webpack.prod.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/account-viewer-v2/HEAD/yarn.lock --------------------------------------------------------------------------------