UNPKG

interchainjs

Version:

InterchainJS is a JavaScript library for interacting with Cosmos SDK based blockchains.

428 lines (427 loc) 16.6 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.GrantQueueItem = exports.GrantAuthorization = exports.Grant = exports.GenericAuthorization = void 0; const any_1 = require("../../../google/protobuf/any"); const timestamp_1 = require("../../../google/protobuf/timestamp"); const authz_1 = require("../../../ibc/applications/transfer/v1/authz"); const authz_2 = require("../../../cosmwasm/wasm/v1/authz"); const authz_3 = require("../../staking/v1beta1/authz"); const authz_4 = require("../../bank/v1beta1/authz"); const binary_1 = require("../../../binary"); const helpers_1 = require("../../../helpers"); const registry_1 = require("../../../registry"); function createBaseGenericAuthorization() { return { $typeUrl: "/cosmos.authz.v1beta1.GenericAuthorization", msg: "" }; } /** * GenericAuthorization gives the grantee unrestricted permissions to execute * the provided method on behalf of the granter's account. * @name GenericAuthorization * @package cosmos.authz.v1beta1 * @see proto type: cosmos.authz.v1beta1.GenericAuthorization */ exports.GenericAuthorization = { typeUrl: "/cosmos.authz.v1beta1.GenericAuthorization", aminoType: "cosmos-sdk/GenericAuthorization", is(o) { return o && (o.$typeUrl === exports.GenericAuthorization.typeUrl || typeof o.msg === "string"); }, isAmino(o) { return o && (o.$typeUrl === exports.GenericAuthorization.typeUrl || typeof o.msg === "string"); }, encode(message, writer = binary_1.BinaryWriter.create()) { if (message.msg !== "") { writer.uint32(10).string(message.msg); } return writer; }, decode(input, length) { const reader = input instanceof binary_1.BinaryReader ? input : new binary_1.BinaryReader(input); let end = length === undefined ? reader.len : reader.pos + length; const message = createBaseGenericAuthorization(); while (reader.pos < end) { const tag = reader.uint32(); switch (tag >>> 3) { case 1: message.msg = reader.string(); break; default: reader.skipType(tag & 7); break; } } return message; }, fromPartial(object) { const message = createBaseGenericAuthorization(); message.msg = object.msg ?? ""; return message; }, fromAmino(object) { const message = createBaseGenericAuthorization(); if (object.msg !== undefined && object.msg !== null) { message.msg = object.msg; } return message; }, toAmino(message) { const obj = {}; obj.msg = message.msg === "" ? undefined : message.msg; return obj; }, fromAminoMsg(object) { return exports.GenericAuthorization.fromAmino(object.value); }, toAminoMsg(message) { return { type: "cosmos-sdk/GenericAuthorization", value: exports.GenericAuthorization.toAmino(message) }; }, fromProtoMsg(message) { return exports.GenericAuthorization.decode(message.value); }, toProto(message) { return exports.GenericAuthorization.encode(message).finish(); }, toProtoMsg(message) { return { typeUrl: "/cosmos.authz.v1beta1.GenericAuthorization", value: exports.GenericAuthorization.encode(message).finish() }; }, registerTypeUrl() { if (!registry_1.GlobalDecoderRegistry.registerExistingTypeUrl(exports.GenericAuthorization.typeUrl)) { return; } registry_1.GlobalDecoderRegistry.register(exports.GenericAuthorization.typeUrl, exports.GenericAuthorization); registry_1.GlobalDecoderRegistry.registerAminoProtoMapping(exports.GenericAuthorization.aminoType, exports.GenericAuthorization.typeUrl); } }; function createBaseGrant() { return { authorization: undefined, expiration: undefined }; } /** * Grant gives permissions to execute * the provide method with expiration time. * @name Grant * @package cosmos.authz.v1beta1 * @see proto type: cosmos.authz.v1beta1.Grant */ exports.Grant = { typeUrl: "/cosmos.authz.v1beta1.Grant", aminoType: "cosmos-sdk/Grant", is(o) { return o && o.$typeUrl === exports.Grant.typeUrl; }, isAmino(o) { return o && o.$typeUrl === exports.Grant.typeUrl; }, encode(message, writer = binary_1.BinaryWriter.create()) { if (message.authorization !== undefined) { any_1.Any.encode(registry_1.GlobalDecoderRegistry.wrapAny(message.authorization), writer.uint32(10).fork()).ldelim(); } if (message.expiration !== undefined) { timestamp_1.Timestamp.encode((0, helpers_1.toTimestamp)(message.expiration), writer.uint32(18).fork()).ldelim(); } return writer; }, decode(input, length) { const reader = input instanceof binary_1.BinaryReader ? input : new binary_1.BinaryReader(input); let end = length === undefined ? reader.len : reader.pos + length; const message = createBaseGrant(); while (reader.pos < end) { const tag = reader.uint32(); switch (tag >>> 3) { case 1: message.authorization = registry_1.GlobalDecoderRegistry.unwrapAny(reader); break; case 2: message.expiration = (0, helpers_1.fromTimestamp)(timestamp_1.Timestamp.decode(reader, reader.uint32())); break; default: reader.skipType(tag & 7); break; } } return message; }, fromPartial(object) { const message = createBaseGrant(); message.authorization = object.authorization !== undefined && object.authorization !== null ? registry_1.GlobalDecoderRegistry.fromPartial(object.authorization) : undefined; message.expiration = object.expiration ?? undefined; return message; }, fromAmino(object) { const message = createBaseGrant(); if (object.authorization !== undefined && object.authorization !== null) { message.authorization = registry_1.GlobalDecoderRegistry.fromAminoMsg(object.authorization); } if (object.expiration !== undefined && object.expiration !== null) { message.expiration = (0, helpers_1.fromTimestamp)(timestamp_1.Timestamp.fromAmino(object.expiration)); } return message; }, toAmino(message) { const obj = {}; obj.authorization = message.authorization ? registry_1.GlobalDecoderRegistry.toAminoMsg(message.authorization) : undefined; obj.expiration = message.expiration ? timestamp_1.Timestamp.toAmino((0, helpers_1.toTimestamp)(message.expiration)) : undefined; return obj; }, fromAminoMsg(object) { return exports.Grant.fromAmino(object.value); }, toAminoMsg(message) { return { type: "cosmos-sdk/Grant", value: exports.Grant.toAmino(message) }; }, fromProtoMsg(message) { return exports.Grant.decode(message.value); }, toProto(message) { return exports.Grant.encode(message).finish(); }, toProtoMsg(message) { return { typeUrl: "/cosmos.authz.v1beta1.Grant", value: exports.Grant.encode(message).finish() }; }, registerTypeUrl() { if (!registry_1.GlobalDecoderRegistry.registerExistingTypeUrl(exports.Grant.typeUrl)) { return; } exports.GenericAuthorization.registerTypeUrl(); authz_1.TransferAuthorization.registerTypeUrl(); authz_2.StoreCodeAuthorization.registerTypeUrl(); authz_2.ContractExecutionAuthorization.registerTypeUrl(); authz_2.ContractMigrationAuthorization.registerTypeUrl(); authz_3.StakeAuthorization.registerTypeUrl(); authz_4.SendAuthorization.registerTypeUrl(); } }; function createBaseGrantAuthorization() { return { granter: "", grantee: "", authorization: undefined, expiration: undefined }; } /** * GrantAuthorization extends a grant with both the addresses of the grantee and granter. * It is used in genesis.proto and query.proto * @name GrantAuthorization * @package cosmos.authz.v1beta1 * @see proto type: cosmos.authz.v1beta1.GrantAuthorization */ exports.GrantAuthorization = { typeUrl: "/cosmos.authz.v1beta1.GrantAuthorization", aminoType: "cosmos-sdk/GrantAuthorization", is(o) { return o && (o.$typeUrl === exports.GrantAuthorization.typeUrl || typeof o.granter === "string" && typeof o.grantee === "string"); }, isAmino(o) { return o && (o.$typeUrl === exports.GrantAuthorization.typeUrl || typeof o.granter === "string" && typeof o.grantee === "string"); }, encode(message, writer = binary_1.BinaryWriter.create()) { if (message.granter !== "") { writer.uint32(10).string(message.granter); } if (message.grantee !== "") { writer.uint32(18).string(message.grantee); } if (message.authorization !== undefined) { any_1.Any.encode(registry_1.GlobalDecoderRegistry.wrapAny(message.authorization), writer.uint32(26).fork()).ldelim(); } if (message.expiration !== undefined) { timestamp_1.Timestamp.encode((0, helpers_1.toTimestamp)(message.expiration), writer.uint32(34).fork()).ldelim(); } return writer; }, decode(input, length) { const reader = input instanceof binary_1.BinaryReader ? input : new binary_1.BinaryReader(input); let end = length === undefined ? reader.len : reader.pos + length; const message = createBaseGrantAuthorization(); while (reader.pos < end) { const tag = reader.uint32(); switch (tag >>> 3) { case 1: message.granter = reader.string(); break; case 2: message.grantee = reader.string(); break; case 3: message.authorization = registry_1.GlobalDecoderRegistry.unwrapAny(reader); break; case 4: message.expiration = (0, helpers_1.fromTimestamp)(timestamp_1.Timestamp.decode(reader, reader.uint32())); break; default: reader.skipType(tag & 7); break; } } return message; }, fromPartial(object) { const message = createBaseGrantAuthorization(); message.granter = object.granter ?? ""; message.grantee = object.grantee ?? ""; message.authorization = object.authorization !== undefined && object.authorization !== null ? registry_1.GlobalDecoderRegistry.fromPartial(object.authorization) : undefined; message.expiration = object.expiration ?? undefined; return message; }, fromAmino(object) { const message = createBaseGrantAuthorization(); if (object.granter !== undefined && object.granter !== null) { message.granter = object.granter; } if (object.grantee !== undefined && object.grantee !== null) { message.grantee = object.grantee; } if (object.authorization !== undefined && object.authorization !== null) { message.authorization = registry_1.GlobalDecoderRegistry.fromAminoMsg(object.authorization); } if (object.expiration !== undefined && object.expiration !== null) { message.expiration = (0, helpers_1.fromTimestamp)(timestamp_1.Timestamp.fromAmino(object.expiration)); } return message; }, toAmino(message) { const obj = {}; obj.granter = message.granter === "" ? undefined : message.granter; obj.grantee = message.grantee === "" ? undefined : message.grantee; obj.authorization = message.authorization ? registry_1.GlobalDecoderRegistry.toAminoMsg(message.authorization) : undefined; obj.expiration = message.expiration ? timestamp_1.Timestamp.toAmino((0, helpers_1.toTimestamp)(message.expiration)) : undefined; return obj; }, fromAminoMsg(object) { return exports.GrantAuthorization.fromAmino(object.value); }, toAminoMsg(message) { return { type: "cosmos-sdk/GrantAuthorization", value: exports.GrantAuthorization.toAmino(message) }; }, fromProtoMsg(message) { return exports.GrantAuthorization.decode(message.value); }, toProto(message) { return exports.GrantAuthorization.encode(message).finish(); }, toProtoMsg(message) { return { typeUrl: "/cosmos.authz.v1beta1.GrantAuthorization", value: exports.GrantAuthorization.encode(message).finish() }; }, registerTypeUrl() { if (!registry_1.GlobalDecoderRegistry.registerExistingTypeUrl(exports.GrantAuthorization.typeUrl)) { return; } exports.GenericAuthorization.registerTypeUrl(); authz_1.TransferAuthorization.registerTypeUrl(); authz_2.StoreCodeAuthorization.registerTypeUrl(); authz_2.ContractExecutionAuthorization.registerTypeUrl(); authz_2.ContractMigrationAuthorization.registerTypeUrl(); authz_3.StakeAuthorization.registerTypeUrl(); authz_4.SendAuthorization.registerTypeUrl(); } }; function createBaseGrantQueueItem() { return { msgTypeUrls: [] }; } /** * GrantQueueItem contains the list of TypeURL of a sdk.Msg. * @name GrantQueueItem * @package cosmos.authz.v1beta1 * @see proto type: cosmos.authz.v1beta1.GrantQueueItem */ exports.GrantQueueItem = { typeUrl: "/cosmos.authz.v1beta1.GrantQueueItem", aminoType: "cosmos-sdk/GrantQueueItem", is(o) { return o && (o.$typeUrl === exports.GrantQueueItem.typeUrl || Array.isArray(o.msgTypeUrls) && (!o.msgTypeUrls.length || typeof o.msgTypeUrls[0] === "string")); }, isAmino(o) { return o && (o.$typeUrl === exports.GrantQueueItem.typeUrl || Array.isArray(o.msg_type_urls) && (!o.msg_type_urls.length || typeof o.msg_type_urls[0] === "string")); }, encode(message, writer = binary_1.BinaryWriter.create()) { for (const v of message.msgTypeUrls) { writer.uint32(10).string(v); } return writer; }, decode(input, length) { const reader = input instanceof binary_1.BinaryReader ? input : new binary_1.BinaryReader(input); let end = length === undefined ? reader.len : reader.pos + length; const message = createBaseGrantQueueItem(); while (reader.pos < end) { const tag = reader.uint32(); switch (tag >>> 3) { case 1: message.msgTypeUrls.push(reader.string()); break; default: reader.skipType(tag & 7); break; } } return message; }, fromPartial(object) { const message = createBaseGrantQueueItem(); message.msgTypeUrls = object.msgTypeUrls?.map(e => e) || []; return message; }, fromAmino(object) { const message = createBaseGrantQueueItem(); message.msgTypeUrls = object.msg_type_urls?.map(e => e) || []; return message; }, toAmino(message) { const obj = {}; if (message.msgTypeUrls) { obj.msg_type_urls = message.msgTypeUrls.map(e => e); } else { obj.msg_type_urls = message.msgTypeUrls; } return obj; }, fromAminoMsg(object) { return exports.GrantQueueItem.fromAmino(object.value); }, toAminoMsg(message) { return { type: "cosmos-sdk/GrantQueueItem", value: exports.GrantQueueItem.toAmino(message) }; }, fromProtoMsg(message) { return exports.GrantQueueItem.decode(message.value); }, toProto(message) { return exports.GrantQueueItem.encode(message).finish(); }, toProtoMsg(message) { return { typeUrl: "/cosmos.authz.v1beta1.GrantQueueItem", value: exports.GrantQueueItem.encode(message).finish() }; }, registerTypeUrl() { } };