├── .eslintcache ├── .eslintrc.js ├── .gitignore ├── .npmignore ├── .swagger-codegen └── VERSION ├── README.md ├── address-cli.js ├── api.ts ├── apis ├── addresses-api.ts ├── assets-api.ts ├── byron-addresses-api.ts ├── byron-assets-api.ts ├── byron-coin-selections-api.ts ├── byron-migrations-api.ts ├── byron-transactions-api.ts ├── byron-wallets-api.ts ├── coin-selections-api.ts ├── experimental-api.ts ├── keys-api.ts ├── migrations-api.ts ├── network-api.ts ├── proxy-api.ts ├── settings-api.ts ├── stake-pools-api.ts ├── transactions-api.ts ├── utils-api.ts └── wallets-api.ts ├── base.ts ├── binaries.ts ├── config.ts ├── config ├── local-cluster-alonzo-genesis.json ├── local-cluster-byron-genesis.json ├── local-cluster-protocol.json ├── local-cluster-shelley-genesis.json ├── mainnet-alonzo-genesis.json ├── mainnet-byron-genesis.json ├── mainnet-protocol.json ├── mainnet-shelley-genesis.json ├── network.config.ts ├── testnet-alonzo-genesis.json ├── testnet-byron-genesis.json ├── testnet-protocol.json └── testnet-shelley-genesis.json ├── configuration.ts ├── examples └── multisig │ ├── 2of2 │ ├── generate_address.js │ └── sign_tx.js │ └── 2of3 │ ├── generate_address.js │ └── sign_tx.js ├── git_push.sh ├── index.ts ├── models ├── any-address.ts ├── api-account-key.ts ├── api-account-post-data.ts ├── api-address-data.ts ├── api-address-inspect-pointer.ts ├── api-address-inspect.ts ├── api-address.ts ├── api-asset.ts ├── api-byron-select-coins-data.ts ├── api-byron-wallet-icarus-post-data.ts ├── api-byron-wallet-ledger-post-data.ts ├── api-byron-wallet-migration-post-data.ts ├── api-byron-wallet-put-passphrase-data.ts ├── api-byron-wallet-random-post-data.ts ├── api-byron-wallet-random-xprv-post-data.ts ├── api-byron-wallet-trezor-post-data.ts ├── api-byron-wallet.ts ├── api-coin-selection-certificates.ts ├── api-coin-selection-change.ts ├── api-coin-selection-inputs.ts ├── api-coin-selection-withdrawals.ts ├── api-coin-selection.ts ├── api-credential.ts ├── api-era-info.ts ├── api-era.ts ├── api-fee.ts ├── api-gcstatus.ts ├── api-get-settings.ts ├── api-health-check.ts ├── api-maintenance-action-gc-stake-pools.ts ├── api-maintenance-action-post-data.ts ├── api-maintenance-action.ts ├── api-network-clock-offset.ts ├── api-network-clock.ts ├── api-network-information-network-tip.ts ├── api-network-information-node-tip.ts ├── api-network-information-sync-progress.ts ├── api-network-information.ts ├── api-network-parameters-active-slot-coefficient.ts ├── api-network-parameters-epoch-length.ts ├── api-network-parameters-eras.ts ├── api-network-parameters-slot-length.ts ├── api-network-parameters.ts ├── api-network-tip.ts ├── api-post-account-key-data.ts ├── api-post-random-address-data.ts ├── api-post-redemption-data.ts ├── api-post-redemption-fee-data.ts ├── api-post-transaction-data-byron.ts ├── api-post-transaction-data.ts ├── api-post-transaction-fee-data-byron.ts ├── api-post-transaction-fee-data.ts ├── api-pub-key.ts ├── api-put-addresses-data.ts ├── api-script-some.ts ├── api-script.ts ├── api-select-coins-action.ts ├── api-select-coins-data.ts ├── api-select-coins-payments.ts ├── api-select-coins-redemption.ts ├── api-settings-put-data.ts ├── api-shelley-wallet-migration-post-data.ts ├── api-smash-server.ts ├── api-stake-pool.ts ├── api-transaction.ts ├── api-tx-id.ts ├── api-verification-key.ts ├── api-wallet-delegation-next.ts ├── api-wallet-delegation.ts ├── api-wallet-migration-info-leftovers.ts ├── api-wallet-migration-info-migration-cost.ts ├── api-wallet-migration-info.ts ├── api-wallet-or-account-post-data.ts ├── api-wallet-passphrase.ts ├── api-wallet-post-data.ts ├── api-wallet-put-data.ts ├── api-wallet-put-passphrase-data.ts ├── api-wallet-sign-data.ts ├── api-wallet-utx-os-statistics.ts ├── api-wallet.ts ├── asset-not-present.ts ├── bad-request.ts ├── bip32-keypair.model.ts ├── body.ts ├── body1.ts ├── body10.ts ├── body11.ts ├── body12.ts ├── body13.ts ├── body14.ts ├── body15.ts ├── body16.ts ├── body17.ts ├── body18.ts ├── body19.ts ├── body2.ts ├── body20.ts ├── body21.ts ├── body22.ts ├── body3.ts ├── body4.ts ├── body5.ts ├── body6.ts ├── body7.ts ├── body8.ts ├── body9.ts ├── byronwallets-balance-available.ts ├── byronwallets-balance-total.ts ├── byronwallets-balance.ts ├── cannot-cover-fee.ts ├── credential-value.ts ├── index.ts ├── inline-response200.ts ├── inline-response2001.ts ├── inline-response20010.ts ├── inline-response20011.ts ├── inline-response20012.ts ├── inline-response20013.ts ├── inline-response20014.ts ├── inline-response20015.ts ├── inline-response20016.ts ├── inline-response2002.ts ├── inline-response2003.ts ├── inline-response2004.ts ├── inline-response2005.ts ├── inline-response2006.ts ├── inline-response2007.ts ├── inline-response2008.ts ├── inline-response2009.ts ├── inline-response201.ts ├── inline-response2011.ts ├── inline-response202.ts ├── inline-response2021.ts ├── inline-response2022.ts ├── inline-response2023.ts ├── inline-response400.ts ├── inline-response4001.ts ├── inline-response403.ts ├── inline-response4031.ts ├── inline-response4032.ts ├── inline-response4033.ts ├── inline-response4034.ts ├── inline-response4035.ts ├── inline-response4036.ts ├── inline-response404.ts ├── inline-response4041.ts ├── inline-response415.ts ├── json-script.model.ts ├── multisig-transaction.ts ├── native-assets-metadata-unit.ts ├── native-assets-metadata.ts ├── no-such-wallet.ts ├── not-acceptable.ts ├── nothing-to-migrate.ts ├── nullable-epoch-info.ts ├── payment-extended-signing-key.ts ├── query-param-missing.ts ├── script-value.ts ├── script.model.ts ├── settings-settings.ts ├── some-byron-wallet-post-data.ts ├── stakepools-cost.ts ├── stakepools-margin.ts ├── stakepools-metadata.ts ├── stakepools-metrics-non-myopic-member-rewards.ts ├── stakepools-metrics-produced-blocks.ts ├── stakepools-metrics-relative-stake.ts ├── stakepools-metrics.ts ├── stakepools-pledge.ts ├── stakepools-retirement.ts ├── transaction-already-in-ledger.ts ├── transaction-metadata-value-map.ts ├── transaction-metadata-value.ts ├── unsupported-media-type.ts ├── wallet-already-exists.ts ├── wallets-assets-available.ts ├── wallets-assets.ts ├── wallets-balance-available.ts ├── wallets-balance-reward.ts ├── wallets-balance-total.ts ├── wallets-balance.ts ├── wallets-delegation-active.ts ├── wallets-delegation-changes-at.ts ├── wallets-delegation-next.ts ├── wallets-delegation.ts ├── wallets-passphrase.ts ├── wallets-state-progress.ts ├── wallets-state.ts ├── wallets-tip-height.ts ├── wallets-tip.ts ├── walletswallet-idcoinselectionsrandom-delegation-action.ts ├── walletswallet-idpaymentfees-amount.ts ├── walletswallet-idpaymentfees-payments.ts ├── walletswallet-idpaymentfees-time-to-live.ts ├── walletswallet-idtransactions-amount.ts ├── walletswallet-idtransactions-depth.ts ├── walletswallet-idtransactions-expires-at.ts ├── walletswallet-idtransactions-inputs.ts ├── walletswallet-idtransactions-inserted-at.ts ├── walletswallet-idtransactions-mint.ts ├── walletswallet-idtransactions-pending-since.ts └── walletswallet-idtransactions-withdrawals.ts ├── package.json ├── test ├── assets.ts ├── network.ts ├── seed.ts └── wallet.ts ├── tsconfig.json ├── utils.ts ├── wallet-server.ts └── wallet ├── address-wallet.ts ├── asset-wallet.ts ├── coin-selection-wallet.ts ├── fee-wallet.ts ├── key-wallet.ts ├── maintenance-action-wallet.ts ├── shelley-wallet.ts ├── stakepool-wallet.ts ├── token-wallet.ts ├── transaction-wallet.ts └── utxo-statistics-wallet.ts /.eslintcache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/.eslintcache -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/.npmignore -------------------------------------------------------------------------------- /.swagger-codegen/VERSION: -------------------------------------------------------------------------------- 1 | 3.0.25 -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/README.md -------------------------------------------------------------------------------- /address-cli.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/address-cli.js -------------------------------------------------------------------------------- /api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/api.ts -------------------------------------------------------------------------------- /apis/addresses-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/apis/addresses-api.ts -------------------------------------------------------------------------------- /apis/assets-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/apis/assets-api.ts -------------------------------------------------------------------------------- /apis/byron-addresses-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/apis/byron-addresses-api.ts -------------------------------------------------------------------------------- /apis/byron-assets-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/apis/byron-assets-api.ts -------------------------------------------------------------------------------- /apis/byron-coin-selections-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/apis/byron-coin-selections-api.ts -------------------------------------------------------------------------------- /apis/byron-migrations-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/apis/byron-migrations-api.ts -------------------------------------------------------------------------------- /apis/byron-transactions-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/apis/byron-transactions-api.ts -------------------------------------------------------------------------------- /apis/byron-wallets-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/apis/byron-wallets-api.ts -------------------------------------------------------------------------------- /apis/coin-selections-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/apis/coin-selections-api.ts -------------------------------------------------------------------------------- /apis/experimental-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/apis/experimental-api.ts -------------------------------------------------------------------------------- /apis/keys-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/apis/keys-api.ts -------------------------------------------------------------------------------- /apis/migrations-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/apis/migrations-api.ts -------------------------------------------------------------------------------- /apis/network-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/apis/network-api.ts -------------------------------------------------------------------------------- /apis/proxy-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/apis/proxy-api.ts -------------------------------------------------------------------------------- /apis/settings-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/apis/settings-api.ts -------------------------------------------------------------------------------- /apis/stake-pools-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/apis/stake-pools-api.ts -------------------------------------------------------------------------------- /apis/transactions-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/apis/transactions-api.ts -------------------------------------------------------------------------------- /apis/utils-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/apis/utils-api.ts -------------------------------------------------------------------------------- /apis/wallets-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/apis/wallets-api.ts -------------------------------------------------------------------------------- /base.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/base.ts -------------------------------------------------------------------------------- /binaries.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/binaries.ts -------------------------------------------------------------------------------- /config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/config.ts -------------------------------------------------------------------------------- /config/local-cluster-alonzo-genesis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/config/local-cluster-alonzo-genesis.json -------------------------------------------------------------------------------- /config/local-cluster-byron-genesis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/config/local-cluster-byron-genesis.json -------------------------------------------------------------------------------- /config/local-cluster-protocol.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/config/local-cluster-protocol.json -------------------------------------------------------------------------------- /config/local-cluster-shelley-genesis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/config/local-cluster-shelley-genesis.json -------------------------------------------------------------------------------- /config/mainnet-alonzo-genesis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/config/mainnet-alonzo-genesis.json -------------------------------------------------------------------------------- /config/mainnet-byron-genesis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/config/mainnet-byron-genesis.json -------------------------------------------------------------------------------- /config/mainnet-protocol.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/config/mainnet-protocol.json -------------------------------------------------------------------------------- /config/mainnet-shelley-genesis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/config/mainnet-shelley-genesis.json -------------------------------------------------------------------------------- /config/network.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/config/network.config.ts -------------------------------------------------------------------------------- /config/testnet-alonzo-genesis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/config/testnet-alonzo-genesis.json -------------------------------------------------------------------------------- /config/testnet-byron-genesis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/config/testnet-byron-genesis.json -------------------------------------------------------------------------------- /config/testnet-protocol.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/config/testnet-protocol.json -------------------------------------------------------------------------------- /config/testnet-shelley-genesis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/config/testnet-shelley-genesis.json -------------------------------------------------------------------------------- /configuration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/configuration.ts -------------------------------------------------------------------------------- /examples/multisig/2of2/generate_address.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/examples/multisig/2of2/generate_address.js -------------------------------------------------------------------------------- /examples/multisig/2of2/sign_tx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/examples/multisig/2of2/sign_tx.js -------------------------------------------------------------------------------- /examples/multisig/2of3/generate_address.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/examples/multisig/2of3/generate_address.js -------------------------------------------------------------------------------- /examples/multisig/2of3/sign_tx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/examples/multisig/2of3/sign_tx.js -------------------------------------------------------------------------------- /git_push.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/git_push.sh -------------------------------------------------------------------------------- /index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/index.ts -------------------------------------------------------------------------------- /models/any-address.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/models/any-address.ts -------------------------------------------------------------------------------- /models/api-account-key.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/models/api-account-key.ts -------------------------------------------------------------------------------- /models/api-account-post-data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/models/api-account-post-data.ts -------------------------------------------------------------------------------- /models/api-address-data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/models/api-address-data.ts -------------------------------------------------------------------------------- /models/api-address-inspect-pointer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/models/api-address-inspect-pointer.ts -------------------------------------------------------------------------------- /models/api-address-inspect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/models/api-address-inspect.ts -------------------------------------------------------------------------------- /models/api-address.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/models/api-address.ts -------------------------------------------------------------------------------- /models/api-asset.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/models/api-asset.ts -------------------------------------------------------------------------------- /models/api-byron-select-coins-data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/models/api-byron-select-coins-data.ts -------------------------------------------------------------------------------- /models/api-byron-wallet-icarus-post-data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/models/api-byron-wallet-icarus-post-data.ts -------------------------------------------------------------------------------- /models/api-byron-wallet-ledger-post-data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/models/api-byron-wallet-ledger-post-data.ts -------------------------------------------------------------------------------- /models/api-byron-wallet-migration-post-data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/models/api-byron-wallet-migration-post-data.ts -------------------------------------------------------------------------------- /models/api-byron-wallet-put-passphrase-data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/models/api-byron-wallet-put-passphrase-data.ts -------------------------------------------------------------------------------- /models/api-byron-wallet-random-post-data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/models/api-byron-wallet-random-post-data.ts -------------------------------------------------------------------------------- /models/api-byron-wallet-random-xprv-post-data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/models/api-byron-wallet-random-xprv-post-data.ts -------------------------------------------------------------------------------- /models/api-byron-wallet-trezor-post-data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/models/api-byron-wallet-trezor-post-data.ts -------------------------------------------------------------------------------- /models/api-byron-wallet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/models/api-byron-wallet.ts -------------------------------------------------------------------------------- /models/api-coin-selection-certificates.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/models/api-coin-selection-certificates.ts -------------------------------------------------------------------------------- /models/api-coin-selection-change.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/models/api-coin-selection-change.ts -------------------------------------------------------------------------------- /models/api-coin-selection-inputs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/models/api-coin-selection-inputs.ts -------------------------------------------------------------------------------- /models/api-coin-selection-withdrawals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/models/api-coin-selection-withdrawals.ts -------------------------------------------------------------------------------- /models/api-coin-selection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/models/api-coin-selection.ts -------------------------------------------------------------------------------- /models/api-credential.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/models/api-credential.ts -------------------------------------------------------------------------------- /models/api-era-info.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/models/api-era-info.ts -------------------------------------------------------------------------------- /models/api-era.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/models/api-era.ts -------------------------------------------------------------------------------- /models/api-fee.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/models/api-fee.ts -------------------------------------------------------------------------------- /models/api-gcstatus.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/models/api-gcstatus.ts -------------------------------------------------------------------------------- /models/api-get-settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/models/api-get-settings.ts -------------------------------------------------------------------------------- /models/api-health-check.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/models/api-health-check.ts -------------------------------------------------------------------------------- /models/api-maintenance-action-gc-stake-pools.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/models/api-maintenance-action-gc-stake-pools.ts -------------------------------------------------------------------------------- /models/api-maintenance-action-post-data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/models/api-maintenance-action-post-data.ts -------------------------------------------------------------------------------- /models/api-maintenance-action.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/models/api-maintenance-action.ts -------------------------------------------------------------------------------- /models/api-network-clock-offset.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/models/api-network-clock-offset.ts -------------------------------------------------------------------------------- /models/api-network-clock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/models/api-network-clock.ts -------------------------------------------------------------------------------- /models/api-network-information-network-tip.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/models/api-network-information-network-tip.ts -------------------------------------------------------------------------------- /models/api-network-information-node-tip.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/models/api-network-information-node-tip.ts -------------------------------------------------------------------------------- /models/api-network-information-sync-progress.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/models/api-network-information-sync-progress.ts -------------------------------------------------------------------------------- /models/api-network-information.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/models/api-network-information.ts -------------------------------------------------------------------------------- /models/api-network-parameters-active-slot-coefficient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/models/api-network-parameters-active-slot-coefficient.ts -------------------------------------------------------------------------------- /models/api-network-parameters-epoch-length.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/models/api-network-parameters-epoch-length.ts -------------------------------------------------------------------------------- /models/api-network-parameters-eras.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/models/api-network-parameters-eras.ts -------------------------------------------------------------------------------- /models/api-network-parameters-slot-length.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/models/api-network-parameters-slot-length.ts -------------------------------------------------------------------------------- /models/api-network-parameters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/models/api-network-parameters.ts -------------------------------------------------------------------------------- /models/api-network-tip.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/models/api-network-tip.ts -------------------------------------------------------------------------------- /models/api-post-account-key-data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/models/api-post-account-key-data.ts -------------------------------------------------------------------------------- /models/api-post-random-address-data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/models/api-post-random-address-data.ts -------------------------------------------------------------------------------- /models/api-post-redemption-data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/models/api-post-redemption-data.ts -------------------------------------------------------------------------------- /models/api-post-redemption-fee-data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/models/api-post-redemption-fee-data.ts -------------------------------------------------------------------------------- /models/api-post-transaction-data-byron.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/models/api-post-transaction-data-byron.ts -------------------------------------------------------------------------------- /models/api-post-transaction-data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/models/api-post-transaction-data.ts -------------------------------------------------------------------------------- /models/api-post-transaction-fee-data-byron.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/models/api-post-transaction-fee-data-byron.ts -------------------------------------------------------------------------------- /models/api-post-transaction-fee-data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/models/api-post-transaction-fee-data.ts -------------------------------------------------------------------------------- /models/api-pub-key.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/models/api-pub-key.ts -------------------------------------------------------------------------------- /models/api-put-addresses-data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/models/api-put-addresses-data.ts -------------------------------------------------------------------------------- /models/api-script-some.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/models/api-script-some.ts -------------------------------------------------------------------------------- /models/api-script.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/models/api-script.ts -------------------------------------------------------------------------------- /models/api-select-coins-action.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/models/api-select-coins-action.ts -------------------------------------------------------------------------------- /models/api-select-coins-data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/models/api-select-coins-data.ts -------------------------------------------------------------------------------- /models/api-select-coins-payments.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/models/api-select-coins-payments.ts -------------------------------------------------------------------------------- /models/api-select-coins-redemption.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/models/api-select-coins-redemption.ts -------------------------------------------------------------------------------- /models/api-settings-put-data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/models/api-settings-put-data.ts -------------------------------------------------------------------------------- /models/api-shelley-wallet-migration-post-data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/models/api-shelley-wallet-migration-post-data.ts -------------------------------------------------------------------------------- /models/api-smash-server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/models/api-smash-server.ts -------------------------------------------------------------------------------- /models/api-stake-pool.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/models/api-stake-pool.ts -------------------------------------------------------------------------------- /models/api-transaction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/models/api-transaction.ts -------------------------------------------------------------------------------- /models/api-tx-id.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/models/api-tx-id.ts -------------------------------------------------------------------------------- /models/api-verification-key.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/models/api-verification-key.ts -------------------------------------------------------------------------------- /models/api-wallet-delegation-next.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/models/api-wallet-delegation-next.ts -------------------------------------------------------------------------------- /models/api-wallet-delegation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/models/api-wallet-delegation.ts -------------------------------------------------------------------------------- /models/api-wallet-migration-info-leftovers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/models/api-wallet-migration-info-leftovers.ts -------------------------------------------------------------------------------- /models/api-wallet-migration-info-migration-cost.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/models/api-wallet-migration-info-migration-cost.ts -------------------------------------------------------------------------------- /models/api-wallet-migration-info.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/models/api-wallet-migration-info.ts -------------------------------------------------------------------------------- /models/api-wallet-or-account-post-data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/models/api-wallet-or-account-post-data.ts -------------------------------------------------------------------------------- /models/api-wallet-passphrase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/models/api-wallet-passphrase.ts -------------------------------------------------------------------------------- /models/api-wallet-post-data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/models/api-wallet-post-data.ts -------------------------------------------------------------------------------- /models/api-wallet-put-data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/models/api-wallet-put-data.ts -------------------------------------------------------------------------------- /models/api-wallet-put-passphrase-data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/models/api-wallet-put-passphrase-data.ts -------------------------------------------------------------------------------- /models/api-wallet-sign-data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/models/api-wallet-sign-data.ts -------------------------------------------------------------------------------- /models/api-wallet-utx-os-statistics.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/models/api-wallet-utx-os-statistics.ts -------------------------------------------------------------------------------- /models/api-wallet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/models/api-wallet.ts -------------------------------------------------------------------------------- /models/asset-not-present.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/models/asset-not-present.ts -------------------------------------------------------------------------------- /models/bad-request.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/models/bad-request.ts -------------------------------------------------------------------------------- /models/bip32-keypair.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/models/bip32-keypair.model.ts -------------------------------------------------------------------------------- /models/body.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/models/body.ts -------------------------------------------------------------------------------- /models/body1.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/models/body1.ts -------------------------------------------------------------------------------- /models/body10.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/models/body10.ts -------------------------------------------------------------------------------- /models/body11.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/models/body11.ts -------------------------------------------------------------------------------- /models/body12.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/models/body12.ts -------------------------------------------------------------------------------- /models/body13.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/models/body13.ts -------------------------------------------------------------------------------- /models/body14.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/models/body14.ts -------------------------------------------------------------------------------- /models/body15.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/models/body15.ts -------------------------------------------------------------------------------- /models/body16.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/models/body16.ts -------------------------------------------------------------------------------- /models/body17.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/models/body17.ts -------------------------------------------------------------------------------- /models/body18.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/models/body18.ts -------------------------------------------------------------------------------- /models/body19.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/models/body19.ts -------------------------------------------------------------------------------- /models/body2.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/models/body2.ts -------------------------------------------------------------------------------- /models/body20.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/models/body20.ts -------------------------------------------------------------------------------- /models/body21.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/models/body21.ts -------------------------------------------------------------------------------- /models/body22.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/models/body22.ts -------------------------------------------------------------------------------- /models/body3.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/models/body3.ts -------------------------------------------------------------------------------- /models/body4.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/models/body4.ts -------------------------------------------------------------------------------- /models/body5.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/models/body5.ts -------------------------------------------------------------------------------- /models/body6.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/models/body6.ts -------------------------------------------------------------------------------- /models/body7.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/models/body7.ts -------------------------------------------------------------------------------- /models/body8.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/models/body8.ts -------------------------------------------------------------------------------- /models/body9.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/models/body9.ts -------------------------------------------------------------------------------- /models/byronwallets-balance-available.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/models/byronwallets-balance-available.ts -------------------------------------------------------------------------------- /models/byronwallets-balance-total.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/models/byronwallets-balance-total.ts -------------------------------------------------------------------------------- /models/byronwallets-balance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/models/byronwallets-balance.ts -------------------------------------------------------------------------------- /models/cannot-cover-fee.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/models/cannot-cover-fee.ts -------------------------------------------------------------------------------- /models/credential-value.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/models/credential-value.ts -------------------------------------------------------------------------------- /models/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/models/index.ts -------------------------------------------------------------------------------- /models/inline-response200.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/models/inline-response200.ts -------------------------------------------------------------------------------- /models/inline-response2001.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/models/inline-response2001.ts -------------------------------------------------------------------------------- /models/inline-response20010.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/models/inline-response20010.ts -------------------------------------------------------------------------------- /models/inline-response20011.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/models/inline-response20011.ts -------------------------------------------------------------------------------- /models/inline-response20012.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/models/inline-response20012.ts -------------------------------------------------------------------------------- /models/inline-response20013.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/models/inline-response20013.ts -------------------------------------------------------------------------------- /models/inline-response20014.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/models/inline-response20014.ts -------------------------------------------------------------------------------- /models/inline-response20015.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/models/inline-response20015.ts -------------------------------------------------------------------------------- /models/inline-response20016.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/models/inline-response20016.ts -------------------------------------------------------------------------------- /models/inline-response2002.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/models/inline-response2002.ts -------------------------------------------------------------------------------- /models/inline-response2003.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/models/inline-response2003.ts -------------------------------------------------------------------------------- /models/inline-response2004.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/models/inline-response2004.ts -------------------------------------------------------------------------------- /models/inline-response2005.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/models/inline-response2005.ts -------------------------------------------------------------------------------- /models/inline-response2006.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/models/inline-response2006.ts -------------------------------------------------------------------------------- /models/inline-response2007.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/models/inline-response2007.ts -------------------------------------------------------------------------------- /models/inline-response2008.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/models/inline-response2008.ts -------------------------------------------------------------------------------- /models/inline-response2009.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/models/inline-response2009.ts -------------------------------------------------------------------------------- /models/inline-response201.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/models/inline-response201.ts -------------------------------------------------------------------------------- /models/inline-response2011.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/models/inline-response2011.ts -------------------------------------------------------------------------------- /models/inline-response202.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/models/inline-response202.ts -------------------------------------------------------------------------------- /models/inline-response2021.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/models/inline-response2021.ts -------------------------------------------------------------------------------- /models/inline-response2022.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/models/inline-response2022.ts -------------------------------------------------------------------------------- /models/inline-response2023.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/models/inline-response2023.ts -------------------------------------------------------------------------------- /models/inline-response400.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/models/inline-response400.ts -------------------------------------------------------------------------------- /models/inline-response4001.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/models/inline-response4001.ts -------------------------------------------------------------------------------- /models/inline-response403.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/models/inline-response403.ts -------------------------------------------------------------------------------- /models/inline-response4031.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/models/inline-response4031.ts -------------------------------------------------------------------------------- /models/inline-response4032.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/models/inline-response4032.ts -------------------------------------------------------------------------------- /models/inline-response4033.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/models/inline-response4033.ts -------------------------------------------------------------------------------- /models/inline-response4034.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/models/inline-response4034.ts -------------------------------------------------------------------------------- /models/inline-response4035.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/models/inline-response4035.ts -------------------------------------------------------------------------------- /models/inline-response4036.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/models/inline-response4036.ts -------------------------------------------------------------------------------- /models/inline-response404.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/models/inline-response404.ts -------------------------------------------------------------------------------- /models/inline-response4041.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/models/inline-response4041.ts -------------------------------------------------------------------------------- /models/inline-response415.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/models/inline-response415.ts -------------------------------------------------------------------------------- /models/json-script.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/models/json-script.model.ts -------------------------------------------------------------------------------- /models/multisig-transaction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/models/multisig-transaction.ts -------------------------------------------------------------------------------- /models/native-assets-metadata-unit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/models/native-assets-metadata-unit.ts -------------------------------------------------------------------------------- /models/native-assets-metadata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/models/native-assets-metadata.ts -------------------------------------------------------------------------------- /models/no-such-wallet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/models/no-such-wallet.ts -------------------------------------------------------------------------------- /models/not-acceptable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/models/not-acceptable.ts -------------------------------------------------------------------------------- /models/nothing-to-migrate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/models/nothing-to-migrate.ts -------------------------------------------------------------------------------- /models/nullable-epoch-info.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/models/nullable-epoch-info.ts -------------------------------------------------------------------------------- /models/payment-extended-signing-key.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/models/payment-extended-signing-key.ts -------------------------------------------------------------------------------- /models/query-param-missing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/models/query-param-missing.ts -------------------------------------------------------------------------------- /models/script-value.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/models/script-value.ts -------------------------------------------------------------------------------- /models/script.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/models/script.model.ts -------------------------------------------------------------------------------- /models/settings-settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/models/settings-settings.ts -------------------------------------------------------------------------------- /models/some-byron-wallet-post-data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/models/some-byron-wallet-post-data.ts -------------------------------------------------------------------------------- /models/stakepools-cost.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/models/stakepools-cost.ts -------------------------------------------------------------------------------- /models/stakepools-margin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/models/stakepools-margin.ts -------------------------------------------------------------------------------- /models/stakepools-metadata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/models/stakepools-metadata.ts -------------------------------------------------------------------------------- /models/stakepools-metrics-non-myopic-member-rewards.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/models/stakepools-metrics-non-myopic-member-rewards.ts -------------------------------------------------------------------------------- /models/stakepools-metrics-produced-blocks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/models/stakepools-metrics-produced-blocks.ts -------------------------------------------------------------------------------- /models/stakepools-metrics-relative-stake.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/models/stakepools-metrics-relative-stake.ts -------------------------------------------------------------------------------- /models/stakepools-metrics.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/models/stakepools-metrics.ts -------------------------------------------------------------------------------- /models/stakepools-pledge.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/models/stakepools-pledge.ts -------------------------------------------------------------------------------- /models/stakepools-retirement.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/models/stakepools-retirement.ts -------------------------------------------------------------------------------- /models/transaction-already-in-ledger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/models/transaction-already-in-ledger.ts -------------------------------------------------------------------------------- /models/transaction-metadata-value-map.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/models/transaction-metadata-value-map.ts -------------------------------------------------------------------------------- /models/transaction-metadata-value.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/models/transaction-metadata-value.ts -------------------------------------------------------------------------------- /models/unsupported-media-type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/models/unsupported-media-type.ts -------------------------------------------------------------------------------- /models/wallet-already-exists.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/models/wallet-already-exists.ts -------------------------------------------------------------------------------- /models/wallets-assets-available.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/models/wallets-assets-available.ts -------------------------------------------------------------------------------- /models/wallets-assets.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/models/wallets-assets.ts -------------------------------------------------------------------------------- /models/wallets-balance-available.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/models/wallets-balance-available.ts -------------------------------------------------------------------------------- /models/wallets-balance-reward.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/models/wallets-balance-reward.ts -------------------------------------------------------------------------------- /models/wallets-balance-total.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/models/wallets-balance-total.ts -------------------------------------------------------------------------------- /models/wallets-balance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/models/wallets-balance.ts -------------------------------------------------------------------------------- /models/wallets-delegation-active.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/models/wallets-delegation-active.ts -------------------------------------------------------------------------------- /models/wallets-delegation-changes-at.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/models/wallets-delegation-changes-at.ts -------------------------------------------------------------------------------- /models/wallets-delegation-next.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/models/wallets-delegation-next.ts -------------------------------------------------------------------------------- /models/wallets-delegation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/models/wallets-delegation.ts -------------------------------------------------------------------------------- /models/wallets-passphrase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/models/wallets-passphrase.ts -------------------------------------------------------------------------------- /models/wallets-state-progress.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/models/wallets-state-progress.ts -------------------------------------------------------------------------------- /models/wallets-state.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/models/wallets-state.ts -------------------------------------------------------------------------------- /models/wallets-tip-height.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/models/wallets-tip-height.ts -------------------------------------------------------------------------------- /models/wallets-tip.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/models/wallets-tip.ts -------------------------------------------------------------------------------- /models/walletswallet-idcoinselectionsrandom-delegation-action.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/models/walletswallet-idcoinselectionsrandom-delegation-action.ts -------------------------------------------------------------------------------- /models/walletswallet-idpaymentfees-amount.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/models/walletswallet-idpaymentfees-amount.ts -------------------------------------------------------------------------------- /models/walletswallet-idpaymentfees-payments.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/models/walletswallet-idpaymentfees-payments.ts -------------------------------------------------------------------------------- /models/walletswallet-idpaymentfees-time-to-live.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/models/walletswallet-idpaymentfees-time-to-live.ts -------------------------------------------------------------------------------- /models/walletswallet-idtransactions-amount.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/models/walletswallet-idtransactions-amount.ts -------------------------------------------------------------------------------- /models/walletswallet-idtransactions-depth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/models/walletswallet-idtransactions-depth.ts -------------------------------------------------------------------------------- /models/walletswallet-idtransactions-expires-at.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/models/walletswallet-idtransactions-expires-at.ts -------------------------------------------------------------------------------- /models/walletswallet-idtransactions-inputs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/models/walletswallet-idtransactions-inputs.ts -------------------------------------------------------------------------------- /models/walletswallet-idtransactions-inserted-at.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/models/walletswallet-idtransactions-inserted-at.ts -------------------------------------------------------------------------------- /models/walletswallet-idtransactions-mint.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/models/walletswallet-idtransactions-mint.ts -------------------------------------------------------------------------------- /models/walletswallet-idtransactions-pending-since.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/models/walletswallet-idtransactions-pending-since.ts -------------------------------------------------------------------------------- /models/walletswallet-idtransactions-withdrawals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/models/walletswallet-idtransactions-withdrawals.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/package.json -------------------------------------------------------------------------------- /test/assets.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/test/assets.ts -------------------------------------------------------------------------------- /test/network.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/test/network.ts -------------------------------------------------------------------------------- /test/seed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/test/seed.ts -------------------------------------------------------------------------------- /test/wallet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/test/wallet.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/tsconfig.json -------------------------------------------------------------------------------- /utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/utils.ts -------------------------------------------------------------------------------- /wallet-server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/wallet-server.ts -------------------------------------------------------------------------------- /wallet/address-wallet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/wallet/address-wallet.ts -------------------------------------------------------------------------------- /wallet/asset-wallet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/wallet/asset-wallet.ts -------------------------------------------------------------------------------- /wallet/coin-selection-wallet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/wallet/coin-selection-wallet.ts -------------------------------------------------------------------------------- /wallet/fee-wallet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/wallet/fee-wallet.ts -------------------------------------------------------------------------------- /wallet/key-wallet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/wallet/key-wallet.ts -------------------------------------------------------------------------------- /wallet/maintenance-action-wallet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/wallet/maintenance-action-wallet.ts -------------------------------------------------------------------------------- /wallet/shelley-wallet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/wallet/shelley-wallet.ts -------------------------------------------------------------------------------- /wallet/stakepool-wallet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/wallet/stakepool-wallet.ts -------------------------------------------------------------------------------- /wallet/token-wallet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/wallet/token-wallet.ts -------------------------------------------------------------------------------- /wallet/transaction-wallet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/wallet/transaction-wallet.ts -------------------------------------------------------------------------------- /wallet/utxo-statistics-wallet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tango-crypto/cardano-wallet-js/HEAD/wallet/utxo-statistics-wallet.ts --------------------------------------------------------------------------------