├── .gitignore ├── .prettierrc ├── LICENSE ├── README.md ├── package.json ├── src ├── ABI │ └── erc-20-abi.json ├── __TEST-SCRIPT__ │ └── playground.ts └── index.ts ├── tsconfig.json └── tslint.json /.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | /dist 3 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshstevens19/ethereum-erc20-token-balances-multicall/HEAD/.prettierrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshstevens19/ethereum-erc20-token-balances-multicall/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshstevens19/ethereum-erc20-token-balances-multicall/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshstevens19/ethereum-erc20-token-balances-multicall/HEAD/package.json -------------------------------------------------------------------------------- /src/ABI/erc-20-abi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshstevens19/ethereum-erc20-token-balances-multicall/HEAD/src/ABI/erc-20-abi.json -------------------------------------------------------------------------------- /src/__TEST-SCRIPT__/playground.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshstevens19/ethereum-erc20-token-balances-multicall/HEAD/src/__TEST-SCRIPT__/playground.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshstevens19/ethereum-erc20-token-balances-multicall/HEAD/src/index.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshstevens19/ethereum-erc20-token-balances-multicall/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshstevens19/ethereum-erc20-token-balances-multicall/HEAD/tslint.json --------------------------------------------------------------------------------