DelegatorWithdrawInfo is the address for where distributions rewards are withdrawn to by default this struct is only used at genesis to feed in default withdraw addresses.

interface DelegatorWithdrawInfo {
    delegatorAddress: string;
    withdrawAddress: string;
}

Properties

delegatorAddress: string

delegator_address is the address of the delegator.

withdrawAddress: string

withdraw_address is the address to withdraw the delegation rewards to.