├── .gitignore ├── LICENSE ├── README.md ├── package.json ├── src ├── account.ts ├── assetId.ts ├── assetName.ts ├── assetType.ts ├── chain.ts ├── index.ts ├── spec.ts ├── types.ts └── utils.ts ├── test ├── account.test.ts ├── assetId.test.ts ├── assetName.test.ts ├── assetType.test.ts ├── chain.test.ts └── data │ └── index.ts ├── tsconfig.json └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | *.log 2 | .DS_Store 3 | node_modules 4 | dist 5 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChainAgnostic/caip-js/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChainAgnostic/caip-js/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChainAgnostic/caip-js/HEAD/package.json -------------------------------------------------------------------------------- /src/account.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChainAgnostic/caip-js/HEAD/src/account.ts -------------------------------------------------------------------------------- /src/assetId.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChainAgnostic/caip-js/HEAD/src/assetId.ts -------------------------------------------------------------------------------- /src/assetName.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChainAgnostic/caip-js/HEAD/src/assetName.ts -------------------------------------------------------------------------------- /src/assetType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChainAgnostic/caip-js/HEAD/src/assetType.ts -------------------------------------------------------------------------------- /src/chain.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChainAgnostic/caip-js/HEAD/src/chain.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChainAgnostic/caip-js/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChainAgnostic/caip-js/HEAD/src/spec.ts -------------------------------------------------------------------------------- /src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChainAgnostic/caip-js/HEAD/src/types.ts -------------------------------------------------------------------------------- /src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChainAgnostic/caip-js/HEAD/src/utils.ts -------------------------------------------------------------------------------- /test/account.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChainAgnostic/caip-js/HEAD/test/account.test.ts -------------------------------------------------------------------------------- /test/assetId.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChainAgnostic/caip-js/HEAD/test/assetId.test.ts -------------------------------------------------------------------------------- /test/assetName.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChainAgnostic/caip-js/HEAD/test/assetName.test.ts -------------------------------------------------------------------------------- /test/assetType.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChainAgnostic/caip-js/HEAD/test/assetType.test.ts -------------------------------------------------------------------------------- /test/chain.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChainAgnostic/caip-js/HEAD/test/chain.test.ts -------------------------------------------------------------------------------- /test/data/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChainAgnostic/caip-js/HEAD/test/data/index.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChainAgnostic/caip-js/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChainAgnostic/caip-js/HEAD/yarn.lock --------------------------------------------------------------------------------