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 DelegatorWithdrawInfoAmino {
    delegator_address?: string;
    withdraw_address?: string;
}

Properties

delegator_address?: string

delegator_address is the address of the delegator.

withdraw_address?: string

withdraw_address is the address to withdraw the delegation rewards to.