Interface GetUndelegationsResponse

interface GetUndelegationsResponse {
    pagination: {
        next_key: string;
        total: string;
    };
    unbonding_responses: UndelegationResponse[];
}

Properties

pagination: {
    next_key: string;
    total: string;
}
unbonding_responses: UndelegationResponse[]