DelegationResponse is equivalent to Delegation except that it contains a balance in addition to shares which is more suitable for client responses.

interface DelegationResponse {
    balance: undefined | Coin;
    delegation: undefined | Delegation;
}

Properties

Properties

balance: undefined | Coin
delegation: undefined | Delegation