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

interface BalanceAmino {
    address?: string;
    coins?: CoinAmino[];
}

Properties

Properties

address?: string

address is the address of the balance holder.

coins?: CoinAmino[]

coins defines the different coins this balance holds.