@bandprotocol/bandchain.js
Version:
TypeScript library for Cosmos SDK and BandChain
533 lines (532 loc) • 21.6 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.PermanentLockedAccount = exports.PeriodicVestingAccount = exports.Period = exports.DelayedVestingAccount = exports.ContinuousVestingAccount = exports.BaseVestingAccount = void 0;
//@ts-nocheck
const auth_1 = require("../../auth/v1beta1/auth");
const coin_1 = require("../../base/v1beta1/coin");
const binary_1 = require("../../../binary");
function createBaseBaseVestingAccount() {
return {
baseAccount: undefined,
originalVesting: [],
delegatedFree: [],
delegatedVesting: [],
endTime: BigInt(0)
};
}
exports.BaseVestingAccount = {
typeUrl: "/cosmos.vesting.v1beta1.BaseVestingAccount",
encode(message, writer = binary_1.BinaryWriter.create()) {
if (message.baseAccount !== undefined) {
auth_1.BaseAccount.encode(message.baseAccount, writer.uint32(10).fork()).ldelim();
}
for (const v of message.originalVesting) {
coin_1.Coin.encode(v, writer.uint32(18).fork()).ldelim();
}
for (const v of message.delegatedFree) {
coin_1.Coin.encode(v, writer.uint32(26).fork()).ldelim();
}
for (const v of message.delegatedVesting) {
coin_1.Coin.encode(v, writer.uint32(34).fork()).ldelim();
}
if (message.endTime !== BigInt(0)) {
writer.uint32(40).int64(message.endTime);
}
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 = createBaseBaseVestingAccount();
while (reader.pos < end) {
const tag = reader.uint32();
switch (tag >>> 3) {
case 1:
message.baseAccount = auth_1.BaseAccount.decode(reader, reader.uint32());
break;
case 2:
message.originalVesting.push(coin_1.Coin.decode(reader, reader.uint32()));
break;
case 3:
message.delegatedFree.push(coin_1.Coin.decode(reader, reader.uint32()));
break;
case 4:
message.delegatedVesting.push(coin_1.Coin.decode(reader, reader.uint32()));
break;
case 5:
message.endTime = reader.int64();
break;
default:
reader.skipType(tag & 7);
break;
}
}
return message;
},
fromPartial(object) {
const message = createBaseBaseVestingAccount();
message.baseAccount = object.baseAccount !== undefined && object.baseAccount !== null ? auth_1.BaseAccount.fromPartial(object.baseAccount) : undefined;
message.originalVesting = object.originalVesting?.map(e => coin_1.Coin.fromPartial(e)) || [];
message.delegatedFree = object.delegatedFree?.map(e => coin_1.Coin.fromPartial(e)) || [];
message.delegatedVesting = object.delegatedVesting?.map(e => coin_1.Coin.fromPartial(e)) || [];
message.endTime = object.endTime !== undefined && object.endTime !== null ? BigInt(object.endTime.toString()) : BigInt(0);
return message;
},
fromAmino(object) {
const message = createBaseBaseVestingAccount();
if (object.base_account !== undefined && object.base_account !== null) {
message.baseAccount = auth_1.BaseAccount.fromAmino(object.base_account);
}
message.originalVesting = object.original_vesting?.map(e => coin_1.Coin.fromAmino(e)) || [];
message.delegatedFree = object.delegated_free?.map(e => coin_1.Coin.fromAmino(e)) || [];
message.delegatedVesting = object.delegated_vesting?.map(e => coin_1.Coin.fromAmino(e)) || [];
if (object.end_time !== undefined && object.end_time !== null) {
message.endTime = BigInt(object.end_time);
}
return message;
},
toAmino(message) {
const obj = {};
obj.base_account = message.baseAccount ? auth_1.BaseAccount.toAmino(message.baseAccount) : undefined;
if (message.originalVesting) {
obj.original_vesting = message.originalVesting.map(e => e ? coin_1.Coin.toAmino(e) : undefined);
}
else {
obj.original_vesting = message.originalVesting;
}
if (message.delegatedFree) {
obj.delegated_free = message.delegatedFree.map(e => e ? coin_1.Coin.toAmino(e) : undefined);
}
else {
obj.delegated_free = message.delegatedFree;
}
if (message.delegatedVesting) {
obj.delegated_vesting = message.delegatedVesting.map(e => e ? coin_1.Coin.toAmino(e) : undefined);
}
else {
obj.delegated_vesting = message.delegatedVesting;
}
obj.end_time = message.endTime !== BigInt(0) ? message.endTime?.toString() : undefined;
return obj;
},
fromAminoMsg(object) {
return exports.BaseVestingAccount.fromAmino(object.value);
},
toAminoMsg(message) {
return {
type: "cosmos-sdk/BaseVestingAccount",
value: exports.BaseVestingAccount.toAmino(message)
};
},
fromProtoMsg(message) {
return exports.BaseVestingAccount.decode(message.value);
},
toProto(message) {
return exports.BaseVestingAccount.encode(message).finish();
},
toProtoMsg(message) {
return {
typeUrl: "/cosmos.vesting.v1beta1.BaseVestingAccount",
value: exports.BaseVestingAccount.encode(message).finish()
};
}
};
function createBaseContinuousVestingAccount() {
return {
baseVestingAccount: undefined,
startTime: BigInt(0)
};
}
exports.ContinuousVestingAccount = {
typeUrl: "/cosmos.vesting.v1beta1.ContinuousVestingAccount",
encode(message, writer = binary_1.BinaryWriter.create()) {
if (message.baseVestingAccount !== undefined) {
exports.BaseVestingAccount.encode(message.baseVestingAccount, writer.uint32(10).fork()).ldelim();
}
if (message.startTime !== BigInt(0)) {
writer.uint32(16).int64(message.startTime);
}
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 = createBaseContinuousVestingAccount();
while (reader.pos < end) {
const tag = reader.uint32();
switch (tag >>> 3) {
case 1:
message.baseVestingAccount = exports.BaseVestingAccount.decode(reader, reader.uint32());
break;
case 2:
message.startTime = reader.int64();
break;
default:
reader.skipType(tag & 7);
break;
}
}
return message;
},
fromPartial(object) {
const message = createBaseContinuousVestingAccount();
message.baseVestingAccount = object.baseVestingAccount !== undefined && object.baseVestingAccount !== null ? exports.BaseVestingAccount.fromPartial(object.baseVestingAccount) : undefined;
message.startTime = object.startTime !== undefined && object.startTime !== null ? BigInt(object.startTime.toString()) : BigInt(0);
return message;
},
fromAmino(object) {
const message = createBaseContinuousVestingAccount();
if (object.base_vesting_account !== undefined && object.base_vesting_account !== null) {
message.baseVestingAccount = exports.BaseVestingAccount.fromAmino(object.base_vesting_account);
}
if (object.start_time !== undefined && object.start_time !== null) {
message.startTime = BigInt(object.start_time);
}
return message;
},
toAmino(message) {
const obj = {};
obj.base_vesting_account = message.baseVestingAccount ? exports.BaseVestingAccount.toAmino(message.baseVestingAccount) : undefined;
obj.start_time = message.startTime !== BigInt(0) ? message.startTime?.toString() : undefined;
return obj;
},
fromAminoMsg(object) {
return exports.ContinuousVestingAccount.fromAmino(object.value);
},
toAminoMsg(message) {
return {
type: "cosmos-sdk/ContinuousVestingAccount",
value: exports.ContinuousVestingAccount.toAmino(message)
};
},
fromProtoMsg(message) {
return exports.ContinuousVestingAccount.decode(message.value);
},
toProto(message) {
return exports.ContinuousVestingAccount.encode(message).finish();
},
toProtoMsg(message) {
return {
typeUrl: "/cosmos.vesting.v1beta1.ContinuousVestingAccount",
value: exports.ContinuousVestingAccount.encode(message).finish()
};
}
};
function createBaseDelayedVestingAccount() {
return {
baseVestingAccount: undefined
};
}
exports.DelayedVestingAccount = {
typeUrl: "/cosmos.vesting.v1beta1.DelayedVestingAccount",
encode(message, writer = binary_1.BinaryWriter.create()) {
if (message.baseVestingAccount !== undefined) {
exports.BaseVestingAccount.encode(message.baseVestingAccount, writer.uint32(10).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 = createBaseDelayedVestingAccount();
while (reader.pos < end) {
const tag = reader.uint32();
switch (tag >>> 3) {
case 1:
message.baseVestingAccount = exports.BaseVestingAccount.decode(reader, reader.uint32());
break;
default:
reader.skipType(tag & 7);
break;
}
}
return message;
},
fromPartial(object) {
const message = createBaseDelayedVestingAccount();
message.baseVestingAccount = object.baseVestingAccount !== undefined && object.baseVestingAccount !== null ? exports.BaseVestingAccount.fromPartial(object.baseVestingAccount) : undefined;
return message;
},
fromAmino(object) {
const message = createBaseDelayedVestingAccount();
if (object.base_vesting_account !== undefined && object.base_vesting_account !== null) {
message.baseVestingAccount = exports.BaseVestingAccount.fromAmino(object.base_vesting_account);
}
return message;
},
toAmino(message) {
const obj = {};
obj.base_vesting_account = message.baseVestingAccount ? exports.BaseVestingAccount.toAmino(message.baseVestingAccount) : undefined;
return obj;
},
fromAminoMsg(object) {
return exports.DelayedVestingAccount.fromAmino(object.value);
},
toAminoMsg(message) {
return {
type: "cosmos-sdk/DelayedVestingAccount",
value: exports.DelayedVestingAccount.toAmino(message)
};
},
fromProtoMsg(message) {
return exports.DelayedVestingAccount.decode(message.value);
},
toProto(message) {
return exports.DelayedVestingAccount.encode(message).finish();
},
toProtoMsg(message) {
return {
typeUrl: "/cosmos.vesting.v1beta1.DelayedVestingAccount",
value: exports.DelayedVestingAccount.encode(message).finish()
};
}
};
function createBasePeriod() {
return {
length: BigInt(0),
amount: []
};
}
exports.Period = {
typeUrl: "/cosmos.vesting.v1beta1.Period",
encode(message, writer = binary_1.BinaryWriter.create()) {
if (message.length !== BigInt(0)) {
writer.uint32(8).int64(message.length);
}
for (const v of message.amount) {
coin_1.Coin.encode(v, 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 = createBasePeriod();
while (reader.pos < end) {
const tag = reader.uint32();
switch (tag >>> 3) {
case 1:
message.length = reader.int64();
break;
case 2:
message.amount.push(coin_1.Coin.decode(reader, reader.uint32()));
break;
default:
reader.skipType(tag & 7);
break;
}
}
return message;
},
fromPartial(object) {
const message = createBasePeriod();
message.length = object.length !== undefined && object.length !== null ? BigInt(object.length.toString()) : BigInt(0);
message.amount = object.amount?.map(e => coin_1.Coin.fromPartial(e)) || [];
return message;
},
fromAmino(object) {
const message = createBasePeriod();
if (object.length !== undefined && object.length !== null) {
message.length = BigInt(object.length);
}
message.amount = object.amount?.map(e => coin_1.Coin.fromAmino(e)) || [];
return message;
},
toAmino(message) {
const obj = {};
obj.length = message.length !== BigInt(0) ? message.length?.toString() : undefined;
if (message.amount) {
obj.amount = message.amount.map(e => e ? coin_1.Coin.toAmino(e) : undefined);
}
else {
obj.amount = message.amount;
}
return obj;
},
fromAminoMsg(object) {
return exports.Period.fromAmino(object.value);
},
toAminoMsg(message) {
return {
type: "cosmos-sdk/Period",
value: exports.Period.toAmino(message)
};
},
fromProtoMsg(message) {
return exports.Period.decode(message.value);
},
toProto(message) {
return exports.Period.encode(message).finish();
},
toProtoMsg(message) {
return {
typeUrl: "/cosmos.vesting.v1beta1.Period",
value: exports.Period.encode(message).finish()
};
}
};
function createBasePeriodicVestingAccount() {
return {
baseVestingAccount: undefined,
startTime: BigInt(0),
vestingPeriods: []
};
}
exports.PeriodicVestingAccount = {
typeUrl: "/cosmos.vesting.v1beta1.PeriodicVestingAccount",
encode(message, writer = binary_1.BinaryWriter.create()) {
if (message.baseVestingAccount !== undefined) {
exports.BaseVestingAccount.encode(message.baseVestingAccount, writer.uint32(10).fork()).ldelim();
}
if (message.startTime !== BigInt(0)) {
writer.uint32(16).int64(message.startTime);
}
for (const v of message.vestingPeriods) {
exports.Period.encode(v, writer.uint32(26).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 = createBasePeriodicVestingAccount();
while (reader.pos < end) {
const tag = reader.uint32();
switch (tag >>> 3) {
case 1:
message.baseVestingAccount = exports.BaseVestingAccount.decode(reader, reader.uint32());
break;
case 2:
message.startTime = reader.int64();
break;
case 3:
message.vestingPeriods.push(exports.Period.decode(reader, reader.uint32()));
break;
default:
reader.skipType(tag & 7);
break;
}
}
return message;
},
fromPartial(object) {
const message = createBasePeriodicVestingAccount();
message.baseVestingAccount = object.baseVestingAccount !== undefined && object.baseVestingAccount !== null ? exports.BaseVestingAccount.fromPartial(object.baseVestingAccount) : undefined;
message.startTime = object.startTime !== undefined && object.startTime !== null ? BigInt(object.startTime.toString()) : BigInt(0);
message.vestingPeriods = object.vestingPeriods?.map(e => exports.Period.fromPartial(e)) || [];
return message;
},
fromAmino(object) {
const message = createBasePeriodicVestingAccount();
if (object.base_vesting_account !== undefined && object.base_vesting_account !== null) {
message.baseVestingAccount = exports.BaseVestingAccount.fromAmino(object.base_vesting_account);
}
if (object.start_time !== undefined && object.start_time !== null) {
message.startTime = BigInt(object.start_time);
}
message.vestingPeriods = object.vesting_periods?.map(e => exports.Period.fromAmino(e)) || [];
return message;
},
toAmino(message) {
const obj = {};
obj.base_vesting_account = message.baseVestingAccount ? exports.BaseVestingAccount.toAmino(message.baseVestingAccount) : undefined;
obj.start_time = message.startTime !== BigInt(0) ? message.startTime?.toString() : undefined;
if (message.vestingPeriods) {
obj.vesting_periods = message.vestingPeriods.map(e => e ? exports.Period.toAmino(e) : undefined);
}
else {
obj.vesting_periods = message.vestingPeriods;
}
return obj;
},
fromAminoMsg(object) {
return exports.PeriodicVestingAccount.fromAmino(object.value);
},
toAminoMsg(message) {
return {
type: "cosmos-sdk/PeriodicVestingAccount",
value: exports.PeriodicVestingAccount.toAmino(message)
};
},
fromProtoMsg(message) {
return exports.PeriodicVestingAccount.decode(message.value);
},
toProto(message) {
return exports.PeriodicVestingAccount.encode(message).finish();
},
toProtoMsg(message) {
return {
typeUrl: "/cosmos.vesting.v1beta1.PeriodicVestingAccount",
value: exports.PeriodicVestingAccount.encode(message).finish()
};
}
};
function createBasePermanentLockedAccount() {
return {
baseVestingAccount: undefined
};
}
exports.PermanentLockedAccount = {
typeUrl: "/cosmos.vesting.v1beta1.PermanentLockedAccount",
encode(message, writer = binary_1.BinaryWriter.create()) {
if (message.baseVestingAccount !== undefined) {
exports.BaseVestingAccount.encode(message.baseVestingAccount, writer.uint32(10).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 = createBasePermanentLockedAccount();
while (reader.pos < end) {
const tag = reader.uint32();
switch (tag >>> 3) {
case 1:
message.baseVestingAccount = exports.BaseVestingAccount.decode(reader, reader.uint32());
break;
default:
reader.skipType(tag & 7);
break;
}
}
return message;
},
fromPartial(object) {
const message = createBasePermanentLockedAccount();
message.baseVestingAccount = object.baseVestingAccount !== undefined && object.baseVestingAccount !== null ? exports.BaseVestingAccount.fromPartial(object.baseVestingAccount) : undefined;
return message;
},
fromAmino(object) {
const message = createBasePermanentLockedAccount();
if (object.base_vesting_account !== undefined && object.base_vesting_account !== null) {
message.baseVestingAccount = exports.BaseVestingAccount.fromAmino(object.base_vesting_account);
}
return message;
},
toAmino(message) {
const obj = {};
obj.base_vesting_account = message.baseVestingAccount ? exports.BaseVestingAccount.toAmino(message.baseVestingAccount) : undefined;
return obj;
},
fromAminoMsg(object) {
return exports.PermanentLockedAccount.fromAmino(object.value);
},
toAminoMsg(message) {
return {
type: "cosmos-sdk/PermanentLockedAccount",
value: exports.PermanentLockedAccount.toAmino(message)
};
},
fromProtoMsg(message) {
return exports.PermanentLockedAccount.decode(message.value);
},
toProto(message) {
return exports.PermanentLockedAccount.encode(message).finish();
},
toProtoMsg(message) {
return {
typeUrl: "/cosmos.vesting.v1beta1.PermanentLockedAccount",
value: exports.PermanentLockedAccount.encode(message).finish()
};
}
};