ValidatorSlashEventRecord is used for import / export via genesis json.

interface ValidatorSlashEventRecordAmino {
    height?: string;
    period?: string;
    validator_address?: string;
    validator_slash_event?: ValidatorSlashEventAmino;
}

Properties

height?: string

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

period?: string

period is the period of the slash event.

validator_address?: string

validator_address is the address of the validator.

validator_slash_event?: ValidatorSlashEventAmino

validator_slash_event describes the slash event.