@skip-go/client 0.10.0 → 0.10.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-5I2266VA.js → chunk-F6SLLVEL.js} +28 -8
- package/dist/index.d.ts +2 -2
- package/dist/index.js +197 -197
- package/dist/{shared-BXdO_XhQ.d.ts → shared-IGtrUCgc.d.ts} +21 -7
- package/dist/transactions.d.ts +1 -1
- package/dist/types.d.ts +2 -2
- package/dist/types.js +171 -171
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
var chunkJRIEAGIQ_js = require('./chunk-JRIEAGIQ.js');
|
|
4
4
|
var chunkTUX4SN3U_js = require('./chunk-TUX4SN3U.js');
|
|
5
|
-
var
|
|
5
|
+
var chunkF6SLLVEL_js = require('./chunk-F6SLLVEL.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');
|
|
@@ -3041,11 +3041,11 @@ var SkipClient = class {
|
|
|
3041
3041
|
return chunk6FNC3XMI_js.__async(this, arguments, function* (options = {}) {
|
|
3042
3042
|
const response = yield this.requestClient.get(
|
|
3043
3043
|
"/v2/fungible/assets",
|
|
3044
|
-
|
|
3044
|
+
chunkF6SLLVEL_js.assetsRequestToJSON(chunk6FNC3XMI_js.__spreadValues({}, options))
|
|
3045
3045
|
);
|
|
3046
3046
|
return Object.entries(response.chain_to_assets_map).reduce(
|
|
3047
3047
|
(acc, [chainID, { assets }]) => {
|
|
3048
|
-
acc[chainID] = assets.map((asset) =>
|
|
3048
|
+
acc[chainID] = assets.map((asset) => chunkF6SLLVEL_js.assetFromJSON(asset));
|
|
3049
3049
|
return acc;
|
|
3050
3050
|
},
|
|
3051
3051
|
{}
|
|
@@ -3056,11 +3056,11 @@ var SkipClient = class {
|
|
|
3056
3056
|
return chunk6FNC3XMI_js.__async(this, null, function* () {
|
|
3057
3057
|
const response = yield this.requestClient.post(
|
|
3058
3058
|
"/v2/fungible/assets_from_source",
|
|
3059
|
-
|
|
3059
|
+
chunkF6SLLVEL_js.assetsFromSourceRequestToJSON(chunk6FNC3XMI_js.__spreadValues({}, options))
|
|
3060
3060
|
);
|
|
3061
3061
|
return Object.entries(response.dest_assets).reduce(
|
|
3062
3062
|
(acc, [chainID, { assets }]) => {
|
|
3063
|
-
acc[chainID] = assets.map((asset) =>
|
|
3063
|
+
acc[chainID] = assets.map((asset) => chunkF6SLLVEL_js.assetFromJSON(asset));
|
|
3064
3064
|
return acc;
|
|
3065
3065
|
},
|
|
3066
3066
|
{}
|
|
@@ -3071,9 +3071,9 @@ var SkipClient = class {
|
|
|
3071
3071
|
return chunk6FNC3XMI_js.__async(this, null, function* () {
|
|
3072
3072
|
const response = yield this.requestClient.post(
|
|
3073
3073
|
"/v2/fungible/assets_between_chains",
|
|
3074
|
-
|
|
3074
|
+
chunkF6SLLVEL_js.assetsBetweenChainsRequestToJSON(options)
|
|
3075
3075
|
);
|
|
3076
|
-
return
|
|
3076
|
+
return chunkF6SLLVEL_js.assetsBetweenChainsResponseFromJSON(response).assetsBetweenChains;
|
|
3077
3077
|
});
|
|
3078
3078
|
}
|
|
3079
3079
|
bridges() {
|
|
@@ -3081,7 +3081,7 @@ var SkipClient = class {
|
|
|
3081
3081
|
const response = yield this.requestClient.get(
|
|
3082
3082
|
"/v2/info/bridges"
|
|
3083
3083
|
);
|
|
3084
|
-
return
|
|
3084
|
+
return chunkF6SLLVEL_js.bridgesResponseFromJSON(response).bridges;
|
|
3085
3085
|
});
|
|
3086
3086
|
}
|
|
3087
3087
|
chains() {
|
|
@@ -3097,16 +3097,16 @@ var SkipClient = class {
|
|
|
3097
3097
|
only_testnets: onlyTestnets,
|
|
3098
3098
|
chain_ids: chainIDs
|
|
3099
3099
|
});
|
|
3100
|
-
return response.chains.map((chain) =>
|
|
3100
|
+
return response.chains.map((chain) => chunkF6SLLVEL_js.chainFromJSON(chain));
|
|
3101
3101
|
});
|
|
3102
3102
|
}
|
|
3103
3103
|
balances(request) {
|
|
3104
3104
|
return chunk6FNC3XMI_js.__async(this, null, function* () {
|
|
3105
3105
|
const response = yield this.requestClient.post(
|
|
3106
3106
|
"/v2/info/balances",
|
|
3107
|
-
|
|
3107
|
+
chunkF6SLLVEL_js.balanceRequestToJSON(request)
|
|
3108
3108
|
);
|
|
3109
|
-
return
|
|
3109
|
+
return chunkF6SLLVEL_js.balanceResponseFromJSON(response);
|
|
3110
3110
|
});
|
|
3111
3111
|
}
|
|
3112
3112
|
executeRoute(options) {
|
|
@@ -3833,51 +3833,51 @@ var SkipClient = class {
|
|
|
3833
3833
|
}
|
|
3834
3834
|
messages(options) {
|
|
3835
3835
|
return chunk6FNC3XMI_js.__async(this, null, function* () {
|
|
3836
|
-
const response = yield this.requestClient.post("/v2/fungible/msgs", chunk6FNC3XMI_js.__spreadProps(chunk6FNC3XMI_js.__spreadValues({},
|
|
3836
|
+
const response = yield this.requestClient.post("/v2/fungible/msgs", chunk6FNC3XMI_js.__spreadProps(chunk6FNC3XMI_js.__spreadValues({}, chunkF6SLLVEL_js.msgsRequestToJSON(options)), {
|
|
3837
3837
|
slippage_tolerance_percent: options.slippageTolerancePercent || "0"
|
|
3838
3838
|
}));
|
|
3839
|
-
return
|
|
3839
|
+
return chunkF6SLLVEL_js.messageResponseFromJSON(response);
|
|
3840
3840
|
});
|
|
3841
3841
|
}
|
|
3842
3842
|
route(options) {
|
|
3843
3843
|
return chunk6FNC3XMI_js.__async(this, null, function* () {
|
|
3844
|
-
const response = yield this.requestClient.post("/v2/fungible/route", chunk6FNC3XMI_js.__spreadProps(chunk6FNC3XMI_js.__spreadValues({},
|
|
3844
|
+
const response = yield this.requestClient.post("/v2/fungible/route", chunk6FNC3XMI_js.__spreadProps(chunk6FNC3XMI_js.__spreadValues({}, chunkF6SLLVEL_js.routeRequestToJSON(options)), {
|
|
3845
3845
|
cumulative_affiliate_fee_bps: this.cumulativeAffiliateFeeBPS
|
|
3846
3846
|
}));
|
|
3847
|
-
return
|
|
3847
|
+
return chunkF6SLLVEL_js.routeResponseFromJSON(response);
|
|
3848
3848
|
});
|
|
3849
3849
|
}
|
|
3850
3850
|
msgsDirect(options) {
|
|
3851
3851
|
return chunk6FNC3XMI_js.__async(this, null, function* () {
|
|
3852
|
-
const response = yield this.requestClient.post("/v2/fungible/msgs_direct", chunk6FNC3XMI_js.__spreadValues({},
|
|
3852
|
+
const response = yield this.requestClient.post("/v2/fungible/msgs_direct", chunk6FNC3XMI_js.__spreadValues({}, chunkF6SLLVEL_js.msgsDirectRequestToJSON(options)));
|
|
3853
3853
|
return {
|
|
3854
|
-
msgs: response.msgs.map((msg) =>
|
|
3855
|
-
txs: response.txs.map((tx) =>
|
|
3856
|
-
route:
|
|
3854
|
+
msgs: response.msgs.map((msg) => chunkF6SLLVEL_js.msgFromJSON(msg)),
|
|
3855
|
+
txs: response.txs.map((tx) => chunkF6SLLVEL_js.txFromJSON(tx)),
|
|
3856
|
+
route: chunkF6SLLVEL_js.routeResponseFromJSON(response.route)
|
|
3857
3857
|
};
|
|
3858
3858
|
});
|
|
3859
3859
|
}
|
|
3860
3860
|
recommendAssets(request) {
|
|
3861
3861
|
return chunk6FNC3XMI_js.__async(this, null, function* () {
|
|
3862
|
-
const options =
|
|
3862
|
+
const options = chunkF6SLLVEL_js.recommendAssetsRequestToJSON({
|
|
3863
3863
|
requests: Array.isArray(request) ? request : [request]
|
|
3864
3864
|
});
|
|
3865
3865
|
const response = yield this.requestClient.post(
|
|
3866
3866
|
"/v2/fungible/recommend_assets",
|
|
3867
3867
|
options
|
|
3868
3868
|
);
|
|
3869
|
-
return
|
|
3869
|
+
return chunkF6SLLVEL_js.recommendAssetsResponseFromJSON(response).recommendationEntries;
|
|
3870
3870
|
});
|
|
3871
3871
|
}
|
|
3872
3872
|
ibcOriginAssets(assets) {
|
|
3873
3873
|
return chunk6FNC3XMI_js.__async(this, null, function* () {
|
|
3874
3874
|
const response = yield this.requestClient.post(
|
|
3875
3875
|
"/v2/fungible/ibc_origin_assets",
|
|
3876
|
-
|
|
3876
|
+
chunkF6SLLVEL_js.originAssetsRequestToJSON({
|
|
3877
3877
|
assets
|
|
3878
3878
|
})
|
|
3879
3879
|
);
|
|
3880
|
-
return
|
|
3880
|
+
return chunkF6SLLVEL_js.originAssetsResponseFromJSON(response).originAssets;
|
|
3881
3881
|
});
|
|
3882
3882
|
}
|
|
3883
3883
|
submitTransaction(_0) {
|
|
@@ -3889,7 +3889,7 @@ var SkipClient = class {
|
|
|
3889
3889
|
chain_id: chainID,
|
|
3890
3890
|
tx
|
|
3891
3891
|
});
|
|
3892
|
-
return
|
|
3892
|
+
return chunkF6SLLVEL_js.submitTxResponseFromJSON(response);
|
|
3893
3893
|
});
|
|
3894
3894
|
}
|
|
3895
3895
|
trackTransaction(_0) {
|
|
@@ -3910,7 +3910,7 @@ var SkipClient = class {
|
|
|
3910
3910
|
chain_id: chainID,
|
|
3911
3911
|
tx_hash: txHash
|
|
3912
3912
|
});
|
|
3913
|
-
return
|
|
3913
|
+
return chunkF6SLLVEL_js.trackTxResponseFromJSON(response);
|
|
3914
3914
|
} catch (error) {
|
|
3915
3915
|
lastError = error;
|
|
3916
3916
|
retries++;
|
|
@@ -3938,7 +3938,7 @@ var SkipClient = class {
|
|
|
3938
3938
|
chain_id: chainID,
|
|
3939
3939
|
tx_hash: txHash
|
|
3940
3940
|
});
|
|
3941
|
-
return
|
|
3941
|
+
return chunkF6SLLVEL_js.txStatusResponseFromJSON(response);
|
|
3942
3942
|
} catch (error) {
|
|
3943
3943
|
lastError = error;
|
|
3944
3944
|
retries++;
|
|
@@ -3983,7 +3983,7 @@ var SkipClient = class {
|
|
|
3983
3983
|
const response = yield this.requestClient.get("/v2/fungible/venues", {
|
|
3984
3984
|
only_testnets: onlyTestnets
|
|
3985
3985
|
});
|
|
3986
|
-
return response.venues.map((venue) =>
|
|
3986
|
+
return response.venues.map((venue) => chunkF6SLLVEL_js.swapVenueFromJSON(venue));
|
|
3987
3987
|
});
|
|
3988
3988
|
}
|
|
3989
3989
|
getCosmsosGasAmountForMessage(client, signerAddress, chainID, cosmosMessages) {
|
|
@@ -4526,683 +4526,683 @@ Object.defineProperty(exports, "getEncodeObjectFromCosmosMessageInjective", {
|
|
|
4526
4526
|
});
|
|
4527
4527
|
Object.defineProperty(exports, "affiliateFromJSON", {
|
|
4528
4528
|
enumerable: true,
|
|
4529
|
-
get: function () { return
|
|
4529
|
+
get: function () { return chunkF6SLLVEL_js.affiliateFromJSON; }
|
|
4530
4530
|
});
|
|
4531
4531
|
Object.defineProperty(exports, "affiliateToJSON", {
|
|
4532
4532
|
enumerable: true,
|
|
4533
|
-
get: function () { return
|
|
4533
|
+
get: function () { return chunkF6SLLVEL_js.affiliateToJSON; }
|
|
4534
4534
|
});
|
|
4535
4535
|
Object.defineProperty(exports, "assetBetweenChainsFromJSON", {
|
|
4536
4536
|
enumerable: true,
|
|
4537
|
-
get: function () { return
|
|
4537
|
+
get: function () { return chunkF6SLLVEL_js.assetBetweenChainsFromJSON; }
|
|
4538
4538
|
});
|
|
4539
4539
|
Object.defineProperty(exports, "assetBetweenChainsToJSON", {
|
|
4540
4540
|
enumerable: true,
|
|
4541
|
-
get: function () { return
|
|
4541
|
+
get: function () { return chunkF6SLLVEL_js.assetBetweenChainsToJSON; }
|
|
4542
4542
|
});
|
|
4543
4543
|
Object.defineProperty(exports, "assetFromJSON", {
|
|
4544
4544
|
enumerable: true,
|
|
4545
|
-
get: function () { return
|
|
4545
|
+
get: function () { return chunkF6SLLVEL_js.assetFromJSON; }
|
|
4546
4546
|
});
|
|
4547
4547
|
Object.defineProperty(exports, "assetOrErrorFromJSON", {
|
|
4548
4548
|
enumerable: true,
|
|
4549
|
-
get: function () { return
|
|
4549
|
+
get: function () { return chunkF6SLLVEL_js.assetOrErrorFromJSON; }
|
|
4550
4550
|
});
|
|
4551
4551
|
Object.defineProperty(exports, "assetOrErrorToJSON", {
|
|
4552
4552
|
enumerable: true,
|
|
4553
|
-
get: function () { return
|
|
4553
|
+
get: function () { return chunkF6SLLVEL_js.assetOrErrorToJSON; }
|
|
4554
4554
|
});
|
|
4555
4555
|
Object.defineProperty(exports, "assetRecommendationFromJSON", {
|
|
4556
4556
|
enumerable: true,
|
|
4557
|
-
get: function () { return
|
|
4557
|
+
get: function () { return chunkF6SLLVEL_js.assetRecommendationFromJSON; }
|
|
4558
4558
|
});
|
|
4559
4559
|
Object.defineProperty(exports, "assetRecommendationRequestFromJSON", {
|
|
4560
4560
|
enumerable: true,
|
|
4561
|
-
get: function () { return
|
|
4561
|
+
get: function () { return chunkF6SLLVEL_js.assetRecommendationRequestFromJSON; }
|
|
4562
4562
|
});
|
|
4563
4563
|
Object.defineProperty(exports, "assetRecommendationRequestToJSON", {
|
|
4564
4564
|
enumerable: true,
|
|
4565
|
-
get: function () { return
|
|
4565
|
+
get: function () { return chunkF6SLLVEL_js.assetRecommendationRequestToJSON; }
|
|
4566
4566
|
});
|
|
4567
4567
|
Object.defineProperty(exports, "assetRecommendationToJSON", {
|
|
4568
4568
|
enumerable: true,
|
|
4569
|
-
get: function () { return
|
|
4569
|
+
get: function () { return chunkF6SLLVEL_js.assetRecommendationToJSON; }
|
|
4570
4570
|
});
|
|
4571
4571
|
Object.defineProperty(exports, "assetToJSON", {
|
|
4572
4572
|
enumerable: true,
|
|
4573
|
-
get: function () { return
|
|
4573
|
+
get: function () { return chunkF6SLLVEL_js.assetToJSON; }
|
|
4574
4574
|
});
|
|
4575
4575
|
Object.defineProperty(exports, "assetsBetweenChainsRequestFromJSON", {
|
|
4576
4576
|
enumerable: true,
|
|
4577
|
-
get: function () { return
|
|
4577
|
+
get: function () { return chunkF6SLLVEL_js.assetsBetweenChainsRequestFromJSON; }
|
|
4578
4578
|
});
|
|
4579
4579
|
Object.defineProperty(exports, "assetsBetweenChainsRequestToJSON", {
|
|
4580
4580
|
enumerable: true,
|
|
4581
|
-
get: function () { return
|
|
4581
|
+
get: function () { return chunkF6SLLVEL_js.assetsBetweenChainsRequestToJSON; }
|
|
4582
4582
|
});
|
|
4583
4583
|
Object.defineProperty(exports, "assetsBetweenChainsResponseFromJSON", {
|
|
4584
4584
|
enumerable: true,
|
|
4585
|
-
get: function () { return
|
|
4585
|
+
get: function () { return chunkF6SLLVEL_js.assetsBetweenChainsResponseFromJSON; }
|
|
4586
4586
|
});
|
|
4587
4587
|
Object.defineProperty(exports, "assetsFromSourceRequestFromJSON", {
|
|
4588
4588
|
enumerable: true,
|
|
4589
|
-
get: function () { return
|
|
4589
|
+
get: function () { return chunkF6SLLVEL_js.assetsFromSourceRequestFromJSON; }
|
|
4590
4590
|
});
|
|
4591
4591
|
Object.defineProperty(exports, "assetsFromSourceRequestToJSON", {
|
|
4592
4592
|
enumerable: true,
|
|
4593
|
-
get: function () { return
|
|
4593
|
+
get: function () { return chunkF6SLLVEL_js.assetsFromSourceRequestToJSON; }
|
|
4594
4594
|
});
|
|
4595
4595
|
Object.defineProperty(exports, "assetsRequestFromJSON", {
|
|
4596
4596
|
enumerable: true,
|
|
4597
|
-
get: function () { return
|
|
4597
|
+
get: function () { return chunkF6SLLVEL_js.assetsRequestFromJSON; }
|
|
4598
4598
|
});
|
|
4599
4599
|
Object.defineProperty(exports, "assetsRequestToJSON", {
|
|
4600
4600
|
enumerable: true,
|
|
4601
|
-
get: function () { return
|
|
4601
|
+
get: function () { return chunkF6SLLVEL_js.assetsRequestToJSON; }
|
|
4602
4602
|
});
|
|
4603
4603
|
Object.defineProperty(exports, "axelarTransferFromJSON", {
|
|
4604
4604
|
enumerable: true,
|
|
4605
|
-
get: function () { return
|
|
4605
|
+
get: function () { return chunkF6SLLVEL_js.axelarTransferFromJSON; }
|
|
4606
4606
|
});
|
|
4607
4607
|
Object.defineProperty(exports, "axelarTransferInfoFromJSON", {
|
|
4608
4608
|
enumerable: true,
|
|
4609
|
-
get: function () { return
|
|
4609
|
+
get: function () { return chunkF6SLLVEL_js.axelarTransferInfoFromJSON; }
|
|
4610
4610
|
});
|
|
4611
4611
|
Object.defineProperty(exports, "axelarTransferInfoToJSON", {
|
|
4612
4612
|
enumerable: true,
|
|
4613
|
-
get: function () { return
|
|
4613
|
+
get: function () { return chunkF6SLLVEL_js.axelarTransferInfoToJSON; }
|
|
4614
4614
|
});
|
|
4615
4615
|
Object.defineProperty(exports, "axelarTransferToJSON", {
|
|
4616
4616
|
enumerable: true,
|
|
4617
|
-
get: function () { return
|
|
4617
|
+
get: function () { return chunkF6SLLVEL_js.axelarTransferToJSON; }
|
|
4618
4618
|
});
|
|
4619
4619
|
Object.defineProperty(exports, "axelarTransferTransactionsFromJSON", {
|
|
4620
4620
|
enumerable: true,
|
|
4621
|
-
get: function () { return
|
|
4621
|
+
get: function () { return chunkF6SLLVEL_js.axelarTransferTransactionsFromJSON; }
|
|
4622
4622
|
});
|
|
4623
4623
|
Object.defineProperty(exports, "axelarTransferTransactionsToJSON", {
|
|
4624
4624
|
enumerable: true,
|
|
4625
|
-
get: function () { return
|
|
4625
|
+
get: function () { return chunkF6SLLVEL_js.axelarTransferTransactionsToJSON; }
|
|
4626
4626
|
});
|
|
4627
4627
|
Object.defineProperty(exports, "balanceRequestChainEntryFromJSON", {
|
|
4628
4628
|
enumerable: true,
|
|
4629
|
-
get: function () { return
|
|
4629
|
+
get: function () { return chunkF6SLLVEL_js.balanceRequestChainEntryFromJSON; }
|
|
4630
4630
|
});
|
|
4631
4631
|
Object.defineProperty(exports, "balanceRequestChainEntryToJSON", {
|
|
4632
4632
|
enumerable: true,
|
|
4633
|
-
get: function () { return
|
|
4633
|
+
get: function () { return chunkF6SLLVEL_js.balanceRequestChainEntryToJSON; }
|
|
4634
4634
|
});
|
|
4635
4635
|
Object.defineProperty(exports, "balanceRequestFromJSON", {
|
|
4636
4636
|
enumerable: true,
|
|
4637
|
-
get: function () { return
|
|
4637
|
+
get: function () { return chunkF6SLLVEL_js.balanceRequestFromJSON; }
|
|
4638
4638
|
});
|
|
4639
4639
|
Object.defineProperty(exports, "balanceRequestToJSON", {
|
|
4640
4640
|
enumerable: true,
|
|
4641
|
-
get: function () { return
|
|
4641
|
+
get: function () { return chunkF6SLLVEL_js.balanceRequestToJSON; }
|
|
4642
4642
|
});
|
|
4643
4643
|
Object.defineProperty(exports, "balanceResponseChainEntryFromJSON", {
|
|
4644
4644
|
enumerable: true,
|
|
4645
|
-
get: function () { return
|
|
4645
|
+
get: function () { return chunkF6SLLVEL_js.balanceResponseChainEntryFromJSON; }
|
|
4646
4646
|
});
|
|
4647
4647
|
Object.defineProperty(exports, "balanceResponseChainEntryToJSON", {
|
|
4648
4648
|
enumerable: true,
|
|
4649
|
-
get: function () { return
|
|
4649
|
+
get: function () { return chunkF6SLLVEL_js.balanceResponseChainEntryToJSON; }
|
|
4650
4650
|
});
|
|
4651
4651
|
Object.defineProperty(exports, "balanceResponseDenomEntryFromJSON", {
|
|
4652
4652
|
enumerable: true,
|
|
4653
|
-
get: function () { return
|
|
4653
|
+
get: function () { return chunkF6SLLVEL_js.balanceResponseDenomEntryFromJSON; }
|
|
4654
4654
|
});
|
|
4655
4655
|
Object.defineProperty(exports, "balanceResponseDenomEntryToJSON", {
|
|
4656
4656
|
enumerable: true,
|
|
4657
|
-
get: function () { return
|
|
4657
|
+
get: function () { return chunkF6SLLVEL_js.balanceResponseDenomEntryToJSON; }
|
|
4658
4658
|
});
|
|
4659
4659
|
Object.defineProperty(exports, "balanceResponseFromJSON", {
|
|
4660
4660
|
enumerable: true,
|
|
4661
|
-
get: function () { return
|
|
4661
|
+
get: function () { return chunkF6SLLVEL_js.balanceResponseFromJSON; }
|
|
4662
4662
|
});
|
|
4663
4663
|
Object.defineProperty(exports, "balanceResponseToJSON", {
|
|
4664
4664
|
enumerable: true,
|
|
4665
|
-
get: function () { return
|
|
4665
|
+
get: function () { return chunkF6SLLVEL_js.balanceResponseToJSON; }
|
|
4666
4666
|
});
|
|
4667
4667
|
Object.defineProperty(exports, "bankSendFromJSON", {
|
|
4668
4668
|
enumerable: true,
|
|
4669
|
-
get: function () { return
|
|
4669
|
+
get: function () { return chunkF6SLLVEL_js.bankSendFromJSON; }
|
|
4670
4670
|
});
|
|
4671
4671
|
Object.defineProperty(exports, "bankSendToJSON", {
|
|
4672
4672
|
enumerable: true,
|
|
4673
|
-
get: function () { return
|
|
4673
|
+
get: function () { return chunkF6SLLVEL_js.bankSendToJSON; }
|
|
4674
4674
|
});
|
|
4675
4675
|
Object.defineProperty(exports, "bridgeFromJSON", {
|
|
4676
4676
|
enumerable: true,
|
|
4677
|
-
get: function () { return
|
|
4677
|
+
get: function () { return chunkF6SLLVEL_js.bridgeFromJSON; }
|
|
4678
4678
|
});
|
|
4679
4679
|
Object.defineProperty(exports, "bridgeToJSON", {
|
|
4680
4680
|
enumerable: true,
|
|
4681
|
-
get: function () { return
|
|
4681
|
+
get: function () { return chunkF6SLLVEL_js.bridgeToJSON; }
|
|
4682
4682
|
});
|
|
4683
4683
|
Object.defineProperty(exports, "bridgesResponseFromJSON", {
|
|
4684
4684
|
enumerable: true,
|
|
4685
|
-
get: function () { return
|
|
4685
|
+
get: function () { return chunkF6SLLVEL_js.bridgesResponseFromJSON; }
|
|
4686
4686
|
});
|
|
4687
4687
|
Object.defineProperty(exports, "bridgesResponseToJSON", {
|
|
4688
4688
|
enumerable: true,
|
|
4689
|
-
get: function () { return
|
|
4689
|
+
get: function () { return chunkF6SLLVEL_js.bridgesResponseToJSON; }
|
|
4690
4690
|
});
|
|
4691
4691
|
Object.defineProperty(exports, "cctpTransferFromJSON", {
|
|
4692
4692
|
enumerable: true,
|
|
4693
|
-
get: function () { return
|
|
4693
|
+
get: function () { return chunkF6SLLVEL_js.cctpTransferFromJSON; }
|
|
4694
4694
|
});
|
|
4695
4695
|
Object.defineProperty(exports, "cctpTransferInfoFromJSON", {
|
|
4696
4696
|
enumerable: true,
|
|
4697
|
-
get: function () { return
|
|
4697
|
+
get: function () { return chunkF6SLLVEL_js.cctpTransferInfoFromJSON; }
|
|
4698
4698
|
});
|
|
4699
4699
|
Object.defineProperty(exports, "cctpTransferInfoToJSON", {
|
|
4700
4700
|
enumerable: true,
|
|
4701
|
-
get: function () { return
|
|
4701
|
+
get: function () { return chunkF6SLLVEL_js.cctpTransferInfoToJSON; }
|
|
4702
4702
|
});
|
|
4703
4703
|
Object.defineProperty(exports, "cctpTransferToJSON", {
|
|
4704
4704
|
enumerable: true,
|
|
4705
|
-
get: function () { return
|
|
4705
|
+
get: function () { return chunkF6SLLVEL_js.cctpTransferToJSON; }
|
|
4706
4706
|
});
|
|
4707
4707
|
Object.defineProperty(exports, "cctpTransferTransactionsFromJSON", {
|
|
4708
4708
|
enumerable: true,
|
|
4709
|
-
get: function () { return
|
|
4709
|
+
get: function () { return chunkF6SLLVEL_js.cctpTransferTransactionsFromJSON; }
|
|
4710
4710
|
});
|
|
4711
4711
|
Object.defineProperty(exports, "cctpTransferTransactionsToJSON", {
|
|
4712
4712
|
enumerable: true,
|
|
4713
|
-
get: function () { return
|
|
4713
|
+
get: function () { return chunkF6SLLVEL_js.cctpTransferTransactionsToJSON; }
|
|
4714
4714
|
});
|
|
4715
4715
|
Object.defineProperty(exports, "chainAffiliatesFromJSON", {
|
|
4716
4716
|
enumerable: true,
|
|
4717
|
-
get: function () { return
|
|
4717
|
+
get: function () { return chunkF6SLLVEL_js.chainAffiliatesFromJSON; }
|
|
4718
4718
|
});
|
|
4719
4719
|
Object.defineProperty(exports, "chainAffiliatesToJSON", {
|
|
4720
4720
|
enumerable: true,
|
|
4721
|
-
get: function () { return
|
|
4721
|
+
get: function () { return chunkF6SLLVEL_js.chainAffiliatesToJSON; }
|
|
4722
4722
|
});
|
|
4723
4723
|
Object.defineProperty(exports, "chainFromJSON", {
|
|
4724
4724
|
enumerable: true,
|
|
4725
|
-
get: function () { return
|
|
4725
|
+
get: function () { return chunkF6SLLVEL_js.chainFromJSON; }
|
|
4726
4726
|
});
|
|
4727
4727
|
Object.defineProperty(exports, "chainIDsToAffiliatesMapFromJSON", {
|
|
4728
4728
|
enumerable: true,
|
|
4729
|
-
get: function () { return
|
|
4729
|
+
get: function () { return chunkF6SLLVEL_js.chainIDsToAffiliatesMapFromJSON; }
|
|
4730
4730
|
});
|
|
4731
4731
|
Object.defineProperty(exports, "chainIDsToAffiliatesMapToJSON", {
|
|
4732
4732
|
enumerable: true,
|
|
4733
|
-
get: function () { return
|
|
4733
|
+
get: function () { return chunkF6SLLVEL_js.chainIDsToAffiliatesMapToJSON; }
|
|
4734
4734
|
});
|
|
4735
4735
|
Object.defineProperty(exports, "chainToJSON", {
|
|
4736
4736
|
enumerable: true,
|
|
4737
|
-
get: function () { return
|
|
4737
|
+
get: function () { return chunkF6SLLVEL_js.chainToJSON; }
|
|
4738
4738
|
});
|
|
4739
4739
|
Object.defineProperty(exports, "chainTransactionFromJSON", {
|
|
4740
4740
|
enumerable: true,
|
|
4741
|
-
get: function () { return
|
|
4741
|
+
get: function () { return chunkF6SLLVEL_js.chainTransactionFromJSON; }
|
|
4742
4742
|
});
|
|
4743
4743
|
Object.defineProperty(exports, "chainTransactionToJSON", {
|
|
4744
4744
|
enumerable: true,
|
|
4745
|
-
get: function () { return
|
|
4745
|
+
get: function () { return chunkF6SLLVEL_js.chainTransactionToJSON; }
|
|
4746
4746
|
});
|
|
4747
4747
|
Object.defineProperty(exports, "contractCallWithTokenTransactionsFromJSON", {
|
|
4748
4748
|
enumerable: true,
|
|
4749
|
-
get: function () { return
|
|
4749
|
+
get: function () { return chunkF6SLLVEL_js.contractCallWithTokenTransactionsFromJSON; }
|
|
4750
4750
|
});
|
|
4751
4751
|
Object.defineProperty(exports, "contractCallWithTokenTransactionsToJSON", {
|
|
4752
4752
|
enumerable: true,
|
|
4753
|
-
get: function () { return
|
|
4753
|
+
get: function () { return chunkF6SLLVEL_js.contractCallWithTokenTransactionsToJSON; }
|
|
4754
4754
|
});
|
|
4755
4755
|
Object.defineProperty(exports, "cosmWasmContractMsgFromJSON", {
|
|
4756
4756
|
enumerable: true,
|
|
4757
|
-
get: function () { return
|
|
4757
|
+
get: function () { return chunkF6SLLVEL_js.cosmWasmContractMsgFromJSON; }
|
|
4758
4758
|
});
|
|
4759
4759
|
Object.defineProperty(exports, "cosmWasmContractMsgToJSON", {
|
|
4760
4760
|
enumerable: true,
|
|
4761
|
-
get: function () { return
|
|
4761
|
+
get: function () { return chunkF6SLLVEL_js.cosmWasmContractMsgToJSON; }
|
|
4762
4762
|
});
|
|
4763
4763
|
Object.defineProperty(exports, "cosmosMsgFromJSON", {
|
|
4764
4764
|
enumerable: true,
|
|
4765
|
-
get: function () { return
|
|
4765
|
+
get: function () { return chunkF6SLLVEL_js.cosmosMsgFromJSON; }
|
|
4766
4766
|
});
|
|
4767
4767
|
Object.defineProperty(exports, "cosmosMsgToJSON", {
|
|
4768
4768
|
enumerable: true,
|
|
4769
|
-
get: function () { return
|
|
4769
|
+
get: function () { return chunkF6SLLVEL_js.cosmosMsgToJSON; }
|
|
4770
4770
|
});
|
|
4771
4771
|
Object.defineProperty(exports, "cosmosTxFromJSON", {
|
|
4772
4772
|
enumerable: true,
|
|
4773
|
-
get: function () { return
|
|
4773
|
+
get: function () { return chunkF6SLLVEL_js.cosmosTxFromJSON; }
|
|
4774
4774
|
});
|
|
4775
4775
|
Object.defineProperty(exports, "cosmosTxToJSON", {
|
|
4776
4776
|
enumerable: true,
|
|
4777
|
-
get: function () { return
|
|
4777
|
+
get: function () { return chunkF6SLLVEL_js.cosmosTxToJSON; }
|
|
4778
4778
|
});
|
|
4779
4779
|
Object.defineProperty(exports, "denomWithChainIDFromJSON", {
|
|
4780
4780
|
enumerable: true,
|
|
4781
|
-
get: function () { return
|
|
4781
|
+
get: function () { return chunkF6SLLVEL_js.denomWithChainIDFromJSON; }
|
|
4782
4782
|
});
|
|
4783
4783
|
Object.defineProperty(exports, "denomWithChainIDToJSON", {
|
|
4784
4784
|
enumerable: true,
|
|
4785
|
-
get: function () { return
|
|
4785
|
+
get: function () { return chunkF6SLLVEL_js.denomWithChainIDToJSON; }
|
|
4786
4786
|
});
|
|
4787
4787
|
Object.defineProperty(exports, "erc20ApprovalFromJSON", {
|
|
4788
4788
|
enumerable: true,
|
|
4789
|
-
get: function () { return
|
|
4789
|
+
get: function () { return chunkF6SLLVEL_js.erc20ApprovalFromJSON; }
|
|
4790
4790
|
});
|
|
4791
4791
|
Object.defineProperty(exports, "erc20ApprovalToJSON", {
|
|
4792
4792
|
enumerable: true,
|
|
4793
|
-
get: function () { return
|
|
4793
|
+
get: function () { return chunkF6SLLVEL_js.erc20ApprovalToJSON; }
|
|
4794
4794
|
});
|
|
4795
4795
|
Object.defineProperty(exports, "estimatedFeeFromJSON", {
|
|
4796
4796
|
enumerable: true,
|
|
4797
|
-
get: function () { return
|
|
4797
|
+
get: function () { return chunkF6SLLVEL_js.estimatedFeeFromJSON; }
|
|
4798
4798
|
});
|
|
4799
4799
|
Object.defineProperty(exports, "estimatedFeeToJSON", {
|
|
4800
4800
|
enumerable: true,
|
|
4801
|
-
get: function () { return
|
|
4801
|
+
get: function () { return chunkF6SLLVEL_js.estimatedFeeToJSON; }
|
|
4802
4802
|
});
|
|
4803
4803
|
Object.defineProperty(exports, "evmSwapFromJSON", {
|
|
4804
4804
|
enumerable: true,
|
|
4805
|
-
get: function () { return
|
|
4805
|
+
get: function () { return chunkF6SLLVEL_js.evmSwapFromJSON; }
|
|
4806
4806
|
});
|
|
4807
4807
|
Object.defineProperty(exports, "evmSwapToJSON", {
|
|
4808
4808
|
enumerable: true,
|
|
4809
|
-
get: function () { return
|
|
4809
|
+
get: function () { return chunkF6SLLVEL_js.evmSwapToJSON; }
|
|
4810
4810
|
});
|
|
4811
4811
|
Object.defineProperty(exports, "evmTxFromJSON", {
|
|
4812
4812
|
enumerable: true,
|
|
4813
|
-
get: function () { return
|
|
4813
|
+
get: function () { return chunkF6SLLVEL_js.evmTxFromJSON; }
|
|
4814
4814
|
});
|
|
4815
4815
|
Object.defineProperty(exports, "evmTxToJSON", {
|
|
4816
4816
|
enumerable: true,
|
|
4817
|
-
get: function () { return
|
|
4817
|
+
get: function () { return chunkF6SLLVEL_js.evmTxToJSON; }
|
|
4818
4818
|
});
|
|
4819
4819
|
Object.defineProperty(exports, "feeAssetFromJSON", {
|
|
4820
4820
|
enumerable: true,
|
|
4821
|
-
get: function () { return
|
|
4821
|
+
get: function () { return chunkF6SLLVEL_js.feeAssetFromJSON; }
|
|
4822
4822
|
});
|
|
4823
4823
|
Object.defineProperty(exports, "feeAssetToJSON", {
|
|
4824
4824
|
enumerable: true,
|
|
4825
|
-
get: function () { return
|
|
4825
|
+
get: function () { return chunkF6SLLVEL_js.feeAssetToJSON; }
|
|
4826
4826
|
});
|
|
4827
4827
|
Object.defineProperty(exports, "hyperlaneTransferFromJSON", {
|
|
4828
4828
|
enumerable: true,
|
|
4829
|
-
get: function () { return
|
|
4829
|
+
get: function () { return chunkF6SLLVEL_js.hyperlaneTransferFromJSON; }
|
|
4830
4830
|
});
|
|
4831
4831
|
Object.defineProperty(exports, "hyperlaneTransferInfoFromJSON", {
|
|
4832
4832
|
enumerable: true,
|
|
4833
|
-
get: function () { return
|
|
4833
|
+
get: function () { return chunkF6SLLVEL_js.hyperlaneTransferInfoFromJSON; }
|
|
4834
4834
|
});
|
|
4835
4835
|
Object.defineProperty(exports, "hyperlaneTransferInfoToJSON", {
|
|
4836
4836
|
enumerable: true,
|
|
4837
|
-
get: function () { return
|
|
4837
|
+
get: function () { return chunkF6SLLVEL_js.hyperlaneTransferInfoToJSON; }
|
|
4838
4838
|
});
|
|
4839
4839
|
Object.defineProperty(exports, "hyperlaneTransferToJSON", {
|
|
4840
4840
|
enumerable: true,
|
|
4841
|
-
get: function () { return
|
|
4841
|
+
get: function () { return chunkF6SLLVEL_js.hyperlaneTransferToJSON; }
|
|
4842
4842
|
});
|
|
4843
4843
|
Object.defineProperty(exports, "hyperlaneTransferTransactionsFromJSON", {
|
|
4844
4844
|
enumerable: true,
|
|
4845
|
-
get: function () { return
|
|
4845
|
+
get: function () { return chunkF6SLLVEL_js.hyperlaneTransferTransactionsFromJSON; }
|
|
4846
4846
|
});
|
|
4847
4847
|
Object.defineProperty(exports, "hyperlaneTransferTransactionsToJSON", {
|
|
4848
4848
|
enumerable: true,
|
|
4849
|
-
get: function () { return
|
|
4849
|
+
get: function () { return chunkF6SLLVEL_js.hyperlaneTransferTransactionsToJSON; }
|
|
4850
4850
|
});
|
|
4851
4851
|
Object.defineProperty(exports, "ibcAddressFromJSON", {
|
|
4852
4852
|
enumerable: true,
|
|
4853
|
-
get: function () { return
|
|
4853
|
+
get: function () { return chunkF6SLLVEL_js.ibcAddressFromJSON; }
|
|
4854
4854
|
});
|
|
4855
4855
|
Object.defineProperty(exports, "ibcAddressToJSON", {
|
|
4856
4856
|
enumerable: true,
|
|
4857
|
-
get: function () { return
|
|
4857
|
+
get: function () { return chunkF6SLLVEL_js.ibcAddressToJSON; }
|
|
4858
4858
|
});
|
|
4859
4859
|
Object.defineProperty(exports, "ibcCapabilitiesFromJSON", {
|
|
4860
4860
|
enumerable: true,
|
|
4861
|
-
get: function () { return
|
|
4861
|
+
get: function () { return chunkF6SLLVEL_js.ibcCapabilitiesFromJSON; }
|
|
4862
4862
|
});
|
|
4863
4863
|
Object.defineProperty(exports, "ibcCapabilitiesToJSON", {
|
|
4864
4864
|
enumerable: true,
|
|
4865
|
-
get: function () { return
|
|
4865
|
+
get: function () { return chunkF6SLLVEL_js.ibcCapabilitiesToJSON; }
|
|
4866
4866
|
});
|
|
4867
4867
|
Object.defineProperty(exports, "messageResponseFromJSON", {
|
|
4868
4868
|
enumerable: true,
|
|
4869
|
-
get: function () { return
|
|
4869
|
+
get: function () { return chunkF6SLLVEL_js.messageResponseFromJSON; }
|
|
4870
4870
|
});
|
|
4871
4871
|
Object.defineProperty(exports, "msgFromJSON", {
|
|
4872
4872
|
enumerable: true,
|
|
4873
|
-
get: function () { return
|
|
4873
|
+
get: function () { return chunkF6SLLVEL_js.msgFromJSON; }
|
|
4874
4874
|
});
|
|
4875
4875
|
Object.defineProperty(exports, "msgToJSON", {
|
|
4876
4876
|
enumerable: true,
|
|
4877
|
-
get: function () { return
|
|
4877
|
+
get: function () { return chunkF6SLLVEL_js.msgToJSON; }
|
|
4878
4878
|
});
|
|
4879
4879
|
Object.defineProperty(exports, "msgsDirectRequestFromJSON", {
|
|
4880
4880
|
enumerable: true,
|
|
4881
|
-
get: function () { return
|
|
4881
|
+
get: function () { return chunkF6SLLVEL_js.msgsDirectRequestFromJSON; }
|
|
4882
4882
|
});
|
|
4883
4883
|
Object.defineProperty(exports, "msgsDirectRequestToJSON", {
|
|
4884
4884
|
enumerable: true,
|
|
4885
|
-
get: function () { return
|
|
4885
|
+
get: function () { return chunkF6SLLVEL_js.msgsDirectRequestToJSON; }
|
|
4886
4886
|
});
|
|
4887
4887
|
Object.defineProperty(exports, "msgsRequestFromJSON", {
|
|
4888
4888
|
enumerable: true,
|
|
4889
|
-
get: function () { return
|
|
4889
|
+
get: function () { return chunkF6SLLVEL_js.msgsRequestFromJSON; }
|
|
4890
4890
|
});
|
|
4891
4891
|
Object.defineProperty(exports, "msgsRequestToJSON", {
|
|
4892
4892
|
enumerable: true,
|
|
4893
|
-
get: function () { return
|
|
4893
|
+
get: function () { return chunkF6SLLVEL_js.msgsRequestToJSON; }
|
|
4894
4894
|
});
|
|
4895
4895
|
Object.defineProperty(exports, "multiChainMsgFromJSON", {
|
|
4896
4896
|
enumerable: true,
|
|
4897
|
-
get: function () { return
|
|
4897
|
+
get: function () { return chunkF6SLLVEL_js.multiChainMsgFromJSON; }
|
|
4898
4898
|
});
|
|
4899
4899
|
Object.defineProperty(exports, "multiChainMsgToJSON", {
|
|
4900
4900
|
enumerable: true,
|
|
4901
|
-
get: function () { return
|
|
4901
|
+
get: function () { return chunkF6SLLVEL_js.multiChainMsgToJSON; }
|
|
4902
4902
|
});
|
|
4903
4903
|
Object.defineProperty(exports, "nextBlockingTransferFromJSON", {
|
|
4904
4904
|
enumerable: true,
|
|
4905
|
-
get: function () { return
|
|
4905
|
+
get: function () { return chunkF6SLLVEL_js.nextBlockingTransferFromJSON; }
|
|
4906
4906
|
});
|
|
4907
4907
|
Object.defineProperty(exports, "nextBlockingTransferToJSON", {
|
|
4908
4908
|
enumerable: true,
|
|
4909
|
-
get: function () { return
|
|
4909
|
+
get: function () { return chunkF6SLLVEL_js.nextBlockingTransferToJSON; }
|
|
4910
4910
|
});
|
|
4911
4911
|
Object.defineProperty(exports, "opInitTransferFromJSON", {
|
|
4912
4912
|
enumerable: true,
|
|
4913
|
-
get: function () { return
|
|
4913
|
+
get: function () { return chunkF6SLLVEL_js.opInitTransferFromJSON; }
|
|
4914
4914
|
});
|
|
4915
4915
|
Object.defineProperty(exports, "opInitTransferInfoFromJSON", {
|
|
4916
4916
|
enumerable: true,
|
|
4917
|
-
get: function () { return
|
|
4917
|
+
get: function () { return chunkF6SLLVEL_js.opInitTransferInfoFromJSON; }
|
|
4918
4918
|
});
|
|
4919
4919
|
Object.defineProperty(exports, "opInitTransferInfoToJSON", {
|
|
4920
4920
|
enumerable: true,
|
|
4921
|
-
get: function () { return
|
|
4921
|
+
get: function () { return chunkF6SLLVEL_js.opInitTransferInfoToJSON; }
|
|
4922
4922
|
});
|
|
4923
4923
|
Object.defineProperty(exports, "opInitTransferToJSON", {
|
|
4924
4924
|
enumerable: true,
|
|
4925
|
-
get: function () { return
|
|
4925
|
+
get: function () { return chunkF6SLLVEL_js.opInitTransferToJSON; }
|
|
4926
4926
|
});
|
|
4927
4927
|
Object.defineProperty(exports, "opInitTransferTransactionsFromJSON", {
|
|
4928
4928
|
enumerable: true,
|
|
4929
|
-
get: function () { return
|
|
4929
|
+
get: function () { return chunkF6SLLVEL_js.opInitTransferTransactionsFromJSON; }
|
|
4930
4930
|
});
|
|
4931
4931
|
Object.defineProperty(exports, "opInitTransferTransactionsToJSON", {
|
|
4932
4932
|
enumerable: true,
|
|
4933
|
-
get: function () { return
|
|
4933
|
+
get: function () { return chunkF6SLLVEL_js.opInitTransferTransactionsToJSON; }
|
|
4934
4934
|
});
|
|
4935
4935
|
Object.defineProperty(exports, "operationFromJSON", {
|
|
4936
4936
|
enumerable: true,
|
|
4937
|
-
get: function () { return
|
|
4937
|
+
get: function () { return chunkF6SLLVEL_js.operationFromJSON; }
|
|
4938
4938
|
});
|
|
4939
4939
|
Object.defineProperty(exports, "operationToJSON", {
|
|
4940
4940
|
enumerable: true,
|
|
4941
|
-
get: function () { return
|
|
4941
|
+
get: function () { return chunkF6SLLVEL_js.operationToJSON; }
|
|
4942
4942
|
});
|
|
4943
4943
|
Object.defineProperty(exports, "originAssetsRequestFromJSON", {
|
|
4944
4944
|
enumerable: true,
|
|
4945
|
-
get: function () { return
|
|
4945
|
+
get: function () { return chunkF6SLLVEL_js.originAssetsRequestFromJSON; }
|
|
4946
4946
|
});
|
|
4947
4947
|
Object.defineProperty(exports, "originAssetsRequestToJSON", {
|
|
4948
4948
|
enumerable: true,
|
|
4949
|
-
get: function () { return
|
|
4949
|
+
get: function () { return chunkF6SLLVEL_js.originAssetsRequestToJSON; }
|
|
4950
4950
|
});
|
|
4951
4951
|
Object.defineProperty(exports, "originAssetsResponseFromJSON", {
|
|
4952
4952
|
enumerable: true,
|
|
4953
|
-
get: function () { return
|
|
4953
|
+
get: function () { return chunkF6SLLVEL_js.originAssetsResponseFromJSON; }
|
|
4954
4954
|
});
|
|
4955
4955
|
Object.defineProperty(exports, "originAssetsResponseToJSON", {
|
|
4956
4956
|
enumerable: true,
|
|
4957
|
-
get: function () { return
|
|
4957
|
+
get: function () { return chunkF6SLLVEL_js.originAssetsResponseToJSON; }
|
|
4958
4958
|
});
|
|
4959
4959
|
Object.defineProperty(exports, "packetFromJSON", {
|
|
4960
4960
|
enumerable: true,
|
|
4961
|
-
get: function () { return
|
|
4961
|
+
get: function () { return chunkF6SLLVEL_js.packetFromJSON; }
|
|
4962
4962
|
});
|
|
4963
4963
|
Object.defineProperty(exports, "packetToJSON", {
|
|
4964
4964
|
enumerable: true,
|
|
4965
|
-
get: function () { return
|
|
4965
|
+
get: function () { return chunkF6SLLVEL_js.packetToJSON; }
|
|
4966
4966
|
});
|
|
4967
4967
|
Object.defineProperty(exports, "postHandlerFromJSON", {
|
|
4968
4968
|
enumerable: true,
|
|
4969
|
-
get: function () { return
|
|
4969
|
+
get: function () { return chunkF6SLLVEL_js.postHandlerFromJSON; }
|
|
4970
4970
|
});
|
|
4971
4971
|
Object.defineProperty(exports, "postHandlerToJSON", {
|
|
4972
4972
|
enumerable: true,
|
|
4973
|
-
get: function () { return
|
|
4973
|
+
get: function () { return chunkF6SLLVEL_js.postHandlerToJSON; }
|
|
4974
4974
|
});
|
|
4975
4975
|
Object.defineProperty(exports, "recommendAssetsRequestFromJSON", {
|
|
4976
4976
|
enumerable: true,
|
|
4977
|
-
get: function () { return
|
|
4977
|
+
get: function () { return chunkF6SLLVEL_js.recommendAssetsRequestFromJSON; }
|
|
4978
4978
|
});
|
|
4979
4979
|
Object.defineProperty(exports, "recommendAssetsRequestToJSON", {
|
|
4980
4980
|
enumerable: true,
|
|
4981
|
-
get: function () { return
|
|
4981
|
+
get: function () { return chunkF6SLLVEL_js.recommendAssetsRequestToJSON; }
|
|
4982
4982
|
});
|
|
4983
4983
|
Object.defineProperty(exports, "recommendAssetsResponseFromJSON", {
|
|
4984
4984
|
enumerable: true,
|
|
4985
|
-
get: function () { return
|
|
4985
|
+
get: function () { return chunkF6SLLVEL_js.recommendAssetsResponseFromJSON; }
|
|
4986
4986
|
});
|
|
4987
4987
|
Object.defineProperty(exports, "recommendAssetsResponseToJSON", {
|
|
4988
4988
|
enumerable: true,
|
|
4989
|
-
get: function () { return
|
|
4989
|
+
get: function () { return chunkF6SLLVEL_js.recommendAssetsResponseToJSON; }
|
|
4990
4990
|
});
|
|
4991
4991
|
Object.defineProperty(exports, "recommendationEntryFromJSON", {
|
|
4992
4992
|
enumerable: true,
|
|
4993
|
-
get: function () { return
|
|
4993
|
+
get: function () { return chunkF6SLLVEL_js.recommendationEntryFromJSON; }
|
|
4994
4994
|
});
|
|
4995
4995
|
Object.defineProperty(exports, "recommendationEntryToJSON", {
|
|
4996
4996
|
enumerable: true,
|
|
4997
|
-
get: function () { return
|
|
4997
|
+
get: function () { return chunkF6SLLVEL_js.recommendationEntryToJSON; }
|
|
4998
4998
|
});
|
|
4999
4999
|
Object.defineProperty(exports, "routeRequestFromJSON", {
|
|
5000
5000
|
enumerable: true,
|
|
5001
|
-
get: function () { return
|
|
5001
|
+
get: function () { return chunkF6SLLVEL_js.routeRequestFromJSON; }
|
|
5002
5002
|
});
|
|
5003
5003
|
Object.defineProperty(exports, "routeRequestToJSON", {
|
|
5004
5004
|
enumerable: true,
|
|
5005
|
-
get: function () { return
|
|
5005
|
+
get: function () { return chunkF6SLLVEL_js.routeRequestToJSON; }
|
|
5006
5006
|
});
|
|
5007
5007
|
Object.defineProperty(exports, "routeResponseFromJSON", {
|
|
5008
5008
|
enumerable: true,
|
|
5009
|
-
get: function () { return
|
|
5009
|
+
get: function () { return chunkF6SLLVEL_js.routeResponseFromJSON; }
|
|
5010
5010
|
});
|
|
5011
5011
|
Object.defineProperty(exports, "routeResponseToJSON", {
|
|
5012
5012
|
enumerable: true,
|
|
5013
|
-
get: function () { return
|
|
5013
|
+
get: function () { return chunkF6SLLVEL_js.routeResponseToJSON; }
|
|
5014
5014
|
});
|
|
5015
5015
|
Object.defineProperty(exports, "sendTokenTransactionsFromJSON", {
|
|
5016
5016
|
enumerable: true,
|
|
5017
|
-
get: function () { return
|
|
5017
|
+
get: function () { return chunkF6SLLVEL_js.sendTokenTransactionsFromJSON; }
|
|
5018
5018
|
});
|
|
5019
5019
|
Object.defineProperty(exports, "sendTokenTransactionsToJSON", {
|
|
5020
5020
|
enumerable: true,
|
|
5021
|
-
get: function () { return
|
|
5021
|
+
get: function () { return chunkF6SLLVEL_js.sendTokenTransactionsToJSON; }
|
|
5022
5022
|
});
|
|
5023
5023
|
Object.defineProperty(exports, "smartRelayFeeQuoteFromJSON", {
|
|
5024
5024
|
enumerable: true,
|
|
5025
|
-
get: function () { return
|
|
5025
|
+
get: function () { return chunkF6SLLVEL_js.smartRelayFeeQuoteFromJSON; }
|
|
5026
5026
|
});
|
|
5027
5027
|
Object.defineProperty(exports, "smartRelayFeeQuoteToJSON", {
|
|
5028
5028
|
enumerable: true,
|
|
5029
|
-
get: function () { return
|
|
5029
|
+
get: function () { return chunkF6SLLVEL_js.smartRelayFeeQuoteToJSON; }
|
|
5030
5030
|
});
|
|
5031
5031
|
Object.defineProperty(exports, "smartSwapExactCoinInFromJSON", {
|
|
5032
5032
|
enumerable: true,
|
|
5033
|
-
get: function () { return
|
|
5033
|
+
get: function () { return chunkF6SLLVEL_js.smartSwapExactCoinInFromJSON; }
|
|
5034
5034
|
});
|
|
5035
5035
|
Object.defineProperty(exports, "smartSwapExactCoinInToJSON", {
|
|
5036
5036
|
enumerable: true,
|
|
5037
|
-
get: function () { return
|
|
5037
|
+
get: function () { return chunkF6SLLVEL_js.smartSwapExactCoinInToJSON; }
|
|
5038
5038
|
});
|
|
5039
5039
|
Object.defineProperty(exports, "smartSwapOptionsFromJSON", {
|
|
5040
5040
|
enumerable: true,
|
|
5041
|
-
get: function () { return
|
|
5041
|
+
get: function () { return chunkF6SLLVEL_js.smartSwapOptionsFromJSON; }
|
|
5042
5042
|
});
|
|
5043
5043
|
Object.defineProperty(exports, "smartSwapOptionsToJSON", {
|
|
5044
5044
|
enumerable: true,
|
|
5045
|
-
get: function () { return
|
|
5045
|
+
get: function () { return chunkF6SLLVEL_js.smartSwapOptionsToJSON; }
|
|
5046
5046
|
});
|
|
5047
5047
|
Object.defineProperty(exports, "submitTxRequestFromJSON", {
|
|
5048
5048
|
enumerable: true,
|
|
5049
|
-
get: function () { return
|
|
5049
|
+
get: function () { return chunkF6SLLVEL_js.submitTxRequestFromJSON; }
|
|
5050
5050
|
});
|
|
5051
5051
|
Object.defineProperty(exports, "submitTxRequestToJSON", {
|
|
5052
5052
|
enumerable: true,
|
|
5053
|
-
get: function () { return
|
|
5053
|
+
get: function () { return chunkF6SLLVEL_js.submitTxRequestToJSON; }
|
|
5054
5054
|
});
|
|
5055
5055
|
Object.defineProperty(exports, "submitTxResponseFromJSON", {
|
|
5056
5056
|
enumerable: true,
|
|
5057
|
-
get: function () { return
|
|
5057
|
+
get: function () { return chunkF6SLLVEL_js.submitTxResponseFromJSON; }
|
|
5058
5058
|
});
|
|
5059
5059
|
Object.defineProperty(exports, "submitTxResponseToJSON", {
|
|
5060
5060
|
enumerable: true,
|
|
5061
|
-
get: function () { return
|
|
5061
|
+
get: function () { return chunkF6SLLVEL_js.submitTxResponseToJSON; }
|
|
5062
5062
|
});
|
|
5063
5063
|
Object.defineProperty(exports, "svmTxFromJSON", {
|
|
5064
5064
|
enumerable: true,
|
|
5065
|
-
get: function () { return
|
|
5065
|
+
get: function () { return chunkF6SLLVEL_js.svmTxFromJSON; }
|
|
5066
5066
|
});
|
|
5067
5067
|
Object.defineProperty(exports, "svmTxToJSON", {
|
|
5068
5068
|
enumerable: true,
|
|
5069
|
-
get: function () { return
|
|
5069
|
+
get: function () { return chunkF6SLLVEL_js.svmTxToJSON; }
|
|
5070
5070
|
});
|
|
5071
5071
|
Object.defineProperty(exports, "swapExactCoinInFromJSON", {
|
|
5072
5072
|
enumerable: true,
|
|
5073
|
-
get: function () { return
|
|
5073
|
+
get: function () { return chunkF6SLLVEL_js.swapExactCoinInFromJSON; }
|
|
5074
5074
|
});
|
|
5075
5075
|
Object.defineProperty(exports, "swapExactCoinInToJSON", {
|
|
5076
5076
|
enumerable: true,
|
|
5077
|
-
get: function () { return
|
|
5077
|
+
get: function () { return chunkF6SLLVEL_js.swapExactCoinInToJSON; }
|
|
5078
5078
|
});
|
|
5079
5079
|
Object.defineProperty(exports, "swapExactCoinOutFromJSON", {
|
|
5080
5080
|
enumerable: true,
|
|
5081
|
-
get: function () { return
|
|
5081
|
+
get: function () { return chunkF6SLLVEL_js.swapExactCoinOutFromJSON; }
|
|
5082
5082
|
});
|
|
5083
5083
|
Object.defineProperty(exports, "swapExactCoinOutToJSON", {
|
|
5084
5084
|
enumerable: true,
|
|
5085
|
-
get: function () { return
|
|
5085
|
+
get: function () { return chunkF6SLLVEL_js.swapExactCoinOutToJSON; }
|
|
5086
5086
|
});
|
|
5087
5087
|
Object.defineProperty(exports, "swapFromJSON", {
|
|
5088
5088
|
enumerable: true,
|
|
5089
|
-
get: function () { return
|
|
5089
|
+
get: function () { return chunkF6SLLVEL_js.swapFromJSON; }
|
|
5090
5090
|
});
|
|
5091
5091
|
Object.defineProperty(exports, "swapOperationFromJSON", {
|
|
5092
5092
|
enumerable: true,
|
|
5093
|
-
get: function () { return
|
|
5093
|
+
get: function () { return chunkF6SLLVEL_js.swapOperationFromJSON; }
|
|
5094
5094
|
});
|
|
5095
5095
|
Object.defineProperty(exports, "swapOperationToJSON", {
|
|
5096
5096
|
enumerable: true,
|
|
5097
|
-
get: function () { return
|
|
5097
|
+
get: function () { return chunkF6SLLVEL_js.swapOperationToJSON; }
|
|
5098
5098
|
});
|
|
5099
5099
|
Object.defineProperty(exports, "swapRouteFromJSON", {
|
|
5100
5100
|
enumerable: true,
|
|
5101
|
-
get: function () { return
|
|
5101
|
+
get: function () { return chunkF6SLLVEL_js.swapRouteFromJSON; }
|
|
5102
5102
|
});
|
|
5103
5103
|
Object.defineProperty(exports, "swapRouteToJSON", {
|
|
5104
5104
|
enumerable: true,
|
|
5105
|
-
get: function () { return
|
|
5105
|
+
get: function () { return chunkF6SLLVEL_js.swapRouteToJSON; }
|
|
5106
5106
|
});
|
|
5107
5107
|
Object.defineProperty(exports, "swapToJSON", {
|
|
5108
5108
|
enumerable: true,
|
|
5109
|
-
get: function () { return
|
|
5109
|
+
get: function () { return chunkF6SLLVEL_js.swapToJSON; }
|
|
5110
5110
|
});
|
|
5111
5111
|
Object.defineProperty(exports, "swapVenueFromJSON", {
|
|
5112
5112
|
enumerable: true,
|
|
5113
|
-
get: function () { return
|
|
5113
|
+
get: function () { return chunkF6SLLVEL_js.swapVenueFromJSON; }
|
|
5114
5114
|
});
|
|
5115
5115
|
Object.defineProperty(exports, "swapVenueRequestFromJSON", {
|
|
5116
5116
|
enumerable: true,
|
|
5117
|
-
get: function () { return
|
|
5117
|
+
get: function () { return chunkF6SLLVEL_js.swapVenueRequestFromJSON; }
|
|
5118
5118
|
});
|
|
5119
5119
|
Object.defineProperty(exports, "swapVenueRequestToJSON", {
|
|
5120
5120
|
enumerable: true,
|
|
5121
|
-
get: function () { return
|
|
5121
|
+
get: function () { return chunkF6SLLVEL_js.swapVenueRequestToJSON; }
|
|
5122
5122
|
});
|
|
5123
5123
|
Object.defineProperty(exports, "swapVenueToJSON", {
|
|
5124
5124
|
enumerable: true,
|
|
5125
|
-
get: function () { return
|
|
5125
|
+
get: function () { return chunkF6SLLVEL_js.swapVenueToJSON; }
|
|
5126
5126
|
});
|
|
5127
5127
|
Object.defineProperty(exports, "trackTxRequestFromJSON", {
|
|
5128
5128
|
enumerable: true,
|
|
5129
|
-
get: function () { return
|
|
5129
|
+
get: function () { return chunkF6SLLVEL_js.trackTxRequestFromJSON; }
|
|
5130
5130
|
});
|
|
5131
5131
|
Object.defineProperty(exports, "trackTxRequestToJSON", {
|
|
5132
5132
|
enumerable: true,
|
|
5133
|
-
get: function () { return
|
|
5133
|
+
get: function () { return chunkF6SLLVEL_js.trackTxRequestToJSON; }
|
|
5134
5134
|
});
|
|
5135
5135
|
Object.defineProperty(exports, "trackTxResponseFromJSON", {
|
|
5136
5136
|
enumerable: true,
|
|
5137
|
-
get: function () { return
|
|
5137
|
+
get: function () { return chunkF6SLLVEL_js.trackTxResponseFromJSON; }
|
|
5138
5138
|
});
|
|
5139
5139
|
Object.defineProperty(exports, "trackTxResponseToJSON", {
|
|
5140
5140
|
enumerable: true,
|
|
5141
|
-
get: function () { return
|
|
5141
|
+
get: function () { return chunkF6SLLVEL_js.trackTxResponseToJSON; }
|
|
5142
5142
|
});
|
|
5143
5143
|
Object.defineProperty(exports, "transferAssetReleaseFromJSON", {
|
|
5144
5144
|
enumerable: true,
|
|
5145
|
-
get: function () { return
|
|
5145
|
+
get: function () { return chunkF6SLLVEL_js.transferAssetReleaseFromJSON; }
|
|
5146
5146
|
});
|
|
5147
5147
|
Object.defineProperty(exports, "transferAssetReleaseToJSON", {
|
|
5148
5148
|
enumerable: true,
|
|
5149
|
-
get: function () { return
|
|
5149
|
+
get: function () { return chunkF6SLLVEL_js.transferAssetReleaseToJSON; }
|
|
5150
5150
|
});
|
|
5151
5151
|
Object.defineProperty(exports, "transferEventFromJSON", {
|
|
5152
5152
|
enumerable: true,
|
|
5153
|
-
get: function () { return
|
|
5153
|
+
get: function () { return chunkF6SLLVEL_js.transferEventFromJSON; }
|
|
5154
5154
|
});
|
|
5155
5155
|
Object.defineProperty(exports, "transferEventToJSON", {
|
|
5156
5156
|
enumerable: true,
|
|
5157
|
-
get: function () { return
|
|
5157
|
+
get: function () { return chunkF6SLLVEL_js.transferEventToJSON; }
|
|
5158
5158
|
});
|
|
5159
5159
|
Object.defineProperty(exports, "transferFromJSON", {
|
|
5160
5160
|
enumerable: true,
|
|
5161
|
-
get: function () { return
|
|
5161
|
+
get: function () { return chunkF6SLLVEL_js.transferFromJSON; }
|
|
5162
5162
|
});
|
|
5163
5163
|
Object.defineProperty(exports, "transferInfoFromJSON", {
|
|
5164
5164
|
enumerable: true,
|
|
5165
|
-
get: function () { return
|
|
5165
|
+
get: function () { return chunkF6SLLVEL_js.transferInfoFromJSON; }
|
|
5166
5166
|
});
|
|
5167
5167
|
Object.defineProperty(exports, "transferInfoToJSON", {
|
|
5168
5168
|
enumerable: true,
|
|
5169
|
-
get: function () { return
|
|
5169
|
+
get: function () { return chunkF6SLLVEL_js.transferInfoToJSON; }
|
|
5170
5170
|
});
|
|
5171
5171
|
Object.defineProperty(exports, "transferStatusFromJSON", {
|
|
5172
5172
|
enumerable: true,
|
|
5173
|
-
get: function () { return
|
|
5173
|
+
get: function () { return chunkF6SLLVEL_js.transferStatusFromJSON; }
|
|
5174
5174
|
});
|
|
5175
5175
|
Object.defineProperty(exports, "transferStatusToJSON", {
|
|
5176
5176
|
enumerable: true,
|
|
5177
|
-
get: function () { return
|
|
5177
|
+
get: function () { return chunkF6SLLVEL_js.transferStatusToJSON; }
|
|
5178
5178
|
});
|
|
5179
5179
|
Object.defineProperty(exports, "transferToJSON", {
|
|
5180
5180
|
enumerable: true,
|
|
5181
|
-
get: function () { return
|
|
5181
|
+
get: function () { return chunkF6SLLVEL_js.transferToJSON; }
|
|
5182
5182
|
});
|
|
5183
5183
|
Object.defineProperty(exports, "txFromJSON", {
|
|
5184
5184
|
enumerable: true,
|
|
5185
|
-
get: function () { return
|
|
5185
|
+
get: function () { return chunkF6SLLVEL_js.txFromJSON; }
|
|
5186
5186
|
});
|
|
5187
5187
|
Object.defineProperty(exports, "txStatusRequestFromJSON", {
|
|
5188
5188
|
enumerable: true,
|
|
5189
|
-
get: function () { return
|
|
5189
|
+
get: function () { return chunkF6SLLVEL_js.txStatusRequestFromJSON; }
|
|
5190
5190
|
});
|
|
5191
5191
|
Object.defineProperty(exports, "txStatusRequestToJSON", {
|
|
5192
5192
|
enumerable: true,
|
|
5193
|
-
get: function () { return
|
|
5193
|
+
get: function () { return chunkF6SLLVEL_js.txStatusRequestToJSON; }
|
|
5194
5194
|
});
|
|
5195
5195
|
Object.defineProperty(exports, "txStatusResponseFromJSON", {
|
|
5196
5196
|
enumerable: true,
|
|
5197
|
-
get: function () { return
|
|
5197
|
+
get: function () { return chunkF6SLLVEL_js.txStatusResponseFromJSON; }
|
|
5198
5198
|
});
|
|
5199
5199
|
Object.defineProperty(exports, "txStatusResponseToJSON", {
|
|
5200
5200
|
enumerable: true,
|
|
5201
|
-
get: function () { return
|
|
5201
|
+
get: function () { return chunkF6SLLVEL_js.txStatusResponseToJSON; }
|
|
5202
5202
|
});
|
|
5203
5203
|
Object.defineProperty(exports, "txToJSON", {
|
|
5204
5204
|
enumerable: true,
|
|
5205
|
-
get: function () { return
|
|
5205
|
+
get: function () { return chunkF6SLLVEL_js.txToJSON; }
|
|
5206
5206
|
});
|
|
5207
5207
|
exports.SKIP_API_URL = SKIP_API_URL;
|
|
5208
5208
|
exports.SkipClient = SkipClient;
|