import { Any, AnyAmino, AnySDKType } from "../../../google/protobuf/any"; import { BinaryReader, BinaryWriter } from "../../../binary"; /** * LegacyAminoPubKey specifies a public key type * which nests multiple public keys and a threshold, * it uses legacy amino address rules. */ export interface LegacyAminoPubKey { threshold: number; publicKeys: Any[]; } export interface LegacyAminoPubKeyProtoMsg { typeUrl: "/cosmos.crypto.multisig.LegacyAminoPubKey"; value: Uint8Array; } /** * LegacyAminoPubKey specifies a public key type * which nests multiple public keys and a threshold, * it uses legacy amino address rules. */ export interface LegacyAminoPubKeyAmino { threshold?: number; public_keys?: AnyAmino[]; } export interface LegacyAminoPubKeyAminoMsg { type: "cosmos-sdk/LegacyAminoPubKey"; value: LegacyAminoPubKeyAmino; } /** * LegacyAminoPubKey specifies a public key type * which nests multiple public keys and a threshold, * it uses legacy amino address rules. */ export interface LegacyAminoPubKeySDKType { threshold: number; public_keys: AnySDKType[]; } function createBaseLegacyAminoPubKey(): LegacyAminoPubKey { return { threshold: 0, publicKeys: [] }; } export const LegacyAminoPubKey = { typeUrl: "/cosmos.crypto.multisig.LegacyAminoPubKey", encode(message: LegacyAminoPubKey, writer: BinaryWriter = BinaryWriter.create()): BinaryWriter { if (message.threshold !== 0) { writer.uint32(8).uint32(message.threshold); } for (const v of message.publicKeys) { Any.encode(v!, writer.uint32(18).fork()).ldelim(); } return writer; }, decode(input: BinaryReader | Uint8Array, length?: number): LegacyAminoPubKey { const reader = input instanceof BinaryReader ? input : new BinaryReader(input); let end = length === undefined ? reader.len : reader.pos + length; const message = createBaseLegacyAminoPubKey(); while (reader.pos < end) { const tag = reader.uint32(); switch (tag >>> 3) { case 1: message.threshold = reader.uint32(); break; case 2: message.publicKeys.push(Any.decode(reader, reader.uint32())); break; default: reader.skipType(tag & 7); break; } } return message; }, fromPartial(object: Partial): LegacyAminoPubKey { const message = createBaseLegacyAminoPubKey(); message.threshold = object.threshold ?? 0; message.publicKeys = object.publicKeys?.map(e => Any.fromPartial(e)) || []; return message; }, fromAmino(object: LegacyAminoPubKeyAmino): LegacyAminoPubKey { const message = createBaseLegacyAminoPubKey(); if (object.threshold !== undefined && object.threshold !== null) { message.threshold = object.threshold; } message.publicKeys = object.public_keys?.map(e => Any.fromAmino(e)) || []; return message; }, toAmino(message: LegacyAminoPubKey): LegacyAminoPubKeyAmino { const obj: any = {}; obj.threshold = message.threshold; if (message.publicKeys) { obj.public_keys = message.publicKeys.map(e => e ? Any.toAmino(e) : undefined); } else { obj.public_keys = []; } return obj; }, fromAminoMsg(object: LegacyAminoPubKeyAminoMsg): LegacyAminoPubKey { return LegacyAminoPubKey.fromAmino(object.value); }, toAminoMsg(message: LegacyAminoPubKey): LegacyAminoPubKeyAminoMsg { return { type: "cosmos-sdk/LegacyAminoPubKey", value: LegacyAminoPubKey.toAmino(message) }; }, fromProtoMsg(message: LegacyAminoPubKeyProtoMsg): LegacyAminoPubKey { return LegacyAminoPubKey.decode(message.value); }, toProto(message: LegacyAminoPubKey): Uint8Array { return LegacyAminoPubKey.encode(message).finish(); }, toProtoMsg(message: LegacyAminoPubKey): LegacyAminoPubKeyProtoMsg { return { typeUrl: "/cosmos.crypto.multisig.LegacyAminoPubKey", value: LegacyAminoPubKey.encode(message).finish() }; } };