//@ts-nocheck
import { Any, AnyAmino, AnySDKType } from "../../../google/protobuf/any";
import { BinaryReader, BinaryWriter } from "../../../binary";
import { isSet } from "../../../helpers";
import { JsonSafe } from "../../../json-safe";
import { GlobalDecoderRegistry } from "../../../registry";
/**
* 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",
aminoType: "cosmos-sdk/LegacyAminoPubKey",
is(o: any): o is LegacyAminoPubKey {
return o && (o.$typeUrl === LegacyAminoPubKey.typeUrl || typeof o.threshold === "number" && Array.isArray(o.publicKeys) && (!o.publicKeys.length || Any.is(o.publicKeys[0])));
},
isSDK(o: any): o is LegacyAminoPubKeySDKType {
return o && (o.$typeUrl === LegacyAminoPubKey.typeUrl || typeof o.threshold === "number" && Array.isArray(o.public_keys) && (!o.public_keys.length || Any.isSDK(o.public_keys[0])));
},
isAmino(o: any): o is LegacyAminoPubKeyAmino {
return o && (o.$typeUrl === LegacyAminoPubKey.typeUrl || typeof o.threshold === "number" && Array.isArray(o.public_keys) && (!o.public_keys.length || Any.isAmino(o.public_keys[0])));
},
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;
},
fromJSON(object: any): LegacyAminoPubKey {
return {
threshold: isSet(object.threshold) ? Number(object.threshold) : 0,
publicKeys: Array.isArray(object?.publicKeys) ? object.publicKeys.map((e: any) => Any.fromJSON(e)) : []
};
},
toJSON(message: LegacyAminoPubKey): JsonSafe<LegacyAminoPubKey> {
const obj: any = {};
message.threshold !== undefined && (obj.threshold = Math.round(message.threshold));
if (message.publicKeys) {
obj.publicKeys = message.publicKeys.map(e => e ? Any.toJSON(e) : undefined);
} else {
obj.publicKeys = [];
}
return obj;
},
fromPartial(object: Partial<LegacyAminoPubKey>): 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 === 0 ? undefined : message.threshold;
if (message.publicKeys) {
obj.public_keys = message.publicKeys.map(e => e ? Any.toAmino(e) : undefined);
} else {
obj.public_keys = message.publicKeys;
}
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()
};
}
};
GlobalDecoderRegistry.register(LegacyAminoPubKey.typeUrl, LegacyAminoPubKey);
GlobalDecoderRegistry.registerAminoProtoMapping(LegacyAminoPubKey.aminoType, LegacyAminoPubKey.typeUrl);