import { Timestamp } from "../../../google/protobuf/timestamp"; import { Duration, DurationSDKType } from "../../../google/protobuf/duration"; import { Long, toTimestamp, fromTimestamp, DeepPartial } from "../../../helpers"; import * as _m0 from "protobufjs/minimal"; /** * ValidatorSigningInfo defines a validator's signing info for monitoring their * liveness activity. */ export interface ValidatorSigningInfo { address: string; /** Height at which validator was first a candidate OR was un-jailed */ startHeight: Long; /** * Index which is incremented every time a validator is bonded in a block and * _may_ have signed a pre-commit or not. This in conjunction with the * signed_blocks_window param determines the index in the missed block bitmap. */ indexOffset: Long; /** Timestamp until which the validator is jailed due to liveness downtime. */ jailedUntil?: Date; /** * Whether or not a validator has been tombstoned (killed out of validator * set). It is set once the validator commits an equivocation or for any other * configured misbehavior. */ tombstoned: boolean; /** * A counter of missed (unsigned) blocks. It is used to avoid unnecessary * reads in the missed block bitmap. */ missedBlocksCounter: Long; } /** * ValidatorSigningInfo defines a validator's signing info for monitoring their * liveness activity. */ export interface ValidatorSigningInfoSDKType { address: string; start_height: Long; index_offset: Long; jailed_until?: Date; tombstoned: boolean; missed_blocks_counter: Long; } /** Params represents the parameters used for by the slashing module. */ export interface Params { signedBlocksWindow: Long; minSignedPerWindow: Uint8Array; downtimeJailDuration?: Duration; slashFractionDoubleSign: Uint8Array; slashFractionDowntime: Uint8Array; } /** Params represents the parameters used for by the slashing module. */ export interface ParamsSDKType { signed_blocks_window: Long; min_signed_per_window: Uint8Array; downtime_jail_duration?: DurationSDKType; slash_fraction_double_sign: Uint8Array; slash_fraction_downtime: Uint8Array; } function createBaseValidatorSigningInfo(): ValidatorSigningInfo { return { address: "", startHeight: Long.ZERO, indexOffset: Long.ZERO, jailedUntil: undefined, tombstoned: false, missedBlocksCounter: Long.ZERO }; } export const ValidatorSigningInfo = { encode(message: ValidatorSigningInfo, writer: _m0.Writer = _m0.Writer.create()): _m0.Writer { if (message.address !== "") { writer.uint32(10).string(message.address); } if (!message.startHeight.isZero()) { writer.uint32(16).int64(message.startHeight); } if (!message.indexOffset.isZero()) { writer.uint32(24).int64(message.indexOffset); } if (message.jailedUntil !== undefined) { Timestamp.encode(toTimestamp(message.jailedUntil), writer.uint32(34).fork()).ldelim(); } if (message.tombstoned === true) { writer.uint32(40).bool(message.tombstoned); } if (!message.missedBlocksCounter.isZero()) { writer.uint32(48).int64(message.missedBlocksCounter); } return writer; }, decode(input: _m0.Reader | Uint8Array, length?: number): ValidatorSigningInfo { const reader = input instanceof _m0.Reader ? input : new _m0.Reader(input); let end = length === undefined ? reader.len : reader.pos + length; const message = createBaseValidatorSigningInfo(); while (reader.pos < end) { const tag = reader.uint32(); switch (tag >>> 3) { case 1: message.address = reader.string(); break; case 2: message.startHeight = (reader.int64() as Long); break; case 3: message.indexOffset = (reader.int64() as Long); break; case 4: message.jailedUntil = fromTimestamp(Timestamp.decode(reader, reader.uint32())); break; case 5: message.tombstoned = reader.bool(); break; case 6: message.missedBlocksCounter = (reader.int64() as Long); break; default: reader.skipType(tag & 7); break; } } return message; }, fromPartial(object: DeepPartial): ValidatorSigningInfo { const message = createBaseValidatorSigningInfo(); message.address = object.address ?? ""; message.startHeight = object.startHeight !== undefined && object.startHeight !== null ? Long.fromValue(object.startHeight) : Long.ZERO; message.indexOffset = object.indexOffset !== undefined && object.indexOffset !== null ? Long.fromValue(object.indexOffset) : Long.ZERO; message.jailedUntil = object.jailedUntil ?? undefined; message.tombstoned = object.tombstoned ?? false; message.missedBlocksCounter = object.missedBlocksCounter !== undefined && object.missedBlocksCounter !== null ? Long.fromValue(object.missedBlocksCounter) : Long.ZERO; return message; } }; function createBaseParams(): Params { return { signedBlocksWindow: Long.ZERO, minSignedPerWindow: new Uint8Array(), downtimeJailDuration: undefined, slashFractionDoubleSign: new Uint8Array(), slashFractionDowntime: new Uint8Array() }; } export const Params = { encode(message: Params, writer: _m0.Writer = _m0.Writer.create()): _m0.Writer { if (!message.signedBlocksWindow.isZero()) { writer.uint32(8).int64(message.signedBlocksWindow); } if (message.minSignedPerWindow.length !== 0) { writer.uint32(18).bytes(message.minSignedPerWindow); } if (message.downtimeJailDuration !== undefined) { Duration.encode(message.downtimeJailDuration, writer.uint32(26).fork()).ldelim(); } if (message.slashFractionDoubleSign.length !== 0) { writer.uint32(34).bytes(message.slashFractionDoubleSign); } if (message.slashFractionDowntime.length !== 0) { writer.uint32(42).bytes(message.slashFractionDowntime); } return writer; }, decode(input: _m0.Reader | Uint8Array, length?: number): Params { const reader = input instanceof _m0.Reader ? input : new _m0.Reader(input); let end = length === undefined ? reader.len : reader.pos + length; const message = createBaseParams(); while (reader.pos < end) { const tag = reader.uint32(); switch (tag >>> 3) { case 1: message.signedBlocksWindow = (reader.int64() as Long); break; case 2: message.minSignedPerWindow = reader.bytes(); break; case 3: message.downtimeJailDuration = Duration.decode(reader, reader.uint32()); break; case 4: message.slashFractionDoubleSign = reader.bytes(); break; case 5: message.slashFractionDowntime = reader.bytes(); break; default: reader.skipType(tag & 7); break; } } return message; }, fromPartial(object: DeepPartial): Params { const message = createBaseParams(); message.signedBlocksWindow = object.signedBlocksWindow !== undefined && object.signedBlocksWindow !== null ? Long.fromValue(object.signedBlocksWindow) : Long.ZERO; message.minSignedPerWindow = object.minSignedPerWindow ?? new Uint8Array(); message.downtimeJailDuration = object.downtimeJailDuration !== undefined && object.downtimeJailDuration !== null ? Duration.fromPartial(object.downtimeJailDuration) : undefined; message.slashFractionDoubleSign = object.slashFractionDoubleSign ?? new Uint8Array(); message.slashFractionDowntime = object.slashFractionDowntime ?? new Uint8Array(); return message; } };