├── .editorconfig ├── .gitignore ├── .snyk ├── .travis.yml ├── .vscode └── launch.json ├── LICENSE ├── README.md ├── dist ├── wallet-address-validator.js └── wallet-address-validator.min.js ├── index.html ├── karma.conf.js ├── package.json ├── src ├── ada_validator.js ├── algo_validator.js ├── aptos_validator.js ├── base58_validator.js ├── bch_validator.js ├── bip173_validator.js ├── bitcoin_validator.js ├── crypto │ ├── base32.js │ ├── base58.js │ ├── bech32.js │ ├── biginteger.js │ ├── blake256.js │ ├── blake2b.js │ ├── cnBase58.js │ ├── segwit_addr.js │ ├── sha3.js │ └── utils.js ├── currencies.js ├── dot_validator.js ├── eos_validator.js ├── ethereum_validator.js ├── hbar_validator.js ├── monero_validator.js ├── nano_validator.js ├── nem_validator.js ├── ripple_validator.js ├── siacoin_validator.js ├── stellar_validator.js ├── tezos_validator.js ├── tron_validator.js ├── usdc_validator.js ├── usdt_validator.js └── wallet_address_validator.js ├── test ├── wallet_address_get_currencies.js └── wallet_address_validator.js └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christsim/multicoin-address-validator/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | bower_components 3 | .idea 4 | .DS_Store 5 | -------------------------------------------------------------------------------- /.snyk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christsim/multicoin-address-validator/HEAD/.snyk -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christsim/multicoin-address-validator/HEAD/.travis.yml -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christsim/multicoin-address-validator/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christsim/multicoin-address-validator/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christsim/multicoin-address-validator/HEAD/README.md -------------------------------------------------------------------------------- /dist/wallet-address-validator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christsim/multicoin-address-validator/HEAD/dist/wallet-address-validator.js -------------------------------------------------------------------------------- /dist/wallet-address-validator.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christsim/multicoin-address-validator/HEAD/dist/wallet-address-validator.min.js -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christsim/multicoin-address-validator/HEAD/index.html -------------------------------------------------------------------------------- /karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christsim/multicoin-address-validator/HEAD/karma.conf.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christsim/multicoin-address-validator/HEAD/package.json -------------------------------------------------------------------------------- /src/ada_validator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christsim/multicoin-address-validator/HEAD/src/ada_validator.js -------------------------------------------------------------------------------- /src/algo_validator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christsim/multicoin-address-validator/HEAD/src/algo_validator.js -------------------------------------------------------------------------------- /src/aptos_validator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christsim/multicoin-address-validator/HEAD/src/aptos_validator.js -------------------------------------------------------------------------------- /src/base58_validator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christsim/multicoin-address-validator/HEAD/src/base58_validator.js -------------------------------------------------------------------------------- /src/bch_validator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christsim/multicoin-address-validator/HEAD/src/bch_validator.js -------------------------------------------------------------------------------- /src/bip173_validator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christsim/multicoin-address-validator/HEAD/src/bip173_validator.js -------------------------------------------------------------------------------- /src/bitcoin_validator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christsim/multicoin-address-validator/HEAD/src/bitcoin_validator.js -------------------------------------------------------------------------------- /src/crypto/base32.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christsim/multicoin-address-validator/HEAD/src/crypto/base32.js -------------------------------------------------------------------------------- /src/crypto/base58.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christsim/multicoin-address-validator/HEAD/src/crypto/base58.js -------------------------------------------------------------------------------- /src/crypto/bech32.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christsim/multicoin-address-validator/HEAD/src/crypto/bech32.js -------------------------------------------------------------------------------- /src/crypto/biginteger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christsim/multicoin-address-validator/HEAD/src/crypto/biginteger.js -------------------------------------------------------------------------------- /src/crypto/blake256.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christsim/multicoin-address-validator/HEAD/src/crypto/blake256.js -------------------------------------------------------------------------------- /src/crypto/blake2b.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christsim/multicoin-address-validator/HEAD/src/crypto/blake2b.js -------------------------------------------------------------------------------- /src/crypto/cnBase58.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christsim/multicoin-address-validator/HEAD/src/crypto/cnBase58.js -------------------------------------------------------------------------------- /src/crypto/segwit_addr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christsim/multicoin-address-validator/HEAD/src/crypto/segwit_addr.js -------------------------------------------------------------------------------- /src/crypto/sha3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christsim/multicoin-address-validator/HEAD/src/crypto/sha3.js -------------------------------------------------------------------------------- /src/crypto/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christsim/multicoin-address-validator/HEAD/src/crypto/utils.js -------------------------------------------------------------------------------- /src/currencies.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christsim/multicoin-address-validator/HEAD/src/currencies.js -------------------------------------------------------------------------------- /src/dot_validator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christsim/multicoin-address-validator/HEAD/src/dot_validator.js -------------------------------------------------------------------------------- /src/eos_validator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christsim/multicoin-address-validator/HEAD/src/eos_validator.js -------------------------------------------------------------------------------- /src/ethereum_validator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christsim/multicoin-address-validator/HEAD/src/ethereum_validator.js -------------------------------------------------------------------------------- /src/hbar_validator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christsim/multicoin-address-validator/HEAD/src/hbar_validator.js -------------------------------------------------------------------------------- /src/monero_validator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christsim/multicoin-address-validator/HEAD/src/monero_validator.js -------------------------------------------------------------------------------- /src/nano_validator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christsim/multicoin-address-validator/HEAD/src/nano_validator.js -------------------------------------------------------------------------------- /src/nem_validator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christsim/multicoin-address-validator/HEAD/src/nem_validator.js -------------------------------------------------------------------------------- /src/ripple_validator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christsim/multicoin-address-validator/HEAD/src/ripple_validator.js -------------------------------------------------------------------------------- /src/siacoin_validator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christsim/multicoin-address-validator/HEAD/src/siacoin_validator.js -------------------------------------------------------------------------------- /src/stellar_validator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christsim/multicoin-address-validator/HEAD/src/stellar_validator.js -------------------------------------------------------------------------------- /src/tezos_validator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christsim/multicoin-address-validator/HEAD/src/tezos_validator.js -------------------------------------------------------------------------------- /src/tron_validator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christsim/multicoin-address-validator/HEAD/src/tron_validator.js -------------------------------------------------------------------------------- /src/usdc_validator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christsim/multicoin-address-validator/HEAD/src/usdc_validator.js -------------------------------------------------------------------------------- /src/usdt_validator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christsim/multicoin-address-validator/HEAD/src/usdt_validator.js -------------------------------------------------------------------------------- /src/wallet_address_validator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christsim/multicoin-address-validator/HEAD/src/wallet_address_validator.js -------------------------------------------------------------------------------- /test/wallet_address_get_currencies.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christsim/multicoin-address-validator/HEAD/test/wallet_address_get_currencies.js -------------------------------------------------------------------------------- /test/wallet_address_validator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christsim/multicoin-address-validator/HEAD/test/wallet_address_validator.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christsim/multicoin-address-validator/HEAD/yarn.lock --------------------------------------------------------------------------------