├── .gitignore ├── .travis.yml ├── CODEOWNERS ├── README.md ├── __tests__ └── index.spec.js ├── dev ├── UNUSED_wallet-options-v4.json └── wallet-options.json ├── package.json ├── prod ├── UNUSED_wallet-options-v4.json └── wallet-options.json ├── scripts ├── json-format.js └── upload.sh ├── src ├── data.js ├── index.js ├── schema.js └── types.js ├── staging ├── UNUSED_wallet-options-v4.json └── wallet-options.json └── testnet ├── UNUSED_wallet-options-v4.json └── wallet-options.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-options/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-options/HEAD/.travis.yml -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @mpfluger @plondon 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-options/HEAD/README.md -------------------------------------------------------------------------------- /__tests__/index.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-options/HEAD/__tests__/index.spec.js -------------------------------------------------------------------------------- /dev/UNUSED_wallet-options-v4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-options/HEAD/dev/UNUSED_wallet-options-v4.json -------------------------------------------------------------------------------- /dev/wallet-options.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-options/HEAD/dev/wallet-options.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-options/HEAD/package.json -------------------------------------------------------------------------------- /prod/UNUSED_wallet-options-v4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-options/HEAD/prod/UNUSED_wallet-options-v4.json -------------------------------------------------------------------------------- /prod/wallet-options.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-options/HEAD/prod/wallet-options.json -------------------------------------------------------------------------------- /scripts/json-format.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-options/HEAD/scripts/json-format.js -------------------------------------------------------------------------------- /scripts/upload.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-options/HEAD/scripts/upload.sh -------------------------------------------------------------------------------- /src/data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-options/HEAD/src/data.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-options/HEAD/src/index.js -------------------------------------------------------------------------------- /src/schema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-options/HEAD/src/schema.js -------------------------------------------------------------------------------- /src/types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-options/HEAD/src/types.js -------------------------------------------------------------------------------- /staging/UNUSED_wallet-options-v4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-options/HEAD/staging/UNUSED_wallet-options-v4.json -------------------------------------------------------------------------------- /staging/wallet-options.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-options/HEAD/staging/wallet-options.json -------------------------------------------------------------------------------- /testnet/UNUSED_wallet-options-v4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-options/HEAD/testnet/UNUSED_wallet-options-v4.json -------------------------------------------------------------------------------- /testnet/wallet-options.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-options/HEAD/testnet/wallet-options.json --------------------------------------------------------------------------------