interface Evidence {
    height: bigint;
    time: undefined | Date;
    totalVotingPower: bigint;
    type: EvidenceType;
    validator: undefined | Validator;
}

Properties

height: bigint

The height when the offense occurred

time: undefined | Date

The corresponding time where the offense occurred

totalVotingPower: bigint

Total voting power of the validator set in case the ABCI application does not store historical validators. https://github.com/tendermint/tendermint/issues/4581

validator: undefined | Validator

The offending validator