Interface BalancesResponse

interface BalancesResponse {
    balances: CosmosCoin<string>[];
    pagination: {
        next_key: string;
        total: number;
    };
}

Properties

Properties

balances: CosmosCoin<string>[]
pagination: {
    next_key: string;
    total: number;
}