├── .gitignore
├── src
├── index.tsx
├── utils
│ ├── types.ts
│ ├── providers.ts
│ ├── getContractBalances.ts
│ └── getClassicBalances.ts
├── index.html
├── Loader.tsx
├── App.scss
├── App.tsx
└── tokens.json
├── docs
├── index.html
└── style.css
├── tsconfig.json
├── README.md
├── package.json
└── webpack.config.js
/.gitignore:
--------------------------------------------------------------------------------
1 | dist
2 | node_modules
--------------------------------------------------------------------------------
/src/index.tsx:
--------------------------------------------------------------------------------
1 | import React from 'react';
2 | import { render } from 'react-dom';
3 | import App from './App';
4 |
5 | const rootEl = document.getElementById("root");
6 |
7 | render(
86 | Put the ETH balance checker to the test against traditional 87 | batched RPC requests. Just set the addresses and hit the 88 | "Get Balance" button to try it out. Open your network panel if 89 | you want to inspect the calls in greater detail. 90 |
91 | 114 |
183 | {JSON.stringify(bc.balances, null, 2)}
184 |
185 | >
186 | )}
187 |