DelegatorStartingInfoRecord used for import / export via genesis json.

interface DelegatorStartingInfoRecord {
    delegatorAddress: string;
    startingInfo: undefined | DelegatorStartingInfo;
    validatorAddress: string;
}

Properties

delegatorAddress: string

delegator_address is the address of the delegator.

startingInfo: undefined | DelegatorStartingInfo

starting_info defines the starting info of a delegator.

validatorAddress: string

validator_address is the address of the validator.