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 Delegation {
    delegatorAddress: string;
    shares: string;
    validatorAddress: string;
}

Properties

delegatorAddress: string

delegator_address is the bech32-encoded address of the delegator.

shares: string

shares define the delegation shares received.

validatorAddress: string

validator_address is the bech32-encoded address of the validator.

Generated using TypeDoc