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