Balance defines an account address and balance pair used in the bank module's genesis state.

interface Balance {
    address: string;
    coins: Coin[];
}

Properties

Properties

address: string

address is the address of the balance holder.

coins: Coin[]

coins defines the different coins this balance holds.