/** * An object that contains the address (key) and balance or balance (value). */ export interface BalanceMap { [key: string]: T; }