UNPKG

@phiresky/eth-scan

Version:

An efficient Ether and token balance scanner

7 lines 192 B
/** * An object that contains the address (key) and balance or balance (value). */ export interface BalanceMap<T = bigint> { [key: string]: T; } //# sourceMappingURL=balance-map.d.ts.map