@skip-go/client 0.4.3 → 0.5.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/{chunk-6AMBIQDN.js → chunk-IEAKY5XG.js} +8 -4
- package/dist/{chunk-PV2ELBDQ.js → chunk-TUX4SN3U.js} +749 -1
- package/dist/index.d.ts +2 -2
- package/dist/index.js +2375 -255
- package/dist/{shared-UW-rSz3r.d.ts → shared-CvoSvr3u.d.ts} +4 -0
- package/dist/transactions.d.ts +1 -1
- package/dist/transactions.js +5 -5
- package/dist/types.d.ts +2 -2
- package/dist/types.js +159 -159
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
3
|
var chunkJRIEAGIQ_js = require('./chunk-JRIEAGIQ.js');
|
|
4
|
-
var
|
|
5
|
-
var
|
|
4
|
+
var chunkTUX4SN3U_js = require('./chunk-TUX4SN3U.js');
|
|
5
|
+
var chunkIEAKY5XG_js = require('./chunk-IEAKY5XG.js');
|
|
6
6
|
var chunk6FNC3XMI_js = require('./chunk-6FNC3XMI.js');
|
|
7
7
|
var amino = require('@cosmjs/amino');
|
|
8
8
|
var cosmwasmStargate = require('@cosmjs/cosmwasm-stargate');
|
|
@@ -22,6 +22,7 @@ var tx = require('cosmjs-types/cosmwasm/wasm/v1/tx');
|
|
|
22
22
|
var viem = require('viem');
|
|
23
23
|
var chainRegistry = require('chain-registry');
|
|
24
24
|
var initiaRegistry = require('@initia/initia-registry');
|
|
25
|
+
var _m08 = require('protobufjs/minimal');
|
|
25
26
|
var coreProtoTs = require('@injectivelabs/core-proto-ts');
|
|
26
27
|
var tx$2 = require('@injectivelabs/sdk-ts/dist/cjs/core/modules/tx/utils/tx');
|
|
27
28
|
var keccak256 = require('keccak256');
|
|
@@ -50,6 +51,7 @@ function _interopNamespace(e) {
|
|
|
50
51
|
var axios2__default = /*#__PURE__*/_interopDefault(axios2);
|
|
51
52
|
var chainRegistry__namespace = /*#__PURE__*/_interopNamespace(chainRegistry);
|
|
52
53
|
var initiaRegistry__namespace = /*#__PURE__*/_interopNamespace(initiaRegistry);
|
|
54
|
+
var _m08__namespace = /*#__PURE__*/_interopNamespace(_m08);
|
|
53
55
|
var keccak256__default = /*#__PURE__*/_interopDefault(keccak256);
|
|
54
56
|
|
|
55
57
|
function isEthSecp256k1Pubkey(pubkey) {
|
|
@@ -406,142 +408,2247 @@ function initiaChains() {
|
|
|
406
408
|
const chains4 = initiaRegistry__namespace.chains;
|
|
407
409
|
return chains4;
|
|
408
410
|
}
|
|
411
|
+
function findFirstWorkingEndpoint(endpoints, type) {
|
|
412
|
+
return chunk6FNC3XMI_js.__async(this, null, function* () {
|
|
413
|
+
for (const endpoint of endpoints) {
|
|
414
|
+
try {
|
|
415
|
+
const url = (() => {
|
|
416
|
+
switch (type) {
|
|
417
|
+
case "rpc":
|
|
418
|
+
const rpc = new URL("health", endpoint);
|
|
419
|
+
return rpc.toString();
|
|
420
|
+
case "rest":
|
|
421
|
+
const url2 = new URL(
|
|
422
|
+
"cosmos/base/tendermint/v1beta1/node_info",
|
|
423
|
+
endpoint
|
|
424
|
+
);
|
|
425
|
+
return url2.toString();
|
|
426
|
+
default:
|
|
427
|
+
throw new Error(`Unknown endpoint type: ${type}`);
|
|
428
|
+
}
|
|
429
|
+
})();
|
|
430
|
+
const response = yield fetch(url);
|
|
431
|
+
if (response.ok) {
|
|
432
|
+
return endpoint;
|
|
433
|
+
} else {
|
|
434
|
+
console.error(
|
|
435
|
+
`Error: ${endpoint} responded with status ${response.status}`
|
|
436
|
+
);
|
|
437
|
+
}
|
|
438
|
+
} catch (error) {
|
|
439
|
+
console.error(`Failed to fetch ${endpoint}: ${error.message}`);
|
|
440
|
+
}
|
|
441
|
+
}
|
|
442
|
+
console.error("No working endpoints found.");
|
|
443
|
+
return null;
|
|
444
|
+
});
|
|
445
|
+
}
|
|
409
446
|
|
|
410
447
|
// src/codegen/circle/cctp/v1/tx.registry.ts
|
|
411
|
-
var registry = [["/circle.cctp.v1.MsgAcceptOwner",
|
|
448
|
+
var registry = [["/circle.cctp.v1.MsgAcceptOwner", chunkTUX4SN3U_js.MsgAcceptOwner], ["/circle.cctp.v1.MsgAddRemoteTokenMessenger", chunkTUX4SN3U_js.MsgAddRemoteTokenMessenger], ["/circle.cctp.v1.MsgDepositForBurn", chunkTUX4SN3U_js.MsgDepositForBurn], ["/circle.cctp.v1.MsgDepositForBurnWithCaller", chunkTUX4SN3U_js.MsgDepositForBurnWithCaller], ["/circle.cctp.v1.MsgDisableAttester", chunkTUX4SN3U_js.MsgDisableAttester], ["/circle.cctp.v1.MsgEnableAttester", chunkTUX4SN3U_js.MsgEnableAttester], ["/circle.cctp.v1.MsgLinkTokenPair", chunkTUX4SN3U_js.MsgLinkTokenPair], ["/circle.cctp.v1.MsgPauseBurningAndMinting", chunkTUX4SN3U_js.MsgPauseBurningAndMinting], ["/circle.cctp.v1.MsgPauseSendingAndReceivingMessages", chunkTUX4SN3U_js.MsgPauseSendingAndReceivingMessages], ["/circle.cctp.v1.MsgReceiveMessage", chunkTUX4SN3U_js.MsgReceiveMessage], ["/circle.cctp.v1.MsgRemoveRemoteTokenMessenger", chunkTUX4SN3U_js.MsgRemoveRemoteTokenMessenger], ["/circle.cctp.v1.MsgReplaceDepositForBurn", chunkTUX4SN3U_js.MsgReplaceDepositForBurn], ["/circle.cctp.v1.MsgReplaceMessage", chunkTUX4SN3U_js.MsgReplaceMessage], ["/circle.cctp.v1.MsgSendMessage", chunkTUX4SN3U_js.MsgSendMessage], ["/circle.cctp.v1.MsgSendMessageWithCaller", chunkTUX4SN3U_js.MsgSendMessageWithCaller], ["/circle.cctp.v1.MsgUnlinkTokenPair", chunkTUX4SN3U_js.MsgUnlinkTokenPair], ["/circle.cctp.v1.MsgUnpauseBurningAndMinting", chunkTUX4SN3U_js.MsgUnpauseBurningAndMinting], ["/circle.cctp.v1.MsgUnpauseSendingAndReceivingMessages", chunkTUX4SN3U_js.MsgUnpauseSendingAndReceivingMessages], ["/circle.cctp.v1.MsgUpdateOwner", chunkTUX4SN3U_js.MsgUpdateOwner], ["/circle.cctp.v1.MsgUpdateAttesterManager", chunkTUX4SN3U_js.MsgUpdateAttesterManager], ["/circle.cctp.v1.MsgUpdateTokenController", chunkTUX4SN3U_js.MsgUpdateTokenController], ["/circle.cctp.v1.MsgUpdatePauser", chunkTUX4SN3U_js.MsgUpdatePauser], ["/circle.cctp.v1.MsgUpdateMaxMessageBodySize", chunkTUX4SN3U_js.MsgUpdateMaxMessageBodySize], ["/circle.cctp.v1.MsgSetMaxBurnAmountPerMessage", chunkTUX4SN3U_js.MsgSetMaxBurnAmountPerMessage], ["/circle.cctp.v1.MsgUpdateSignatureThreshold", chunkTUX4SN3U_js.MsgUpdateSignatureThreshold]];
|
|
412
449
|
|
|
413
450
|
// src/codegen/circle/cctp/v1/tx.amino.ts
|
|
414
451
|
var AminoConverter = {
|
|
415
452
|
"/circle.cctp.v1.MsgAcceptOwner": {
|
|
416
453
|
aminoType: "cctp/AcceptOwner",
|
|
417
|
-
toAmino:
|
|
418
|
-
fromAmino:
|
|
454
|
+
toAmino: chunkTUX4SN3U_js.MsgAcceptOwner.toAmino,
|
|
455
|
+
fromAmino: chunkTUX4SN3U_js.MsgAcceptOwner.fromAmino
|
|
419
456
|
},
|
|
420
457
|
"/circle.cctp.v1.MsgAddRemoteTokenMessenger": {
|
|
421
458
|
aminoType: "cctp/AddRemoteTokenMessenger",
|
|
422
|
-
toAmino:
|
|
423
|
-
fromAmino:
|
|
459
|
+
toAmino: chunkTUX4SN3U_js.MsgAddRemoteTokenMessenger.toAmino,
|
|
460
|
+
fromAmino: chunkTUX4SN3U_js.MsgAddRemoteTokenMessenger.fromAmino
|
|
424
461
|
},
|
|
425
462
|
"/circle.cctp.v1.MsgDepositForBurn": {
|
|
426
463
|
aminoType: "cctp/DepositForBurn",
|
|
427
|
-
toAmino:
|
|
428
|
-
fromAmino:
|
|
464
|
+
toAmino: chunkTUX4SN3U_js.MsgDepositForBurn.toAmino,
|
|
465
|
+
fromAmino: chunkTUX4SN3U_js.MsgDepositForBurn.fromAmino
|
|
429
466
|
},
|
|
430
467
|
"/circle.cctp.v1.MsgDepositForBurnWithCaller": {
|
|
431
468
|
aminoType: "cctp/DepositForBurnWithCaller",
|
|
432
|
-
toAmino:
|
|
433
|
-
fromAmino:
|
|
469
|
+
toAmino: chunkTUX4SN3U_js.MsgDepositForBurnWithCaller.toAmino,
|
|
470
|
+
fromAmino: chunkTUX4SN3U_js.MsgDepositForBurnWithCaller.fromAmino
|
|
434
471
|
},
|
|
435
472
|
"/circle.cctp.v1.MsgDisableAttester": {
|
|
436
473
|
aminoType: "cctp/DisableAttester",
|
|
437
|
-
toAmino:
|
|
438
|
-
fromAmino:
|
|
474
|
+
toAmino: chunkTUX4SN3U_js.MsgDisableAttester.toAmino,
|
|
475
|
+
fromAmino: chunkTUX4SN3U_js.MsgDisableAttester.fromAmino
|
|
439
476
|
},
|
|
440
477
|
"/circle.cctp.v1.MsgEnableAttester": {
|
|
441
478
|
aminoType: "cctp/EnableAttester",
|
|
442
|
-
toAmino:
|
|
443
|
-
fromAmino:
|
|
479
|
+
toAmino: chunkTUX4SN3U_js.MsgEnableAttester.toAmino,
|
|
480
|
+
fromAmino: chunkTUX4SN3U_js.MsgEnableAttester.fromAmino
|
|
444
481
|
},
|
|
445
482
|
"/circle.cctp.v1.MsgLinkTokenPair": {
|
|
446
483
|
aminoType: "cctp/LinkTokenPair",
|
|
447
|
-
toAmino:
|
|
448
|
-
fromAmino:
|
|
484
|
+
toAmino: chunkTUX4SN3U_js.MsgLinkTokenPair.toAmino,
|
|
485
|
+
fromAmino: chunkTUX4SN3U_js.MsgLinkTokenPair.fromAmino
|
|
449
486
|
},
|
|
450
487
|
"/circle.cctp.v1.MsgPauseBurningAndMinting": {
|
|
451
488
|
aminoType: "cctp/PauseBurningAndMinting",
|
|
452
|
-
toAmino:
|
|
453
|
-
fromAmino:
|
|
489
|
+
toAmino: chunkTUX4SN3U_js.MsgPauseBurningAndMinting.toAmino,
|
|
490
|
+
fromAmino: chunkTUX4SN3U_js.MsgPauseBurningAndMinting.fromAmino
|
|
454
491
|
},
|
|
455
492
|
"/circle.cctp.v1.MsgPauseSendingAndReceivingMessages": {
|
|
456
493
|
aminoType: "cctp/PauseSendingAndReceivingMessages",
|
|
457
|
-
toAmino:
|
|
458
|
-
fromAmino:
|
|
494
|
+
toAmino: chunkTUX4SN3U_js.MsgPauseSendingAndReceivingMessages.toAmino,
|
|
495
|
+
fromAmino: chunkTUX4SN3U_js.MsgPauseSendingAndReceivingMessages.fromAmino
|
|
459
496
|
},
|
|
460
497
|
"/circle.cctp.v1.MsgReceiveMessage": {
|
|
461
498
|
aminoType: "cctp/ReceiveMessage",
|
|
462
|
-
toAmino:
|
|
463
|
-
fromAmino:
|
|
499
|
+
toAmino: chunkTUX4SN3U_js.MsgReceiveMessage.toAmino,
|
|
500
|
+
fromAmino: chunkTUX4SN3U_js.MsgReceiveMessage.fromAmino
|
|
464
501
|
},
|
|
465
502
|
"/circle.cctp.v1.MsgRemoveRemoteTokenMessenger": {
|
|
466
503
|
aminoType: "cctp/RemoveRemoteTokenMessenger",
|
|
467
|
-
toAmino:
|
|
468
|
-
fromAmino:
|
|
504
|
+
toAmino: chunkTUX4SN3U_js.MsgRemoveRemoteTokenMessenger.toAmino,
|
|
505
|
+
fromAmino: chunkTUX4SN3U_js.MsgRemoveRemoteTokenMessenger.fromAmino
|
|
469
506
|
},
|
|
470
507
|
"/circle.cctp.v1.MsgReplaceDepositForBurn": {
|
|
471
508
|
aminoType: "cctp/ReplaceDepositForBurn",
|
|
472
|
-
toAmino:
|
|
473
|
-
fromAmino:
|
|
509
|
+
toAmino: chunkTUX4SN3U_js.MsgReplaceDepositForBurn.toAmino,
|
|
510
|
+
fromAmino: chunkTUX4SN3U_js.MsgReplaceDepositForBurn.fromAmino
|
|
474
511
|
},
|
|
475
512
|
"/circle.cctp.v1.MsgReplaceMessage": {
|
|
476
513
|
aminoType: "cctp/ReplaceMessage",
|
|
477
|
-
toAmino:
|
|
478
|
-
fromAmino:
|
|
514
|
+
toAmino: chunkTUX4SN3U_js.MsgReplaceMessage.toAmino,
|
|
515
|
+
fromAmino: chunkTUX4SN3U_js.MsgReplaceMessage.fromAmino
|
|
479
516
|
},
|
|
480
517
|
"/circle.cctp.v1.MsgSendMessage": {
|
|
481
518
|
aminoType: "cctp/SendMessage",
|
|
482
|
-
toAmino:
|
|
483
|
-
fromAmino:
|
|
519
|
+
toAmino: chunkTUX4SN3U_js.MsgSendMessage.toAmino,
|
|
520
|
+
fromAmino: chunkTUX4SN3U_js.MsgSendMessage.fromAmino
|
|
484
521
|
},
|
|
485
522
|
"/circle.cctp.v1.MsgSendMessageWithCaller": {
|
|
486
523
|
aminoType: "cctp/SendMessageWithCaller",
|
|
487
|
-
toAmino:
|
|
488
|
-
fromAmino:
|
|
524
|
+
toAmino: chunkTUX4SN3U_js.MsgSendMessageWithCaller.toAmino,
|
|
525
|
+
fromAmino: chunkTUX4SN3U_js.MsgSendMessageWithCaller.fromAmino
|
|
489
526
|
},
|
|
490
527
|
"/circle.cctp.v1.MsgUnlinkTokenPair": {
|
|
491
528
|
aminoType: "cctp/UnlinkTokenPair",
|
|
492
|
-
toAmino:
|
|
493
|
-
fromAmino:
|
|
529
|
+
toAmino: chunkTUX4SN3U_js.MsgUnlinkTokenPair.toAmino,
|
|
530
|
+
fromAmino: chunkTUX4SN3U_js.MsgUnlinkTokenPair.fromAmino
|
|
494
531
|
},
|
|
495
532
|
"/circle.cctp.v1.MsgUnpauseBurningAndMinting": {
|
|
496
533
|
aminoType: "cctp/UnpauseBurningAndMinting",
|
|
497
|
-
toAmino:
|
|
498
|
-
fromAmino:
|
|
534
|
+
toAmino: chunkTUX4SN3U_js.MsgUnpauseBurningAndMinting.toAmino,
|
|
535
|
+
fromAmino: chunkTUX4SN3U_js.MsgUnpauseBurningAndMinting.fromAmino
|
|
499
536
|
},
|
|
500
537
|
"/circle.cctp.v1.MsgUnpauseSendingAndReceivingMessages": {
|
|
501
538
|
aminoType: "cctp/UnpauseSendingAndReceivingMessages",
|
|
502
|
-
toAmino:
|
|
503
|
-
fromAmino:
|
|
539
|
+
toAmino: chunkTUX4SN3U_js.MsgUnpauseSendingAndReceivingMessages.toAmino,
|
|
540
|
+
fromAmino: chunkTUX4SN3U_js.MsgUnpauseSendingAndReceivingMessages.fromAmino
|
|
504
541
|
},
|
|
505
542
|
"/circle.cctp.v1.MsgUpdateOwner": {
|
|
506
543
|
aminoType: "cctp/UpdateOwner",
|
|
507
|
-
toAmino:
|
|
508
|
-
fromAmino:
|
|
544
|
+
toAmino: chunkTUX4SN3U_js.MsgUpdateOwner.toAmino,
|
|
545
|
+
fromAmino: chunkTUX4SN3U_js.MsgUpdateOwner.fromAmino
|
|
509
546
|
},
|
|
510
547
|
"/circle.cctp.v1.MsgUpdateAttesterManager": {
|
|
511
548
|
aminoType: "cctp/UpdateAttesterManager",
|
|
512
|
-
toAmino:
|
|
513
|
-
fromAmino:
|
|
549
|
+
toAmino: chunkTUX4SN3U_js.MsgUpdateAttesterManager.toAmino,
|
|
550
|
+
fromAmino: chunkTUX4SN3U_js.MsgUpdateAttesterManager.fromAmino
|
|
514
551
|
},
|
|
515
552
|
"/circle.cctp.v1.MsgUpdateTokenController": {
|
|
516
553
|
aminoType: "cctp/UpdateTokenController",
|
|
517
|
-
toAmino:
|
|
518
|
-
fromAmino:
|
|
554
|
+
toAmino: chunkTUX4SN3U_js.MsgUpdateTokenController.toAmino,
|
|
555
|
+
fromAmino: chunkTUX4SN3U_js.MsgUpdateTokenController.fromAmino
|
|
519
556
|
},
|
|
520
557
|
"/circle.cctp.v1.MsgUpdatePauser": {
|
|
521
558
|
aminoType: "cctp/UpdatePauser",
|
|
522
|
-
toAmino:
|
|
523
|
-
fromAmino:
|
|
559
|
+
toAmino: chunkTUX4SN3U_js.MsgUpdatePauser.toAmino,
|
|
560
|
+
fromAmino: chunkTUX4SN3U_js.MsgUpdatePauser.fromAmino
|
|
524
561
|
},
|
|
525
562
|
"/circle.cctp.v1.MsgUpdateMaxMessageBodySize": {
|
|
526
563
|
aminoType: "cctp/UpdateMaxMessageBodySize",
|
|
527
|
-
toAmino:
|
|
528
|
-
fromAmino:
|
|
564
|
+
toAmino: chunkTUX4SN3U_js.MsgUpdateMaxMessageBodySize.toAmino,
|
|
565
|
+
fromAmino: chunkTUX4SN3U_js.MsgUpdateMaxMessageBodySize.fromAmino
|
|
529
566
|
},
|
|
530
567
|
"/circle.cctp.v1.MsgSetMaxBurnAmountPerMessage": {
|
|
531
568
|
aminoType: "cctp/SetMaxBurnAmountPerMessage",
|
|
532
|
-
toAmino:
|
|
533
|
-
fromAmino:
|
|
569
|
+
toAmino: chunkTUX4SN3U_js.MsgSetMaxBurnAmountPerMessage.toAmino,
|
|
570
|
+
fromAmino: chunkTUX4SN3U_js.MsgSetMaxBurnAmountPerMessage.fromAmino
|
|
534
571
|
},
|
|
535
572
|
"/circle.cctp.v1.MsgUpdateSignatureThreshold": {
|
|
536
573
|
aminoType: "cctp/UpdateSignatureThreshold",
|
|
537
|
-
toAmino:
|
|
538
|
-
fromAmino:
|
|
574
|
+
toAmino: chunkTUX4SN3U_js.MsgUpdateSignatureThreshold.toAmino,
|
|
575
|
+
fromAmino: chunkTUX4SN3U_js.MsgUpdateSignatureThreshold.fromAmino
|
|
539
576
|
}
|
|
540
577
|
};
|
|
541
578
|
|
|
542
579
|
// src/codegen/circle/client.ts
|
|
543
580
|
var circleAminoConverters = chunk6FNC3XMI_js.__spreadValues({}, AminoConverter);
|
|
544
581
|
var circleProtoRegistry = [...registry];
|
|
582
|
+
function createBaseParams() {
|
|
583
|
+
return {
|
|
584
|
+
enableErc20: false,
|
|
585
|
+
enableEvmHook: false
|
|
586
|
+
};
|
|
587
|
+
}
|
|
588
|
+
var Params = {
|
|
589
|
+
typeUrl: "/evmos.erc20.v1.Params",
|
|
590
|
+
encode(message, writer = _m08__namespace.Writer.create()) {
|
|
591
|
+
if (message.enableErc20 === true) {
|
|
592
|
+
writer.uint32(8).bool(message.enableErc20);
|
|
593
|
+
}
|
|
594
|
+
if (message.enableEvmHook === true) {
|
|
595
|
+
writer.uint32(16).bool(message.enableEvmHook);
|
|
596
|
+
}
|
|
597
|
+
return writer;
|
|
598
|
+
},
|
|
599
|
+
decode(input, length) {
|
|
600
|
+
const reader = input instanceof _m08__namespace.Reader ? input : new _m08__namespace.Reader(input);
|
|
601
|
+
let end = length === void 0 ? reader.len : reader.pos + length;
|
|
602
|
+
const message = createBaseParams();
|
|
603
|
+
while (reader.pos < end) {
|
|
604
|
+
const tag = reader.uint32();
|
|
605
|
+
switch (tag >>> 3) {
|
|
606
|
+
case 1:
|
|
607
|
+
message.enableErc20 = reader.bool();
|
|
608
|
+
break;
|
|
609
|
+
case 2:
|
|
610
|
+
message.enableEvmHook = reader.bool();
|
|
611
|
+
break;
|
|
612
|
+
default:
|
|
613
|
+
reader.skipType(tag & 7);
|
|
614
|
+
break;
|
|
615
|
+
}
|
|
616
|
+
}
|
|
617
|
+
return message;
|
|
618
|
+
},
|
|
619
|
+
fromJSON(object) {
|
|
620
|
+
return {
|
|
621
|
+
enableErc20: chunkTUX4SN3U_js.isSet(object.enableErc20) ? Boolean(object.enableErc20) : false,
|
|
622
|
+
enableEvmHook: chunkTUX4SN3U_js.isSet(object.enableEvmHook) ? Boolean(object.enableEvmHook) : false
|
|
623
|
+
};
|
|
624
|
+
},
|
|
625
|
+
toJSON(message) {
|
|
626
|
+
const obj = {};
|
|
627
|
+
message.enableErc20 !== void 0 && (obj.enableErc20 = message.enableErc20);
|
|
628
|
+
message.enableEvmHook !== void 0 && (obj.enableEvmHook = message.enableEvmHook);
|
|
629
|
+
return obj;
|
|
630
|
+
},
|
|
631
|
+
fromPartial(object) {
|
|
632
|
+
var _a, _b;
|
|
633
|
+
const message = createBaseParams();
|
|
634
|
+
message.enableErc20 = (_a = object.enableErc20) != null ? _a : false;
|
|
635
|
+
message.enableEvmHook = (_b = object.enableEvmHook) != null ? _b : false;
|
|
636
|
+
return message;
|
|
637
|
+
},
|
|
638
|
+
fromAmino(object) {
|
|
639
|
+
const message = createBaseParams();
|
|
640
|
+
if (object.enable_erc20 !== void 0 && object.enable_erc20 !== null) {
|
|
641
|
+
message.enableErc20 = object.enable_erc20;
|
|
642
|
+
}
|
|
643
|
+
if (object.enable_evm_hook !== void 0 && object.enable_evm_hook !== null) {
|
|
644
|
+
message.enableEvmHook = object.enable_evm_hook;
|
|
645
|
+
}
|
|
646
|
+
return message;
|
|
647
|
+
},
|
|
648
|
+
toAmino(message) {
|
|
649
|
+
const obj = {};
|
|
650
|
+
obj.enable_erc20 = message.enableErc20 === false ? void 0 : message.enableErc20;
|
|
651
|
+
obj.enable_evm_hook = message.enableEvmHook === false ? void 0 : message.enableEvmHook;
|
|
652
|
+
return obj;
|
|
653
|
+
},
|
|
654
|
+
fromAminoMsg(object) {
|
|
655
|
+
return Params.fromAmino(object.value);
|
|
656
|
+
},
|
|
657
|
+
toAminoMsg(message) {
|
|
658
|
+
return {
|
|
659
|
+
type: "erc20/Params",
|
|
660
|
+
value: Params.toAmino(message)
|
|
661
|
+
};
|
|
662
|
+
},
|
|
663
|
+
fromProtoMsg(message) {
|
|
664
|
+
return Params.decode(message.value);
|
|
665
|
+
},
|
|
666
|
+
toProto(message) {
|
|
667
|
+
return Params.encode(message).finish();
|
|
668
|
+
},
|
|
669
|
+
toProtoMsg(message) {
|
|
670
|
+
return {
|
|
671
|
+
typeUrl: "/evmos.erc20.v1.Params",
|
|
672
|
+
value: Params.encode(message).finish()
|
|
673
|
+
};
|
|
674
|
+
}
|
|
675
|
+
};
|
|
676
|
+
function createBaseMsgConvertCoin() {
|
|
677
|
+
return {
|
|
678
|
+
coin: chunkTUX4SN3U_js.Coin.fromPartial({}),
|
|
679
|
+
receiver: "",
|
|
680
|
+
sender: ""
|
|
681
|
+
};
|
|
682
|
+
}
|
|
683
|
+
var MsgConvertCoin = {
|
|
684
|
+
typeUrl: "/evmos.erc20.v1.MsgConvertCoin",
|
|
685
|
+
encode(message, writer = _m08__namespace.Writer.create()) {
|
|
686
|
+
if (message.coin !== void 0) {
|
|
687
|
+
chunkTUX4SN3U_js.Coin.encode(message.coin, writer.uint32(10).fork()).ldelim();
|
|
688
|
+
}
|
|
689
|
+
if (message.receiver !== "") {
|
|
690
|
+
writer.uint32(18).string(message.receiver);
|
|
691
|
+
}
|
|
692
|
+
if (message.sender !== "") {
|
|
693
|
+
writer.uint32(26).string(message.sender);
|
|
694
|
+
}
|
|
695
|
+
return writer;
|
|
696
|
+
},
|
|
697
|
+
decode(input, length) {
|
|
698
|
+
const reader = input instanceof _m08__namespace.Reader ? input : new _m08__namespace.Reader(input);
|
|
699
|
+
let end = length === void 0 ? reader.len : reader.pos + length;
|
|
700
|
+
const message = createBaseMsgConvertCoin();
|
|
701
|
+
while (reader.pos < end) {
|
|
702
|
+
const tag = reader.uint32();
|
|
703
|
+
switch (tag >>> 3) {
|
|
704
|
+
case 1:
|
|
705
|
+
message.coin = chunkTUX4SN3U_js.Coin.decode(reader, reader.uint32());
|
|
706
|
+
break;
|
|
707
|
+
case 2:
|
|
708
|
+
message.receiver = reader.string();
|
|
709
|
+
break;
|
|
710
|
+
case 3:
|
|
711
|
+
message.sender = reader.string();
|
|
712
|
+
break;
|
|
713
|
+
default:
|
|
714
|
+
reader.skipType(tag & 7);
|
|
715
|
+
break;
|
|
716
|
+
}
|
|
717
|
+
}
|
|
718
|
+
return message;
|
|
719
|
+
},
|
|
720
|
+
fromJSON(object) {
|
|
721
|
+
return {
|
|
722
|
+
coin: chunkTUX4SN3U_js.isSet(object.coin) ? chunkTUX4SN3U_js.Coin.fromJSON(object.coin) : void 0,
|
|
723
|
+
receiver: chunkTUX4SN3U_js.isSet(object.receiver) ? String(object.receiver) : "",
|
|
724
|
+
sender: chunkTUX4SN3U_js.isSet(object.sender) ? String(object.sender) : ""
|
|
725
|
+
};
|
|
726
|
+
},
|
|
727
|
+
toJSON(message) {
|
|
728
|
+
const obj = {};
|
|
729
|
+
message.coin !== void 0 && (obj.coin = message.coin ? chunkTUX4SN3U_js.Coin.toJSON(message.coin) : void 0);
|
|
730
|
+
message.receiver !== void 0 && (obj.receiver = message.receiver);
|
|
731
|
+
message.sender !== void 0 && (obj.sender = message.sender);
|
|
732
|
+
return obj;
|
|
733
|
+
},
|
|
734
|
+
fromPartial(object) {
|
|
735
|
+
var _a, _b;
|
|
736
|
+
const message = createBaseMsgConvertCoin();
|
|
737
|
+
message.coin = object.coin !== void 0 && object.coin !== null ? chunkTUX4SN3U_js.Coin.fromPartial(object.coin) : void 0;
|
|
738
|
+
message.receiver = (_a = object.receiver) != null ? _a : "";
|
|
739
|
+
message.sender = (_b = object.sender) != null ? _b : "";
|
|
740
|
+
return message;
|
|
741
|
+
},
|
|
742
|
+
fromAmino(object) {
|
|
743
|
+
const message = createBaseMsgConvertCoin();
|
|
744
|
+
if (object.coin !== void 0 && object.coin !== null) {
|
|
745
|
+
message.coin = chunkTUX4SN3U_js.Coin.fromAmino(object.coin);
|
|
746
|
+
}
|
|
747
|
+
if (object.receiver !== void 0 && object.receiver !== null) {
|
|
748
|
+
message.receiver = object.receiver;
|
|
749
|
+
}
|
|
750
|
+
if (object.sender !== void 0 && object.sender !== null) {
|
|
751
|
+
message.sender = object.sender;
|
|
752
|
+
}
|
|
753
|
+
return message;
|
|
754
|
+
},
|
|
755
|
+
toAmino(message) {
|
|
756
|
+
const obj = {};
|
|
757
|
+
obj.coin = message.coin ? chunkTUX4SN3U_js.Coin.toAmino(message.coin) : void 0;
|
|
758
|
+
obj.receiver = message.receiver === "" ? void 0 : message.receiver;
|
|
759
|
+
obj.sender = message.sender === "" ? void 0 : message.sender;
|
|
760
|
+
return obj;
|
|
761
|
+
},
|
|
762
|
+
fromAminoMsg(object) {
|
|
763
|
+
return MsgConvertCoin.fromAmino(object.value);
|
|
764
|
+
},
|
|
765
|
+
toAminoMsg(message) {
|
|
766
|
+
return {
|
|
767
|
+
type: "evmos/MsgConvertCoin",
|
|
768
|
+
value: MsgConvertCoin.toAmino(message)
|
|
769
|
+
};
|
|
770
|
+
},
|
|
771
|
+
fromProtoMsg(message) {
|
|
772
|
+
return MsgConvertCoin.decode(message.value);
|
|
773
|
+
},
|
|
774
|
+
toProto(message) {
|
|
775
|
+
return MsgConvertCoin.encode(message).finish();
|
|
776
|
+
},
|
|
777
|
+
toProtoMsg(message) {
|
|
778
|
+
return {
|
|
779
|
+
typeUrl: "/evmos.erc20.v1.MsgConvertCoin",
|
|
780
|
+
value: MsgConvertCoin.encode(message).finish()
|
|
781
|
+
};
|
|
782
|
+
}
|
|
783
|
+
};
|
|
784
|
+
function createBaseMsgConvertERC20() {
|
|
785
|
+
return {
|
|
786
|
+
contractAddress: "",
|
|
787
|
+
amount: "",
|
|
788
|
+
receiver: "",
|
|
789
|
+
sender: ""
|
|
790
|
+
};
|
|
791
|
+
}
|
|
792
|
+
var MsgConvertERC20 = {
|
|
793
|
+
typeUrl: "/evmos.erc20.v1.MsgConvertERC20",
|
|
794
|
+
encode(message, writer = _m08__namespace.Writer.create()) {
|
|
795
|
+
if (message.contractAddress !== "") {
|
|
796
|
+
writer.uint32(10).string(message.contractAddress);
|
|
797
|
+
}
|
|
798
|
+
if (message.amount !== "") {
|
|
799
|
+
writer.uint32(18).string(message.amount);
|
|
800
|
+
}
|
|
801
|
+
if (message.receiver !== "") {
|
|
802
|
+
writer.uint32(26).string(message.receiver);
|
|
803
|
+
}
|
|
804
|
+
if (message.sender !== "") {
|
|
805
|
+
writer.uint32(34).string(message.sender);
|
|
806
|
+
}
|
|
807
|
+
return writer;
|
|
808
|
+
},
|
|
809
|
+
decode(input, length) {
|
|
810
|
+
const reader = input instanceof _m08__namespace.Reader ? input : new _m08__namespace.Reader(input);
|
|
811
|
+
let end = length === void 0 ? reader.len : reader.pos + length;
|
|
812
|
+
const message = createBaseMsgConvertERC20();
|
|
813
|
+
while (reader.pos < end) {
|
|
814
|
+
const tag = reader.uint32();
|
|
815
|
+
switch (tag >>> 3) {
|
|
816
|
+
case 1:
|
|
817
|
+
message.contractAddress = reader.string();
|
|
818
|
+
break;
|
|
819
|
+
case 2:
|
|
820
|
+
message.amount = reader.string();
|
|
821
|
+
break;
|
|
822
|
+
case 3:
|
|
823
|
+
message.receiver = reader.string();
|
|
824
|
+
break;
|
|
825
|
+
case 4:
|
|
826
|
+
message.sender = reader.string();
|
|
827
|
+
break;
|
|
828
|
+
default:
|
|
829
|
+
reader.skipType(tag & 7);
|
|
830
|
+
break;
|
|
831
|
+
}
|
|
832
|
+
}
|
|
833
|
+
return message;
|
|
834
|
+
},
|
|
835
|
+
fromJSON(object) {
|
|
836
|
+
return {
|
|
837
|
+
contractAddress: chunkTUX4SN3U_js.isSet(object.contractAddress) ? String(object.contractAddress) : "",
|
|
838
|
+
amount: chunkTUX4SN3U_js.isSet(object.amount) ? String(object.amount) : "",
|
|
839
|
+
receiver: chunkTUX4SN3U_js.isSet(object.receiver) ? String(object.receiver) : "",
|
|
840
|
+
sender: chunkTUX4SN3U_js.isSet(object.sender) ? String(object.sender) : ""
|
|
841
|
+
};
|
|
842
|
+
},
|
|
843
|
+
toJSON(message) {
|
|
844
|
+
const obj = {};
|
|
845
|
+
message.contractAddress !== void 0 && (obj.contractAddress = message.contractAddress);
|
|
846
|
+
message.amount !== void 0 && (obj.amount = message.amount);
|
|
847
|
+
message.receiver !== void 0 && (obj.receiver = message.receiver);
|
|
848
|
+
message.sender !== void 0 && (obj.sender = message.sender);
|
|
849
|
+
return obj;
|
|
850
|
+
},
|
|
851
|
+
fromPartial(object) {
|
|
852
|
+
var _a, _b, _c, _d;
|
|
853
|
+
const message = createBaseMsgConvertERC20();
|
|
854
|
+
message.contractAddress = (_a = object.contractAddress) != null ? _a : "";
|
|
855
|
+
message.amount = (_b = object.amount) != null ? _b : "";
|
|
856
|
+
message.receiver = (_c = object.receiver) != null ? _c : "";
|
|
857
|
+
message.sender = (_d = object.sender) != null ? _d : "";
|
|
858
|
+
return message;
|
|
859
|
+
},
|
|
860
|
+
fromAmino(object) {
|
|
861
|
+
const message = createBaseMsgConvertERC20();
|
|
862
|
+
if (object.contract_address !== void 0 && object.contract_address !== null) {
|
|
863
|
+
message.contractAddress = object.contract_address;
|
|
864
|
+
}
|
|
865
|
+
if (object.amount !== void 0 && object.amount !== null) {
|
|
866
|
+
message.amount = object.amount;
|
|
867
|
+
}
|
|
868
|
+
if (object.receiver !== void 0 && object.receiver !== null) {
|
|
869
|
+
message.receiver = object.receiver;
|
|
870
|
+
}
|
|
871
|
+
if (object.sender !== void 0 && object.sender !== null) {
|
|
872
|
+
message.sender = object.sender;
|
|
873
|
+
}
|
|
874
|
+
return message;
|
|
875
|
+
},
|
|
876
|
+
toAmino(message) {
|
|
877
|
+
const obj = {};
|
|
878
|
+
obj.contract_address = message.contractAddress === "" ? void 0 : message.contractAddress;
|
|
879
|
+
obj.amount = message.amount === "" ? void 0 : message.amount;
|
|
880
|
+
obj.receiver = message.receiver === "" ? void 0 : message.receiver;
|
|
881
|
+
obj.sender = message.sender === "" ? void 0 : message.sender;
|
|
882
|
+
return obj;
|
|
883
|
+
},
|
|
884
|
+
fromAminoMsg(object) {
|
|
885
|
+
return MsgConvertERC20.fromAmino(object.value);
|
|
886
|
+
},
|
|
887
|
+
toAminoMsg(message) {
|
|
888
|
+
return {
|
|
889
|
+
type: "evmos/MsgConvertERC20",
|
|
890
|
+
value: MsgConvertERC20.toAmino(message)
|
|
891
|
+
};
|
|
892
|
+
},
|
|
893
|
+
fromProtoMsg(message) {
|
|
894
|
+
return MsgConvertERC20.decode(message.value);
|
|
895
|
+
},
|
|
896
|
+
toProto(message) {
|
|
897
|
+
return MsgConvertERC20.encode(message).finish();
|
|
898
|
+
},
|
|
899
|
+
toProtoMsg(message) {
|
|
900
|
+
return {
|
|
901
|
+
typeUrl: "/evmos.erc20.v1.MsgConvertERC20",
|
|
902
|
+
value: MsgConvertERC20.encode(message).finish()
|
|
903
|
+
};
|
|
904
|
+
}
|
|
905
|
+
};
|
|
906
|
+
function createBaseMsgUpdateParams() {
|
|
907
|
+
return {
|
|
908
|
+
authority: "",
|
|
909
|
+
params: Params.fromPartial({})
|
|
910
|
+
};
|
|
911
|
+
}
|
|
912
|
+
var MsgUpdateParams = {
|
|
913
|
+
typeUrl: "/evmos.erc20.v1.MsgUpdateParams",
|
|
914
|
+
encode(message, writer = _m08__namespace.Writer.create()) {
|
|
915
|
+
if (message.authority !== "") {
|
|
916
|
+
writer.uint32(10).string(message.authority);
|
|
917
|
+
}
|
|
918
|
+
if (message.params !== void 0) {
|
|
919
|
+
Params.encode(message.params, writer.uint32(18).fork()).ldelim();
|
|
920
|
+
}
|
|
921
|
+
return writer;
|
|
922
|
+
},
|
|
923
|
+
decode(input, length) {
|
|
924
|
+
const reader = input instanceof _m08__namespace.Reader ? input : new _m08__namespace.Reader(input);
|
|
925
|
+
let end = length === void 0 ? reader.len : reader.pos + length;
|
|
926
|
+
const message = createBaseMsgUpdateParams();
|
|
927
|
+
while (reader.pos < end) {
|
|
928
|
+
const tag = reader.uint32();
|
|
929
|
+
switch (tag >>> 3) {
|
|
930
|
+
case 1:
|
|
931
|
+
message.authority = reader.string();
|
|
932
|
+
break;
|
|
933
|
+
case 2:
|
|
934
|
+
message.params = Params.decode(reader, reader.uint32());
|
|
935
|
+
break;
|
|
936
|
+
default:
|
|
937
|
+
reader.skipType(tag & 7);
|
|
938
|
+
break;
|
|
939
|
+
}
|
|
940
|
+
}
|
|
941
|
+
return message;
|
|
942
|
+
},
|
|
943
|
+
fromJSON(object) {
|
|
944
|
+
return {
|
|
945
|
+
authority: chunkTUX4SN3U_js.isSet(object.authority) ? String(object.authority) : "",
|
|
946
|
+
params: chunkTUX4SN3U_js.isSet(object.params) ? Params.fromJSON(object.params) : void 0
|
|
947
|
+
};
|
|
948
|
+
},
|
|
949
|
+
toJSON(message) {
|
|
950
|
+
const obj = {};
|
|
951
|
+
message.authority !== void 0 && (obj.authority = message.authority);
|
|
952
|
+
message.params !== void 0 && (obj.params = message.params ? Params.toJSON(message.params) : void 0);
|
|
953
|
+
return obj;
|
|
954
|
+
},
|
|
955
|
+
fromPartial(object) {
|
|
956
|
+
var _a;
|
|
957
|
+
const message = createBaseMsgUpdateParams();
|
|
958
|
+
message.authority = (_a = object.authority) != null ? _a : "";
|
|
959
|
+
message.params = object.params !== void 0 && object.params !== null ? Params.fromPartial(object.params) : void 0;
|
|
960
|
+
return message;
|
|
961
|
+
},
|
|
962
|
+
fromAmino(object) {
|
|
963
|
+
const message = createBaseMsgUpdateParams();
|
|
964
|
+
if (object.authority !== void 0 && object.authority !== null) {
|
|
965
|
+
message.authority = object.authority;
|
|
966
|
+
}
|
|
967
|
+
if (object.params !== void 0 && object.params !== null) {
|
|
968
|
+
message.params = Params.fromAmino(object.params);
|
|
969
|
+
}
|
|
970
|
+
return message;
|
|
971
|
+
},
|
|
972
|
+
toAmino(message) {
|
|
973
|
+
const obj = {};
|
|
974
|
+
obj.authority = message.authority === "" ? void 0 : message.authority;
|
|
975
|
+
obj.params = message.params ? Params.toAmino(message.params) : void 0;
|
|
976
|
+
return obj;
|
|
977
|
+
},
|
|
978
|
+
fromAminoMsg(object) {
|
|
979
|
+
return MsgUpdateParams.fromAmino(object.value);
|
|
980
|
+
},
|
|
981
|
+
toAminoMsg(message) {
|
|
982
|
+
return {
|
|
983
|
+
type: "evmos/erc20/MsgUpdateParams",
|
|
984
|
+
value: MsgUpdateParams.toAmino(message)
|
|
985
|
+
};
|
|
986
|
+
},
|
|
987
|
+
fromProtoMsg(message) {
|
|
988
|
+
return MsgUpdateParams.decode(message.value);
|
|
989
|
+
},
|
|
990
|
+
toProto(message) {
|
|
991
|
+
return MsgUpdateParams.encode(message).finish();
|
|
992
|
+
},
|
|
993
|
+
toProtoMsg(message) {
|
|
994
|
+
return {
|
|
995
|
+
typeUrl: "/evmos.erc20.v1.MsgUpdateParams",
|
|
996
|
+
value: MsgUpdateParams.encode(message).finish()
|
|
997
|
+
};
|
|
998
|
+
}
|
|
999
|
+
};
|
|
1000
|
+
|
|
1001
|
+
// src/codegen/evmos/erc20/v1/tx.registry.ts
|
|
1002
|
+
var registry2 = [["/evmos.erc20.v1.MsgConvertCoin", MsgConvertCoin], ["/evmos.erc20.v1.MsgConvertERC20", MsgConvertERC20], ["/evmos.erc20.v1.MsgUpdateParams", MsgUpdateParams]];
|
|
1003
|
+
function createBaseInflationDistribution() {
|
|
1004
|
+
return {
|
|
1005
|
+
stakingRewards: "",
|
|
1006
|
+
usageIncentives: "",
|
|
1007
|
+
communityPool: ""
|
|
1008
|
+
};
|
|
1009
|
+
}
|
|
1010
|
+
var InflationDistribution = {
|
|
1011
|
+
typeUrl: "/evmos.inflation.v1.InflationDistribution",
|
|
1012
|
+
encode(message, writer = _m08__namespace.Writer.create()) {
|
|
1013
|
+
if (message.stakingRewards !== "") {
|
|
1014
|
+
writer.uint32(10).string(math.Decimal.fromUserInput(message.stakingRewards, 18).atomics);
|
|
1015
|
+
}
|
|
1016
|
+
if (message.usageIncentives !== "") {
|
|
1017
|
+
writer.uint32(18).string(math.Decimal.fromUserInput(message.usageIncentives, 18).atomics);
|
|
1018
|
+
}
|
|
1019
|
+
if (message.communityPool !== "") {
|
|
1020
|
+
writer.uint32(26).string(math.Decimal.fromUserInput(message.communityPool, 18).atomics);
|
|
1021
|
+
}
|
|
1022
|
+
return writer;
|
|
1023
|
+
},
|
|
1024
|
+
decode(input, length) {
|
|
1025
|
+
const reader = input instanceof _m08__namespace.Reader ? input : new _m08__namespace.Reader(input);
|
|
1026
|
+
let end = length === void 0 ? reader.len : reader.pos + length;
|
|
1027
|
+
const message = createBaseInflationDistribution();
|
|
1028
|
+
while (reader.pos < end) {
|
|
1029
|
+
const tag = reader.uint32();
|
|
1030
|
+
switch (tag >>> 3) {
|
|
1031
|
+
case 1:
|
|
1032
|
+
message.stakingRewards = math.Decimal.fromAtomics(reader.string(), 18).toString();
|
|
1033
|
+
break;
|
|
1034
|
+
case 2:
|
|
1035
|
+
message.usageIncentives = math.Decimal.fromAtomics(reader.string(), 18).toString();
|
|
1036
|
+
break;
|
|
1037
|
+
case 3:
|
|
1038
|
+
message.communityPool = math.Decimal.fromAtomics(reader.string(), 18).toString();
|
|
1039
|
+
break;
|
|
1040
|
+
default:
|
|
1041
|
+
reader.skipType(tag & 7);
|
|
1042
|
+
break;
|
|
1043
|
+
}
|
|
1044
|
+
}
|
|
1045
|
+
return message;
|
|
1046
|
+
},
|
|
1047
|
+
fromJSON(object) {
|
|
1048
|
+
return {
|
|
1049
|
+
stakingRewards: chunkTUX4SN3U_js.isSet(object.stakingRewards) ? String(object.stakingRewards) : "",
|
|
1050
|
+
usageIncentives: chunkTUX4SN3U_js.isSet(object.usageIncentives) ? String(object.usageIncentives) : "",
|
|
1051
|
+
communityPool: chunkTUX4SN3U_js.isSet(object.communityPool) ? String(object.communityPool) : ""
|
|
1052
|
+
};
|
|
1053
|
+
},
|
|
1054
|
+
toJSON(message) {
|
|
1055
|
+
const obj = {};
|
|
1056
|
+
message.stakingRewards !== void 0 && (obj.stakingRewards = message.stakingRewards);
|
|
1057
|
+
message.usageIncentives !== void 0 && (obj.usageIncentives = message.usageIncentives);
|
|
1058
|
+
message.communityPool !== void 0 && (obj.communityPool = message.communityPool);
|
|
1059
|
+
return obj;
|
|
1060
|
+
},
|
|
1061
|
+
fromPartial(object) {
|
|
1062
|
+
var _a, _b, _c;
|
|
1063
|
+
const message = createBaseInflationDistribution();
|
|
1064
|
+
message.stakingRewards = (_a = object.stakingRewards) != null ? _a : "";
|
|
1065
|
+
message.usageIncentives = (_b = object.usageIncentives) != null ? _b : "";
|
|
1066
|
+
message.communityPool = (_c = object.communityPool) != null ? _c : "";
|
|
1067
|
+
return message;
|
|
1068
|
+
},
|
|
1069
|
+
fromAmino(object) {
|
|
1070
|
+
const message = createBaseInflationDistribution();
|
|
1071
|
+
if (object.staking_rewards !== void 0 && object.staking_rewards !== null) {
|
|
1072
|
+
message.stakingRewards = object.staking_rewards;
|
|
1073
|
+
}
|
|
1074
|
+
if (object.usage_incentives !== void 0 && object.usage_incentives !== null) {
|
|
1075
|
+
message.usageIncentives = object.usage_incentives;
|
|
1076
|
+
}
|
|
1077
|
+
if (object.community_pool !== void 0 && object.community_pool !== null) {
|
|
1078
|
+
message.communityPool = object.community_pool;
|
|
1079
|
+
}
|
|
1080
|
+
return message;
|
|
1081
|
+
},
|
|
1082
|
+
toAmino(message) {
|
|
1083
|
+
const obj = {};
|
|
1084
|
+
obj.staking_rewards = chunkTUX4SN3U_js.padDecimal(message.stakingRewards) === "" ? void 0 : chunkTUX4SN3U_js.padDecimal(message.stakingRewards);
|
|
1085
|
+
obj.usage_incentives = chunkTUX4SN3U_js.padDecimal(message.usageIncentives) === "" ? void 0 : chunkTUX4SN3U_js.padDecimal(message.usageIncentives);
|
|
1086
|
+
obj.community_pool = chunkTUX4SN3U_js.padDecimal(message.communityPool) === "" ? void 0 : chunkTUX4SN3U_js.padDecimal(message.communityPool);
|
|
1087
|
+
return obj;
|
|
1088
|
+
},
|
|
1089
|
+
fromAminoMsg(object) {
|
|
1090
|
+
return InflationDistribution.fromAmino(object.value);
|
|
1091
|
+
},
|
|
1092
|
+
toAminoMsg(message) {
|
|
1093
|
+
return {
|
|
1094
|
+
type: "inflation/InflationDistribution",
|
|
1095
|
+
value: InflationDistribution.toAmino(message)
|
|
1096
|
+
};
|
|
1097
|
+
},
|
|
1098
|
+
fromProtoMsg(message) {
|
|
1099
|
+
return InflationDistribution.decode(message.value);
|
|
1100
|
+
},
|
|
1101
|
+
toProto(message) {
|
|
1102
|
+
return InflationDistribution.encode(message).finish();
|
|
1103
|
+
},
|
|
1104
|
+
toProtoMsg(message) {
|
|
1105
|
+
return {
|
|
1106
|
+
typeUrl: "/evmos.inflation.v1.InflationDistribution",
|
|
1107
|
+
value: InflationDistribution.encode(message).finish()
|
|
1108
|
+
};
|
|
1109
|
+
}
|
|
1110
|
+
};
|
|
1111
|
+
function createBaseExponentialCalculation() {
|
|
1112
|
+
return {
|
|
1113
|
+
a: "",
|
|
1114
|
+
r: "",
|
|
1115
|
+
c: "",
|
|
1116
|
+
bondingTarget: "",
|
|
1117
|
+
maxVariance: ""
|
|
1118
|
+
};
|
|
1119
|
+
}
|
|
1120
|
+
var ExponentialCalculation = {
|
|
1121
|
+
typeUrl: "/evmos.inflation.v1.ExponentialCalculation",
|
|
1122
|
+
encode(message, writer = _m08__namespace.Writer.create()) {
|
|
1123
|
+
if (message.a !== "") {
|
|
1124
|
+
writer.uint32(10).string(math.Decimal.fromUserInput(message.a, 18).atomics);
|
|
1125
|
+
}
|
|
1126
|
+
if (message.r !== "") {
|
|
1127
|
+
writer.uint32(18).string(math.Decimal.fromUserInput(message.r, 18).atomics);
|
|
1128
|
+
}
|
|
1129
|
+
if (message.c !== "") {
|
|
1130
|
+
writer.uint32(26).string(math.Decimal.fromUserInput(message.c, 18).atomics);
|
|
1131
|
+
}
|
|
1132
|
+
if (message.bondingTarget !== "") {
|
|
1133
|
+
writer.uint32(34).string(math.Decimal.fromUserInput(message.bondingTarget, 18).atomics);
|
|
1134
|
+
}
|
|
1135
|
+
if (message.maxVariance !== "") {
|
|
1136
|
+
writer.uint32(42).string(math.Decimal.fromUserInput(message.maxVariance, 18).atomics);
|
|
1137
|
+
}
|
|
1138
|
+
return writer;
|
|
1139
|
+
},
|
|
1140
|
+
decode(input, length) {
|
|
1141
|
+
const reader = input instanceof _m08__namespace.Reader ? input : new _m08__namespace.Reader(input);
|
|
1142
|
+
let end = length === void 0 ? reader.len : reader.pos + length;
|
|
1143
|
+
const message = createBaseExponentialCalculation();
|
|
1144
|
+
while (reader.pos < end) {
|
|
1145
|
+
const tag = reader.uint32();
|
|
1146
|
+
switch (tag >>> 3) {
|
|
1147
|
+
case 1:
|
|
1148
|
+
message.a = math.Decimal.fromAtomics(reader.string(), 18).toString();
|
|
1149
|
+
break;
|
|
1150
|
+
case 2:
|
|
1151
|
+
message.r = math.Decimal.fromAtomics(reader.string(), 18).toString();
|
|
1152
|
+
break;
|
|
1153
|
+
case 3:
|
|
1154
|
+
message.c = math.Decimal.fromAtomics(reader.string(), 18).toString();
|
|
1155
|
+
break;
|
|
1156
|
+
case 4:
|
|
1157
|
+
message.bondingTarget = math.Decimal.fromAtomics(reader.string(), 18).toString();
|
|
1158
|
+
break;
|
|
1159
|
+
case 5:
|
|
1160
|
+
message.maxVariance = math.Decimal.fromAtomics(reader.string(), 18).toString();
|
|
1161
|
+
break;
|
|
1162
|
+
default:
|
|
1163
|
+
reader.skipType(tag & 7);
|
|
1164
|
+
break;
|
|
1165
|
+
}
|
|
1166
|
+
}
|
|
1167
|
+
return message;
|
|
1168
|
+
},
|
|
1169
|
+
fromJSON(object) {
|
|
1170
|
+
return {
|
|
1171
|
+
a: chunkTUX4SN3U_js.isSet(object.a) ? String(object.a) : "",
|
|
1172
|
+
r: chunkTUX4SN3U_js.isSet(object.r) ? String(object.r) : "",
|
|
1173
|
+
c: chunkTUX4SN3U_js.isSet(object.c) ? String(object.c) : "",
|
|
1174
|
+
bondingTarget: chunkTUX4SN3U_js.isSet(object.bondingTarget) ? String(object.bondingTarget) : "",
|
|
1175
|
+
maxVariance: chunkTUX4SN3U_js.isSet(object.maxVariance) ? String(object.maxVariance) : ""
|
|
1176
|
+
};
|
|
1177
|
+
},
|
|
1178
|
+
toJSON(message) {
|
|
1179
|
+
const obj = {};
|
|
1180
|
+
message.a !== void 0 && (obj.a = message.a);
|
|
1181
|
+
message.r !== void 0 && (obj.r = message.r);
|
|
1182
|
+
message.c !== void 0 && (obj.c = message.c);
|
|
1183
|
+
message.bondingTarget !== void 0 && (obj.bondingTarget = message.bondingTarget);
|
|
1184
|
+
message.maxVariance !== void 0 && (obj.maxVariance = message.maxVariance);
|
|
1185
|
+
return obj;
|
|
1186
|
+
},
|
|
1187
|
+
fromPartial(object) {
|
|
1188
|
+
var _a, _b, _c, _d, _e;
|
|
1189
|
+
const message = createBaseExponentialCalculation();
|
|
1190
|
+
message.a = (_a = object.a) != null ? _a : "";
|
|
1191
|
+
message.r = (_b = object.r) != null ? _b : "";
|
|
1192
|
+
message.c = (_c = object.c) != null ? _c : "";
|
|
1193
|
+
message.bondingTarget = (_d = object.bondingTarget) != null ? _d : "";
|
|
1194
|
+
message.maxVariance = (_e = object.maxVariance) != null ? _e : "";
|
|
1195
|
+
return message;
|
|
1196
|
+
},
|
|
1197
|
+
fromAmino(object) {
|
|
1198
|
+
const message = createBaseExponentialCalculation();
|
|
1199
|
+
if (object.a !== void 0 && object.a !== null) {
|
|
1200
|
+
message.a = object.a;
|
|
1201
|
+
}
|
|
1202
|
+
if (object.r !== void 0 && object.r !== null) {
|
|
1203
|
+
message.r = object.r;
|
|
1204
|
+
}
|
|
1205
|
+
if (object.c !== void 0 && object.c !== null) {
|
|
1206
|
+
message.c = object.c;
|
|
1207
|
+
}
|
|
1208
|
+
if (object.bonding_target !== void 0 && object.bonding_target !== null) {
|
|
1209
|
+
message.bondingTarget = object.bonding_target;
|
|
1210
|
+
}
|
|
1211
|
+
if (object.max_variance !== void 0 && object.max_variance !== null) {
|
|
1212
|
+
message.maxVariance = object.max_variance;
|
|
1213
|
+
}
|
|
1214
|
+
return message;
|
|
1215
|
+
},
|
|
1216
|
+
toAmino(message) {
|
|
1217
|
+
const obj = {};
|
|
1218
|
+
obj.a = chunkTUX4SN3U_js.padDecimal(message.a) === "" ? void 0 : chunkTUX4SN3U_js.padDecimal(message.a);
|
|
1219
|
+
obj.r = chunkTUX4SN3U_js.padDecimal(message.r) === "" ? void 0 : chunkTUX4SN3U_js.padDecimal(message.r);
|
|
1220
|
+
obj.c = chunkTUX4SN3U_js.padDecimal(message.c) === "" ? void 0 : chunkTUX4SN3U_js.padDecimal(message.c);
|
|
1221
|
+
obj.bonding_target = chunkTUX4SN3U_js.padDecimal(message.bondingTarget) === "" ? void 0 : chunkTUX4SN3U_js.padDecimal(message.bondingTarget);
|
|
1222
|
+
obj.max_variance = chunkTUX4SN3U_js.padDecimal(message.maxVariance) === "" ? void 0 : chunkTUX4SN3U_js.padDecimal(message.maxVariance);
|
|
1223
|
+
return obj;
|
|
1224
|
+
},
|
|
1225
|
+
fromAminoMsg(object) {
|
|
1226
|
+
return ExponentialCalculation.fromAmino(object.value);
|
|
1227
|
+
},
|
|
1228
|
+
toAminoMsg(message) {
|
|
1229
|
+
return {
|
|
1230
|
+
type: "inflation/ExponentialCalculation",
|
|
1231
|
+
value: ExponentialCalculation.toAmino(message)
|
|
1232
|
+
};
|
|
1233
|
+
},
|
|
1234
|
+
fromProtoMsg(message) {
|
|
1235
|
+
return ExponentialCalculation.decode(message.value);
|
|
1236
|
+
},
|
|
1237
|
+
toProto(message) {
|
|
1238
|
+
return ExponentialCalculation.encode(message).finish();
|
|
1239
|
+
},
|
|
1240
|
+
toProtoMsg(message) {
|
|
1241
|
+
return {
|
|
1242
|
+
typeUrl: "/evmos.inflation.v1.ExponentialCalculation",
|
|
1243
|
+
value: ExponentialCalculation.encode(message).finish()
|
|
1244
|
+
};
|
|
1245
|
+
}
|
|
1246
|
+
};
|
|
1247
|
+
function createBaseParams2() {
|
|
1248
|
+
return {
|
|
1249
|
+
mintDenom: "",
|
|
1250
|
+
exponentialCalculation: ExponentialCalculation.fromPartial({}),
|
|
1251
|
+
inflationDistribution: InflationDistribution.fromPartial({}),
|
|
1252
|
+
enableInflation: false
|
|
1253
|
+
};
|
|
1254
|
+
}
|
|
1255
|
+
var Params2 = {
|
|
1256
|
+
typeUrl: "/evmos.inflation.v1.Params",
|
|
1257
|
+
encode(message, writer = _m08__namespace.Writer.create()) {
|
|
1258
|
+
if (message.mintDenom !== "") {
|
|
1259
|
+
writer.uint32(10).string(message.mintDenom);
|
|
1260
|
+
}
|
|
1261
|
+
if (message.exponentialCalculation !== void 0) {
|
|
1262
|
+
ExponentialCalculation.encode(message.exponentialCalculation, writer.uint32(18).fork()).ldelim();
|
|
1263
|
+
}
|
|
1264
|
+
if (message.inflationDistribution !== void 0) {
|
|
1265
|
+
InflationDistribution.encode(message.inflationDistribution, writer.uint32(26).fork()).ldelim();
|
|
1266
|
+
}
|
|
1267
|
+
if (message.enableInflation === true) {
|
|
1268
|
+
writer.uint32(32).bool(message.enableInflation);
|
|
1269
|
+
}
|
|
1270
|
+
return writer;
|
|
1271
|
+
},
|
|
1272
|
+
decode(input, length) {
|
|
1273
|
+
const reader = input instanceof _m08__namespace.Reader ? input : new _m08__namespace.Reader(input);
|
|
1274
|
+
let end = length === void 0 ? reader.len : reader.pos + length;
|
|
1275
|
+
const message = createBaseParams2();
|
|
1276
|
+
while (reader.pos < end) {
|
|
1277
|
+
const tag = reader.uint32();
|
|
1278
|
+
switch (tag >>> 3) {
|
|
1279
|
+
case 1:
|
|
1280
|
+
message.mintDenom = reader.string();
|
|
1281
|
+
break;
|
|
1282
|
+
case 2:
|
|
1283
|
+
message.exponentialCalculation = ExponentialCalculation.decode(reader, reader.uint32());
|
|
1284
|
+
break;
|
|
1285
|
+
case 3:
|
|
1286
|
+
message.inflationDistribution = InflationDistribution.decode(reader, reader.uint32());
|
|
1287
|
+
break;
|
|
1288
|
+
case 4:
|
|
1289
|
+
message.enableInflation = reader.bool();
|
|
1290
|
+
break;
|
|
1291
|
+
default:
|
|
1292
|
+
reader.skipType(tag & 7);
|
|
1293
|
+
break;
|
|
1294
|
+
}
|
|
1295
|
+
}
|
|
1296
|
+
return message;
|
|
1297
|
+
},
|
|
1298
|
+
fromJSON(object) {
|
|
1299
|
+
return {
|
|
1300
|
+
mintDenom: chunkTUX4SN3U_js.isSet(object.mintDenom) ? String(object.mintDenom) : "",
|
|
1301
|
+
exponentialCalculation: chunkTUX4SN3U_js.isSet(object.exponentialCalculation) ? ExponentialCalculation.fromJSON(object.exponentialCalculation) : void 0,
|
|
1302
|
+
inflationDistribution: chunkTUX4SN3U_js.isSet(object.inflationDistribution) ? InflationDistribution.fromJSON(object.inflationDistribution) : void 0,
|
|
1303
|
+
enableInflation: chunkTUX4SN3U_js.isSet(object.enableInflation) ? Boolean(object.enableInflation) : false
|
|
1304
|
+
};
|
|
1305
|
+
},
|
|
1306
|
+
toJSON(message) {
|
|
1307
|
+
const obj = {};
|
|
1308
|
+
message.mintDenom !== void 0 && (obj.mintDenom = message.mintDenom);
|
|
1309
|
+
message.exponentialCalculation !== void 0 && (obj.exponentialCalculation = message.exponentialCalculation ? ExponentialCalculation.toJSON(message.exponentialCalculation) : void 0);
|
|
1310
|
+
message.inflationDistribution !== void 0 && (obj.inflationDistribution = message.inflationDistribution ? InflationDistribution.toJSON(message.inflationDistribution) : void 0);
|
|
1311
|
+
message.enableInflation !== void 0 && (obj.enableInflation = message.enableInflation);
|
|
1312
|
+
return obj;
|
|
1313
|
+
},
|
|
1314
|
+
fromPartial(object) {
|
|
1315
|
+
var _a, _b;
|
|
1316
|
+
const message = createBaseParams2();
|
|
1317
|
+
message.mintDenom = (_a = object.mintDenom) != null ? _a : "";
|
|
1318
|
+
message.exponentialCalculation = object.exponentialCalculation !== void 0 && object.exponentialCalculation !== null ? ExponentialCalculation.fromPartial(object.exponentialCalculation) : void 0;
|
|
1319
|
+
message.inflationDistribution = object.inflationDistribution !== void 0 && object.inflationDistribution !== null ? InflationDistribution.fromPartial(object.inflationDistribution) : void 0;
|
|
1320
|
+
message.enableInflation = (_b = object.enableInflation) != null ? _b : false;
|
|
1321
|
+
return message;
|
|
1322
|
+
},
|
|
1323
|
+
fromAmino(object) {
|
|
1324
|
+
const message = createBaseParams2();
|
|
1325
|
+
if (object.mint_denom !== void 0 && object.mint_denom !== null) {
|
|
1326
|
+
message.mintDenom = object.mint_denom;
|
|
1327
|
+
}
|
|
1328
|
+
if (object.exponential_calculation !== void 0 && object.exponential_calculation !== null) {
|
|
1329
|
+
message.exponentialCalculation = ExponentialCalculation.fromAmino(object.exponential_calculation);
|
|
1330
|
+
}
|
|
1331
|
+
if (object.inflation_distribution !== void 0 && object.inflation_distribution !== null) {
|
|
1332
|
+
message.inflationDistribution = InflationDistribution.fromAmino(object.inflation_distribution);
|
|
1333
|
+
}
|
|
1334
|
+
if (object.enable_inflation !== void 0 && object.enable_inflation !== null) {
|
|
1335
|
+
message.enableInflation = object.enable_inflation;
|
|
1336
|
+
}
|
|
1337
|
+
return message;
|
|
1338
|
+
},
|
|
1339
|
+
toAmino(message) {
|
|
1340
|
+
const obj = {};
|
|
1341
|
+
obj.mint_denom = message.mintDenom === "" ? void 0 : message.mintDenom;
|
|
1342
|
+
obj.exponential_calculation = message.exponentialCalculation ? ExponentialCalculation.toAmino(message.exponentialCalculation) : void 0;
|
|
1343
|
+
obj.inflation_distribution = message.inflationDistribution ? InflationDistribution.toAmino(message.inflationDistribution) : void 0;
|
|
1344
|
+
obj.enable_inflation = message.enableInflation === false ? void 0 : message.enableInflation;
|
|
1345
|
+
return obj;
|
|
1346
|
+
},
|
|
1347
|
+
fromAminoMsg(object) {
|
|
1348
|
+
return Params2.fromAmino(object.value);
|
|
1349
|
+
},
|
|
1350
|
+
toAminoMsg(message) {
|
|
1351
|
+
return {
|
|
1352
|
+
type: "inflation/Params",
|
|
1353
|
+
value: Params2.toAmino(message)
|
|
1354
|
+
};
|
|
1355
|
+
},
|
|
1356
|
+
fromProtoMsg(message) {
|
|
1357
|
+
return Params2.decode(message.value);
|
|
1358
|
+
},
|
|
1359
|
+
toProto(message) {
|
|
1360
|
+
return Params2.encode(message).finish();
|
|
1361
|
+
},
|
|
1362
|
+
toProtoMsg(message) {
|
|
1363
|
+
return {
|
|
1364
|
+
typeUrl: "/evmos.inflation.v1.Params",
|
|
1365
|
+
value: Params2.encode(message).finish()
|
|
1366
|
+
};
|
|
1367
|
+
}
|
|
1368
|
+
};
|
|
1369
|
+
function createBaseMsgUpdateParams2() {
|
|
1370
|
+
return {
|
|
1371
|
+
authority: "",
|
|
1372
|
+
params: Params2.fromPartial({})
|
|
1373
|
+
};
|
|
1374
|
+
}
|
|
1375
|
+
var MsgUpdateParams2 = {
|
|
1376
|
+
typeUrl: "/evmos.inflation.v1.MsgUpdateParams",
|
|
1377
|
+
encode(message, writer = _m08__namespace.Writer.create()) {
|
|
1378
|
+
if (message.authority !== "") {
|
|
1379
|
+
writer.uint32(10).string(message.authority);
|
|
1380
|
+
}
|
|
1381
|
+
if (message.params !== void 0) {
|
|
1382
|
+
Params2.encode(message.params, writer.uint32(18).fork()).ldelim();
|
|
1383
|
+
}
|
|
1384
|
+
return writer;
|
|
1385
|
+
},
|
|
1386
|
+
decode(input, length) {
|
|
1387
|
+
const reader = input instanceof _m08__namespace.Reader ? input : new _m08__namespace.Reader(input);
|
|
1388
|
+
let end = length === void 0 ? reader.len : reader.pos + length;
|
|
1389
|
+
const message = createBaseMsgUpdateParams2();
|
|
1390
|
+
while (reader.pos < end) {
|
|
1391
|
+
const tag = reader.uint32();
|
|
1392
|
+
switch (tag >>> 3) {
|
|
1393
|
+
case 1:
|
|
1394
|
+
message.authority = reader.string();
|
|
1395
|
+
break;
|
|
1396
|
+
case 2:
|
|
1397
|
+
message.params = Params2.decode(reader, reader.uint32());
|
|
1398
|
+
break;
|
|
1399
|
+
default:
|
|
1400
|
+
reader.skipType(tag & 7);
|
|
1401
|
+
break;
|
|
1402
|
+
}
|
|
1403
|
+
}
|
|
1404
|
+
return message;
|
|
1405
|
+
},
|
|
1406
|
+
fromJSON(object) {
|
|
1407
|
+
return {
|
|
1408
|
+
authority: chunkTUX4SN3U_js.isSet(object.authority) ? String(object.authority) : "",
|
|
1409
|
+
params: chunkTUX4SN3U_js.isSet(object.params) ? Params2.fromJSON(object.params) : void 0
|
|
1410
|
+
};
|
|
1411
|
+
},
|
|
1412
|
+
toJSON(message) {
|
|
1413
|
+
const obj = {};
|
|
1414
|
+
message.authority !== void 0 && (obj.authority = message.authority);
|
|
1415
|
+
message.params !== void 0 && (obj.params = message.params ? Params2.toJSON(message.params) : void 0);
|
|
1416
|
+
return obj;
|
|
1417
|
+
},
|
|
1418
|
+
fromPartial(object) {
|
|
1419
|
+
var _a;
|
|
1420
|
+
const message = createBaseMsgUpdateParams2();
|
|
1421
|
+
message.authority = (_a = object.authority) != null ? _a : "";
|
|
1422
|
+
message.params = object.params !== void 0 && object.params !== null ? Params2.fromPartial(object.params) : void 0;
|
|
1423
|
+
return message;
|
|
1424
|
+
},
|
|
1425
|
+
fromAmino(object) {
|
|
1426
|
+
const message = createBaseMsgUpdateParams2();
|
|
1427
|
+
if (object.authority !== void 0 && object.authority !== null) {
|
|
1428
|
+
message.authority = object.authority;
|
|
1429
|
+
}
|
|
1430
|
+
if (object.params !== void 0 && object.params !== null) {
|
|
1431
|
+
message.params = Params2.fromAmino(object.params);
|
|
1432
|
+
}
|
|
1433
|
+
return message;
|
|
1434
|
+
},
|
|
1435
|
+
toAmino(message) {
|
|
1436
|
+
const obj = {};
|
|
1437
|
+
obj.authority = message.authority === "" ? void 0 : message.authority;
|
|
1438
|
+
obj.params = message.params ? Params2.toAmino(message.params) : void 0;
|
|
1439
|
+
return obj;
|
|
1440
|
+
},
|
|
1441
|
+
fromAminoMsg(object) {
|
|
1442
|
+
return MsgUpdateParams2.fromAmino(object.value);
|
|
1443
|
+
},
|
|
1444
|
+
toAminoMsg(message) {
|
|
1445
|
+
return {
|
|
1446
|
+
type: "evmos/inflation/MsgUpdateParams",
|
|
1447
|
+
value: MsgUpdateParams2.toAmino(message)
|
|
1448
|
+
};
|
|
1449
|
+
},
|
|
1450
|
+
fromProtoMsg(message) {
|
|
1451
|
+
return MsgUpdateParams2.decode(message.value);
|
|
1452
|
+
},
|
|
1453
|
+
toProto(message) {
|
|
1454
|
+
return MsgUpdateParams2.encode(message).finish();
|
|
1455
|
+
},
|
|
1456
|
+
toProtoMsg(message) {
|
|
1457
|
+
return {
|
|
1458
|
+
typeUrl: "/evmos.inflation.v1.MsgUpdateParams",
|
|
1459
|
+
value: MsgUpdateParams2.encode(message).finish()
|
|
1460
|
+
};
|
|
1461
|
+
}
|
|
1462
|
+
};
|
|
1463
|
+
|
|
1464
|
+
// src/codegen/evmos/inflation/v1/tx.registry.ts
|
|
1465
|
+
var registry3 = [["/evmos.inflation.v1.MsgUpdateParams", MsgUpdateParams2]];
|
|
1466
|
+
function createBaseParams3() {
|
|
1467
|
+
return {
|
|
1468
|
+
enableRevenue: false,
|
|
1469
|
+
developerShares: "",
|
|
1470
|
+
addrDerivationCostCreate: chunkTUX4SN3U_js.Long.UZERO
|
|
1471
|
+
};
|
|
1472
|
+
}
|
|
1473
|
+
var Params3 = {
|
|
1474
|
+
typeUrl: "/evmos.revenue.v1.Params",
|
|
1475
|
+
encode(message, writer = _m08__namespace.Writer.create()) {
|
|
1476
|
+
if (message.enableRevenue === true) {
|
|
1477
|
+
writer.uint32(8).bool(message.enableRevenue);
|
|
1478
|
+
}
|
|
1479
|
+
if (message.developerShares !== "") {
|
|
1480
|
+
writer.uint32(18).string(math.Decimal.fromUserInput(message.developerShares, 18).atomics);
|
|
1481
|
+
}
|
|
1482
|
+
if (!message.addrDerivationCostCreate.isZero()) {
|
|
1483
|
+
writer.uint32(24).uint64(message.addrDerivationCostCreate);
|
|
1484
|
+
}
|
|
1485
|
+
return writer;
|
|
1486
|
+
},
|
|
1487
|
+
decode(input, length) {
|
|
1488
|
+
const reader = input instanceof _m08__namespace.Reader ? input : new _m08__namespace.Reader(input);
|
|
1489
|
+
let end = length === void 0 ? reader.len : reader.pos + length;
|
|
1490
|
+
const message = createBaseParams3();
|
|
1491
|
+
while (reader.pos < end) {
|
|
1492
|
+
const tag = reader.uint32();
|
|
1493
|
+
switch (tag >>> 3) {
|
|
1494
|
+
case 1:
|
|
1495
|
+
message.enableRevenue = reader.bool();
|
|
1496
|
+
break;
|
|
1497
|
+
case 2:
|
|
1498
|
+
message.developerShares = math.Decimal.fromAtomics(reader.string(), 18).toString();
|
|
1499
|
+
break;
|
|
1500
|
+
case 3:
|
|
1501
|
+
message.addrDerivationCostCreate = reader.uint64();
|
|
1502
|
+
break;
|
|
1503
|
+
default:
|
|
1504
|
+
reader.skipType(tag & 7);
|
|
1505
|
+
break;
|
|
1506
|
+
}
|
|
1507
|
+
}
|
|
1508
|
+
return message;
|
|
1509
|
+
},
|
|
1510
|
+
fromJSON(object) {
|
|
1511
|
+
return {
|
|
1512
|
+
enableRevenue: chunkTUX4SN3U_js.isSet(object.enableRevenue) ? Boolean(object.enableRevenue) : false,
|
|
1513
|
+
developerShares: chunkTUX4SN3U_js.isSet(object.developerShares) ? String(object.developerShares) : "",
|
|
1514
|
+
addrDerivationCostCreate: chunkTUX4SN3U_js.isSet(object.addrDerivationCostCreate) ? chunkTUX4SN3U_js.Long.fromValue(object.addrDerivationCostCreate) : chunkTUX4SN3U_js.Long.UZERO
|
|
1515
|
+
};
|
|
1516
|
+
},
|
|
1517
|
+
toJSON(message) {
|
|
1518
|
+
const obj = {};
|
|
1519
|
+
message.enableRevenue !== void 0 && (obj.enableRevenue = message.enableRevenue);
|
|
1520
|
+
message.developerShares !== void 0 && (obj.developerShares = message.developerShares);
|
|
1521
|
+
message.addrDerivationCostCreate !== void 0 && (obj.addrDerivationCostCreate = (message.addrDerivationCostCreate || chunkTUX4SN3U_js.Long.UZERO).toString());
|
|
1522
|
+
return obj;
|
|
1523
|
+
},
|
|
1524
|
+
fromPartial(object) {
|
|
1525
|
+
var _a, _b;
|
|
1526
|
+
const message = createBaseParams3();
|
|
1527
|
+
message.enableRevenue = (_a = object.enableRevenue) != null ? _a : false;
|
|
1528
|
+
message.developerShares = (_b = object.developerShares) != null ? _b : "";
|
|
1529
|
+
message.addrDerivationCostCreate = object.addrDerivationCostCreate !== void 0 && object.addrDerivationCostCreate !== null ? chunkTUX4SN3U_js.Long.fromValue(object.addrDerivationCostCreate) : chunkTUX4SN3U_js.Long.UZERO;
|
|
1530
|
+
return message;
|
|
1531
|
+
},
|
|
1532
|
+
fromAmino(object) {
|
|
1533
|
+
const message = createBaseParams3();
|
|
1534
|
+
if (object.enable_revenue !== void 0 && object.enable_revenue !== null) {
|
|
1535
|
+
message.enableRevenue = object.enable_revenue;
|
|
1536
|
+
}
|
|
1537
|
+
if (object.developer_shares !== void 0 && object.developer_shares !== null) {
|
|
1538
|
+
message.developerShares = object.developer_shares;
|
|
1539
|
+
}
|
|
1540
|
+
if (object.addr_derivation_cost_create !== void 0 && object.addr_derivation_cost_create !== null) {
|
|
1541
|
+
message.addrDerivationCostCreate = chunkTUX4SN3U_js.Long.fromString(object.addr_derivation_cost_create);
|
|
1542
|
+
}
|
|
1543
|
+
return message;
|
|
1544
|
+
},
|
|
1545
|
+
toAmino(message) {
|
|
1546
|
+
const obj = {};
|
|
1547
|
+
obj.enable_revenue = message.enableRevenue === false ? void 0 : message.enableRevenue;
|
|
1548
|
+
obj.developer_shares = chunkTUX4SN3U_js.padDecimal(message.developerShares) === "" ? void 0 : chunkTUX4SN3U_js.padDecimal(message.developerShares);
|
|
1549
|
+
obj.addr_derivation_cost_create = !message.addrDerivationCostCreate.isZero() ? message.addrDerivationCostCreate.toString() : void 0;
|
|
1550
|
+
return obj;
|
|
1551
|
+
},
|
|
1552
|
+
fromAminoMsg(object) {
|
|
1553
|
+
return Params3.fromAmino(object.value);
|
|
1554
|
+
},
|
|
1555
|
+
toAminoMsg(message) {
|
|
1556
|
+
return {
|
|
1557
|
+
type: "revenue/Params",
|
|
1558
|
+
value: Params3.toAmino(message)
|
|
1559
|
+
};
|
|
1560
|
+
},
|
|
1561
|
+
fromProtoMsg(message) {
|
|
1562
|
+
return Params3.decode(message.value);
|
|
1563
|
+
},
|
|
1564
|
+
toProto(message) {
|
|
1565
|
+
return Params3.encode(message).finish();
|
|
1566
|
+
},
|
|
1567
|
+
toProtoMsg(message) {
|
|
1568
|
+
return {
|
|
1569
|
+
typeUrl: "/evmos.revenue.v1.Params",
|
|
1570
|
+
value: Params3.encode(message).finish()
|
|
1571
|
+
};
|
|
1572
|
+
}
|
|
1573
|
+
};
|
|
1574
|
+
function createBaseMsgRegisterRevenue() {
|
|
1575
|
+
return {
|
|
1576
|
+
contractAddress: "",
|
|
1577
|
+
deployerAddress: "",
|
|
1578
|
+
withdrawerAddress: "",
|
|
1579
|
+
nonces: []
|
|
1580
|
+
};
|
|
1581
|
+
}
|
|
1582
|
+
var MsgRegisterRevenue = {
|
|
1583
|
+
typeUrl: "/evmos.revenue.v1.MsgRegisterRevenue",
|
|
1584
|
+
encode(message, writer = _m08__namespace.Writer.create()) {
|
|
1585
|
+
if (message.contractAddress !== "") {
|
|
1586
|
+
writer.uint32(10).string(message.contractAddress);
|
|
1587
|
+
}
|
|
1588
|
+
if (message.deployerAddress !== "") {
|
|
1589
|
+
writer.uint32(18).string(message.deployerAddress);
|
|
1590
|
+
}
|
|
1591
|
+
if (message.withdrawerAddress !== "") {
|
|
1592
|
+
writer.uint32(26).string(message.withdrawerAddress);
|
|
1593
|
+
}
|
|
1594
|
+
writer.uint32(34).fork();
|
|
1595
|
+
for (const v of message.nonces) {
|
|
1596
|
+
writer.uint64(v);
|
|
1597
|
+
}
|
|
1598
|
+
writer.ldelim();
|
|
1599
|
+
return writer;
|
|
1600
|
+
},
|
|
1601
|
+
decode(input, length) {
|
|
1602
|
+
const reader = input instanceof _m08__namespace.Reader ? input : new _m08__namespace.Reader(input);
|
|
1603
|
+
let end = length === void 0 ? reader.len : reader.pos + length;
|
|
1604
|
+
const message = createBaseMsgRegisterRevenue();
|
|
1605
|
+
while (reader.pos < end) {
|
|
1606
|
+
const tag = reader.uint32();
|
|
1607
|
+
switch (tag >>> 3) {
|
|
1608
|
+
case 1:
|
|
1609
|
+
message.contractAddress = reader.string();
|
|
1610
|
+
break;
|
|
1611
|
+
case 2:
|
|
1612
|
+
message.deployerAddress = reader.string();
|
|
1613
|
+
break;
|
|
1614
|
+
case 3:
|
|
1615
|
+
message.withdrawerAddress = reader.string();
|
|
1616
|
+
break;
|
|
1617
|
+
case 4:
|
|
1618
|
+
if ((tag & 7) === 2) {
|
|
1619
|
+
const end2 = reader.uint32() + reader.pos;
|
|
1620
|
+
while (reader.pos < end2) {
|
|
1621
|
+
message.nonces.push(reader.uint64());
|
|
1622
|
+
}
|
|
1623
|
+
} else {
|
|
1624
|
+
message.nonces.push(reader.uint64());
|
|
1625
|
+
}
|
|
1626
|
+
break;
|
|
1627
|
+
default:
|
|
1628
|
+
reader.skipType(tag & 7);
|
|
1629
|
+
break;
|
|
1630
|
+
}
|
|
1631
|
+
}
|
|
1632
|
+
return message;
|
|
1633
|
+
},
|
|
1634
|
+
fromJSON(object) {
|
|
1635
|
+
return {
|
|
1636
|
+
contractAddress: chunkTUX4SN3U_js.isSet(object.contractAddress) ? String(object.contractAddress) : "",
|
|
1637
|
+
deployerAddress: chunkTUX4SN3U_js.isSet(object.deployerAddress) ? String(object.deployerAddress) : "",
|
|
1638
|
+
withdrawerAddress: chunkTUX4SN3U_js.isSet(object.withdrawerAddress) ? String(object.withdrawerAddress) : "",
|
|
1639
|
+
nonces: Array.isArray(object == null ? void 0 : object.nonces) ? object.nonces.map((e) => chunkTUX4SN3U_js.Long.fromValue(e)) : []
|
|
1640
|
+
};
|
|
1641
|
+
},
|
|
1642
|
+
toJSON(message) {
|
|
1643
|
+
const obj = {};
|
|
1644
|
+
message.contractAddress !== void 0 && (obj.contractAddress = message.contractAddress);
|
|
1645
|
+
message.deployerAddress !== void 0 && (obj.deployerAddress = message.deployerAddress);
|
|
1646
|
+
message.withdrawerAddress !== void 0 && (obj.withdrawerAddress = message.withdrawerAddress);
|
|
1647
|
+
if (message.nonces) {
|
|
1648
|
+
obj.nonces = message.nonces.map((e) => (e || chunkTUX4SN3U_js.Long.UZERO).toString());
|
|
1649
|
+
} else {
|
|
1650
|
+
obj.nonces = [];
|
|
1651
|
+
}
|
|
1652
|
+
return obj;
|
|
1653
|
+
},
|
|
1654
|
+
fromPartial(object) {
|
|
1655
|
+
var _a, _b, _c, _d;
|
|
1656
|
+
const message = createBaseMsgRegisterRevenue();
|
|
1657
|
+
message.contractAddress = (_a = object.contractAddress) != null ? _a : "";
|
|
1658
|
+
message.deployerAddress = (_b = object.deployerAddress) != null ? _b : "";
|
|
1659
|
+
message.withdrawerAddress = (_c = object.withdrawerAddress) != null ? _c : "";
|
|
1660
|
+
message.nonces = ((_d = object.nonces) == null ? void 0 : _d.map((e) => chunkTUX4SN3U_js.Long.fromValue(e))) || [];
|
|
1661
|
+
return message;
|
|
1662
|
+
},
|
|
1663
|
+
fromAmino(object) {
|
|
1664
|
+
var _a;
|
|
1665
|
+
const message = createBaseMsgRegisterRevenue();
|
|
1666
|
+
if (object.contract_address !== void 0 && object.contract_address !== null) {
|
|
1667
|
+
message.contractAddress = object.contract_address;
|
|
1668
|
+
}
|
|
1669
|
+
if (object.deployer_address !== void 0 && object.deployer_address !== null) {
|
|
1670
|
+
message.deployerAddress = object.deployer_address;
|
|
1671
|
+
}
|
|
1672
|
+
if (object.withdrawer_address !== void 0 && object.withdrawer_address !== null) {
|
|
1673
|
+
message.withdrawerAddress = object.withdrawer_address;
|
|
1674
|
+
}
|
|
1675
|
+
message.nonces = ((_a = object.nonces) == null ? void 0 : _a.map((e) => chunkTUX4SN3U_js.Long.fromString(e))) || [];
|
|
1676
|
+
return message;
|
|
1677
|
+
},
|
|
1678
|
+
toAmino(message) {
|
|
1679
|
+
const obj = {};
|
|
1680
|
+
obj.contract_address = message.contractAddress === "" ? void 0 : message.contractAddress;
|
|
1681
|
+
obj.deployer_address = message.deployerAddress === "" ? void 0 : message.deployerAddress;
|
|
1682
|
+
obj.withdrawer_address = message.withdrawerAddress === "" ? void 0 : message.withdrawerAddress;
|
|
1683
|
+
if (message.nonces) {
|
|
1684
|
+
obj.nonces = message.nonces.map((e) => e);
|
|
1685
|
+
} else {
|
|
1686
|
+
obj.nonces = message.nonces;
|
|
1687
|
+
}
|
|
1688
|
+
return obj;
|
|
1689
|
+
},
|
|
1690
|
+
fromAminoMsg(object) {
|
|
1691
|
+
return MsgRegisterRevenue.fromAmino(object.value);
|
|
1692
|
+
},
|
|
1693
|
+
toAminoMsg(message) {
|
|
1694
|
+
return {
|
|
1695
|
+
type: "evmos/MsgRegisterRevenue",
|
|
1696
|
+
value: MsgRegisterRevenue.toAmino(message)
|
|
1697
|
+
};
|
|
1698
|
+
},
|
|
1699
|
+
fromProtoMsg(message) {
|
|
1700
|
+
return MsgRegisterRevenue.decode(message.value);
|
|
1701
|
+
},
|
|
1702
|
+
toProto(message) {
|
|
1703
|
+
return MsgRegisterRevenue.encode(message).finish();
|
|
1704
|
+
},
|
|
1705
|
+
toProtoMsg(message) {
|
|
1706
|
+
return {
|
|
1707
|
+
typeUrl: "/evmos.revenue.v1.MsgRegisterRevenue",
|
|
1708
|
+
value: MsgRegisterRevenue.encode(message).finish()
|
|
1709
|
+
};
|
|
1710
|
+
}
|
|
1711
|
+
};
|
|
1712
|
+
function createBaseMsgUpdateRevenue() {
|
|
1713
|
+
return {
|
|
1714
|
+
contractAddress: "",
|
|
1715
|
+
deployerAddress: "",
|
|
1716
|
+
withdrawerAddress: ""
|
|
1717
|
+
};
|
|
1718
|
+
}
|
|
1719
|
+
var MsgUpdateRevenue = {
|
|
1720
|
+
typeUrl: "/evmos.revenue.v1.MsgUpdateRevenue",
|
|
1721
|
+
encode(message, writer = _m08__namespace.Writer.create()) {
|
|
1722
|
+
if (message.contractAddress !== "") {
|
|
1723
|
+
writer.uint32(10).string(message.contractAddress);
|
|
1724
|
+
}
|
|
1725
|
+
if (message.deployerAddress !== "") {
|
|
1726
|
+
writer.uint32(18).string(message.deployerAddress);
|
|
1727
|
+
}
|
|
1728
|
+
if (message.withdrawerAddress !== "") {
|
|
1729
|
+
writer.uint32(26).string(message.withdrawerAddress);
|
|
1730
|
+
}
|
|
1731
|
+
return writer;
|
|
1732
|
+
},
|
|
1733
|
+
decode(input, length) {
|
|
1734
|
+
const reader = input instanceof _m08__namespace.Reader ? input : new _m08__namespace.Reader(input);
|
|
1735
|
+
let end = length === void 0 ? reader.len : reader.pos + length;
|
|
1736
|
+
const message = createBaseMsgUpdateRevenue();
|
|
1737
|
+
while (reader.pos < end) {
|
|
1738
|
+
const tag = reader.uint32();
|
|
1739
|
+
switch (tag >>> 3) {
|
|
1740
|
+
case 1:
|
|
1741
|
+
message.contractAddress = reader.string();
|
|
1742
|
+
break;
|
|
1743
|
+
case 2:
|
|
1744
|
+
message.deployerAddress = reader.string();
|
|
1745
|
+
break;
|
|
1746
|
+
case 3:
|
|
1747
|
+
message.withdrawerAddress = reader.string();
|
|
1748
|
+
break;
|
|
1749
|
+
default:
|
|
1750
|
+
reader.skipType(tag & 7);
|
|
1751
|
+
break;
|
|
1752
|
+
}
|
|
1753
|
+
}
|
|
1754
|
+
return message;
|
|
1755
|
+
},
|
|
1756
|
+
fromJSON(object) {
|
|
1757
|
+
return {
|
|
1758
|
+
contractAddress: chunkTUX4SN3U_js.isSet(object.contractAddress) ? String(object.contractAddress) : "",
|
|
1759
|
+
deployerAddress: chunkTUX4SN3U_js.isSet(object.deployerAddress) ? String(object.deployerAddress) : "",
|
|
1760
|
+
withdrawerAddress: chunkTUX4SN3U_js.isSet(object.withdrawerAddress) ? String(object.withdrawerAddress) : ""
|
|
1761
|
+
};
|
|
1762
|
+
},
|
|
1763
|
+
toJSON(message) {
|
|
1764
|
+
const obj = {};
|
|
1765
|
+
message.contractAddress !== void 0 && (obj.contractAddress = message.contractAddress);
|
|
1766
|
+
message.deployerAddress !== void 0 && (obj.deployerAddress = message.deployerAddress);
|
|
1767
|
+
message.withdrawerAddress !== void 0 && (obj.withdrawerAddress = message.withdrawerAddress);
|
|
1768
|
+
return obj;
|
|
1769
|
+
},
|
|
1770
|
+
fromPartial(object) {
|
|
1771
|
+
var _a, _b, _c;
|
|
1772
|
+
const message = createBaseMsgUpdateRevenue();
|
|
1773
|
+
message.contractAddress = (_a = object.contractAddress) != null ? _a : "";
|
|
1774
|
+
message.deployerAddress = (_b = object.deployerAddress) != null ? _b : "";
|
|
1775
|
+
message.withdrawerAddress = (_c = object.withdrawerAddress) != null ? _c : "";
|
|
1776
|
+
return message;
|
|
1777
|
+
},
|
|
1778
|
+
fromAmino(object) {
|
|
1779
|
+
const message = createBaseMsgUpdateRevenue();
|
|
1780
|
+
if (object.contract_address !== void 0 && object.contract_address !== null) {
|
|
1781
|
+
message.contractAddress = object.contract_address;
|
|
1782
|
+
}
|
|
1783
|
+
if (object.deployer_address !== void 0 && object.deployer_address !== null) {
|
|
1784
|
+
message.deployerAddress = object.deployer_address;
|
|
1785
|
+
}
|
|
1786
|
+
if (object.withdrawer_address !== void 0 && object.withdrawer_address !== null) {
|
|
1787
|
+
message.withdrawerAddress = object.withdrawer_address;
|
|
1788
|
+
}
|
|
1789
|
+
return message;
|
|
1790
|
+
},
|
|
1791
|
+
toAmino(message) {
|
|
1792
|
+
const obj = {};
|
|
1793
|
+
obj.contract_address = message.contractAddress === "" ? void 0 : message.contractAddress;
|
|
1794
|
+
obj.deployer_address = message.deployerAddress === "" ? void 0 : message.deployerAddress;
|
|
1795
|
+
obj.withdrawer_address = message.withdrawerAddress === "" ? void 0 : message.withdrawerAddress;
|
|
1796
|
+
return obj;
|
|
1797
|
+
},
|
|
1798
|
+
fromAminoMsg(object) {
|
|
1799
|
+
return MsgUpdateRevenue.fromAmino(object.value);
|
|
1800
|
+
},
|
|
1801
|
+
toAminoMsg(message) {
|
|
1802
|
+
return {
|
|
1803
|
+
type: "evmos/MsgUpdateRevenue",
|
|
1804
|
+
value: MsgUpdateRevenue.toAmino(message)
|
|
1805
|
+
};
|
|
1806
|
+
},
|
|
1807
|
+
fromProtoMsg(message) {
|
|
1808
|
+
return MsgUpdateRevenue.decode(message.value);
|
|
1809
|
+
},
|
|
1810
|
+
toProto(message) {
|
|
1811
|
+
return MsgUpdateRevenue.encode(message).finish();
|
|
1812
|
+
},
|
|
1813
|
+
toProtoMsg(message) {
|
|
1814
|
+
return {
|
|
1815
|
+
typeUrl: "/evmos.revenue.v1.MsgUpdateRevenue",
|
|
1816
|
+
value: MsgUpdateRevenue.encode(message).finish()
|
|
1817
|
+
};
|
|
1818
|
+
}
|
|
1819
|
+
};
|
|
1820
|
+
function createBaseMsgCancelRevenue() {
|
|
1821
|
+
return {
|
|
1822
|
+
contractAddress: "",
|
|
1823
|
+
deployerAddress: ""
|
|
1824
|
+
};
|
|
1825
|
+
}
|
|
1826
|
+
var MsgCancelRevenue = {
|
|
1827
|
+
typeUrl: "/evmos.revenue.v1.MsgCancelRevenue",
|
|
1828
|
+
encode(message, writer = _m08__namespace.Writer.create()) {
|
|
1829
|
+
if (message.contractAddress !== "") {
|
|
1830
|
+
writer.uint32(10).string(message.contractAddress);
|
|
1831
|
+
}
|
|
1832
|
+
if (message.deployerAddress !== "") {
|
|
1833
|
+
writer.uint32(18).string(message.deployerAddress);
|
|
1834
|
+
}
|
|
1835
|
+
return writer;
|
|
1836
|
+
},
|
|
1837
|
+
decode(input, length) {
|
|
1838
|
+
const reader = input instanceof _m08__namespace.Reader ? input : new _m08__namespace.Reader(input);
|
|
1839
|
+
let end = length === void 0 ? reader.len : reader.pos + length;
|
|
1840
|
+
const message = createBaseMsgCancelRevenue();
|
|
1841
|
+
while (reader.pos < end) {
|
|
1842
|
+
const tag = reader.uint32();
|
|
1843
|
+
switch (tag >>> 3) {
|
|
1844
|
+
case 1:
|
|
1845
|
+
message.contractAddress = reader.string();
|
|
1846
|
+
break;
|
|
1847
|
+
case 2:
|
|
1848
|
+
message.deployerAddress = reader.string();
|
|
1849
|
+
break;
|
|
1850
|
+
default:
|
|
1851
|
+
reader.skipType(tag & 7);
|
|
1852
|
+
break;
|
|
1853
|
+
}
|
|
1854
|
+
}
|
|
1855
|
+
return message;
|
|
1856
|
+
},
|
|
1857
|
+
fromJSON(object) {
|
|
1858
|
+
return {
|
|
1859
|
+
contractAddress: chunkTUX4SN3U_js.isSet(object.contractAddress) ? String(object.contractAddress) : "",
|
|
1860
|
+
deployerAddress: chunkTUX4SN3U_js.isSet(object.deployerAddress) ? String(object.deployerAddress) : ""
|
|
1861
|
+
};
|
|
1862
|
+
},
|
|
1863
|
+
toJSON(message) {
|
|
1864
|
+
const obj = {};
|
|
1865
|
+
message.contractAddress !== void 0 && (obj.contractAddress = message.contractAddress);
|
|
1866
|
+
message.deployerAddress !== void 0 && (obj.deployerAddress = message.deployerAddress);
|
|
1867
|
+
return obj;
|
|
1868
|
+
},
|
|
1869
|
+
fromPartial(object) {
|
|
1870
|
+
var _a, _b;
|
|
1871
|
+
const message = createBaseMsgCancelRevenue();
|
|
1872
|
+
message.contractAddress = (_a = object.contractAddress) != null ? _a : "";
|
|
1873
|
+
message.deployerAddress = (_b = object.deployerAddress) != null ? _b : "";
|
|
1874
|
+
return message;
|
|
1875
|
+
},
|
|
1876
|
+
fromAmino(object) {
|
|
1877
|
+
const message = createBaseMsgCancelRevenue();
|
|
1878
|
+
if (object.contract_address !== void 0 && object.contract_address !== null) {
|
|
1879
|
+
message.contractAddress = object.contract_address;
|
|
1880
|
+
}
|
|
1881
|
+
if (object.deployer_address !== void 0 && object.deployer_address !== null) {
|
|
1882
|
+
message.deployerAddress = object.deployer_address;
|
|
1883
|
+
}
|
|
1884
|
+
return message;
|
|
1885
|
+
},
|
|
1886
|
+
toAmino(message) {
|
|
1887
|
+
const obj = {};
|
|
1888
|
+
obj.contract_address = message.contractAddress === "" ? void 0 : message.contractAddress;
|
|
1889
|
+
obj.deployer_address = message.deployerAddress === "" ? void 0 : message.deployerAddress;
|
|
1890
|
+
return obj;
|
|
1891
|
+
},
|
|
1892
|
+
fromAminoMsg(object) {
|
|
1893
|
+
return MsgCancelRevenue.fromAmino(object.value);
|
|
1894
|
+
},
|
|
1895
|
+
toAminoMsg(message) {
|
|
1896
|
+
return {
|
|
1897
|
+
type: "evmos/MsgCancelRevenue",
|
|
1898
|
+
value: MsgCancelRevenue.toAmino(message)
|
|
1899
|
+
};
|
|
1900
|
+
},
|
|
1901
|
+
fromProtoMsg(message) {
|
|
1902
|
+
return MsgCancelRevenue.decode(message.value);
|
|
1903
|
+
},
|
|
1904
|
+
toProto(message) {
|
|
1905
|
+
return MsgCancelRevenue.encode(message).finish();
|
|
1906
|
+
},
|
|
1907
|
+
toProtoMsg(message) {
|
|
1908
|
+
return {
|
|
1909
|
+
typeUrl: "/evmos.revenue.v1.MsgCancelRevenue",
|
|
1910
|
+
value: MsgCancelRevenue.encode(message).finish()
|
|
1911
|
+
};
|
|
1912
|
+
}
|
|
1913
|
+
};
|
|
1914
|
+
function createBaseMsgUpdateParams3() {
|
|
1915
|
+
return {
|
|
1916
|
+
authority: "",
|
|
1917
|
+
params: Params3.fromPartial({})
|
|
1918
|
+
};
|
|
1919
|
+
}
|
|
1920
|
+
var MsgUpdateParams3 = {
|
|
1921
|
+
typeUrl: "/evmos.revenue.v1.MsgUpdateParams",
|
|
1922
|
+
encode(message, writer = _m08__namespace.Writer.create()) {
|
|
1923
|
+
if (message.authority !== "") {
|
|
1924
|
+
writer.uint32(10).string(message.authority);
|
|
1925
|
+
}
|
|
1926
|
+
if (message.params !== void 0) {
|
|
1927
|
+
Params3.encode(message.params, writer.uint32(18).fork()).ldelim();
|
|
1928
|
+
}
|
|
1929
|
+
return writer;
|
|
1930
|
+
},
|
|
1931
|
+
decode(input, length) {
|
|
1932
|
+
const reader = input instanceof _m08__namespace.Reader ? input : new _m08__namespace.Reader(input);
|
|
1933
|
+
let end = length === void 0 ? reader.len : reader.pos + length;
|
|
1934
|
+
const message = createBaseMsgUpdateParams3();
|
|
1935
|
+
while (reader.pos < end) {
|
|
1936
|
+
const tag = reader.uint32();
|
|
1937
|
+
switch (tag >>> 3) {
|
|
1938
|
+
case 1:
|
|
1939
|
+
message.authority = reader.string();
|
|
1940
|
+
break;
|
|
1941
|
+
case 2:
|
|
1942
|
+
message.params = Params3.decode(reader, reader.uint32());
|
|
1943
|
+
break;
|
|
1944
|
+
default:
|
|
1945
|
+
reader.skipType(tag & 7);
|
|
1946
|
+
break;
|
|
1947
|
+
}
|
|
1948
|
+
}
|
|
1949
|
+
return message;
|
|
1950
|
+
},
|
|
1951
|
+
fromJSON(object) {
|
|
1952
|
+
return {
|
|
1953
|
+
authority: chunkTUX4SN3U_js.isSet(object.authority) ? String(object.authority) : "",
|
|
1954
|
+
params: chunkTUX4SN3U_js.isSet(object.params) ? Params3.fromJSON(object.params) : void 0
|
|
1955
|
+
};
|
|
1956
|
+
},
|
|
1957
|
+
toJSON(message) {
|
|
1958
|
+
const obj = {};
|
|
1959
|
+
message.authority !== void 0 && (obj.authority = message.authority);
|
|
1960
|
+
message.params !== void 0 && (obj.params = message.params ? Params3.toJSON(message.params) : void 0);
|
|
1961
|
+
return obj;
|
|
1962
|
+
},
|
|
1963
|
+
fromPartial(object) {
|
|
1964
|
+
var _a;
|
|
1965
|
+
const message = createBaseMsgUpdateParams3();
|
|
1966
|
+
message.authority = (_a = object.authority) != null ? _a : "";
|
|
1967
|
+
message.params = object.params !== void 0 && object.params !== null ? Params3.fromPartial(object.params) : void 0;
|
|
1968
|
+
return message;
|
|
1969
|
+
},
|
|
1970
|
+
fromAmino(object) {
|
|
1971
|
+
const message = createBaseMsgUpdateParams3();
|
|
1972
|
+
if (object.authority !== void 0 && object.authority !== null) {
|
|
1973
|
+
message.authority = object.authority;
|
|
1974
|
+
}
|
|
1975
|
+
if (object.params !== void 0 && object.params !== null) {
|
|
1976
|
+
message.params = Params3.fromAmino(object.params);
|
|
1977
|
+
}
|
|
1978
|
+
return message;
|
|
1979
|
+
},
|
|
1980
|
+
toAmino(message) {
|
|
1981
|
+
const obj = {};
|
|
1982
|
+
obj.authority = message.authority === "" ? void 0 : message.authority;
|
|
1983
|
+
obj.params = message.params ? Params3.toAmino(message.params) : void 0;
|
|
1984
|
+
return obj;
|
|
1985
|
+
},
|
|
1986
|
+
fromAminoMsg(object) {
|
|
1987
|
+
return MsgUpdateParams3.fromAmino(object.value);
|
|
1988
|
+
},
|
|
1989
|
+
toAminoMsg(message) {
|
|
1990
|
+
return {
|
|
1991
|
+
type: "evmos/MsgUpdateParams",
|
|
1992
|
+
value: MsgUpdateParams3.toAmino(message)
|
|
1993
|
+
};
|
|
1994
|
+
},
|
|
1995
|
+
fromProtoMsg(message) {
|
|
1996
|
+
return MsgUpdateParams3.decode(message.value);
|
|
1997
|
+
},
|
|
1998
|
+
toProto(message) {
|
|
1999
|
+
return MsgUpdateParams3.encode(message).finish();
|
|
2000
|
+
},
|
|
2001
|
+
toProtoMsg(message) {
|
|
2002
|
+
return {
|
|
2003
|
+
typeUrl: "/evmos.revenue.v1.MsgUpdateParams",
|
|
2004
|
+
value: MsgUpdateParams3.encode(message).finish()
|
|
2005
|
+
};
|
|
2006
|
+
}
|
|
2007
|
+
};
|
|
2008
|
+
|
|
2009
|
+
// src/codegen/evmos/revenue/v1/tx.registry.ts
|
|
2010
|
+
var registry4 = [["/evmos.revenue.v1.MsgRegisterRevenue", MsgRegisterRevenue], ["/evmos.revenue.v1.MsgUpdateRevenue", MsgUpdateRevenue], ["/evmos.revenue.v1.MsgCancelRevenue", MsgCancelRevenue], ["/evmos.revenue.v1.MsgUpdateParams", MsgUpdateParams3]];
|
|
2011
|
+
function createBaseMsgCreateClawbackVestingAccount() {
|
|
2012
|
+
return {
|
|
2013
|
+
funderAddress: "",
|
|
2014
|
+
vestingAddress: "",
|
|
2015
|
+
enableGovClawback: false
|
|
2016
|
+
};
|
|
2017
|
+
}
|
|
2018
|
+
var MsgCreateClawbackVestingAccount = {
|
|
2019
|
+
typeUrl: "/evmos.vesting.v2.MsgCreateClawbackVestingAccount",
|
|
2020
|
+
encode(message, writer = _m08__namespace.Writer.create()) {
|
|
2021
|
+
if (message.funderAddress !== "") {
|
|
2022
|
+
writer.uint32(10).string(message.funderAddress);
|
|
2023
|
+
}
|
|
2024
|
+
if (message.vestingAddress !== "") {
|
|
2025
|
+
writer.uint32(18).string(message.vestingAddress);
|
|
2026
|
+
}
|
|
2027
|
+
if (message.enableGovClawback === true) {
|
|
2028
|
+
writer.uint32(24).bool(message.enableGovClawback);
|
|
2029
|
+
}
|
|
2030
|
+
return writer;
|
|
2031
|
+
},
|
|
2032
|
+
decode(input, length) {
|
|
2033
|
+
const reader = input instanceof _m08__namespace.Reader ? input : new _m08__namespace.Reader(input);
|
|
2034
|
+
let end = length === void 0 ? reader.len : reader.pos + length;
|
|
2035
|
+
const message = createBaseMsgCreateClawbackVestingAccount();
|
|
2036
|
+
while (reader.pos < end) {
|
|
2037
|
+
const tag = reader.uint32();
|
|
2038
|
+
switch (tag >>> 3) {
|
|
2039
|
+
case 1:
|
|
2040
|
+
message.funderAddress = reader.string();
|
|
2041
|
+
break;
|
|
2042
|
+
case 2:
|
|
2043
|
+
message.vestingAddress = reader.string();
|
|
2044
|
+
break;
|
|
2045
|
+
case 3:
|
|
2046
|
+
message.enableGovClawback = reader.bool();
|
|
2047
|
+
break;
|
|
2048
|
+
default:
|
|
2049
|
+
reader.skipType(tag & 7);
|
|
2050
|
+
break;
|
|
2051
|
+
}
|
|
2052
|
+
}
|
|
2053
|
+
return message;
|
|
2054
|
+
},
|
|
2055
|
+
fromJSON(object) {
|
|
2056
|
+
return {
|
|
2057
|
+
funderAddress: chunkTUX4SN3U_js.isSet(object.funderAddress) ? String(object.funderAddress) : "",
|
|
2058
|
+
vestingAddress: chunkTUX4SN3U_js.isSet(object.vestingAddress) ? String(object.vestingAddress) : "",
|
|
2059
|
+
enableGovClawback: chunkTUX4SN3U_js.isSet(object.enableGovClawback) ? Boolean(object.enableGovClawback) : false
|
|
2060
|
+
};
|
|
2061
|
+
},
|
|
2062
|
+
toJSON(message) {
|
|
2063
|
+
const obj = {};
|
|
2064
|
+
message.funderAddress !== void 0 && (obj.funderAddress = message.funderAddress);
|
|
2065
|
+
message.vestingAddress !== void 0 && (obj.vestingAddress = message.vestingAddress);
|
|
2066
|
+
message.enableGovClawback !== void 0 && (obj.enableGovClawback = message.enableGovClawback);
|
|
2067
|
+
return obj;
|
|
2068
|
+
},
|
|
2069
|
+
fromPartial(object) {
|
|
2070
|
+
var _a, _b, _c;
|
|
2071
|
+
const message = createBaseMsgCreateClawbackVestingAccount();
|
|
2072
|
+
message.funderAddress = (_a = object.funderAddress) != null ? _a : "";
|
|
2073
|
+
message.vestingAddress = (_b = object.vestingAddress) != null ? _b : "";
|
|
2074
|
+
message.enableGovClawback = (_c = object.enableGovClawback) != null ? _c : false;
|
|
2075
|
+
return message;
|
|
2076
|
+
},
|
|
2077
|
+
fromAmino(object) {
|
|
2078
|
+
const message = createBaseMsgCreateClawbackVestingAccount();
|
|
2079
|
+
if (object.funder_address !== void 0 && object.funder_address !== null) {
|
|
2080
|
+
message.funderAddress = object.funder_address;
|
|
2081
|
+
}
|
|
2082
|
+
if (object.vesting_address !== void 0 && object.vesting_address !== null) {
|
|
2083
|
+
message.vestingAddress = object.vesting_address;
|
|
2084
|
+
}
|
|
2085
|
+
if (object.enable_gov_clawback !== void 0 && object.enable_gov_clawback !== null) {
|
|
2086
|
+
message.enableGovClawback = object.enable_gov_clawback;
|
|
2087
|
+
}
|
|
2088
|
+
return message;
|
|
2089
|
+
},
|
|
2090
|
+
toAmino(message) {
|
|
2091
|
+
const obj = {};
|
|
2092
|
+
obj.funder_address = message.funderAddress === "" ? void 0 : message.funderAddress;
|
|
2093
|
+
obj.vesting_address = message.vestingAddress === "" ? void 0 : message.vestingAddress;
|
|
2094
|
+
obj.enable_gov_clawback = message.enableGovClawback === false ? void 0 : message.enableGovClawback;
|
|
2095
|
+
return obj;
|
|
2096
|
+
},
|
|
2097
|
+
fromAminoMsg(object) {
|
|
2098
|
+
return MsgCreateClawbackVestingAccount.fromAmino(object.value);
|
|
2099
|
+
},
|
|
2100
|
+
toAminoMsg(message) {
|
|
2101
|
+
return {
|
|
2102
|
+
type: "evmos/MsgCreateClawbackVestingAccount",
|
|
2103
|
+
value: MsgCreateClawbackVestingAccount.toAmino(message)
|
|
2104
|
+
};
|
|
2105
|
+
},
|
|
2106
|
+
fromProtoMsg(message) {
|
|
2107
|
+
return MsgCreateClawbackVestingAccount.decode(message.value);
|
|
2108
|
+
},
|
|
2109
|
+
toProto(message) {
|
|
2110
|
+
return MsgCreateClawbackVestingAccount.encode(message).finish();
|
|
2111
|
+
},
|
|
2112
|
+
toProtoMsg(message) {
|
|
2113
|
+
return {
|
|
2114
|
+
typeUrl: "/evmos.vesting.v2.MsgCreateClawbackVestingAccount",
|
|
2115
|
+
value: MsgCreateClawbackVestingAccount.encode(message).finish()
|
|
2116
|
+
};
|
|
2117
|
+
}
|
|
2118
|
+
};
|
|
2119
|
+
function createBaseMsgFundVestingAccount() {
|
|
2120
|
+
return {
|
|
2121
|
+
funderAddress: "",
|
|
2122
|
+
vestingAddress: "",
|
|
2123
|
+
startTime: /* @__PURE__ */ new Date(),
|
|
2124
|
+
lockupPeriods: [],
|
|
2125
|
+
vestingPeriods: []
|
|
2126
|
+
};
|
|
2127
|
+
}
|
|
2128
|
+
var MsgFundVestingAccount = {
|
|
2129
|
+
typeUrl: "/evmos.vesting.v2.MsgFundVestingAccount",
|
|
2130
|
+
encode(message, writer = _m08__namespace.Writer.create()) {
|
|
2131
|
+
if (message.funderAddress !== "") {
|
|
2132
|
+
writer.uint32(10).string(message.funderAddress);
|
|
2133
|
+
}
|
|
2134
|
+
if (message.vestingAddress !== "") {
|
|
2135
|
+
writer.uint32(18).string(message.vestingAddress);
|
|
2136
|
+
}
|
|
2137
|
+
if (message.startTime !== void 0) {
|
|
2138
|
+
chunkTUX4SN3U_js.Timestamp.encode(chunkTUX4SN3U_js.toTimestamp(message.startTime), writer.uint32(26).fork()).ldelim();
|
|
2139
|
+
}
|
|
2140
|
+
for (const v of message.lockupPeriods) {
|
|
2141
|
+
chunkTUX4SN3U_js.Period.encode(v, writer.uint32(34).fork()).ldelim();
|
|
2142
|
+
}
|
|
2143
|
+
for (const v of message.vestingPeriods) {
|
|
2144
|
+
chunkTUX4SN3U_js.Period.encode(v, writer.uint32(42).fork()).ldelim();
|
|
2145
|
+
}
|
|
2146
|
+
return writer;
|
|
2147
|
+
},
|
|
2148
|
+
decode(input, length) {
|
|
2149
|
+
const reader = input instanceof _m08__namespace.Reader ? input : new _m08__namespace.Reader(input);
|
|
2150
|
+
let end = length === void 0 ? reader.len : reader.pos + length;
|
|
2151
|
+
const message = createBaseMsgFundVestingAccount();
|
|
2152
|
+
while (reader.pos < end) {
|
|
2153
|
+
const tag = reader.uint32();
|
|
2154
|
+
switch (tag >>> 3) {
|
|
2155
|
+
case 1:
|
|
2156
|
+
message.funderAddress = reader.string();
|
|
2157
|
+
break;
|
|
2158
|
+
case 2:
|
|
2159
|
+
message.vestingAddress = reader.string();
|
|
2160
|
+
break;
|
|
2161
|
+
case 3:
|
|
2162
|
+
message.startTime = chunkTUX4SN3U_js.fromTimestamp(chunkTUX4SN3U_js.Timestamp.decode(reader, reader.uint32()));
|
|
2163
|
+
break;
|
|
2164
|
+
case 4:
|
|
2165
|
+
message.lockupPeriods.push(chunkTUX4SN3U_js.Period.decode(reader, reader.uint32()));
|
|
2166
|
+
break;
|
|
2167
|
+
case 5:
|
|
2168
|
+
message.vestingPeriods.push(chunkTUX4SN3U_js.Period.decode(reader, reader.uint32()));
|
|
2169
|
+
break;
|
|
2170
|
+
default:
|
|
2171
|
+
reader.skipType(tag & 7);
|
|
2172
|
+
break;
|
|
2173
|
+
}
|
|
2174
|
+
}
|
|
2175
|
+
return message;
|
|
2176
|
+
},
|
|
2177
|
+
fromJSON(object) {
|
|
2178
|
+
return {
|
|
2179
|
+
funderAddress: chunkTUX4SN3U_js.isSet(object.funderAddress) ? String(object.funderAddress) : "",
|
|
2180
|
+
vestingAddress: chunkTUX4SN3U_js.isSet(object.vestingAddress) ? String(object.vestingAddress) : "",
|
|
2181
|
+
startTime: chunkTUX4SN3U_js.isSet(object.startTime) ? chunkTUX4SN3U_js.fromJsonTimestamp(object.startTime) : void 0,
|
|
2182
|
+
lockupPeriods: Array.isArray(object == null ? void 0 : object.lockupPeriods) ? object.lockupPeriods.map((e) => chunkTUX4SN3U_js.Period.fromJSON(e)) : [],
|
|
2183
|
+
vestingPeriods: Array.isArray(object == null ? void 0 : object.vestingPeriods) ? object.vestingPeriods.map((e) => chunkTUX4SN3U_js.Period.fromJSON(e)) : []
|
|
2184
|
+
};
|
|
2185
|
+
},
|
|
2186
|
+
toJSON(message) {
|
|
2187
|
+
const obj = {};
|
|
2188
|
+
message.funderAddress !== void 0 && (obj.funderAddress = message.funderAddress);
|
|
2189
|
+
message.vestingAddress !== void 0 && (obj.vestingAddress = message.vestingAddress);
|
|
2190
|
+
message.startTime !== void 0 && (obj.startTime = message.startTime.toISOString());
|
|
2191
|
+
if (message.lockupPeriods) {
|
|
2192
|
+
obj.lockupPeriods = message.lockupPeriods.map((e) => e ? chunkTUX4SN3U_js.Period.toJSON(e) : void 0);
|
|
2193
|
+
} else {
|
|
2194
|
+
obj.lockupPeriods = [];
|
|
2195
|
+
}
|
|
2196
|
+
if (message.vestingPeriods) {
|
|
2197
|
+
obj.vestingPeriods = message.vestingPeriods.map((e) => e ? chunkTUX4SN3U_js.Period.toJSON(e) : void 0);
|
|
2198
|
+
} else {
|
|
2199
|
+
obj.vestingPeriods = [];
|
|
2200
|
+
}
|
|
2201
|
+
return obj;
|
|
2202
|
+
},
|
|
2203
|
+
fromPartial(object) {
|
|
2204
|
+
var _a, _b, _c, _d, _e;
|
|
2205
|
+
const message = createBaseMsgFundVestingAccount();
|
|
2206
|
+
message.funderAddress = (_a = object.funderAddress) != null ? _a : "";
|
|
2207
|
+
message.vestingAddress = (_b = object.vestingAddress) != null ? _b : "";
|
|
2208
|
+
message.startTime = (_c = object.startTime) != null ? _c : void 0;
|
|
2209
|
+
message.lockupPeriods = ((_d = object.lockupPeriods) == null ? void 0 : _d.map((e) => chunkTUX4SN3U_js.Period.fromPartial(e))) || [];
|
|
2210
|
+
message.vestingPeriods = ((_e = object.vestingPeriods) == null ? void 0 : _e.map((e) => chunkTUX4SN3U_js.Period.fromPartial(e))) || [];
|
|
2211
|
+
return message;
|
|
2212
|
+
},
|
|
2213
|
+
fromAmino(object) {
|
|
2214
|
+
var _a, _b;
|
|
2215
|
+
const message = createBaseMsgFundVestingAccount();
|
|
2216
|
+
if (object.funder_address !== void 0 && object.funder_address !== null) {
|
|
2217
|
+
message.funderAddress = object.funder_address;
|
|
2218
|
+
}
|
|
2219
|
+
if (object.vesting_address !== void 0 && object.vesting_address !== null) {
|
|
2220
|
+
message.vestingAddress = object.vesting_address;
|
|
2221
|
+
}
|
|
2222
|
+
if (object.start_time !== void 0 && object.start_time !== null) {
|
|
2223
|
+
message.startTime = chunkTUX4SN3U_js.fromTimestamp(chunkTUX4SN3U_js.Timestamp.fromAmino(object.start_time));
|
|
2224
|
+
}
|
|
2225
|
+
message.lockupPeriods = ((_a = object.lockup_periods) == null ? void 0 : _a.map((e) => chunkTUX4SN3U_js.Period.fromAmino(e))) || [];
|
|
2226
|
+
message.vestingPeriods = ((_b = object.vesting_periods) == null ? void 0 : _b.map((e) => chunkTUX4SN3U_js.Period.fromAmino(e))) || [];
|
|
2227
|
+
return message;
|
|
2228
|
+
},
|
|
2229
|
+
toAmino(message) {
|
|
2230
|
+
const obj = {};
|
|
2231
|
+
obj.funder_address = message.funderAddress === "" ? void 0 : message.funderAddress;
|
|
2232
|
+
obj.vesting_address = message.vestingAddress === "" ? void 0 : message.vestingAddress;
|
|
2233
|
+
obj.start_time = message.startTime ? chunkTUX4SN3U_js.Timestamp.toAmino(chunkTUX4SN3U_js.toTimestamp(message.startTime)) : void 0;
|
|
2234
|
+
if (message.lockupPeriods) {
|
|
2235
|
+
obj.lockup_periods = message.lockupPeriods.map((e) => e ? chunkTUX4SN3U_js.Period.toAmino(e) : void 0);
|
|
2236
|
+
} else {
|
|
2237
|
+
obj.lockup_periods = message.lockupPeriods;
|
|
2238
|
+
}
|
|
2239
|
+
if (message.vestingPeriods) {
|
|
2240
|
+
obj.vesting_periods = message.vestingPeriods.map((e) => e ? chunkTUX4SN3U_js.Period.toAmino(e) : void 0);
|
|
2241
|
+
} else {
|
|
2242
|
+
obj.vesting_periods = message.vestingPeriods;
|
|
2243
|
+
}
|
|
2244
|
+
return obj;
|
|
2245
|
+
},
|
|
2246
|
+
fromAminoMsg(object) {
|
|
2247
|
+
return MsgFundVestingAccount.fromAmino(object.value);
|
|
2248
|
+
},
|
|
2249
|
+
toAminoMsg(message) {
|
|
2250
|
+
return {
|
|
2251
|
+
type: "evmos/MsgFundVestingAccount",
|
|
2252
|
+
value: MsgFundVestingAccount.toAmino(message)
|
|
2253
|
+
};
|
|
2254
|
+
},
|
|
2255
|
+
fromProtoMsg(message) {
|
|
2256
|
+
return MsgFundVestingAccount.decode(message.value);
|
|
2257
|
+
},
|
|
2258
|
+
toProto(message) {
|
|
2259
|
+
return MsgFundVestingAccount.encode(message).finish();
|
|
2260
|
+
},
|
|
2261
|
+
toProtoMsg(message) {
|
|
2262
|
+
return {
|
|
2263
|
+
typeUrl: "/evmos.vesting.v2.MsgFundVestingAccount",
|
|
2264
|
+
value: MsgFundVestingAccount.encode(message).finish()
|
|
2265
|
+
};
|
|
2266
|
+
}
|
|
2267
|
+
};
|
|
2268
|
+
function createBaseMsgClawback() {
|
|
2269
|
+
return {
|
|
2270
|
+
funderAddress: "",
|
|
2271
|
+
accountAddress: "",
|
|
2272
|
+
destAddress: ""
|
|
2273
|
+
};
|
|
2274
|
+
}
|
|
2275
|
+
var MsgClawback = {
|
|
2276
|
+
typeUrl: "/evmos.vesting.v2.MsgClawback",
|
|
2277
|
+
encode(message, writer = _m08__namespace.Writer.create()) {
|
|
2278
|
+
if (message.funderAddress !== "") {
|
|
2279
|
+
writer.uint32(10).string(message.funderAddress);
|
|
2280
|
+
}
|
|
2281
|
+
if (message.accountAddress !== "") {
|
|
2282
|
+
writer.uint32(18).string(message.accountAddress);
|
|
2283
|
+
}
|
|
2284
|
+
if (message.destAddress !== "") {
|
|
2285
|
+
writer.uint32(26).string(message.destAddress);
|
|
2286
|
+
}
|
|
2287
|
+
return writer;
|
|
2288
|
+
},
|
|
2289
|
+
decode(input, length) {
|
|
2290
|
+
const reader = input instanceof _m08__namespace.Reader ? input : new _m08__namespace.Reader(input);
|
|
2291
|
+
let end = length === void 0 ? reader.len : reader.pos + length;
|
|
2292
|
+
const message = createBaseMsgClawback();
|
|
2293
|
+
while (reader.pos < end) {
|
|
2294
|
+
const tag = reader.uint32();
|
|
2295
|
+
switch (tag >>> 3) {
|
|
2296
|
+
case 1:
|
|
2297
|
+
message.funderAddress = reader.string();
|
|
2298
|
+
break;
|
|
2299
|
+
case 2:
|
|
2300
|
+
message.accountAddress = reader.string();
|
|
2301
|
+
break;
|
|
2302
|
+
case 3:
|
|
2303
|
+
message.destAddress = reader.string();
|
|
2304
|
+
break;
|
|
2305
|
+
default:
|
|
2306
|
+
reader.skipType(tag & 7);
|
|
2307
|
+
break;
|
|
2308
|
+
}
|
|
2309
|
+
}
|
|
2310
|
+
return message;
|
|
2311
|
+
},
|
|
2312
|
+
fromJSON(object) {
|
|
2313
|
+
return {
|
|
2314
|
+
funderAddress: chunkTUX4SN3U_js.isSet(object.funderAddress) ? String(object.funderAddress) : "",
|
|
2315
|
+
accountAddress: chunkTUX4SN3U_js.isSet(object.accountAddress) ? String(object.accountAddress) : "",
|
|
2316
|
+
destAddress: chunkTUX4SN3U_js.isSet(object.destAddress) ? String(object.destAddress) : ""
|
|
2317
|
+
};
|
|
2318
|
+
},
|
|
2319
|
+
toJSON(message) {
|
|
2320
|
+
const obj = {};
|
|
2321
|
+
message.funderAddress !== void 0 && (obj.funderAddress = message.funderAddress);
|
|
2322
|
+
message.accountAddress !== void 0 && (obj.accountAddress = message.accountAddress);
|
|
2323
|
+
message.destAddress !== void 0 && (obj.destAddress = message.destAddress);
|
|
2324
|
+
return obj;
|
|
2325
|
+
},
|
|
2326
|
+
fromPartial(object) {
|
|
2327
|
+
var _a, _b, _c;
|
|
2328
|
+
const message = createBaseMsgClawback();
|
|
2329
|
+
message.funderAddress = (_a = object.funderAddress) != null ? _a : "";
|
|
2330
|
+
message.accountAddress = (_b = object.accountAddress) != null ? _b : "";
|
|
2331
|
+
message.destAddress = (_c = object.destAddress) != null ? _c : "";
|
|
2332
|
+
return message;
|
|
2333
|
+
},
|
|
2334
|
+
fromAmino(object) {
|
|
2335
|
+
const message = createBaseMsgClawback();
|
|
2336
|
+
if (object.funder_address !== void 0 && object.funder_address !== null) {
|
|
2337
|
+
message.funderAddress = object.funder_address;
|
|
2338
|
+
}
|
|
2339
|
+
if (object.account_address !== void 0 && object.account_address !== null) {
|
|
2340
|
+
message.accountAddress = object.account_address;
|
|
2341
|
+
}
|
|
2342
|
+
if (object.dest_address !== void 0 && object.dest_address !== null) {
|
|
2343
|
+
message.destAddress = object.dest_address;
|
|
2344
|
+
}
|
|
2345
|
+
return message;
|
|
2346
|
+
},
|
|
2347
|
+
toAmino(message) {
|
|
2348
|
+
const obj = {};
|
|
2349
|
+
obj.funder_address = message.funderAddress === "" ? void 0 : message.funderAddress;
|
|
2350
|
+
obj.account_address = message.accountAddress === "" ? void 0 : message.accountAddress;
|
|
2351
|
+
obj.dest_address = message.destAddress === "" ? void 0 : message.destAddress;
|
|
2352
|
+
return obj;
|
|
2353
|
+
},
|
|
2354
|
+
fromAminoMsg(object) {
|
|
2355
|
+
return MsgClawback.fromAmino(object.value);
|
|
2356
|
+
},
|
|
2357
|
+
toAminoMsg(message) {
|
|
2358
|
+
return {
|
|
2359
|
+
type: "evmos/MsgClawback",
|
|
2360
|
+
value: MsgClawback.toAmino(message)
|
|
2361
|
+
};
|
|
2362
|
+
},
|
|
2363
|
+
fromProtoMsg(message) {
|
|
2364
|
+
return MsgClawback.decode(message.value);
|
|
2365
|
+
},
|
|
2366
|
+
toProto(message) {
|
|
2367
|
+
return MsgClawback.encode(message).finish();
|
|
2368
|
+
},
|
|
2369
|
+
toProtoMsg(message) {
|
|
2370
|
+
return {
|
|
2371
|
+
typeUrl: "/evmos.vesting.v2.MsgClawback",
|
|
2372
|
+
value: MsgClawback.encode(message).finish()
|
|
2373
|
+
};
|
|
2374
|
+
}
|
|
2375
|
+
};
|
|
2376
|
+
function createBaseMsgUpdateVestingFunder() {
|
|
2377
|
+
return {
|
|
2378
|
+
funderAddress: "",
|
|
2379
|
+
newFunderAddress: "",
|
|
2380
|
+
vestingAddress: ""
|
|
2381
|
+
};
|
|
2382
|
+
}
|
|
2383
|
+
var MsgUpdateVestingFunder = {
|
|
2384
|
+
typeUrl: "/evmos.vesting.v2.MsgUpdateVestingFunder",
|
|
2385
|
+
encode(message, writer = _m08__namespace.Writer.create()) {
|
|
2386
|
+
if (message.funderAddress !== "") {
|
|
2387
|
+
writer.uint32(10).string(message.funderAddress);
|
|
2388
|
+
}
|
|
2389
|
+
if (message.newFunderAddress !== "") {
|
|
2390
|
+
writer.uint32(18).string(message.newFunderAddress);
|
|
2391
|
+
}
|
|
2392
|
+
if (message.vestingAddress !== "") {
|
|
2393
|
+
writer.uint32(26).string(message.vestingAddress);
|
|
2394
|
+
}
|
|
2395
|
+
return writer;
|
|
2396
|
+
},
|
|
2397
|
+
decode(input, length) {
|
|
2398
|
+
const reader = input instanceof _m08__namespace.Reader ? input : new _m08__namespace.Reader(input);
|
|
2399
|
+
let end = length === void 0 ? reader.len : reader.pos + length;
|
|
2400
|
+
const message = createBaseMsgUpdateVestingFunder();
|
|
2401
|
+
while (reader.pos < end) {
|
|
2402
|
+
const tag = reader.uint32();
|
|
2403
|
+
switch (tag >>> 3) {
|
|
2404
|
+
case 1:
|
|
2405
|
+
message.funderAddress = reader.string();
|
|
2406
|
+
break;
|
|
2407
|
+
case 2:
|
|
2408
|
+
message.newFunderAddress = reader.string();
|
|
2409
|
+
break;
|
|
2410
|
+
case 3:
|
|
2411
|
+
message.vestingAddress = reader.string();
|
|
2412
|
+
break;
|
|
2413
|
+
default:
|
|
2414
|
+
reader.skipType(tag & 7);
|
|
2415
|
+
break;
|
|
2416
|
+
}
|
|
2417
|
+
}
|
|
2418
|
+
return message;
|
|
2419
|
+
},
|
|
2420
|
+
fromJSON(object) {
|
|
2421
|
+
return {
|
|
2422
|
+
funderAddress: chunkTUX4SN3U_js.isSet(object.funderAddress) ? String(object.funderAddress) : "",
|
|
2423
|
+
newFunderAddress: chunkTUX4SN3U_js.isSet(object.newFunderAddress) ? String(object.newFunderAddress) : "",
|
|
2424
|
+
vestingAddress: chunkTUX4SN3U_js.isSet(object.vestingAddress) ? String(object.vestingAddress) : ""
|
|
2425
|
+
};
|
|
2426
|
+
},
|
|
2427
|
+
toJSON(message) {
|
|
2428
|
+
const obj = {};
|
|
2429
|
+
message.funderAddress !== void 0 && (obj.funderAddress = message.funderAddress);
|
|
2430
|
+
message.newFunderAddress !== void 0 && (obj.newFunderAddress = message.newFunderAddress);
|
|
2431
|
+
message.vestingAddress !== void 0 && (obj.vestingAddress = message.vestingAddress);
|
|
2432
|
+
return obj;
|
|
2433
|
+
},
|
|
2434
|
+
fromPartial(object) {
|
|
2435
|
+
var _a, _b, _c;
|
|
2436
|
+
const message = createBaseMsgUpdateVestingFunder();
|
|
2437
|
+
message.funderAddress = (_a = object.funderAddress) != null ? _a : "";
|
|
2438
|
+
message.newFunderAddress = (_b = object.newFunderAddress) != null ? _b : "";
|
|
2439
|
+
message.vestingAddress = (_c = object.vestingAddress) != null ? _c : "";
|
|
2440
|
+
return message;
|
|
2441
|
+
},
|
|
2442
|
+
fromAmino(object) {
|
|
2443
|
+
const message = createBaseMsgUpdateVestingFunder();
|
|
2444
|
+
if (object.funder_address !== void 0 && object.funder_address !== null) {
|
|
2445
|
+
message.funderAddress = object.funder_address;
|
|
2446
|
+
}
|
|
2447
|
+
if (object.new_funder_address !== void 0 && object.new_funder_address !== null) {
|
|
2448
|
+
message.newFunderAddress = object.new_funder_address;
|
|
2449
|
+
}
|
|
2450
|
+
if (object.vesting_address !== void 0 && object.vesting_address !== null) {
|
|
2451
|
+
message.vestingAddress = object.vesting_address;
|
|
2452
|
+
}
|
|
2453
|
+
return message;
|
|
2454
|
+
},
|
|
2455
|
+
toAmino(message) {
|
|
2456
|
+
const obj = {};
|
|
2457
|
+
obj.funder_address = message.funderAddress === "" ? void 0 : message.funderAddress;
|
|
2458
|
+
obj.new_funder_address = message.newFunderAddress === "" ? void 0 : message.newFunderAddress;
|
|
2459
|
+
obj.vesting_address = message.vestingAddress === "" ? void 0 : message.vestingAddress;
|
|
2460
|
+
return obj;
|
|
2461
|
+
},
|
|
2462
|
+
fromAminoMsg(object) {
|
|
2463
|
+
return MsgUpdateVestingFunder.fromAmino(object.value);
|
|
2464
|
+
},
|
|
2465
|
+
toAminoMsg(message) {
|
|
2466
|
+
return {
|
|
2467
|
+
type: "evmos/MsgUpdateVestingFunder",
|
|
2468
|
+
value: MsgUpdateVestingFunder.toAmino(message)
|
|
2469
|
+
};
|
|
2470
|
+
},
|
|
2471
|
+
fromProtoMsg(message) {
|
|
2472
|
+
return MsgUpdateVestingFunder.decode(message.value);
|
|
2473
|
+
},
|
|
2474
|
+
toProto(message) {
|
|
2475
|
+
return MsgUpdateVestingFunder.encode(message).finish();
|
|
2476
|
+
},
|
|
2477
|
+
toProtoMsg(message) {
|
|
2478
|
+
return {
|
|
2479
|
+
typeUrl: "/evmos.vesting.v2.MsgUpdateVestingFunder",
|
|
2480
|
+
value: MsgUpdateVestingFunder.encode(message).finish()
|
|
2481
|
+
};
|
|
2482
|
+
}
|
|
2483
|
+
};
|
|
2484
|
+
function createBaseMsgConvertVestingAccount() {
|
|
2485
|
+
return {
|
|
2486
|
+
vestingAddress: ""
|
|
2487
|
+
};
|
|
2488
|
+
}
|
|
2489
|
+
var MsgConvertVestingAccount = {
|
|
2490
|
+
typeUrl: "/evmos.vesting.v2.MsgConvertVestingAccount",
|
|
2491
|
+
encode(message, writer = _m08__namespace.Writer.create()) {
|
|
2492
|
+
if (message.vestingAddress !== "") {
|
|
2493
|
+
writer.uint32(10).string(message.vestingAddress);
|
|
2494
|
+
}
|
|
2495
|
+
return writer;
|
|
2496
|
+
},
|
|
2497
|
+
decode(input, length) {
|
|
2498
|
+
const reader = input instanceof _m08__namespace.Reader ? input : new _m08__namespace.Reader(input);
|
|
2499
|
+
let end = length === void 0 ? reader.len : reader.pos + length;
|
|
2500
|
+
const message = createBaseMsgConvertVestingAccount();
|
|
2501
|
+
while (reader.pos < end) {
|
|
2502
|
+
const tag = reader.uint32();
|
|
2503
|
+
switch (tag >>> 3) {
|
|
2504
|
+
case 1:
|
|
2505
|
+
message.vestingAddress = reader.string();
|
|
2506
|
+
break;
|
|
2507
|
+
default:
|
|
2508
|
+
reader.skipType(tag & 7);
|
|
2509
|
+
break;
|
|
2510
|
+
}
|
|
2511
|
+
}
|
|
2512
|
+
return message;
|
|
2513
|
+
},
|
|
2514
|
+
fromJSON(object) {
|
|
2515
|
+
return {
|
|
2516
|
+
vestingAddress: chunkTUX4SN3U_js.isSet(object.vestingAddress) ? String(object.vestingAddress) : ""
|
|
2517
|
+
};
|
|
2518
|
+
},
|
|
2519
|
+
toJSON(message) {
|
|
2520
|
+
const obj = {};
|
|
2521
|
+
message.vestingAddress !== void 0 && (obj.vestingAddress = message.vestingAddress);
|
|
2522
|
+
return obj;
|
|
2523
|
+
},
|
|
2524
|
+
fromPartial(object) {
|
|
2525
|
+
var _a;
|
|
2526
|
+
const message = createBaseMsgConvertVestingAccount();
|
|
2527
|
+
message.vestingAddress = (_a = object.vestingAddress) != null ? _a : "";
|
|
2528
|
+
return message;
|
|
2529
|
+
},
|
|
2530
|
+
fromAmino(object) {
|
|
2531
|
+
const message = createBaseMsgConvertVestingAccount();
|
|
2532
|
+
if (object.vesting_address !== void 0 && object.vesting_address !== null) {
|
|
2533
|
+
message.vestingAddress = object.vesting_address;
|
|
2534
|
+
}
|
|
2535
|
+
return message;
|
|
2536
|
+
},
|
|
2537
|
+
toAmino(message) {
|
|
2538
|
+
const obj = {};
|
|
2539
|
+
obj.vesting_address = message.vestingAddress === "" ? void 0 : message.vestingAddress;
|
|
2540
|
+
return obj;
|
|
2541
|
+
},
|
|
2542
|
+
fromAminoMsg(object) {
|
|
2543
|
+
return MsgConvertVestingAccount.fromAmino(object.value);
|
|
2544
|
+
},
|
|
2545
|
+
toAminoMsg(message) {
|
|
2546
|
+
return {
|
|
2547
|
+
type: "evmos/MsgConvertVestingAccount",
|
|
2548
|
+
value: MsgConvertVestingAccount.toAmino(message)
|
|
2549
|
+
};
|
|
2550
|
+
},
|
|
2551
|
+
fromProtoMsg(message) {
|
|
2552
|
+
return MsgConvertVestingAccount.decode(message.value);
|
|
2553
|
+
},
|
|
2554
|
+
toProto(message) {
|
|
2555
|
+
return MsgConvertVestingAccount.encode(message).finish();
|
|
2556
|
+
},
|
|
2557
|
+
toProtoMsg(message) {
|
|
2558
|
+
return {
|
|
2559
|
+
typeUrl: "/evmos.vesting.v2.MsgConvertVestingAccount",
|
|
2560
|
+
value: MsgConvertVestingAccount.encode(message).finish()
|
|
2561
|
+
};
|
|
2562
|
+
}
|
|
2563
|
+
};
|
|
2564
|
+
|
|
2565
|
+
// src/codegen/evmos/vesting/v2/tx.registry.ts
|
|
2566
|
+
var registry5 = [["/evmos.vesting.v2.MsgCreateClawbackVestingAccount", MsgCreateClawbackVestingAccount], ["/evmos.vesting.v2.MsgFundVestingAccount", MsgFundVestingAccount], ["/evmos.vesting.v2.MsgClawback", MsgClawback], ["/evmos.vesting.v2.MsgUpdateVestingFunder", MsgUpdateVestingFunder], ["/evmos.vesting.v2.MsgConvertVestingAccount", MsgConvertVestingAccount]];
|
|
2567
|
+
|
|
2568
|
+
// src/codegen/evmos/erc20/v1/tx.amino.ts
|
|
2569
|
+
var AminoConverter2 = {
|
|
2570
|
+
"/evmos.erc20.v1.MsgConvertCoin": {
|
|
2571
|
+
aminoType: "evmos/MsgConvertCoin",
|
|
2572
|
+
toAmino: MsgConvertCoin.toAmino,
|
|
2573
|
+
fromAmino: MsgConvertCoin.fromAmino
|
|
2574
|
+
},
|
|
2575
|
+
"/evmos.erc20.v1.MsgConvertERC20": {
|
|
2576
|
+
aminoType: "evmos/MsgConvertERC20",
|
|
2577
|
+
toAmino: MsgConvertERC20.toAmino,
|
|
2578
|
+
fromAmino: MsgConvertERC20.fromAmino
|
|
2579
|
+
},
|
|
2580
|
+
"/evmos.erc20.v1.MsgUpdateParams": {
|
|
2581
|
+
aminoType: "evmos/erc20/MsgUpdateParams",
|
|
2582
|
+
toAmino: MsgUpdateParams.toAmino,
|
|
2583
|
+
fromAmino: MsgUpdateParams.fromAmino
|
|
2584
|
+
}
|
|
2585
|
+
};
|
|
2586
|
+
|
|
2587
|
+
// src/codegen/evmos/inflation/v1/tx.amino.ts
|
|
2588
|
+
var AminoConverter3 = {
|
|
2589
|
+
"/evmos.inflation.v1.MsgUpdateParams": {
|
|
2590
|
+
aminoType: "evmos/inflation/MsgUpdateParams",
|
|
2591
|
+
toAmino: MsgUpdateParams2.toAmino,
|
|
2592
|
+
fromAmino: MsgUpdateParams2.fromAmino
|
|
2593
|
+
}
|
|
2594
|
+
};
|
|
2595
|
+
|
|
2596
|
+
// src/codegen/evmos/revenue/v1/tx.amino.ts
|
|
2597
|
+
var AminoConverter4 = {
|
|
2598
|
+
"/evmos.revenue.v1.MsgRegisterRevenue": {
|
|
2599
|
+
aminoType: "evmos/MsgRegisterRevenue",
|
|
2600
|
+
toAmino: MsgRegisterRevenue.toAmino,
|
|
2601
|
+
fromAmino: MsgRegisterRevenue.fromAmino
|
|
2602
|
+
},
|
|
2603
|
+
"/evmos.revenue.v1.MsgUpdateRevenue": {
|
|
2604
|
+
aminoType: "evmos/MsgUpdateRevenue",
|
|
2605
|
+
toAmino: MsgUpdateRevenue.toAmino,
|
|
2606
|
+
fromAmino: MsgUpdateRevenue.fromAmino
|
|
2607
|
+
},
|
|
2608
|
+
"/evmos.revenue.v1.MsgCancelRevenue": {
|
|
2609
|
+
aminoType: "evmos/MsgCancelRevenue",
|
|
2610
|
+
toAmino: MsgCancelRevenue.toAmino,
|
|
2611
|
+
fromAmino: MsgCancelRevenue.fromAmino
|
|
2612
|
+
},
|
|
2613
|
+
"/evmos.revenue.v1.MsgUpdateParams": {
|
|
2614
|
+
aminoType: "evmos/MsgUpdateParams",
|
|
2615
|
+
toAmino: MsgUpdateParams3.toAmino,
|
|
2616
|
+
fromAmino: MsgUpdateParams3.fromAmino
|
|
2617
|
+
}
|
|
2618
|
+
};
|
|
2619
|
+
|
|
2620
|
+
// src/codegen/evmos/vesting/v2/tx.amino.ts
|
|
2621
|
+
var AminoConverter5 = {
|
|
2622
|
+
"/evmos.vesting.v2.MsgCreateClawbackVestingAccount": {
|
|
2623
|
+
aminoType: "evmos/MsgCreateClawbackVestingAccount",
|
|
2624
|
+
toAmino: MsgCreateClawbackVestingAccount.toAmino,
|
|
2625
|
+
fromAmino: MsgCreateClawbackVestingAccount.fromAmino
|
|
2626
|
+
},
|
|
2627
|
+
"/evmos.vesting.v2.MsgFundVestingAccount": {
|
|
2628
|
+
aminoType: "evmos/MsgFundVestingAccount",
|
|
2629
|
+
toAmino: MsgFundVestingAccount.toAmino,
|
|
2630
|
+
fromAmino: MsgFundVestingAccount.fromAmino
|
|
2631
|
+
},
|
|
2632
|
+
"/evmos.vesting.v2.MsgClawback": {
|
|
2633
|
+
aminoType: "evmos/MsgClawback",
|
|
2634
|
+
toAmino: MsgClawback.toAmino,
|
|
2635
|
+
fromAmino: MsgClawback.fromAmino
|
|
2636
|
+
},
|
|
2637
|
+
"/evmos.vesting.v2.MsgUpdateVestingFunder": {
|
|
2638
|
+
aminoType: "evmos/MsgUpdateVestingFunder",
|
|
2639
|
+
toAmino: MsgUpdateVestingFunder.toAmino,
|
|
2640
|
+
fromAmino: MsgUpdateVestingFunder.fromAmino
|
|
2641
|
+
},
|
|
2642
|
+
"/evmos.vesting.v2.MsgConvertVestingAccount": {
|
|
2643
|
+
aminoType: "evmos/MsgConvertVestingAccount",
|
|
2644
|
+
toAmino: MsgConvertVestingAccount.toAmino,
|
|
2645
|
+
fromAmino: MsgConvertVestingAccount.fromAmino
|
|
2646
|
+
}
|
|
2647
|
+
};
|
|
2648
|
+
|
|
2649
|
+
// src/codegen/evmos/client.ts
|
|
2650
|
+
var evmosAminoConverters = chunk6FNC3XMI_js.__spreadValues(chunk6FNC3XMI_js.__spreadValues(chunk6FNC3XMI_js.__spreadValues(chunk6FNC3XMI_js.__spreadValues({}, AminoConverter2), AminoConverter3), AminoConverter4), AminoConverter5);
|
|
2651
|
+
var evmosProtoRegistry = [...registry2, ...registry3, ...registry4, ...registry5];
|
|
545
2652
|
|
|
546
2653
|
// src/constants/abis.ts
|
|
547
2654
|
function createAbi(abi) {
|
|
@@ -859,13 +2966,14 @@ var SkipRouter = class {
|
|
|
859
2966
|
baseURL: options.apiURL || SKIP_API_URL,
|
|
860
2967
|
apiKey: options.apiKey
|
|
861
2968
|
});
|
|
862
|
-
this.aminoTypes = new stargate.AminoTypes(chunk6FNC3XMI_js.__spreadValues(chunk6FNC3XMI_js.__spreadValues(chunk6FNC3XMI_js.__spreadValues(chunk6FNC3XMI_js.__spreadValues({}, stargate.createDefaultAminoConverters()), cosmwasmStargate.createWasmAminoConverters()), circleAminoConverters), (_a = options.aminoTypes) != null ? _a : {}));
|
|
2969
|
+
this.aminoTypes = new stargate.AminoTypes(chunk6FNC3XMI_js.__spreadValues(chunk6FNC3XMI_js.__spreadValues(chunk6FNC3XMI_js.__spreadValues(chunk6FNC3XMI_js.__spreadValues(chunk6FNC3XMI_js.__spreadValues({}, stargate.createDefaultAminoConverters()), cosmwasmStargate.createWasmAminoConverters()), circleAminoConverters), evmosAminoConverters), (_a = options.aminoTypes) != null ? _a : {}));
|
|
863
2970
|
this.registry = new protoSigning.Registry([
|
|
864
2971
|
...stargate.defaultRegistryTypes,
|
|
865
2972
|
["/cosmwasm.wasm.v1.MsgExecuteContract", tx.MsgExecuteContract],
|
|
866
|
-
["/initia.move.v1.MsgExecute",
|
|
867
|
-
["/opinit.ophost.v1.MsgInitiateTokenDeposit",
|
|
2973
|
+
["/initia.move.v1.MsgExecute", chunkTUX4SN3U_js.MsgExecute],
|
|
2974
|
+
["/opinit.ophost.v1.MsgInitiateTokenDeposit", chunkTUX4SN3U_js.MsgInitiateTokenDeposit],
|
|
868
2975
|
...circleProtoRegistry,
|
|
2976
|
+
...evmosProtoRegistry,
|
|
869
2977
|
...(_b = options.registryTypes) != null ? _b : []
|
|
870
2978
|
]);
|
|
871
2979
|
this.endpointOptions = (_c = options.endpointOptions) != null ? _c : {};
|
|
@@ -877,11 +2985,11 @@ var SkipRouter = class {
|
|
|
877
2985
|
return chunk6FNC3XMI_js.__async(this, arguments, function* (options = {}) {
|
|
878
2986
|
const response = yield this.requestClient.get(
|
|
879
2987
|
"/v2/fungible/assets",
|
|
880
|
-
|
|
2988
|
+
chunkIEAKY5XG_js.assetsRequestToJSON(chunk6FNC3XMI_js.__spreadValues({}, options))
|
|
881
2989
|
);
|
|
882
2990
|
return Object.entries(response.chain_to_assets_map).reduce(
|
|
883
2991
|
(acc, [chainID, { assets }]) => {
|
|
884
|
-
acc[chainID] = assets.map((asset) =>
|
|
2992
|
+
acc[chainID] = assets.map((asset) => chunkIEAKY5XG_js.assetFromJSON(asset));
|
|
885
2993
|
return acc;
|
|
886
2994
|
},
|
|
887
2995
|
{}
|
|
@@ -892,11 +3000,11 @@ var SkipRouter = class {
|
|
|
892
3000
|
return chunk6FNC3XMI_js.__async(this, null, function* () {
|
|
893
3001
|
const response = yield this.requestClient.post(
|
|
894
3002
|
"/v2/fungible/assets_from_source",
|
|
895
|
-
|
|
3003
|
+
chunkIEAKY5XG_js.assetsFromSourceRequestToJSON(chunk6FNC3XMI_js.__spreadValues({}, options))
|
|
896
3004
|
);
|
|
897
3005
|
return Object.entries(response.dest_assets).reduce(
|
|
898
3006
|
(acc, [chainID, { assets }]) => {
|
|
899
|
-
acc[chainID] = assets.map((asset) =>
|
|
3007
|
+
acc[chainID] = assets.map((asset) => chunkIEAKY5XG_js.assetFromJSON(asset));
|
|
900
3008
|
return acc;
|
|
901
3009
|
},
|
|
902
3010
|
{}
|
|
@@ -907,9 +3015,9 @@ var SkipRouter = class {
|
|
|
907
3015
|
return chunk6FNC3XMI_js.__async(this, null, function* () {
|
|
908
3016
|
const response = yield this.requestClient.post(
|
|
909
3017
|
"/v2/fungible/assets_between_chains",
|
|
910
|
-
|
|
3018
|
+
chunkIEAKY5XG_js.assetsBetweenChainsRequestToJSON(options)
|
|
911
3019
|
);
|
|
912
|
-
return
|
|
3020
|
+
return chunkIEAKY5XG_js.assetsBetweenChainsResponseFromJSON(response).assetsBetweenChains;
|
|
913
3021
|
});
|
|
914
3022
|
}
|
|
915
3023
|
bridges() {
|
|
@@ -917,7 +3025,7 @@ var SkipRouter = class {
|
|
|
917
3025
|
const response = yield this.requestClient.get(
|
|
918
3026
|
"/v2/info/bridges"
|
|
919
3027
|
);
|
|
920
|
-
return
|
|
3028
|
+
return chunkIEAKY5XG_js.bridgesResponseFromJSON(response).bridges;
|
|
921
3029
|
});
|
|
922
3030
|
}
|
|
923
3031
|
chains() {
|
|
@@ -933,7 +3041,7 @@ var SkipRouter = class {
|
|
|
933
3041
|
only_testnets: onlyTestnets,
|
|
934
3042
|
chain_ids: chainIDs
|
|
935
3043
|
});
|
|
936
|
-
return response.chains.map((chain) =>
|
|
3044
|
+
return response.chains.map((chain) => chunkIEAKY5XG_js.chainFromJSON(chain));
|
|
937
3045
|
});
|
|
938
3046
|
}
|
|
939
3047
|
executeRoute(options) {
|
|
@@ -979,7 +3087,7 @@ var SkipRouter = class {
|
|
|
979
3087
|
userAddresses,
|
|
980
3088
|
validateGasBalance,
|
|
981
3089
|
getGasPrice,
|
|
982
|
-
gasAmountMultiplier =
|
|
3090
|
+
gasAmountMultiplier = chunkTUX4SN3U_js.DEFAULT_GAS_MULTIPLIER,
|
|
983
3091
|
getFallbackGasAmount
|
|
984
3092
|
} = options;
|
|
985
3093
|
let gasTokenUsed;
|
|
@@ -1213,7 +3321,7 @@ var SkipRouter = class {
|
|
|
1213
3321
|
var _a;
|
|
1214
3322
|
const estimatedGasAmount = yield (() => chunk6FNC3XMI_js.__async(this, null, function* () {
|
|
1215
3323
|
try {
|
|
1216
|
-
const estimatedGas = yield
|
|
3324
|
+
const estimatedGas = yield chunkTUX4SN3U_js.getCosmosGasAmountForMessage(
|
|
1217
3325
|
stargateClient,
|
|
1218
3326
|
signerAddress,
|
|
1219
3327
|
chainID,
|
|
@@ -1426,7 +3534,7 @@ var SkipRouter = class {
|
|
|
1426
3534
|
);
|
|
1427
3535
|
}
|
|
1428
3536
|
const messages = cosmosMsgs.map(
|
|
1429
|
-
(cosmosMsg) =>
|
|
3537
|
+
(cosmosMsg) => chunkTUX4SN3U_js.getEncodeObjectFromCosmosMessage(cosmosMsg)
|
|
1430
3538
|
);
|
|
1431
3539
|
const txBodyEncodeObject = {
|
|
1432
3540
|
typeUrl: "/cosmos.tx.v1beta1.TxBody",
|
|
@@ -1476,7 +3584,7 @@ var SkipRouter = class {
|
|
|
1476
3584
|
);
|
|
1477
3585
|
}
|
|
1478
3586
|
const messages = cosmosMsgs.map(
|
|
1479
|
-
(cosmosMsg) =>
|
|
3587
|
+
(cosmosMsg) => chunkTUX4SN3U_js.getEncodeObjectFromCosmosMessageInjective(cosmosMsg)
|
|
1480
3588
|
);
|
|
1481
3589
|
const pk = Buffer.from(accountFromSigner.pubkey).toString("base64");
|
|
1482
3590
|
const { signDoc } = createTransaction({
|
|
@@ -1523,7 +3631,7 @@ var SkipRouter = class {
|
|
|
1523
3631
|
);
|
|
1524
3632
|
const pk = Buffer.from(accountFromSigner.pubkey).toString("base64");
|
|
1525
3633
|
const messages = cosmosMsgs.map(
|
|
1526
|
-
(cosmosMsg) =>
|
|
3634
|
+
(cosmosMsg) => chunkTUX4SN3U_js.getEncodeObjectFromCosmosMessageInjective(cosmosMsg)
|
|
1527
3635
|
);
|
|
1528
3636
|
const { signDoc } = createTransaction({
|
|
1529
3637
|
pubKey: pk,
|
|
@@ -1566,7 +3674,7 @@ var SkipRouter = class {
|
|
|
1566
3674
|
);
|
|
1567
3675
|
}
|
|
1568
3676
|
const messages = cosmosMsgs.map(
|
|
1569
|
-
(cosmosMsg) =>
|
|
3677
|
+
(cosmosMsg) => chunkTUX4SN3U_js.getEncodeObjectFromCosmosMessage(cosmosMsg)
|
|
1570
3678
|
);
|
|
1571
3679
|
const aminoMsgTransferIndex = messages.findIndex(
|
|
1572
3680
|
(x) => x.typeUrl === "/ibc.applications.transfer.v1.MsgTransfer"
|
|
@@ -1627,51 +3735,51 @@ var SkipRouter = class {
|
|
|
1627
3735
|
}
|
|
1628
3736
|
messages(options) {
|
|
1629
3737
|
return chunk6FNC3XMI_js.__async(this, null, function* () {
|
|
1630
|
-
const response = yield this.requestClient.post("/v2/fungible/msgs", chunk6FNC3XMI_js.__spreadProps(chunk6FNC3XMI_js.__spreadValues({},
|
|
3738
|
+
const response = yield this.requestClient.post("/v2/fungible/msgs", chunk6FNC3XMI_js.__spreadProps(chunk6FNC3XMI_js.__spreadValues({}, chunkIEAKY5XG_js.msgsRequestToJSON(options)), {
|
|
1631
3739
|
slippage_tolerance_percent: options.slippageTolerancePercent || "0"
|
|
1632
3740
|
}));
|
|
1633
|
-
return
|
|
3741
|
+
return chunkIEAKY5XG_js.messageResponseFromJSON(response);
|
|
1634
3742
|
});
|
|
1635
3743
|
}
|
|
1636
3744
|
route(options) {
|
|
1637
3745
|
return chunk6FNC3XMI_js.__async(this, null, function* () {
|
|
1638
|
-
const response = yield this.requestClient.post("/v2/fungible/route", chunk6FNC3XMI_js.__spreadProps(chunk6FNC3XMI_js.__spreadValues({},
|
|
3746
|
+
const response = yield this.requestClient.post("/v2/fungible/route", chunk6FNC3XMI_js.__spreadProps(chunk6FNC3XMI_js.__spreadValues({}, chunkIEAKY5XG_js.routeRequestToJSON(options)), {
|
|
1639
3747
|
cumulative_affiliate_fee_bps: options.cumulativeAffiliateFeeBPS || "0"
|
|
1640
3748
|
}));
|
|
1641
|
-
return
|
|
3749
|
+
return chunkIEAKY5XG_js.routeResponseFromJSON(response);
|
|
1642
3750
|
});
|
|
1643
3751
|
}
|
|
1644
3752
|
msgsDirect(options) {
|
|
1645
3753
|
return chunk6FNC3XMI_js.__async(this, null, function* () {
|
|
1646
|
-
const response = yield this.requestClient.post("/v2/fungible/msgs_direct", chunk6FNC3XMI_js.__spreadValues({},
|
|
3754
|
+
const response = yield this.requestClient.post("/v2/fungible/msgs_direct", chunk6FNC3XMI_js.__spreadValues({}, chunkIEAKY5XG_js.msgsDirectRequestToJSON(options)));
|
|
1647
3755
|
return {
|
|
1648
|
-
msgs: response.msgs.map((msg) =>
|
|
1649
|
-
txs: response.txs.map((tx) =>
|
|
1650
|
-
route:
|
|
3756
|
+
msgs: response.msgs.map((msg) => chunkIEAKY5XG_js.msgFromJSON(msg)),
|
|
3757
|
+
txs: response.txs.map((tx) => chunkIEAKY5XG_js.txFromJSON(tx)),
|
|
3758
|
+
route: chunkIEAKY5XG_js.routeResponseFromJSON(response.route)
|
|
1651
3759
|
};
|
|
1652
3760
|
});
|
|
1653
3761
|
}
|
|
1654
3762
|
recommendAssets(request) {
|
|
1655
3763
|
return chunk6FNC3XMI_js.__async(this, null, function* () {
|
|
1656
|
-
const options =
|
|
3764
|
+
const options = chunkIEAKY5XG_js.recommendAssetsRequestToJSON({
|
|
1657
3765
|
requests: Array.isArray(request) ? request : [request]
|
|
1658
3766
|
});
|
|
1659
3767
|
const response = yield this.requestClient.post(
|
|
1660
3768
|
"/v2/fungible/recommend_assets",
|
|
1661
3769
|
options
|
|
1662
3770
|
);
|
|
1663
|
-
return
|
|
3771
|
+
return chunkIEAKY5XG_js.recommendAssetsResponseFromJSON(response).recommendationEntries;
|
|
1664
3772
|
});
|
|
1665
3773
|
}
|
|
1666
3774
|
ibcOriginAssets(assets) {
|
|
1667
3775
|
return chunk6FNC3XMI_js.__async(this, null, function* () {
|
|
1668
3776
|
const response = yield this.requestClient.post(
|
|
1669
3777
|
"/v2/fungible/ibc_origin_assets",
|
|
1670
|
-
|
|
3778
|
+
chunkIEAKY5XG_js.originAssetsRequestToJSON({
|
|
1671
3779
|
assets
|
|
1672
3780
|
})
|
|
1673
3781
|
);
|
|
1674
|
-
return
|
|
3782
|
+
return chunkIEAKY5XG_js.originAssetsResponseFromJSON(response).originAssets;
|
|
1675
3783
|
});
|
|
1676
3784
|
}
|
|
1677
3785
|
submitTransaction(_0) {
|
|
@@ -1683,7 +3791,7 @@ var SkipRouter = class {
|
|
|
1683
3791
|
chain_id: chainID,
|
|
1684
3792
|
tx
|
|
1685
3793
|
});
|
|
1686
|
-
return
|
|
3794
|
+
return chunkIEAKY5XG_js.submitTxResponseFromJSON(response);
|
|
1687
3795
|
});
|
|
1688
3796
|
}
|
|
1689
3797
|
trackTransaction(_0) {
|
|
@@ -1704,7 +3812,7 @@ var SkipRouter = class {
|
|
|
1704
3812
|
chain_id: chainID,
|
|
1705
3813
|
tx_hash: txHash
|
|
1706
3814
|
});
|
|
1707
|
-
return
|
|
3815
|
+
return chunkIEAKY5XG_js.trackTxResponseFromJSON(response);
|
|
1708
3816
|
} catch (error) {
|
|
1709
3817
|
lastError = error;
|
|
1710
3818
|
retries++;
|
|
@@ -1732,7 +3840,7 @@ var SkipRouter = class {
|
|
|
1732
3840
|
chain_id: chainID,
|
|
1733
3841
|
tx_hash: txHash
|
|
1734
3842
|
});
|
|
1735
|
-
return
|
|
3843
|
+
return chunkIEAKY5XG_js.txStatusResponseFromJSON(response);
|
|
1736
3844
|
} catch (error) {
|
|
1737
3845
|
lastError = error;
|
|
1738
3846
|
retries++;
|
|
@@ -1777,12 +3885,12 @@ var SkipRouter = class {
|
|
|
1777
3885
|
const response = yield this.requestClient.get("/v2/fungible/venues", {
|
|
1778
3886
|
only_testnets: onlyTestnets
|
|
1779
3887
|
});
|
|
1780
|
-
return response.venues.map((venue) =>
|
|
3888
|
+
return response.venues.map((venue) => chunkIEAKY5XG_js.swapVenueFromJSON(venue));
|
|
1781
3889
|
});
|
|
1782
3890
|
}
|
|
1783
3891
|
getCosmsosGasAmountForMessage(client, signerAddress, chainID, cosmosMessages) {
|
|
1784
3892
|
return chunk6FNC3XMI_js.__async(this, null, function* () {
|
|
1785
|
-
return
|
|
3893
|
+
return chunkTUX4SN3U_js.getCosmosGasAmountForMessage(
|
|
1786
3894
|
client,
|
|
1787
3895
|
signerAddress,
|
|
1788
3896
|
chainID,
|
|
@@ -1862,7 +3970,7 @@ var SkipRouter = class {
|
|
|
1862
3970
|
}
|
|
1863
3971
|
getRpcEndpointForChain(chainID) {
|
|
1864
3972
|
return chunk6FNC3XMI_js.__async(this, null, function* () {
|
|
1865
|
-
var _a, _b, _c;
|
|
3973
|
+
var _a, _b, _c, _d, _e;
|
|
1866
3974
|
if (this.endpointOptions.getRpcEndpointForChain) {
|
|
1867
3975
|
return this.endpointOptions.getRpcEndpointForChain(chainID);
|
|
1868
3976
|
}
|
|
@@ -1882,7 +3990,13 @@ var SkipRouter = class {
|
|
|
1882
3990
|
`getRpcEndpointForChain: failed to find chain id '${chainID}' in registry`
|
|
1883
3991
|
);
|
|
1884
3992
|
}
|
|
1885
|
-
|
|
3993
|
+
if (((_b = (_a = chain.apis) == null ? void 0 : _a.rpc) == null ? void 0 : _b.length) === 0 || !((_c = chain.apis) == null ? void 0 : _c.rpc)) {
|
|
3994
|
+
throw new Error(
|
|
3995
|
+
`getRpcEndpointForChain error: failed to find RPC endpoint for chain '${chainID}'`
|
|
3996
|
+
);
|
|
3997
|
+
}
|
|
3998
|
+
const endpoints = (_e = (_d = chain.apis) == null ? void 0 : _d.rpc) == null ? void 0 : _e.map((api) => api.address);
|
|
3999
|
+
const endpoint = yield findFirstWorkingEndpoint(endpoints, "rpc");
|
|
1886
4000
|
if (!endpoint) {
|
|
1887
4001
|
throw new Error(
|
|
1888
4002
|
`getRpcEndpointForChain error: failed to find RPC endpoint for chain '${chainID}'`
|
|
@@ -1893,7 +4007,7 @@ var SkipRouter = class {
|
|
|
1893
4007
|
}
|
|
1894
4008
|
getRestEndpointForChain(chainID) {
|
|
1895
4009
|
return chunk6FNC3XMI_js.__async(this, null, function* () {
|
|
1896
|
-
var _a, _b, _c;
|
|
4010
|
+
var _a, _b, _c, _d, _e;
|
|
1897
4011
|
if (this.endpointOptions.getRestEndpointForChain) {
|
|
1898
4012
|
return this.endpointOptions.getRestEndpointForChain(chainID);
|
|
1899
4013
|
}
|
|
@@ -1913,7 +4027,13 @@ var SkipRouter = class {
|
|
|
1913
4027
|
`getRestEndpointForChain error: failed to find chain id '${chainID}' in registry`
|
|
1914
4028
|
);
|
|
1915
4029
|
}
|
|
1916
|
-
|
|
4030
|
+
if (((_b = (_a = chain.apis) == null ? void 0 : _a.rest) == null ? void 0 : _b.length) === 0 || !((_c = chain.apis) == null ? void 0 : _c.rest)) {
|
|
4031
|
+
throw new Error(
|
|
4032
|
+
`getRpcEndpointForChain error: failed to find RPC endpoint for chain '${chainID}'`
|
|
4033
|
+
);
|
|
4034
|
+
}
|
|
4035
|
+
const endpoints = (_e = (_d = chain.apis) == null ? void 0 : _d.rest) == null ? void 0 : _e.map((api) => api.address);
|
|
4036
|
+
const endpoint = yield findFirstWorkingEndpoint(endpoints, "rest");
|
|
1917
4037
|
if (!endpoint) {
|
|
1918
4038
|
throw new Error(
|
|
1919
4039
|
`getRestEndpointForChain error: failed to find REST endpoint for chain '${chainID}'`
|
|
@@ -1923,7 +4043,7 @@ var SkipRouter = class {
|
|
|
1923
4043
|
});
|
|
1924
4044
|
}
|
|
1925
4045
|
getCosmosFeeForMessage(_0, _1) {
|
|
1926
|
-
return chunk6FNC3XMI_js.__async(this, arguments, function* (chainID, msgs, gasAmountMultiplier =
|
|
4046
|
+
return chunk6FNC3XMI_js.__async(this, arguments, function* (chainID, msgs, gasAmountMultiplier = chunkTUX4SN3U_js.DEFAULT_GAS_MULTIPLIER, signer, gasPrice) {
|
|
1927
4047
|
var _a, _b;
|
|
1928
4048
|
gasPrice || (gasPrice = yield this.getRecommendedGasPrice(chainID));
|
|
1929
4049
|
if (!gasPrice) {
|
|
@@ -1951,7 +4071,7 @@ var SkipRouter = class {
|
|
|
1951
4071
|
accountParser: chunkJRIEAGIQ_js.accountParser
|
|
1952
4072
|
}
|
|
1953
4073
|
);
|
|
1954
|
-
const gasNeeded = yield
|
|
4074
|
+
const gasNeeded = yield chunkTUX4SN3U_js.getCosmosGasAmountForMessage(
|
|
1955
4075
|
client,
|
|
1956
4076
|
signerAddress,
|
|
1957
4077
|
chainID,
|
|
@@ -2224,651 +4344,651 @@ function wait(ms) {
|
|
|
2224
4344
|
|
|
2225
4345
|
Object.defineProperty(exports, "DEFAULT_GAS_MULTIPLIER", {
|
|
2226
4346
|
enumerable: true,
|
|
2227
|
-
get: function () { return
|
|
4347
|
+
get: function () { return chunkTUX4SN3U_js.DEFAULT_GAS_MULTIPLIER; }
|
|
2228
4348
|
});
|
|
2229
4349
|
Object.defineProperty(exports, "getCosmosGasAmountForMessage", {
|
|
2230
4350
|
enumerable: true,
|
|
2231
|
-
get: function () { return
|
|
4351
|
+
get: function () { return chunkTUX4SN3U_js.getCosmosGasAmountForMessage; }
|
|
2232
4352
|
});
|
|
2233
4353
|
Object.defineProperty(exports, "getEncodeObjectFromCosmosMessage", {
|
|
2234
4354
|
enumerable: true,
|
|
2235
|
-
get: function () { return
|
|
4355
|
+
get: function () { return chunkTUX4SN3U_js.getEncodeObjectFromCosmosMessage; }
|
|
2236
4356
|
});
|
|
2237
4357
|
Object.defineProperty(exports, "getEncodeObjectFromCosmosMessageInjective", {
|
|
2238
4358
|
enumerable: true,
|
|
2239
|
-
get: function () { return
|
|
4359
|
+
get: function () { return chunkTUX4SN3U_js.getEncodeObjectFromCosmosMessageInjective; }
|
|
2240
4360
|
});
|
|
2241
4361
|
Object.defineProperty(exports, "affiliateFromJSON", {
|
|
2242
4362
|
enumerable: true,
|
|
2243
|
-
get: function () { return
|
|
4363
|
+
get: function () { return chunkIEAKY5XG_js.affiliateFromJSON; }
|
|
2244
4364
|
});
|
|
2245
4365
|
Object.defineProperty(exports, "affiliateToJSON", {
|
|
2246
4366
|
enumerable: true,
|
|
2247
|
-
get: function () { return
|
|
4367
|
+
get: function () { return chunkIEAKY5XG_js.affiliateToJSON; }
|
|
2248
4368
|
});
|
|
2249
4369
|
Object.defineProperty(exports, "assetBetweenChainsFromJSON", {
|
|
2250
4370
|
enumerable: true,
|
|
2251
|
-
get: function () { return
|
|
4371
|
+
get: function () { return chunkIEAKY5XG_js.assetBetweenChainsFromJSON; }
|
|
2252
4372
|
});
|
|
2253
4373
|
Object.defineProperty(exports, "assetBetweenChainsToJSON", {
|
|
2254
4374
|
enumerable: true,
|
|
2255
|
-
get: function () { return
|
|
4375
|
+
get: function () { return chunkIEAKY5XG_js.assetBetweenChainsToJSON; }
|
|
2256
4376
|
});
|
|
2257
4377
|
Object.defineProperty(exports, "assetFromJSON", {
|
|
2258
4378
|
enumerable: true,
|
|
2259
|
-
get: function () { return
|
|
4379
|
+
get: function () { return chunkIEAKY5XG_js.assetFromJSON; }
|
|
2260
4380
|
});
|
|
2261
4381
|
Object.defineProperty(exports, "assetOrErrorFromJSON", {
|
|
2262
4382
|
enumerable: true,
|
|
2263
|
-
get: function () { return
|
|
4383
|
+
get: function () { return chunkIEAKY5XG_js.assetOrErrorFromJSON; }
|
|
2264
4384
|
});
|
|
2265
4385
|
Object.defineProperty(exports, "assetOrErrorToJSON", {
|
|
2266
4386
|
enumerable: true,
|
|
2267
|
-
get: function () { return
|
|
4387
|
+
get: function () { return chunkIEAKY5XG_js.assetOrErrorToJSON; }
|
|
2268
4388
|
});
|
|
2269
4389
|
Object.defineProperty(exports, "assetRecommendationFromJSON", {
|
|
2270
4390
|
enumerable: true,
|
|
2271
|
-
get: function () { return
|
|
4391
|
+
get: function () { return chunkIEAKY5XG_js.assetRecommendationFromJSON; }
|
|
2272
4392
|
});
|
|
2273
4393
|
Object.defineProperty(exports, "assetRecommendationRequestFromJSON", {
|
|
2274
4394
|
enumerable: true,
|
|
2275
|
-
get: function () { return
|
|
4395
|
+
get: function () { return chunkIEAKY5XG_js.assetRecommendationRequestFromJSON; }
|
|
2276
4396
|
});
|
|
2277
4397
|
Object.defineProperty(exports, "assetRecommendationRequestToJSON", {
|
|
2278
4398
|
enumerable: true,
|
|
2279
|
-
get: function () { return
|
|
4399
|
+
get: function () { return chunkIEAKY5XG_js.assetRecommendationRequestToJSON; }
|
|
2280
4400
|
});
|
|
2281
4401
|
Object.defineProperty(exports, "assetRecommendationToJSON", {
|
|
2282
4402
|
enumerable: true,
|
|
2283
|
-
get: function () { return
|
|
4403
|
+
get: function () { return chunkIEAKY5XG_js.assetRecommendationToJSON; }
|
|
2284
4404
|
});
|
|
2285
4405
|
Object.defineProperty(exports, "assetToJSON", {
|
|
2286
4406
|
enumerable: true,
|
|
2287
|
-
get: function () { return
|
|
4407
|
+
get: function () { return chunkIEAKY5XG_js.assetToJSON; }
|
|
2288
4408
|
});
|
|
2289
4409
|
Object.defineProperty(exports, "assetsBetweenChainsRequestFromJSON", {
|
|
2290
4410
|
enumerable: true,
|
|
2291
|
-
get: function () { return
|
|
4411
|
+
get: function () { return chunkIEAKY5XG_js.assetsBetweenChainsRequestFromJSON; }
|
|
2292
4412
|
});
|
|
2293
4413
|
Object.defineProperty(exports, "assetsBetweenChainsRequestToJSON", {
|
|
2294
4414
|
enumerable: true,
|
|
2295
|
-
get: function () { return
|
|
4415
|
+
get: function () { return chunkIEAKY5XG_js.assetsBetweenChainsRequestToJSON; }
|
|
2296
4416
|
});
|
|
2297
4417
|
Object.defineProperty(exports, "assetsBetweenChainsResponseFromJSON", {
|
|
2298
4418
|
enumerable: true,
|
|
2299
|
-
get: function () { return
|
|
4419
|
+
get: function () { return chunkIEAKY5XG_js.assetsBetweenChainsResponseFromJSON; }
|
|
2300
4420
|
});
|
|
2301
4421
|
Object.defineProperty(exports, "assetsFromSourceRequestFromJSON", {
|
|
2302
4422
|
enumerable: true,
|
|
2303
|
-
get: function () { return
|
|
4423
|
+
get: function () { return chunkIEAKY5XG_js.assetsFromSourceRequestFromJSON; }
|
|
2304
4424
|
});
|
|
2305
4425
|
Object.defineProperty(exports, "assetsFromSourceRequestToJSON", {
|
|
2306
4426
|
enumerable: true,
|
|
2307
|
-
get: function () { return
|
|
4427
|
+
get: function () { return chunkIEAKY5XG_js.assetsFromSourceRequestToJSON; }
|
|
2308
4428
|
});
|
|
2309
4429
|
Object.defineProperty(exports, "assetsRequestFromJSON", {
|
|
2310
4430
|
enumerable: true,
|
|
2311
|
-
get: function () { return
|
|
4431
|
+
get: function () { return chunkIEAKY5XG_js.assetsRequestFromJSON; }
|
|
2312
4432
|
});
|
|
2313
4433
|
Object.defineProperty(exports, "assetsRequestToJSON", {
|
|
2314
4434
|
enumerable: true,
|
|
2315
|
-
get: function () { return
|
|
4435
|
+
get: function () { return chunkIEAKY5XG_js.assetsRequestToJSON; }
|
|
2316
4436
|
});
|
|
2317
4437
|
Object.defineProperty(exports, "axelarTransferFromJSON", {
|
|
2318
4438
|
enumerable: true,
|
|
2319
|
-
get: function () { return
|
|
4439
|
+
get: function () { return chunkIEAKY5XG_js.axelarTransferFromJSON; }
|
|
2320
4440
|
});
|
|
2321
4441
|
Object.defineProperty(exports, "axelarTransferInfoFromJSON", {
|
|
2322
4442
|
enumerable: true,
|
|
2323
|
-
get: function () { return
|
|
4443
|
+
get: function () { return chunkIEAKY5XG_js.axelarTransferInfoFromJSON; }
|
|
2324
4444
|
});
|
|
2325
4445
|
Object.defineProperty(exports, "axelarTransferInfoToJSON", {
|
|
2326
4446
|
enumerable: true,
|
|
2327
|
-
get: function () { return
|
|
4447
|
+
get: function () { return chunkIEAKY5XG_js.axelarTransferInfoToJSON; }
|
|
2328
4448
|
});
|
|
2329
4449
|
Object.defineProperty(exports, "axelarTransferToJSON", {
|
|
2330
4450
|
enumerable: true,
|
|
2331
|
-
get: function () { return
|
|
4451
|
+
get: function () { return chunkIEAKY5XG_js.axelarTransferToJSON; }
|
|
2332
4452
|
});
|
|
2333
4453
|
Object.defineProperty(exports, "axelarTransferTransactionsFromJSON", {
|
|
2334
4454
|
enumerable: true,
|
|
2335
|
-
get: function () { return
|
|
4455
|
+
get: function () { return chunkIEAKY5XG_js.axelarTransferTransactionsFromJSON; }
|
|
2336
4456
|
});
|
|
2337
4457
|
Object.defineProperty(exports, "axelarTransferTransactionsToJSON", {
|
|
2338
4458
|
enumerable: true,
|
|
2339
|
-
get: function () { return
|
|
4459
|
+
get: function () { return chunkIEAKY5XG_js.axelarTransferTransactionsToJSON; }
|
|
2340
4460
|
});
|
|
2341
4461
|
Object.defineProperty(exports, "bankSendFromJSON", {
|
|
2342
4462
|
enumerable: true,
|
|
2343
|
-
get: function () { return
|
|
4463
|
+
get: function () { return chunkIEAKY5XG_js.bankSendFromJSON; }
|
|
2344
4464
|
});
|
|
2345
4465
|
Object.defineProperty(exports, "bankSendToJSON", {
|
|
2346
4466
|
enumerable: true,
|
|
2347
|
-
get: function () { return
|
|
4467
|
+
get: function () { return chunkIEAKY5XG_js.bankSendToJSON; }
|
|
2348
4468
|
});
|
|
2349
4469
|
Object.defineProperty(exports, "bridgeFromJSON", {
|
|
2350
4470
|
enumerable: true,
|
|
2351
|
-
get: function () { return
|
|
4471
|
+
get: function () { return chunkIEAKY5XG_js.bridgeFromJSON; }
|
|
2352
4472
|
});
|
|
2353
4473
|
Object.defineProperty(exports, "bridgeToJSON", {
|
|
2354
4474
|
enumerable: true,
|
|
2355
|
-
get: function () { return
|
|
4475
|
+
get: function () { return chunkIEAKY5XG_js.bridgeToJSON; }
|
|
2356
4476
|
});
|
|
2357
4477
|
Object.defineProperty(exports, "bridgesResponseFromJSON", {
|
|
2358
4478
|
enumerable: true,
|
|
2359
|
-
get: function () { return
|
|
4479
|
+
get: function () { return chunkIEAKY5XG_js.bridgesResponseFromJSON; }
|
|
2360
4480
|
});
|
|
2361
4481
|
Object.defineProperty(exports, "bridgesResponseToJSON", {
|
|
2362
4482
|
enumerable: true,
|
|
2363
|
-
get: function () { return
|
|
4483
|
+
get: function () { return chunkIEAKY5XG_js.bridgesResponseToJSON; }
|
|
2364
4484
|
});
|
|
2365
4485
|
Object.defineProperty(exports, "cctpTransferFromJSON", {
|
|
2366
4486
|
enumerable: true,
|
|
2367
|
-
get: function () { return
|
|
4487
|
+
get: function () { return chunkIEAKY5XG_js.cctpTransferFromJSON; }
|
|
2368
4488
|
});
|
|
2369
4489
|
Object.defineProperty(exports, "cctpTransferInfoFromJSON", {
|
|
2370
4490
|
enumerable: true,
|
|
2371
|
-
get: function () { return
|
|
4491
|
+
get: function () { return chunkIEAKY5XG_js.cctpTransferInfoFromJSON; }
|
|
2372
4492
|
});
|
|
2373
4493
|
Object.defineProperty(exports, "cctpTransferInfoToJSON", {
|
|
2374
4494
|
enumerable: true,
|
|
2375
|
-
get: function () { return
|
|
4495
|
+
get: function () { return chunkIEAKY5XG_js.cctpTransferInfoToJSON; }
|
|
2376
4496
|
});
|
|
2377
4497
|
Object.defineProperty(exports, "cctpTransferToJSON", {
|
|
2378
4498
|
enumerable: true,
|
|
2379
|
-
get: function () { return
|
|
4499
|
+
get: function () { return chunkIEAKY5XG_js.cctpTransferToJSON; }
|
|
2380
4500
|
});
|
|
2381
4501
|
Object.defineProperty(exports, "cctpTransferTransactionsFromJSON", {
|
|
2382
4502
|
enumerable: true,
|
|
2383
|
-
get: function () { return
|
|
4503
|
+
get: function () { return chunkIEAKY5XG_js.cctpTransferTransactionsFromJSON; }
|
|
2384
4504
|
});
|
|
2385
4505
|
Object.defineProperty(exports, "cctpTransferTransactionsToJSON", {
|
|
2386
4506
|
enumerable: true,
|
|
2387
|
-
get: function () { return
|
|
4507
|
+
get: function () { return chunkIEAKY5XG_js.cctpTransferTransactionsToJSON; }
|
|
2388
4508
|
});
|
|
2389
4509
|
Object.defineProperty(exports, "chainAffiliatesFromJSON", {
|
|
2390
4510
|
enumerable: true,
|
|
2391
|
-
get: function () { return
|
|
4511
|
+
get: function () { return chunkIEAKY5XG_js.chainAffiliatesFromJSON; }
|
|
2392
4512
|
});
|
|
2393
4513
|
Object.defineProperty(exports, "chainAffiliatesToJSON", {
|
|
2394
4514
|
enumerable: true,
|
|
2395
|
-
get: function () { return
|
|
4515
|
+
get: function () { return chunkIEAKY5XG_js.chainAffiliatesToJSON; }
|
|
2396
4516
|
});
|
|
2397
4517
|
Object.defineProperty(exports, "chainFromJSON", {
|
|
2398
4518
|
enumerable: true,
|
|
2399
|
-
get: function () { return
|
|
4519
|
+
get: function () { return chunkIEAKY5XG_js.chainFromJSON; }
|
|
2400
4520
|
});
|
|
2401
4521
|
Object.defineProperty(exports, "chainIDsToAffiliatesMapFromJSON", {
|
|
2402
4522
|
enumerable: true,
|
|
2403
|
-
get: function () { return
|
|
4523
|
+
get: function () { return chunkIEAKY5XG_js.chainIDsToAffiliatesMapFromJSON; }
|
|
2404
4524
|
});
|
|
2405
4525
|
Object.defineProperty(exports, "chainIDsToAffiliatesMapToJSON", {
|
|
2406
4526
|
enumerable: true,
|
|
2407
|
-
get: function () { return
|
|
4527
|
+
get: function () { return chunkIEAKY5XG_js.chainIDsToAffiliatesMapToJSON; }
|
|
2408
4528
|
});
|
|
2409
4529
|
Object.defineProperty(exports, "chainToJSON", {
|
|
2410
4530
|
enumerable: true,
|
|
2411
|
-
get: function () { return
|
|
4531
|
+
get: function () { return chunkIEAKY5XG_js.chainToJSON; }
|
|
2412
4532
|
});
|
|
2413
4533
|
Object.defineProperty(exports, "chainTransactionFromJSON", {
|
|
2414
4534
|
enumerable: true,
|
|
2415
|
-
get: function () { return
|
|
4535
|
+
get: function () { return chunkIEAKY5XG_js.chainTransactionFromJSON; }
|
|
2416
4536
|
});
|
|
2417
4537
|
Object.defineProperty(exports, "chainTransactionToJSON", {
|
|
2418
4538
|
enumerable: true,
|
|
2419
|
-
get: function () { return
|
|
4539
|
+
get: function () { return chunkIEAKY5XG_js.chainTransactionToJSON; }
|
|
2420
4540
|
});
|
|
2421
4541
|
Object.defineProperty(exports, "contractCallWithTokenTransactionsFromJSON", {
|
|
2422
4542
|
enumerable: true,
|
|
2423
|
-
get: function () { return
|
|
4543
|
+
get: function () { return chunkIEAKY5XG_js.contractCallWithTokenTransactionsFromJSON; }
|
|
2424
4544
|
});
|
|
2425
4545
|
Object.defineProperty(exports, "contractCallWithTokenTransactionsToJSON", {
|
|
2426
4546
|
enumerable: true,
|
|
2427
|
-
get: function () { return
|
|
4547
|
+
get: function () { return chunkIEAKY5XG_js.contractCallWithTokenTransactionsToJSON; }
|
|
2428
4548
|
});
|
|
2429
4549
|
Object.defineProperty(exports, "cosmWasmContractMsgFromJSON", {
|
|
2430
4550
|
enumerable: true,
|
|
2431
|
-
get: function () { return
|
|
4551
|
+
get: function () { return chunkIEAKY5XG_js.cosmWasmContractMsgFromJSON; }
|
|
2432
4552
|
});
|
|
2433
4553
|
Object.defineProperty(exports, "cosmWasmContractMsgToJSON", {
|
|
2434
4554
|
enumerable: true,
|
|
2435
|
-
get: function () { return
|
|
4555
|
+
get: function () { return chunkIEAKY5XG_js.cosmWasmContractMsgToJSON; }
|
|
2436
4556
|
});
|
|
2437
4557
|
Object.defineProperty(exports, "cosmosMsgFromJSON", {
|
|
2438
4558
|
enumerable: true,
|
|
2439
|
-
get: function () { return
|
|
4559
|
+
get: function () { return chunkIEAKY5XG_js.cosmosMsgFromJSON; }
|
|
2440
4560
|
});
|
|
2441
4561
|
Object.defineProperty(exports, "cosmosMsgToJSON", {
|
|
2442
4562
|
enumerable: true,
|
|
2443
|
-
get: function () { return
|
|
4563
|
+
get: function () { return chunkIEAKY5XG_js.cosmosMsgToJSON; }
|
|
2444
4564
|
});
|
|
2445
4565
|
Object.defineProperty(exports, "cosmosTxFromJSON", {
|
|
2446
4566
|
enumerable: true,
|
|
2447
|
-
get: function () { return
|
|
4567
|
+
get: function () { return chunkIEAKY5XG_js.cosmosTxFromJSON; }
|
|
2448
4568
|
});
|
|
2449
4569
|
Object.defineProperty(exports, "cosmosTxToJSON", {
|
|
2450
4570
|
enumerable: true,
|
|
2451
|
-
get: function () { return
|
|
4571
|
+
get: function () { return chunkIEAKY5XG_js.cosmosTxToJSON; }
|
|
2452
4572
|
});
|
|
2453
4573
|
Object.defineProperty(exports, "denomWithChainIDFromJSON", {
|
|
2454
4574
|
enumerable: true,
|
|
2455
|
-
get: function () { return
|
|
4575
|
+
get: function () { return chunkIEAKY5XG_js.denomWithChainIDFromJSON; }
|
|
2456
4576
|
});
|
|
2457
4577
|
Object.defineProperty(exports, "denomWithChainIDToJSON", {
|
|
2458
4578
|
enumerable: true,
|
|
2459
|
-
get: function () { return
|
|
4579
|
+
get: function () { return chunkIEAKY5XG_js.denomWithChainIDToJSON; }
|
|
2460
4580
|
});
|
|
2461
4581
|
Object.defineProperty(exports, "erc20ApprovalFromJSON", {
|
|
2462
4582
|
enumerable: true,
|
|
2463
|
-
get: function () { return
|
|
4583
|
+
get: function () { return chunkIEAKY5XG_js.erc20ApprovalFromJSON; }
|
|
2464
4584
|
});
|
|
2465
4585
|
Object.defineProperty(exports, "erc20ApprovalToJSON", {
|
|
2466
4586
|
enumerable: true,
|
|
2467
|
-
get: function () { return
|
|
4587
|
+
get: function () { return chunkIEAKY5XG_js.erc20ApprovalToJSON; }
|
|
2468
4588
|
});
|
|
2469
4589
|
Object.defineProperty(exports, "estimatedFeeFromJSON", {
|
|
2470
4590
|
enumerable: true,
|
|
2471
|
-
get: function () { return
|
|
4591
|
+
get: function () { return chunkIEAKY5XG_js.estimatedFeeFromJSON; }
|
|
2472
4592
|
});
|
|
2473
4593
|
Object.defineProperty(exports, "estimatedFeeToJSON", {
|
|
2474
4594
|
enumerable: true,
|
|
2475
|
-
get: function () { return
|
|
4595
|
+
get: function () { return chunkIEAKY5XG_js.estimatedFeeToJSON; }
|
|
2476
4596
|
});
|
|
2477
4597
|
Object.defineProperty(exports, "evmSwapFromJSON", {
|
|
2478
4598
|
enumerable: true,
|
|
2479
|
-
get: function () { return
|
|
4599
|
+
get: function () { return chunkIEAKY5XG_js.evmSwapFromJSON; }
|
|
2480
4600
|
});
|
|
2481
4601
|
Object.defineProperty(exports, "evmSwapToJSON", {
|
|
2482
4602
|
enumerable: true,
|
|
2483
|
-
get: function () { return
|
|
4603
|
+
get: function () { return chunkIEAKY5XG_js.evmSwapToJSON; }
|
|
2484
4604
|
});
|
|
2485
4605
|
Object.defineProperty(exports, "evmTxFromJSON", {
|
|
2486
4606
|
enumerable: true,
|
|
2487
|
-
get: function () { return
|
|
4607
|
+
get: function () { return chunkIEAKY5XG_js.evmTxFromJSON; }
|
|
2488
4608
|
});
|
|
2489
4609
|
Object.defineProperty(exports, "evmTxToJSON", {
|
|
2490
4610
|
enumerable: true,
|
|
2491
|
-
get: function () { return
|
|
4611
|
+
get: function () { return chunkIEAKY5XG_js.evmTxToJSON; }
|
|
2492
4612
|
});
|
|
2493
4613
|
Object.defineProperty(exports, "feeAssetFromJSON", {
|
|
2494
4614
|
enumerable: true,
|
|
2495
|
-
get: function () { return
|
|
4615
|
+
get: function () { return chunkIEAKY5XG_js.feeAssetFromJSON; }
|
|
2496
4616
|
});
|
|
2497
4617
|
Object.defineProperty(exports, "feeAssetToJSON", {
|
|
2498
4618
|
enumerable: true,
|
|
2499
|
-
get: function () { return
|
|
4619
|
+
get: function () { return chunkIEAKY5XG_js.feeAssetToJSON; }
|
|
2500
4620
|
});
|
|
2501
4621
|
Object.defineProperty(exports, "hyperlaneTransferFromJSON", {
|
|
2502
4622
|
enumerable: true,
|
|
2503
|
-
get: function () { return
|
|
4623
|
+
get: function () { return chunkIEAKY5XG_js.hyperlaneTransferFromJSON; }
|
|
2504
4624
|
});
|
|
2505
4625
|
Object.defineProperty(exports, "hyperlaneTransferInfoFromJSON", {
|
|
2506
4626
|
enumerable: true,
|
|
2507
|
-
get: function () { return
|
|
4627
|
+
get: function () { return chunkIEAKY5XG_js.hyperlaneTransferInfoFromJSON; }
|
|
2508
4628
|
});
|
|
2509
4629
|
Object.defineProperty(exports, "hyperlaneTransferInfoToJSON", {
|
|
2510
4630
|
enumerable: true,
|
|
2511
|
-
get: function () { return
|
|
4631
|
+
get: function () { return chunkIEAKY5XG_js.hyperlaneTransferInfoToJSON; }
|
|
2512
4632
|
});
|
|
2513
4633
|
Object.defineProperty(exports, "hyperlaneTransferToJSON", {
|
|
2514
4634
|
enumerable: true,
|
|
2515
|
-
get: function () { return
|
|
4635
|
+
get: function () { return chunkIEAKY5XG_js.hyperlaneTransferToJSON; }
|
|
2516
4636
|
});
|
|
2517
4637
|
Object.defineProperty(exports, "hyperlaneTransferTransactionsFromJSON", {
|
|
2518
4638
|
enumerable: true,
|
|
2519
|
-
get: function () { return
|
|
4639
|
+
get: function () { return chunkIEAKY5XG_js.hyperlaneTransferTransactionsFromJSON; }
|
|
2520
4640
|
});
|
|
2521
4641
|
Object.defineProperty(exports, "hyperlaneTransferTransactionsToJSON", {
|
|
2522
4642
|
enumerable: true,
|
|
2523
|
-
get: function () { return
|
|
4643
|
+
get: function () { return chunkIEAKY5XG_js.hyperlaneTransferTransactionsToJSON; }
|
|
2524
4644
|
});
|
|
2525
4645
|
Object.defineProperty(exports, "ibcAddressFromJSON", {
|
|
2526
4646
|
enumerable: true,
|
|
2527
|
-
get: function () { return
|
|
4647
|
+
get: function () { return chunkIEAKY5XG_js.ibcAddressFromJSON; }
|
|
2528
4648
|
});
|
|
2529
4649
|
Object.defineProperty(exports, "ibcAddressToJSON", {
|
|
2530
4650
|
enumerable: true,
|
|
2531
|
-
get: function () { return
|
|
4651
|
+
get: function () { return chunkIEAKY5XG_js.ibcAddressToJSON; }
|
|
2532
4652
|
});
|
|
2533
4653
|
Object.defineProperty(exports, "ibcCapabilitiesFromJSON", {
|
|
2534
4654
|
enumerable: true,
|
|
2535
|
-
get: function () { return
|
|
4655
|
+
get: function () { return chunkIEAKY5XG_js.ibcCapabilitiesFromJSON; }
|
|
2536
4656
|
});
|
|
2537
4657
|
Object.defineProperty(exports, "ibcCapabilitiesToJSON", {
|
|
2538
4658
|
enumerable: true,
|
|
2539
|
-
get: function () { return
|
|
4659
|
+
get: function () { return chunkIEAKY5XG_js.ibcCapabilitiesToJSON; }
|
|
2540
4660
|
});
|
|
2541
4661
|
Object.defineProperty(exports, "messageResponseFromJSON", {
|
|
2542
4662
|
enumerable: true,
|
|
2543
|
-
get: function () { return
|
|
4663
|
+
get: function () { return chunkIEAKY5XG_js.messageResponseFromJSON; }
|
|
2544
4664
|
});
|
|
2545
4665
|
Object.defineProperty(exports, "msgFromJSON", {
|
|
2546
4666
|
enumerable: true,
|
|
2547
|
-
get: function () { return
|
|
4667
|
+
get: function () { return chunkIEAKY5XG_js.msgFromJSON; }
|
|
2548
4668
|
});
|
|
2549
4669
|
Object.defineProperty(exports, "msgToJSON", {
|
|
2550
4670
|
enumerable: true,
|
|
2551
|
-
get: function () { return
|
|
4671
|
+
get: function () { return chunkIEAKY5XG_js.msgToJSON; }
|
|
2552
4672
|
});
|
|
2553
4673
|
Object.defineProperty(exports, "msgsDirectRequestFromJSON", {
|
|
2554
4674
|
enumerable: true,
|
|
2555
|
-
get: function () { return
|
|
4675
|
+
get: function () { return chunkIEAKY5XG_js.msgsDirectRequestFromJSON; }
|
|
2556
4676
|
});
|
|
2557
4677
|
Object.defineProperty(exports, "msgsDirectRequestToJSON", {
|
|
2558
4678
|
enumerable: true,
|
|
2559
|
-
get: function () { return
|
|
4679
|
+
get: function () { return chunkIEAKY5XG_js.msgsDirectRequestToJSON; }
|
|
2560
4680
|
});
|
|
2561
4681
|
Object.defineProperty(exports, "msgsRequestFromJSON", {
|
|
2562
4682
|
enumerable: true,
|
|
2563
|
-
get: function () { return
|
|
4683
|
+
get: function () { return chunkIEAKY5XG_js.msgsRequestFromJSON; }
|
|
2564
4684
|
});
|
|
2565
4685
|
Object.defineProperty(exports, "msgsRequestToJSON", {
|
|
2566
4686
|
enumerable: true,
|
|
2567
|
-
get: function () { return
|
|
4687
|
+
get: function () { return chunkIEAKY5XG_js.msgsRequestToJSON; }
|
|
2568
4688
|
});
|
|
2569
4689
|
Object.defineProperty(exports, "multiChainMsgFromJSON", {
|
|
2570
4690
|
enumerable: true,
|
|
2571
|
-
get: function () { return
|
|
4691
|
+
get: function () { return chunkIEAKY5XG_js.multiChainMsgFromJSON; }
|
|
2572
4692
|
});
|
|
2573
4693
|
Object.defineProperty(exports, "multiChainMsgToJSON", {
|
|
2574
4694
|
enumerable: true,
|
|
2575
|
-
get: function () { return
|
|
4695
|
+
get: function () { return chunkIEAKY5XG_js.multiChainMsgToJSON; }
|
|
2576
4696
|
});
|
|
2577
4697
|
Object.defineProperty(exports, "nextBlockingTransferFromJSON", {
|
|
2578
4698
|
enumerable: true,
|
|
2579
|
-
get: function () { return
|
|
4699
|
+
get: function () { return chunkIEAKY5XG_js.nextBlockingTransferFromJSON; }
|
|
2580
4700
|
});
|
|
2581
4701
|
Object.defineProperty(exports, "nextBlockingTransferToJSON", {
|
|
2582
4702
|
enumerable: true,
|
|
2583
|
-
get: function () { return
|
|
4703
|
+
get: function () { return chunkIEAKY5XG_js.nextBlockingTransferToJSON; }
|
|
2584
4704
|
});
|
|
2585
4705
|
Object.defineProperty(exports, "opInitTransferFromJSON", {
|
|
2586
4706
|
enumerable: true,
|
|
2587
|
-
get: function () { return
|
|
4707
|
+
get: function () { return chunkIEAKY5XG_js.opInitTransferFromJSON; }
|
|
2588
4708
|
});
|
|
2589
4709
|
Object.defineProperty(exports, "opInitTransferInfoFromJSON", {
|
|
2590
4710
|
enumerable: true,
|
|
2591
|
-
get: function () { return
|
|
4711
|
+
get: function () { return chunkIEAKY5XG_js.opInitTransferInfoFromJSON; }
|
|
2592
4712
|
});
|
|
2593
4713
|
Object.defineProperty(exports, "opInitTransferInfoToJSON", {
|
|
2594
4714
|
enumerable: true,
|
|
2595
|
-
get: function () { return
|
|
4715
|
+
get: function () { return chunkIEAKY5XG_js.opInitTransferInfoToJSON; }
|
|
2596
4716
|
});
|
|
2597
4717
|
Object.defineProperty(exports, "opInitTransferToJSON", {
|
|
2598
4718
|
enumerable: true,
|
|
2599
|
-
get: function () { return
|
|
4719
|
+
get: function () { return chunkIEAKY5XG_js.opInitTransferToJSON; }
|
|
2600
4720
|
});
|
|
2601
4721
|
Object.defineProperty(exports, "opInitTransferTransactionsFromJSON", {
|
|
2602
4722
|
enumerable: true,
|
|
2603
|
-
get: function () { return
|
|
4723
|
+
get: function () { return chunkIEAKY5XG_js.opInitTransferTransactionsFromJSON; }
|
|
2604
4724
|
});
|
|
2605
4725
|
Object.defineProperty(exports, "opInitTransferTransactionsToJSON", {
|
|
2606
4726
|
enumerable: true,
|
|
2607
|
-
get: function () { return
|
|
4727
|
+
get: function () { return chunkIEAKY5XG_js.opInitTransferTransactionsToJSON; }
|
|
2608
4728
|
});
|
|
2609
4729
|
Object.defineProperty(exports, "operationFromJSON", {
|
|
2610
4730
|
enumerable: true,
|
|
2611
|
-
get: function () { return
|
|
4731
|
+
get: function () { return chunkIEAKY5XG_js.operationFromJSON; }
|
|
2612
4732
|
});
|
|
2613
4733
|
Object.defineProperty(exports, "operationToJSON", {
|
|
2614
4734
|
enumerable: true,
|
|
2615
|
-
get: function () { return
|
|
4735
|
+
get: function () { return chunkIEAKY5XG_js.operationToJSON; }
|
|
2616
4736
|
});
|
|
2617
4737
|
Object.defineProperty(exports, "originAssetsRequestFromJSON", {
|
|
2618
4738
|
enumerable: true,
|
|
2619
|
-
get: function () { return
|
|
4739
|
+
get: function () { return chunkIEAKY5XG_js.originAssetsRequestFromJSON; }
|
|
2620
4740
|
});
|
|
2621
4741
|
Object.defineProperty(exports, "originAssetsRequestToJSON", {
|
|
2622
4742
|
enumerable: true,
|
|
2623
|
-
get: function () { return
|
|
4743
|
+
get: function () { return chunkIEAKY5XG_js.originAssetsRequestToJSON; }
|
|
2624
4744
|
});
|
|
2625
4745
|
Object.defineProperty(exports, "originAssetsResponseFromJSON", {
|
|
2626
4746
|
enumerable: true,
|
|
2627
|
-
get: function () { return
|
|
4747
|
+
get: function () { return chunkIEAKY5XG_js.originAssetsResponseFromJSON; }
|
|
2628
4748
|
});
|
|
2629
4749
|
Object.defineProperty(exports, "originAssetsResponseToJSON", {
|
|
2630
4750
|
enumerable: true,
|
|
2631
|
-
get: function () { return
|
|
4751
|
+
get: function () { return chunkIEAKY5XG_js.originAssetsResponseToJSON; }
|
|
2632
4752
|
});
|
|
2633
4753
|
Object.defineProperty(exports, "packetFromJSON", {
|
|
2634
4754
|
enumerable: true,
|
|
2635
|
-
get: function () { return
|
|
4755
|
+
get: function () { return chunkIEAKY5XG_js.packetFromJSON; }
|
|
2636
4756
|
});
|
|
2637
4757
|
Object.defineProperty(exports, "packetToJSON", {
|
|
2638
4758
|
enumerable: true,
|
|
2639
|
-
get: function () { return
|
|
4759
|
+
get: function () { return chunkIEAKY5XG_js.packetToJSON; }
|
|
2640
4760
|
});
|
|
2641
4761
|
Object.defineProperty(exports, "postHandlerFromJSON", {
|
|
2642
4762
|
enumerable: true,
|
|
2643
|
-
get: function () { return
|
|
4763
|
+
get: function () { return chunkIEAKY5XG_js.postHandlerFromJSON; }
|
|
2644
4764
|
});
|
|
2645
4765
|
Object.defineProperty(exports, "postHandlerToJSON", {
|
|
2646
4766
|
enumerable: true,
|
|
2647
|
-
get: function () { return
|
|
4767
|
+
get: function () { return chunkIEAKY5XG_js.postHandlerToJSON; }
|
|
2648
4768
|
});
|
|
2649
4769
|
Object.defineProperty(exports, "recommendAssetsRequestFromJSON", {
|
|
2650
4770
|
enumerable: true,
|
|
2651
|
-
get: function () { return
|
|
4771
|
+
get: function () { return chunkIEAKY5XG_js.recommendAssetsRequestFromJSON; }
|
|
2652
4772
|
});
|
|
2653
4773
|
Object.defineProperty(exports, "recommendAssetsRequestToJSON", {
|
|
2654
4774
|
enumerable: true,
|
|
2655
|
-
get: function () { return
|
|
4775
|
+
get: function () { return chunkIEAKY5XG_js.recommendAssetsRequestToJSON; }
|
|
2656
4776
|
});
|
|
2657
4777
|
Object.defineProperty(exports, "recommendAssetsResponseFromJSON", {
|
|
2658
4778
|
enumerable: true,
|
|
2659
|
-
get: function () { return
|
|
4779
|
+
get: function () { return chunkIEAKY5XG_js.recommendAssetsResponseFromJSON; }
|
|
2660
4780
|
});
|
|
2661
4781
|
Object.defineProperty(exports, "recommendAssetsResponseToJSON", {
|
|
2662
4782
|
enumerable: true,
|
|
2663
|
-
get: function () { return
|
|
4783
|
+
get: function () { return chunkIEAKY5XG_js.recommendAssetsResponseToJSON; }
|
|
2664
4784
|
});
|
|
2665
4785
|
Object.defineProperty(exports, "recommendationEntryFromJSON", {
|
|
2666
4786
|
enumerable: true,
|
|
2667
|
-
get: function () { return
|
|
4787
|
+
get: function () { return chunkIEAKY5XG_js.recommendationEntryFromJSON; }
|
|
2668
4788
|
});
|
|
2669
4789
|
Object.defineProperty(exports, "recommendationEntryToJSON", {
|
|
2670
4790
|
enumerable: true,
|
|
2671
|
-
get: function () { return
|
|
4791
|
+
get: function () { return chunkIEAKY5XG_js.recommendationEntryToJSON; }
|
|
2672
4792
|
});
|
|
2673
4793
|
Object.defineProperty(exports, "routeRequestFromJSON", {
|
|
2674
4794
|
enumerable: true,
|
|
2675
|
-
get: function () { return
|
|
4795
|
+
get: function () { return chunkIEAKY5XG_js.routeRequestFromJSON; }
|
|
2676
4796
|
});
|
|
2677
4797
|
Object.defineProperty(exports, "routeRequestToJSON", {
|
|
2678
4798
|
enumerable: true,
|
|
2679
|
-
get: function () { return
|
|
4799
|
+
get: function () { return chunkIEAKY5XG_js.routeRequestToJSON; }
|
|
2680
4800
|
});
|
|
2681
4801
|
Object.defineProperty(exports, "routeResponseFromJSON", {
|
|
2682
4802
|
enumerable: true,
|
|
2683
|
-
get: function () { return
|
|
4803
|
+
get: function () { return chunkIEAKY5XG_js.routeResponseFromJSON; }
|
|
2684
4804
|
});
|
|
2685
4805
|
Object.defineProperty(exports, "routeResponseToJSON", {
|
|
2686
4806
|
enumerable: true,
|
|
2687
|
-
get: function () { return
|
|
4807
|
+
get: function () { return chunkIEAKY5XG_js.routeResponseToJSON; }
|
|
2688
4808
|
});
|
|
2689
4809
|
Object.defineProperty(exports, "sendTokenTransactionsFromJSON", {
|
|
2690
4810
|
enumerable: true,
|
|
2691
|
-
get: function () { return
|
|
4811
|
+
get: function () { return chunkIEAKY5XG_js.sendTokenTransactionsFromJSON; }
|
|
2692
4812
|
});
|
|
2693
4813
|
Object.defineProperty(exports, "sendTokenTransactionsToJSON", {
|
|
2694
4814
|
enumerable: true,
|
|
2695
|
-
get: function () { return
|
|
4815
|
+
get: function () { return chunkIEAKY5XG_js.sendTokenTransactionsToJSON; }
|
|
2696
4816
|
});
|
|
2697
4817
|
Object.defineProperty(exports, "smartSwapExactCoinInFromJSON", {
|
|
2698
4818
|
enumerable: true,
|
|
2699
|
-
get: function () { return
|
|
4819
|
+
get: function () { return chunkIEAKY5XG_js.smartSwapExactCoinInFromJSON; }
|
|
2700
4820
|
});
|
|
2701
4821
|
Object.defineProperty(exports, "smartSwapExactCoinInToJSON", {
|
|
2702
4822
|
enumerable: true,
|
|
2703
|
-
get: function () { return
|
|
4823
|
+
get: function () { return chunkIEAKY5XG_js.smartSwapExactCoinInToJSON; }
|
|
2704
4824
|
});
|
|
2705
4825
|
Object.defineProperty(exports, "smartSwapOptionsFromJSON", {
|
|
2706
4826
|
enumerable: true,
|
|
2707
|
-
get: function () { return
|
|
4827
|
+
get: function () { return chunkIEAKY5XG_js.smartSwapOptionsFromJSON; }
|
|
2708
4828
|
});
|
|
2709
4829
|
Object.defineProperty(exports, "smartSwapOptionsToJSON", {
|
|
2710
4830
|
enumerable: true,
|
|
2711
|
-
get: function () { return
|
|
4831
|
+
get: function () { return chunkIEAKY5XG_js.smartSwapOptionsToJSON; }
|
|
2712
4832
|
});
|
|
2713
4833
|
Object.defineProperty(exports, "submitTxRequestFromJSON", {
|
|
2714
4834
|
enumerable: true,
|
|
2715
|
-
get: function () { return
|
|
4835
|
+
get: function () { return chunkIEAKY5XG_js.submitTxRequestFromJSON; }
|
|
2716
4836
|
});
|
|
2717
4837
|
Object.defineProperty(exports, "submitTxRequestToJSON", {
|
|
2718
4838
|
enumerable: true,
|
|
2719
|
-
get: function () { return
|
|
4839
|
+
get: function () { return chunkIEAKY5XG_js.submitTxRequestToJSON; }
|
|
2720
4840
|
});
|
|
2721
4841
|
Object.defineProperty(exports, "submitTxResponseFromJSON", {
|
|
2722
4842
|
enumerable: true,
|
|
2723
|
-
get: function () { return
|
|
4843
|
+
get: function () { return chunkIEAKY5XG_js.submitTxResponseFromJSON; }
|
|
2724
4844
|
});
|
|
2725
4845
|
Object.defineProperty(exports, "submitTxResponseToJSON", {
|
|
2726
4846
|
enumerable: true,
|
|
2727
|
-
get: function () { return
|
|
4847
|
+
get: function () { return chunkIEAKY5XG_js.submitTxResponseToJSON; }
|
|
2728
4848
|
});
|
|
2729
4849
|
Object.defineProperty(exports, "svmTxFromJSON", {
|
|
2730
4850
|
enumerable: true,
|
|
2731
|
-
get: function () { return
|
|
4851
|
+
get: function () { return chunkIEAKY5XG_js.svmTxFromJSON; }
|
|
2732
4852
|
});
|
|
2733
4853
|
Object.defineProperty(exports, "svmTxToJSON", {
|
|
2734
4854
|
enumerable: true,
|
|
2735
|
-
get: function () { return
|
|
4855
|
+
get: function () { return chunkIEAKY5XG_js.svmTxToJSON; }
|
|
2736
4856
|
});
|
|
2737
4857
|
Object.defineProperty(exports, "swapExactCoinInFromJSON", {
|
|
2738
4858
|
enumerable: true,
|
|
2739
|
-
get: function () { return
|
|
4859
|
+
get: function () { return chunkIEAKY5XG_js.swapExactCoinInFromJSON; }
|
|
2740
4860
|
});
|
|
2741
4861
|
Object.defineProperty(exports, "swapExactCoinInToJSON", {
|
|
2742
4862
|
enumerable: true,
|
|
2743
|
-
get: function () { return
|
|
4863
|
+
get: function () { return chunkIEAKY5XG_js.swapExactCoinInToJSON; }
|
|
2744
4864
|
});
|
|
2745
4865
|
Object.defineProperty(exports, "swapExactCoinOutFromJSON", {
|
|
2746
4866
|
enumerable: true,
|
|
2747
|
-
get: function () { return
|
|
4867
|
+
get: function () { return chunkIEAKY5XG_js.swapExactCoinOutFromJSON; }
|
|
2748
4868
|
});
|
|
2749
4869
|
Object.defineProperty(exports, "swapExactCoinOutToJSON", {
|
|
2750
4870
|
enumerable: true,
|
|
2751
|
-
get: function () { return
|
|
4871
|
+
get: function () { return chunkIEAKY5XG_js.swapExactCoinOutToJSON; }
|
|
2752
4872
|
});
|
|
2753
4873
|
Object.defineProperty(exports, "swapFromJSON", {
|
|
2754
4874
|
enumerable: true,
|
|
2755
|
-
get: function () { return
|
|
4875
|
+
get: function () { return chunkIEAKY5XG_js.swapFromJSON; }
|
|
2756
4876
|
});
|
|
2757
4877
|
Object.defineProperty(exports, "swapOperationFromJSON", {
|
|
2758
4878
|
enumerable: true,
|
|
2759
|
-
get: function () { return
|
|
4879
|
+
get: function () { return chunkIEAKY5XG_js.swapOperationFromJSON; }
|
|
2760
4880
|
});
|
|
2761
4881
|
Object.defineProperty(exports, "swapOperationToJSON", {
|
|
2762
4882
|
enumerable: true,
|
|
2763
|
-
get: function () { return
|
|
4883
|
+
get: function () { return chunkIEAKY5XG_js.swapOperationToJSON; }
|
|
2764
4884
|
});
|
|
2765
4885
|
Object.defineProperty(exports, "swapRouteFromJSON", {
|
|
2766
4886
|
enumerable: true,
|
|
2767
|
-
get: function () { return
|
|
4887
|
+
get: function () { return chunkIEAKY5XG_js.swapRouteFromJSON; }
|
|
2768
4888
|
});
|
|
2769
4889
|
Object.defineProperty(exports, "swapRouteToJSON", {
|
|
2770
4890
|
enumerable: true,
|
|
2771
|
-
get: function () { return
|
|
4891
|
+
get: function () { return chunkIEAKY5XG_js.swapRouteToJSON; }
|
|
2772
4892
|
});
|
|
2773
4893
|
Object.defineProperty(exports, "swapToJSON", {
|
|
2774
4894
|
enumerable: true,
|
|
2775
|
-
get: function () { return
|
|
4895
|
+
get: function () { return chunkIEAKY5XG_js.swapToJSON; }
|
|
2776
4896
|
});
|
|
2777
4897
|
Object.defineProperty(exports, "swapVenueFromJSON", {
|
|
2778
4898
|
enumerable: true,
|
|
2779
|
-
get: function () { return
|
|
4899
|
+
get: function () { return chunkIEAKY5XG_js.swapVenueFromJSON; }
|
|
2780
4900
|
});
|
|
2781
4901
|
Object.defineProperty(exports, "swapVenueRequestFromJSON", {
|
|
2782
4902
|
enumerable: true,
|
|
2783
|
-
get: function () { return
|
|
4903
|
+
get: function () { return chunkIEAKY5XG_js.swapVenueRequestFromJSON; }
|
|
2784
4904
|
});
|
|
2785
4905
|
Object.defineProperty(exports, "swapVenueRequestToJSON", {
|
|
2786
4906
|
enumerable: true,
|
|
2787
|
-
get: function () { return
|
|
4907
|
+
get: function () { return chunkIEAKY5XG_js.swapVenueRequestToJSON; }
|
|
2788
4908
|
});
|
|
2789
4909
|
Object.defineProperty(exports, "swapVenueToJSON", {
|
|
2790
4910
|
enumerable: true,
|
|
2791
|
-
get: function () { return
|
|
4911
|
+
get: function () { return chunkIEAKY5XG_js.swapVenueToJSON; }
|
|
2792
4912
|
});
|
|
2793
4913
|
Object.defineProperty(exports, "trackTxRequestFromJSON", {
|
|
2794
4914
|
enumerable: true,
|
|
2795
|
-
get: function () { return
|
|
4915
|
+
get: function () { return chunkIEAKY5XG_js.trackTxRequestFromJSON; }
|
|
2796
4916
|
});
|
|
2797
4917
|
Object.defineProperty(exports, "trackTxRequestToJSON", {
|
|
2798
4918
|
enumerable: true,
|
|
2799
|
-
get: function () { return
|
|
4919
|
+
get: function () { return chunkIEAKY5XG_js.trackTxRequestToJSON; }
|
|
2800
4920
|
});
|
|
2801
4921
|
Object.defineProperty(exports, "trackTxResponseFromJSON", {
|
|
2802
4922
|
enumerable: true,
|
|
2803
|
-
get: function () { return
|
|
4923
|
+
get: function () { return chunkIEAKY5XG_js.trackTxResponseFromJSON; }
|
|
2804
4924
|
});
|
|
2805
4925
|
Object.defineProperty(exports, "trackTxResponseToJSON", {
|
|
2806
4926
|
enumerable: true,
|
|
2807
|
-
get: function () { return
|
|
4927
|
+
get: function () { return chunkIEAKY5XG_js.trackTxResponseToJSON; }
|
|
2808
4928
|
});
|
|
2809
4929
|
Object.defineProperty(exports, "transferAssetReleaseFromJSON", {
|
|
2810
4930
|
enumerable: true,
|
|
2811
|
-
get: function () { return
|
|
4931
|
+
get: function () { return chunkIEAKY5XG_js.transferAssetReleaseFromJSON; }
|
|
2812
4932
|
});
|
|
2813
4933
|
Object.defineProperty(exports, "transferAssetReleaseToJSON", {
|
|
2814
4934
|
enumerable: true,
|
|
2815
|
-
get: function () { return
|
|
4935
|
+
get: function () { return chunkIEAKY5XG_js.transferAssetReleaseToJSON; }
|
|
2816
4936
|
});
|
|
2817
4937
|
Object.defineProperty(exports, "transferEventFromJSON", {
|
|
2818
4938
|
enumerable: true,
|
|
2819
|
-
get: function () { return
|
|
4939
|
+
get: function () { return chunkIEAKY5XG_js.transferEventFromJSON; }
|
|
2820
4940
|
});
|
|
2821
4941
|
Object.defineProperty(exports, "transferEventToJSON", {
|
|
2822
4942
|
enumerable: true,
|
|
2823
|
-
get: function () { return
|
|
4943
|
+
get: function () { return chunkIEAKY5XG_js.transferEventToJSON; }
|
|
2824
4944
|
});
|
|
2825
4945
|
Object.defineProperty(exports, "transferFromJSON", {
|
|
2826
4946
|
enumerable: true,
|
|
2827
|
-
get: function () { return
|
|
4947
|
+
get: function () { return chunkIEAKY5XG_js.transferFromJSON; }
|
|
2828
4948
|
});
|
|
2829
4949
|
Object.defineProperty(exports, "transferInfoFromJSON", {
|
|
2830
4950
|
enumerable: true,
|
|
2831
|
-
get: function () { return
|
|
4951
|
+
get: function () { return chunkIEAKY5XG_js.transferInfoFromJSON; }
|
|
2832
4952
|
});
|
|
2833
4953
|
Object.defineProperty(exports, "transferInfoToJSON", {
|
|
2834
4954
|
enumerable: true,
|
|
2835
|
-
get: function () { return
|
|
4955
|
+
get: function () { return chunkIEAKY5XG_js.transferInfoToJSON; }
|
|
2836
4956
|
});
|
|
2837
4957
|
Object.defineProperty(exports, "transferStatusFromJSON", {
|
|
2838
4958
|
enumerable: true,
|
|
2839
|
-
get: function () { return
|
|
4959
|
+
get: function () { return chunkIEAKY5XG_js.transferStatusFromJSON; }
|
|
2840
4960
|
});
|
|
2841
4961
|
Object.defineProperty(exports, "transferStatusToJSON", {
|
|
2842
4962
|
enumerable: true,
|
|
2843
|
-
get: function () { return
|
|
4963
|
+
get: function () { return chunkIEAKY5XG_js.transferStatusToJSON; }
|
|
2844
4964
|
});
|
|
2845
4965
|
Object.defineProperty(exports, "transferToJSON", {
|
|
2846
4966
|
enumerable: true,
|
|
2847
|
-
get: function () { return
|
|
4967
|
+
get: function () { return chunkIEAKY5XG_js.transferToJSON; }
|
|
2848
4968
|
});
|
|
2849
4969
|
Object.defineProperty(exports, "txFromJSON", {
|
|
2850
4970
|
enumerable: true,
|
|
2851
|
-
get: function () { return
|
|
4971
|
+
get: function () { return chunkIEAKY5XG_js.txFromJSON; }
|
|
2852
4972
|
});
|
|
2853
4973
|
Object.defineProperty(exports, "txStatusRequestFromJSON", {
|
|
2854
4974
|
enumerable: true,
|
|
2855
|
-
get: function () { return
|
|
4975
|
+
get: function () { return chunkIEAKY5XG_js.txStatusRequestFromJSON; }
|
|
2856
4976
|
});
|
|
2857
4977
|
Object.defineProperty(exports, "txStatusRequestToJSON", {
|
|
2858
4978
|
enumerable: true,
|
|
2859
|
-
get: function () { return
|
|
4979
|
+
get: function () { return chunkIEAKY5XG_js.txStatusRequestToJSON; }
|
|
2860
4980
|
});
|
|
2861
4981
|
Object.defineProperty(exports, "txStatusResponseFromJSON", {
|
|
2862
4982
|
enumerable: true,
|
|
2863
|
-
get: function () { return
|
|
4983
|
+
get: function () { return chunkIEAKY5XG_js.txStatusResponseFromJSON; }
|
|
2864
4984
|
});
|
|
2865
4985
|
Object.defineProperty(exports, "txStatusResponseToJSON", {
|
|
2866
4986
|
enumerable: true,
|
|
2867
|
-
get: function () { return
|
|
4987
|
+
get: function () { return chunkIEAKY5XG_js.txStatusResponseToJSON; }
|
|
2868
4988
|
});
|
|
2869
4989
|
Object.defineProperty(exports, "txToJSON", {
|
|
2870
4990
|
enumerable: true,
|
|
2871
|
-
get: function () { return
|
|
4991
|
+
get: function () { return chunkIEAKY5XG_js.txToJSON; }
|
|
2872
4992
|
});
|
|
2873
4993
|
exports.SKIP_API_URL = SKIP_API_URL;
|
|
2874
4994
|
exports.SkipRouter = SkipRouter;
|