Interface DelegationResponse

interface DelegationResponse {
    balance: CosmosCoin<string>;
    delegation: {
        delegator_address: string;
        shares: string;
        validator_address: string;
    };
}

Properties

Properties

balance: CosmosCoin<string>
delegation: {
    delegator_address: string;
    shares: string;
    validator_address: string;
}