UNPKG

@phiresky/eth-scan

Version:

An efficient Ether and token balance scanner

7 lines (6 loc) 149 B
/** * An object that contains the address (key) and balance or balance (value). */ export interface BalanceMap<T = bigint> { [key: string]: T; }