Delegation represents the bond with tokens held by an account. It is owned by one delegator, and is associated with the voting power of one validator.

interface DelegationAmino {
    delegator_address?: string;
    shares?: string;
    validator_address?: string;
}

Properties

delegator_address?: string

delegator_address is the bech32-encoded address of the delegator.

shares?: string

shares define the delegation shares received.

validator_address?: string

validator_address is the bech32-encoded address of the validator.