ValidatorSlashEventRecord is used for import / export via genesis json.

interface ValidatorSlashEventRecord {
    height: bigint;
    period: bigint;
    validatorAddress: string;
    validatorSlashEvent: undefined | ValidatorSlashEvent;
}

Properties

height: bigint

height defines the block height at which the slash event occured.

period: bigint

period is the period of the slash event.

validatorAddress: string

validator_address is the address of the validator.

validatorSlashEvent: undefined | ValidatorSlashEvent

validator_slash_event describes the slash event.