UNPKG
@phiresky/eth-scan
Version:
latest (3.5.4)
3.5.4
An efficient Ether and token balance scanner
MyCryptoHQ/eth-scan
@phiresky/eth-scan
/
src
/
types
/
balance-map.ts
7 lines
(6 loc)
•
149 B
text/typescript
View Raw
1
2
3
4
5
6
7
/** * An object that contains the address (key) and balance or balance (value). */
export
interface
BalanceMap
<
T
=
bigint
> { [
key: string
]: T; }