├── .circleci └── config.yml ├── .gitignore ├── CHANGELOG.md ├── README.md ├── README_ORIGINAL.md ├── RELEASING.md ├── babel.config.js ├── config └── polyfills.js ├── documentation ├── .env ├── .gitignore ├── README.md ├── config-overrides.js ├── package.json ├── public │ ├── favicon.ico │ ├── index.html │ └── manifest.json ├── src │ ├── App.js │ ├── App.test.js │ ├── AppState.js │ ├── README.md │ ├── basics │ │ ├── Block.js │ │ ├── Semibold.js │ │ └── Tooltip.js │ ├── components │ │ ├── Comment.js │ │ ├── DisplayInterface.js │ │ ├── DisplayItem.js │ │ ├── DisplayMethod.js │ │ ├── DisplayParameters.js │ │ ├── DisplayProperty.js │ │ ├── DisplayType.js │ │ ├── LinkToID.js │ │ ├── Markdown.js │ │ ├── TableOfContents.js │ │ └── TypePeeker.js │ ├── docs.json │ ├── helpers │ │ ├── getArmName.js │ │ └── getLink.js │ ├── index.css │ └── index.js └── yarn.lock ├── jest.config.js ├── package.json ├── plans ├── README.md ├── authservers.md ├── data.md ├── general.md ├── keymanager │ ├── data-privacy.md │ ├── overview.md │ └── scenarios.md ├── plugintests.md ├── sep6.md └── sep8.md ├── playground ├── .env ├── .gitignore ├── README.md ├── package.json ├── public │ ├── favicon.ico │ ├── index.html │ └── manifest.json ├── src │ ├── @stellar │ │ └── wallet-sdk │ ├── App.js │ ├── components │ │ ├── AccountDetails.js │ │ ├── AuthCurrency.js │ │ ├── Authorization.js │ │ ├── KeyEntry.js │ │ ├── MergeTransaction.js │ │ ├── Offers.js │ │ ├── OperationViewer.js │ │ ├── Payments.js │ │ ├── Trades.js │ │ ├── TransactionViewer.js │ │ └── TransferProvider.js │ └── index.js └── yarn.lock ├── src ├── KeyManager.test.ts ├── KeyManager.ts ├── KeyManagerPlugins.ts ├── PluginTesting.test.ts ├── PluginTesting.ts ├── browser.ts ├── constants │ ├── data.ts │ ├── keys.ts │ ├── sep8.ts │ ├── stellar.ts │ └── transfers.ts ├── data │ ├── DataProvider.test.ts │ ├── DataProvider.ts │ ├── index.test.ts │ ├── index.ts │ ├── makeDisplayableBalances.test.ts │ ├── makeDisplayableBalances.ts │ ├── makeDisplayableOffers.test.ts │ ├── makeDisplayableOffers.ts │ ├── makeDisplayablePayments.test.ts │ ├── makeDisplayablePayments.ts │ ├── makeDisplayableTrades.test.ts │ └── makeDisplayableTrades.ts ├── fixtures │ ├── AccountResponse.ts │ ├── OffersResponse.ts │ ├── PaymentsResponse.ts │ ├── SponsoredAccountResponse.ts │ ├── TradesResponse.ts │ ├── TransactionsResponse.ts │ ├── TransferInfoResponse.ts │ └── keys.ts ├── helpers │ ├── ScryptEncryption.test.ts │ ├── ScryptEncryption.ts │ ├── bigize.test.ts │ ├── bigize.ts │ ├── getKeyMetadata.test.ts │ ├── getKeyMetadata.ts │ └── trezorTransformTransaction.ts ├── index.ts ├── keyTypeHandlers │ ├── albedo.ts │ ├── freighter.test.ts │ ├── freighter.ts │ ├── ledger.ts │ ├── plaintextKey.ts │ └── trezor.ts ├── plugins │ ├── BrowserStorageFacade.ts │ ├── BrowserStorageKeyStore.test.ts │ ├── BrowserStorageKeyStore.ts │ ├── IdentityEncrypter.test.ts │ ├── IdentityEncrypter.ts │ ├── LocalStorageFacade.ts │ ├── LocalStorageKeyStore.test.ts │ ├── LocalStorageKeyStore.ts │ ├── MemoryKeyStore.test.ts │ ├── MemoryKeyStore.ts │ ├── ScryptEncrypter.test.ts │ └── ScryptEncrypter.ts ├── sep8 │ ├── ApprovalProvider.test.ts │ ├── ApprovalProvider.ts │ ├── getApprovalServerUrl.test.ts │ ├── getApprovalServerUrl.ts │ ├── getRegulatedAssetsInTx.ts │ └── getRegulatedAssetsinTx.test.ts ├── testUtils.ts ├── transfers │ ├── DepositProvider.test.ts │ ├── DepositProvider.ts │ ├── TransferProvider.ts │ ├── WithdrawProvider.ts │ ├── fetchKycInBrowser.ts │ ├── getKycUrl.test.ts │ ├── getKycUrl.ts │ ├── index.ts │ ├── parseInfo.test.ts │ └── parseInfo.ts ├── types │ ├── @modules.d.ts │ ├── data.ts │ ├── index.ts │ ├── keys.ts │ ├── modules.d.ts │ ├── sep8.ts │ ├── transfers.ts │ └── watchers.ts └── util.d.ts ├── tsconfig.json ├── tslint.json ├── webpack.config.js └── yarn.lock /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/js-stellar-wallets/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | compiled 4 | *.log 5 | .DS_Store 6 | docs 7 | .vscode/ 8 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/js-stellar-wallets/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/js-stellar-wallets/HEAD/README.md -------------------------------------------------------------------------------- /README_ORIGINAL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/js-stellar-wallets/HEAD/README_ORIGINAL.md -------------------------------------------------------------------------------- /RELEASING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/js-stellar-wallets/HEAD/RELEASING.md -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/js-stellar-wallets/HEAD/babel.config.js -------------------------------------------------------------------------------- /config/polyfills.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/js-stellar-wallets/HEAD/config/polyfills.js -------------------------------------------------------------------------------- /documentation/.env: -------------------------------------------------------------------------------- 1 | SKIP_PREFLIGHT_CHECK=true 2 | NODE_PATH=./src 3 | -------------------------------------------------------------------------------- /documentation/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/js-stellar-wallets/HEAD/documentation/.gitignore -------------------------------------------------------------------------------- /documentation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/js-stellar-wallets/HEAD/documentation/README.md -------------------------------------------------------------------------------- /documentation/config-overrides.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/js-stellar-wallets/HEAD/documentation/config-overrides.js -------------------------------------------------------------------------------- /documentation/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/js-stellar-wallets/HEAD/documentation/package.json -------------------------------------------------------------------------------- /documentation/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/js-stellar-wallets/HEAD/documentation/public/favicon.ico -------------------------------------------------------------------------------- /documentation/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/js-stellar-wallets/HEAD/documentation/public/index.html -------------------------------------------------------------------------------- /documentation/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/js-stellar-wallets/HEAD/documentation/public/manifest.json -------------------------------------------------------------------------------- /documentation/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/js-stellar-wallets/HEAD/documentation/src/App.js -------------------------------------------------------------------------------- /documentation/src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/js-stellar-wallets/HEAD/documentation/src/App.test.js -------------------------------------------------------------------------------- /documentation/src/AppState.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/js-stellar-wallets/HEAD/documentation/src/AppState.js -------------------------------------------------------------------------------- /documentation/src/README.md: -------------------------------------------------------------------------------- 1 | ../../README.md -------------------------------------------------------------------------------- /documentation/src/basics/Block.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/js-stellar-wallets/HEAD/documentation/src/basics/Block.js -------------------------------------------------------------------------------- /documentation/src/basics/Semibold.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/js-stellar-wallets/HEAD/documentation/src/basics/Semibold.js -------------------------------------------------------------------------------- /documentation/src/basics/Tooltip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/js-stellar-wallets/HEAD/documentation/src/basics/Tooltip.js -------------------------------------------------------------------------------- /documentation/src/components/Comment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/js-stellar-wallets/HEAD/documentation/src/components/Comment.js -------------------------------------------------------------------------------- /documentation/src/components/DisplayInterface.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/js-stellar-wallets/HEAD/documentation/src/components/DisplayInterface.js -------------------------------------------------------------------------------- /documentation/src/components/DisplayItem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/js-stellar-wallets/HEAD/documentation/src/components/DisplayItem.js -------------------------------------------------------------------------------- /documentation/src/components/DisplayMethod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/js-stellar-wallets/HEAD/documentation/src/components/DisplayMethod.js -------------------------------------------------------------------------------- /documentation/src/components/DisplayParameters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/js-stellar-wallets/HEAD/documentation/src/components/DisplayParameters.js -------------------------------------------------------------------------------- /documentation/src/components/DisplayProperty.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/js-stellar-wallets/HEAD/documentation/src/components/DisplayProperty.js -------------------------------------------------------------------------------- /documentation/src/components/DisplayType.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/js-stellar-wallets/HEAD/documentation/src/components/DisplayType.js -------------------------------------------------------------------------------- /documentation/src/components/LinkToID.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/js-stellar-wallets/HEAD/documentation/src/components/LinkToID.js -------------------------------------------------------------------------------- /documentation/src/components/Markdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/js-stellar-wallets/HEAD/documentation/src/components/Markdown.js -------------------------------------------------------------------------------- /documentation/src/components/TableOfContents.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/js-stellar-wallets/HEAD/documentation/src/components/TableOfContents.js -------------------------------------------------------------------------------- /documentation/src/components/TypePeeker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/js-stellar-wallets/HEAD/documentation/src/components/TypePeeker.js -------------------------------------------------------------------------------- /documentation/src/docs.json: -------------------------------------------------------------------------------- 1 | ../../dist/docs.json -------------------------------------------------------------------------------- /documentation/src/helpers/getArmName.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/js-stellar-wallets/HEAD/documentation/src/helpers/getArmName.js -------------------------------------------------------------------------------- /documentation/src/helpers/getLink.js: -------------------------------------------------------------------------------- 1 | export function getLink(id) { 2 | return `#item_${id}`; 3 | } 4 | -------------------------------------------------------------------------------- /documentation/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/js-stellar-wallets/HEAD/documentation/src/index.css -------------------------------------------------------------------------------- /documentation/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/js-stellar-wallets/HEAD/documentation/src/index.js -------------------------------------------------------------------------------- /documentation/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/js-stellar-wallets/HEAD/documentation/yarn.lock -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/js-stellar-wallets/HEAD/jest.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/js-stellar-wallets/HEAD/package.json -------------------------------------------------------------------------------- /plans/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/js-stellar-wallets/HEAD/plans/README.md -------------------------------------------------------------------------------- /plans/authservers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/js-stellar-wallets/HEAD/plans/authservers.md -------------------------------------------------------------------------------- /plans/data.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/js-stellar-wallets/HEAD/plans/data.md -------------------------------------------------------------------------------- /plans/general.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/js-stellar-wallets/HEAD/plans/general.md -------------------------------------------------------------------------------- /plans/keymanager/data-privacy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/js-stellar-wallets/HEAD/plans/keymanager/data-privacy.md -------------------------------------------------------------------------------- /plans/keymanager/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/js-stellar-wallets/HEAD/plans/keymanager/overview.md -------------------------------------------------------------------------------- /plans/keymanager/scenarios.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/js-stellar-wallets/HEAD/plans/keymanager/scenarios.md -------------------------------------------------------------------------------- /plans/plugintests.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/js-stellar-wallets/HEAD/plans/plugintests.md -------------------------------------------------------------------------------- /plans/sep6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/js-stellar-wallets/HEAD/plans/sep6.md -------------------------------------------------------------------------------- /plans/sep8.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/js-stellar-wallets/HEAD/plans/sep8.md -------------------------------------------------------------------------------- /playground/.env: -------------------------------------------------------------------------------- 1 | SKIP_PREFLIGHT_CHECK=true 2 | NODE_PATH=./src 3 | -------------------------------------------------------------------------------- /playground/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/js-stellar-wallets/HEAD/playground/.gitignore -------------------------------------------------------------------------------- /playground/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/js-stellar-wallets/HEAD/playground/README.md -------------------------------------------------------------------------------- /playground/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/js-stellar-wallets/HEAD/playground/package.json -------------------------------------------------------------------------------- /playground/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/js-stellar-wallets/HEAD/playground/public/favicon.ico -------------------------------------------------------------------------------- /playground/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/js-stellar-wallets/HEAD/playground/public/index.html -------------------------------------------------------------------------------- /playground/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/js-stellar-wallets/HEAD/playground/public/manifest.json -------------------------------------------------------------------------------- /playground/src/@stellar/wallet-sdk: -------------------------------------------------------------------------------- 1 | ../../../dist -------------------------------------------------------------------------------- /playground/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/js-stellar-wallets/HEAD/playground/src/App.js -------------------------------------------------------------------------------- /playground/src/components/AccountDetails.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/js-stellar-wallets/HEAD/playground/src/components/AccountDetails.js -------------------------------------------------------------------------------- /playground/src/components/AuthCurrency.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/js-stellar-wallets/HEAD/playground/src/components/AuthCurrency.js -------------------------------------------------------------------------------- /playground/src/components/Authorization.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/js-stellar-wallets/HEAD/playground/src/components/Authorization.js -------------------------------------------------------------------------------- /playground/src/components/KeyEntry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/js-stellar-wallets/HEAD/playground/src/components/KeyEntry.js -------------------------------------------------------------------------------- /playground/src/components/MergeTransaction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/js-stellar-wallets/HEAD/playground/src/components/MergeTransaction.js -------------------------------------------------------------------------------- /playground/src/components/Offers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/js-stellar-wallets/HEAD/playground/src/components/Offers.js -------------------------------------------------------------------------------- /playground/src/components/OperationViewer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/js-stellar-wallets/HEAD/playground/src/components/OperationViewer.js -------------------------------------------------------------------------------- /playground/src/components/Payments.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/js-stellar-wallets/HEAD/playground/src/components/Payments.js -------------------------------------------------------------------------------- /playground/src/components/Trades.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/js-stellar-wallets/HEAD/playground/src/components/Trades.js -------------------------------------------------------------------------------- /playground/src/components/TransactionViewer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/js-stellar-wallets/HEAD/playground/src/components/TransactionViewer.js -------------------------------------------------------------------------------- /playground/src/components/TransferProvider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/js-stellar-wallets/HEAD/playground/src/components/TransferProvider.js -------------------------------------------------------------------------------- /playground/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/js-stellar-wallets/HEAD/playground/src/index.js -------------------------------------------------------------------------------- /playground/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/js-stellar-wallets/HEAD/playground/yarn.lock -------------------------------------------------------------------------------- /src/KeyManager.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/js-stellar-wallets/HEAD/src/KeyManager.test.ts -------------------------------------------------------------------------------- /src/KeyManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/js-stellar-wallets/HEAD/src/KeyManager.ts -------------------------------------------------------------------------------- /src/KeyManagerPlugins.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/js-stellar-wallets/HEAD/src/KeyManagerPlugins.ts -------------------------------------------------------------------------------- /src/PluginTesting.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/js-stellar-wallets/HEAD/src/PluginTesting.test.ts -------------------------------------------------------------------------------- /src/PluginTesting.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/js-stellar-wallets/HEAD/src/PluginTesting.ts -------------------------------------------------------------------------------- /src/browser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/js-stellar-wallets/HEAD/src/browser.ts -------------------------------------------------------------------------------- /src/constants/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/js-stellar-wallets/HEAD/src/constants/data.ts -------------------------------------------------------------------------------- /src/constants/keys.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/js-stellar-wallets/HEAD/src/constants/keys.ts -------------------------------------------------------------------------------- /src/constants/sep8.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/js-stellar-wallets/HEAD/src/constants/sep8.ts -------------------------------------------------------------------------------- /src/constants/stellar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/js-stellar-wallets/HEAD/src/constants/stellar.ts -------------------------------------------------------------------------------- /src/constants/transfers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/js-stellar-wallets/HEAD/src/constants/transfers.ts -------------------------------------------------------------------------------- /src/data/DataProvider.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/js-stellar-wallets/HEAD/src/data/DataProvider.test.ts -------------------------------------------------------------------------------- /src/data/DataProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/js-stellar-wallets/HEAD/src/data/DataProvider.ts -------------------------------------------------------------------------------- /src/data/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/js-stellar-wallets/HEAD/src/data/index.test.ts -------------------------------------------------------------------------------- /src/data/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/js-stellar-wallets/HEAD/src/data/index.ts -------------------------------------------------------------------------------- /src/data/makeDisplayableBalances.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/js-stellar-wallets/HEAD/src/data/makeDisplayableBalances.test.ts -------------------------------------------------------------------------------- /src/data/makeDisplayableBalances.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/js-stellar-wallets/HEAD/src/data/makeDisplayableBalances.ts -------------------------------------------------------------------------------- /src/data/makeDisplayableOffers.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/js-stellar-wallets/HEAD/src/data/makeDisplayableOffers.test.ts -------------------------------------------------------------------------------- /src/data/makeDisplayableOffers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/js-stellar-wallets/HEAD/src/data/makeDisplayableOffers.ts -------------------------------------------------------------------------------- /src/data/makeDisplayablePayments.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/js-stellar-wallets/HEAD/src/data/makeDisplayablePayments.test.ts -------------------------------------------------------------------------------- /src/data/makeDisplayablePayments.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/js-stellar-wallets/HEAD/src/data/makeDisplayablePayments.ts -------------------------------------------------------------------------------- /src/data/makeDisplayableTrades.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/js-stellar-wallets/HEAD/src/data/makeDisplayableTrades.test.ts -------------------------------------------------------------------------------- /src/data/makeDisplayableTrades.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/js-stellar-wallets/HEAD/src/data/makeDisplayableTrades.ts -------------------------------------------------------------------------------- /src/fixtures/AccountResponse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/js-stellar-wallets/HEAD/src/fixtures/AccountResponse.ts -------------------------------------------------------------------------------- /src/fixtures/OffersResponse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/js-stellar-wallets/HEAD/src/fixtures/OffersResponse.ts -------------------------------------------------------------------------------- /src/fixtures/PaymentsResponse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/js-stellar-wallets/HEAD/src/fixtures/PaymentsResponse.ts -------------------------------------------------------------------------------- /src/fixtures/SponsoredAccountResponse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/js-stellar-wallets/HEAD/src/fixtures/SponsoredAccountResponse.ts -------------------------------------------------------------------------------- /src/fixtures/TradesResponse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/js-stellar-wallets/HEAD/src/fixtures/TradesResponse.ts -------------------------------------------------------------------------------- /src/fixtures/TransactionsResponse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/js-stellar-wallets/HEAD/src/fixtures/TransactionsResponse.ts -------------------------------------------------------------------------------- /src/fixtures/TransferInfoResponse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/js-stellar-wallets/HEAD/src/fixtures/TransferInfoResponse.ts -------------------------------------------------------------------------------- /src/fixtures/keys.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/js-stellar-wallets/HEAD/src/fixtures/keys.ts -------------------------------------------------------------------------------- /src/helpers/ScryptEncryption.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/js-stellar-wallets/HEAD/src/helpers/ScryptEncryption.test.ts -------------------------------------------------------------------------------- /src/helpers/ScryptEncryption.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/js-stellar-wallets/HEAD/src/helpers/ScryptEncryption.ts -------------------------------------------------------------------------------- /src/helpers/bigize.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/js-stellar-wallets/HEAD/src/helpers/bigize.test.ts -------------------------------------------------------------------------------- /src/helpers/bigize.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/js-stellar-wallets/HEAD/src/helpers/bigize.ts -------------------------------------------------------------------------------- /src/helpers/getKeyMetadata.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/js-stellar-wallets/HEAD/src/helpers/getKeyMetadata.test.ts -------------------------------------------------------------------------------- /src/helpers/getKeyMetadata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/js-stellar-wallets/HEAD/src/helpers/getKeyMetadata.ts -------------------------------------------------------------------------------- /src/helpers/trezorTransformTransaction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/js-stellar-wallets/HEAD/src/helpers/trezorTransformTransaction.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/js-stellar-wallets/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/keyTypeHandlers/albedo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/js-stellar-wallets/HEAD/src/keyTypeHandlers/albedo.ts -------------------------------------------------------------------------------- /src/keyTypeHandlers/freighter.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/js-stellar-wallets/HEAD/src/keyTypeHandlers/freighter.test.ts -------------------------------------------------------------------------------- /src/keyTypeHandlers/freighter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/js-stellar-wallets/HEAD/src/keyTypeHandlers/freighter.ts -------------------------------------------------------------------------------- /src/keyTypeHandlers/ledger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/js-stellar-wallets/HEAD/src/keyTypeHandlers/ledger.ts -------------------------------------------------------------------------------- /src/keyTypeHandlers/plaintextKey.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/js-stellar-wallets/HEAD/src/keyTypeHandlers/plaintextKey.ts -------------------------------------------------------------------------------- /src/keyTypeHandlers/trezor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/js-stellar-wallets/HEAD/src/keyTypeHandlers/trezor.ts -------------------------------------------------------------------------------- /src/plugins/BrowserStorageFacade.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/js-stellar-wallets/HEAD/src/plugins/BrowserStorageFacade.ts -------------------------------------------------------------------------------- /src/plugins/BrowserStorageKeyStore.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/js-stellar-wallets/HEAD/src/plugins/BrowserStorageKeyStore.test.ts -------------------------------------------------------------------------------- /src/plugins/BrowserStorageKeyStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/js-stellar-wallets/HEAD/src/plugins/BrowserStorageKeyStore.ts -------------------------------------------------------------------------------- /src/plugins/IdentityEncrypter.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/js-stellar-wallets/HEAD/src/plugins/IdentityEncrypter.test.ts -------------------------------------------------------------------------------- /src/plugins/IdentityEncrypter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/js-stellar-wallets/HEAD/src/plugins/IdentityEncrypter.ts -------------------------------------------------------------------------------- /src/plugins/LocalStorageFacade.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/js-stellar-wallets/HEAD/src/plugins/LocalStorageFacade.ts -------------------------------------------------------------------------------- /src/plugins/LocalStorageKeyStore.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/js-stellar-wallets/HEAD/src/plugins/LocalStorageKeyStore.test.ts -------------------------------------------------------------------------------- /src/plugins/LocalStorageKeyStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/js-stellar-wallets/HEAD/src/plugins/LocalStorageKeyStore.ts -------------------------------------------------------------------------------- /src/plugins/MemoryKeyStore.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/js-stellar-wallets/HEAD/src/plugins/MemoryKeyStore.test.ts -------------------------------------------------------------------------------- /src/plugins/MemoryKeyStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/js-stellar-wallets/HEAD/src/plugins/MemoryKeyStore.ts -------------------------------------------------------------------------------- /src/plugins/ScryptEncrypter.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/js-stellar-wallets/HEAD/src/plugins/ScryptEncrypter.test.ts -------------------------------------------------------------------------------- /src/plugins/ScryptEncrypter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/js-stellar-wallets/HEAD/src/plugins/ScryptEncrypter.ts -------------------------------------------------------------------------------- /src/sep8/ApprovalProvider.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/js-stellar-wallets/HEAD/src/sep8/ApprovalProvider.test.ts -------------------------------------------------------------------------------- /src/sep8/ApprovalProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/js-stellar-wallets/HEAD/src/sep8/ApprovalProvider.ts -------------------------------------------------------------------------------- /src/sep8/getApprovalServerUrl.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/js-stellar-wallets/HEAD/src/sep8/getApprovalServerUrl.test.ts -------------------------------------------------------------------------------- /src/sep8/getApprovalServerUrl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/js-stellar-wallets/HEAD/src/sep8/getApprovalServerUrl.ts -------------------------------------------------------------------------------- /src/sep8/getRegulatedAssetsInTx.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/js-stellar-wallets/HEAD/src/sep8/getRegulatedAssetsInTx.ts -------------------------------------------------------------------------------- /src/sep8/getRegulatedAssetsinTx.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/js-stellar-wallets/HEAD/src/sep8/getRegulatedAssetsinTx.test.ts -------------------------------------------------------------------------------- /src/testUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/js-stellar-wallets/HEAD/src/testUtils.ts -------------------------------------------------------------------------------- /src/transfers/DepositProvider.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/js-stellar-wallets/HEAD/src/transfers/DepositProvider.test.ts -------------------------------------------------------------------------------- /src/transfers/DepositProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/js-stellar-wallets/HEAD/src/transfers/DepositProvider.ts -------------------------------------------------------------------------------- /src/transfers/TransferProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/js-stellar-wallets/HEAD/src/transfers/TransferProvider.ts -------------------------------------------------------------------------------- /src/transfers/WithdrawProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/js-stellar-wallets/HEAD/src/transfers/WithdrawProvider.ts -------------------------------------------------------------------------------- /src/transfers/fetchKycInBrowser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/js-stellar-wallets/HEAD/src/transfers/fetchKycInBrowser.ts -------------------------------------------------------------------------------- /src/transfers/getKycUrl.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/js-stellar-wallets/HEAD/src/transfers/getKycUrl.test.ts -------------------------------------------------------------------------------- /src/transfers/getKycUrl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/js-stellar-wallets/HEAD/src/transfers/getKycUrl.ts -------------------------------------------------------------------------------- /src/transfers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/js-stellar-wallets/HEAD/src/transfers/index.ts -------------------------------------------------------------------------------- /src/transfers/parseInfo.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/js-stellar-wallets/HEAD/src/transfers/parseInfo.test.ts -------------------------------------------------------------------------------- /src/transfers/parseInfo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/js-stellar-wallets/HEAD/src/transfers/parseInfo.ts -------------------------------------------------------------------------------- /src/types/@modules.d.ts: -------------------------------------------------------------------------------- 1 | declare module "randombytes"; 2 | -------------------------------------------------------------------------------- /src/types/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/js-stellar-wallets/HEAD/src/types/data.ts -------------------------------------------------------------------------------- /src/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/js-stellar-wallets/HEAD/src/types/index.ts -------------------------------------------------------------------------------- /src/types/keys.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/js-stellar-wallets/HEAD/src/types/keys.ts -------------------------------------------------------------------------------- /src/types/modules.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/js-stellar-wallets/HEAD/src/types/modules.d.ts -------------------------------------------------------------------------------- /src/types/sep8.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/js-stellar-wallets/HEAD/src/types/sep8.ts -------------------------------------------------------------------------------- /src/types/transfers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/js-stellar-wallets/HEAD/src/types/transfers.ts -------------------------------------------------------------------------------- /src/types/watchers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/js-stellar-wallets/HEAD/src/types/watchers.ts -------------------------------------------------------------------------------- /src/util.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/js-stellar-wallets/HEAD/src/util.d.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/js-stellar-wallets/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/js-stellar-wallets/HEAD/tslint.json -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/js-stellar-wallets/HEAD/webpack.config.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/js-stellar-wallets/HEAD/yarn.lock --------------------------------------------------------------------------------