@skip-go/client 0.6.0 → 0.8.0
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-IEAKY5XG.js → chunk-JQE2L2GO.js} +24 -2
- package/dist/index.d.ts +12 -7
- package/dist/index.js +195 -184
- package/dist/{shared-CpfDn0H3.d.ts → shared-D1dMlI_1.d.ts} +19 -3
- package/dist/transactions.d.ts +1 -1
- package/dist/types.d.ts +5 -3
- package/dist/types.js +167 -159
- 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 chunkJQE2L2GO_js = require('./chunk-JQE2L2GO.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');
|
|
@@ -2959,7 +2959,7 @@ var RequestClient = class {
|
|
|
2959
2959
|
}
|
|
2960
2960
|
};
|
|
2961
2961
|
var SKIP_API_URL = "https://api.skip.build";
|
|
2962
|
-
var
|
|
2962
|
+
var SkipClient = class {
|
|
2963
2963
|
constructor(options = {}) {
|
|
2964
2964
|
this.cumulativeAffiliateFeeBPS = "0";
|
|
2965
2965
|
var _a, _b, _c;
|
|
@@ -2992,11 +2992,11 @@ var SkipRouter = class {
|
|
|
2992
2992
|
return chunk6FNC3XMI_js.__async(this, arguments, function* (options = {}) {
|
|
2993
2993
|
const response = yield this.requestClient.get(
|
|
2994
2994
|
"/v2/fungible/assets",
|
|
2995
|
-
|
|
2995
|
+
chunkJQE2L2GO_js.assetsRequestToJSON(chunk6FNC3XMI_js.__spreadValues({}, options))
|
|
2996
2996
|
);
|
|
2997
2997
|
return Object.entries(response.chain_to_assets_map).reduce(
|
|
2998
2998
|
(acc, [chainID, { assets }]) => {
|
|
2999
|
-
acc[chainID] = assets.map((asset) =>
|
|
2999
|
+
acc[chainID] = assets.map((asset) => chunkJQE2L2GO_js.assetFromJSON(asset));
|
|
3000
3000
|
return acc;
|
|
3001
3001
|
},
|
|
3002
3002
|
{}
|
|
@@ -3007,11 +3007,11 @@ var SkipRouter = class {
|
|
|
3007
3007
|
return chunk6FNC3XMI_js.__async(this, null, function* () {
|
|
3008
3008
|
const response = yield this.requestClient.post(
|
|
3009
3009
|
"/v2/fungible/assets_from_source",
|
|
3010
|
-
|
|
3010
|
+
chunkJQE2L2GO_js.assetsFromSourceRequestToJSON(chunk6FNC3XMI_js.__spreadValues({}, options))
|
|
3011
3011
|
);
|
|
3012
3012
|
return Object.entries(response.dest_assets).reduce(
|
|
3013
3013
|
(acc, [chainID, { assets }]) => {
|
|
3014
|
-
acc[chainID] = assets.map((asset) =>
|
|
3014
|
+
acc[chainID] = assets.map((asset) => chunkJQE2L2GO_js.assetFromJSON(asset));
|
|
3015
3015
|
return acc;
|
|
3016
3016
|
},
|
|
3017
3017
|
{}
|
|
@@ -3022,9 +3022,9 @@ var SkipRouter = class {
|
|
|
3022
3022
|
return chunk6FNC3XMI_js.__async(this, null, function* () {
|
|
3023
3023
|
const response = yield this.requestClient.post(
|
|
3024
3024
|
"/v2/fungible/assets_between_chains",
|
|
3025
|
-
|
|
3025
|
+
chunkJQE2L2GO_js.assetsBetweenChainsRequestToJSON(options)
|
|
3026
3026
|
);
|
|
3027
|
-
return
|
|
3027
|
+
return chunkJQE2L2GO_js.assetsBetweenChainsResponseFromJSON(response).assetsBetweenChains;
|
|
3028
3028
|
});
|
|
3029
3029
|
}
|
|
3030
3030
|
bridges() {
|
|
@@ -3032,7 +3032,7 @@ var SkipRouter = class {
|
|
|
3032
3032
|
const response = yield this.requestClient.get(
|
|
3033
3033
|
"/v2/info/bridges"
|
|
3034
3034
|
);
|
|
3035
|
-
return
|
|
3035
|
+
return chunkJQE2L2GO_js.bridgesResponseFromJSON(response).bridges;
|
|
3036
3036
|
});
|
|
3037
3037
|
}
|
|
3038
3038
|
chains() {
|
|
@@ -3048,7 +3048,7 @@ var SkipRouter = class {
|
|
|
3048
3048
|
only_testnets: onlyTestnets,
|
|
3049
3049
|
chain_ids: chainIDs
|
|
3050
3050
|
});
|
|
3051
|
-
return response.chains.map((chain) =>
|
|
3051
|
+
return response.chains.map((chain) => chunkJQE2L2GO_js.chainFromJSON(chain));
|
|
3052
3052
|
});
|
|
3053
3053
|
}
|
|
3054
3054
|
executeRoute(options) {
|
|
@@ -3746,51 +3746,51 @@ var SkipRouter = class {
|
|
|
3746
3746
|
}
|
|
3747
3747
|
messages(options) {
|
|
3748
3748
|
return chunk6FNC3XMI_js.__async(this, null, function* () {
|
|
3749
|
-
const response = yield this.requestClient.post("/v2/fungible/msgs", chunk6FNC3XMI_js.__spreadProps(chunk6FNC3XMI_js.__spreadValues({},
|
|
3749
|
+
const response = yield this.requestClient.post("/v2/fungible/msgs", chunk6FNC3XMI_js.__spreadProps(chunk6FNC3XMI_js.__spreadValues({}, chunkJQE2L2GO_js.msgsRequestToJSON(options)), {
|
|
3750
3750
|
slippage_tolerance_percent: options.slippageTolerancePercent || "0"
|
|
3751
3751
|
}));
|
|
3752
|
-
return
|
|
3752
|
+
return chunkJQE2L2GO_js.messageResponseFromJSON(response);
|
|
3753
3753
|
});
|
|
3754
3754
|
}
|
|
3755
3755
|
route(options) {
|
|
3756
3756
|
return chunk6FNC3XMI_js.__async(this, null, function* () {
|
|
3757
|
-
const response = yield this.requestClient.post("/v2/fungible/route", chunk6FNC3XMI_js.__spreadProps(chunk6FNC3XMI_js.__spreadValues({},
|
|
3757
|
+
const response = yield this.requestClient.post("/v2/fungible/route", chunk6FNC3XMI_js.__spreadProps(chunk6FNC3XMI_js.__spreadValues({}, chunkJQE2L2GO_js.routeRequestToJSON(options)), {
|
|
3758
3758
|
cumulative_affiliate_fee_bps: this.cumulativeAffiliateFeeBPS
|
|
3759
3759
|
}));
|
|
3760
|
-
return
|
|
3760
|
+
return chunkJQE2L2GO_js.routeResponseFromJSON(response);
|
|
3761
3761
|
});
|
|
3762
3762
|
}
|
|
3763
3763
|
msgsDirect(options) {
|
|
3764
3764
|
return chunk6FNC3XMI_js.__async(this, null, function* () {
|
|
3765
|
-
const response = yield this.requestClient.post("/v2/fungible/msgs_direct", chunk6FNC3XMI_js.__spreadValues({},
|
|
3765
|
+
const response = yield this.requestClient.post("/v2/fungible/msgs_direct", chunk6FNC3XMI_js.__spreadValues({}, chunkJQE2L2GO_js.msgsDirectRequestToJSON(options)));
|
|
3766
3766
|
return {
|
|
3767
|
-
msgs: response.msgs.map((msg) =>
|
|
3768
|
-
txs: response.txs.map((tx) =>
|
|
3769
|
-
route:
|
|
3767
|
+
msgs: response.msgs.map((msg) => chunkJQE2L2GO_js.msgFromJSON(msg)),
|
|
3768
|
+
txs: response.txs.map((tx) => chunkJQE2L2GO_js.txFromJSON(tx)),
|
|
3769
|
+
route: chunkJQE2L2GO_js.routeResponseFromJSON(response.route)
|
|
3770
3770
|
};
|
|
3771
3771
|
});
|
|
3772
3772
|
}
|
|
3773
3773
|
recommendAssets(request) {
|
|
3774
3774
|
return chunk6FNC3XMI_js.__async(this, null, function* () {
|
|
3775
|
-
const options =
|
|
3775
|
+
const options = chunkJQE2L2GO_js.recommendAssetsRequestToJSON({
|
|
3776
3776
|
requests: Array.isArray(request) ? request : [request]
|
|
3777
3777
|
});
|
|
3778
3778
|
const response = yield this.requestClient.post(
|
|
3779
3779
|
"/v2/fungible/recommend_assets",
|
|
3780
3780
|
options
|
|
3781
3781
|
);
|
|
3782
|
-
return
|
|
3782
|
+
return chunkJQE2L2GO_js.recommendAssetsResponseFromJSON(response).recommendationEntries;
|
|
3783
3783
|
});
|
|
3784
3784
|
}
|
|
3785
3785
|
ibcOriginAssets(assets) {
|
|
3786
3786
|
return chunk6FNC3XMI_js.__async(this, null, function* () {
|
|
3787
3787
|
const response = yield this.requestClient.post(
|
|
3788
3788
|
"/v2/fungible/ibc_origin_assets",
|
|
3789
|
-
|
|
3789
|
+
chunkJQE2L2GO_js.originAssetsRequestToJSON({
|
|
3790
3790
|
assets
|
|
3791
3791
|
})
|
|
3792
3792
|
);
|
|
3793
|
-
return
|
|
3793
|
+
return chunkJQE2L2GO_js.originAssetsResponseFromJSON(response).originAssets;
|
|
3794
3794
|
});
|
|
3795
3795
|
}
|
|
3796
3796
|
submitTransaction(_0) {
|
|
@@ -3802,7 +3802,7 @@ var SkipRouter = class {
|
|
|
3802
3802
|
chain_id: chainID,
|
|
3803
3803
|
tx
|
|
3804
3804
|
});
|
|
3805
|
-
return
|
|
3805
|
+
return chunkJQE2L2GO_js.submitTxResponseFromJSON(response);
|
|
3806
3806
|
});
|
|
3807
3807
|
}
|
|
3808
3808
|
trackTransaction(_0) {
|
|
@@ -3823,7 +3823,7 @@ var SkipRouter = class {
|
|
|
3823
3823
|
chain_id: chainID,
|
|
3824
3824
|
tx_hash: txHash
|
|
3825
3825
|
});
|
|
3826
|
-
return
|
|
3826
|
+
return chunkJQE2L2GO_js.trackTxResponseFromJSON(response);
|
|
3827
3827
|
} catch (error) {
|
|
3828
3828
|
lastError = error;
|
|
3829
3829
|
retries++;
|
|
@@ -3851,7 +3851,7 @@ var SkipRouter = class {
|
|
|
3851
3851
|
chain_id: chainID,
|
|
3852
3852
|
tx_hash: txHash
|
|
3853
3853
|
});
|
|
3854
|
-
return
|
|
3854
|
+
return chunkJQE2L2GO_js.txStatusResponseFromJSON(response);
|
|
3855
3855
|
} catch (error) {
|
|
3856
3856
|
lastError = error;
|
|
3857
3857
|
retries++;
|
|
@@ -3896,7 +3896,7 @@ var SkipRouter = class {
|
|
|
3896
3896
|
const response = yield this.requestClient.get("/v2/fungible/venues", {
|
|
3897
3897
|
only_testnets: onlyTestnets
|
|
3898
3898
|
});
|
|
3899
|
-
return response.venues.map((venue) =>
|
|
3899
|
+
return response.venues.map((venue) => chunkJQE2L2GO_js.swapVenueFromJSON(venue));
|
|
3900
3900
|
});
|
|
3901
3901
|
}
|
|
3902
3902
|
getCosmsosGasAmountForMessage(client, signerAddress, chainID, cosmosMessages) {
|
|
@@ -4379,6 +4379,8 @@ function validateChainIDsToAffiliates(chainIDsToAffiliates) {
|
|
|
4379
4379
|
}
|
|
4380
4380
|
return firstAffiliateBasisPointsFee == null ? void 0 : firstAffiliateBasisPointsFee.toFixed(0);
|
|
4381
4381
|
}
|
|
4382
|
+
var SkipRouter = class extends SkipClient {
|
|
4383
|
+
};
|
|
4382
4384
|
function raise(message, options) {
|
|
4383
4385
|
throw new Error(message, options);
|
|
4384
4386
|
}
|
|
@@ -4404,635 +4406,644 @@ Object.defineProperty(exports, "getEncodeObjectFromCosmosMessageInjective", {
|
|
|
4404
4406
|
});
|
|
4405
4407
|
Object.defineProperty(exports, "affiliateFromJSON", {
|
|
4406
4408
|
enumerable: true,
|
|
4407
|
-
get: function () { return
|
|
4409
|
+
get: function () { return chunkJQE2L2GO_js.affiliateFromJSON; }
|
|
4408
4410
|
});
|
|
4409
4411
|
Object.defineProperty(exports, "affiliateToJSON", {
|
|
4410
4412
|
enumerable: true,
|
|
4411
|
-
get: function () { return
|
|
4413
|
+
get: function () { return chunkJQE2L2GO_js.affiliateToJSON; }
|
|
4412
4414
|
});
|
|
4413
4415
|
Object.defineProperty(exports, "assetBetweenChainsFromJSON", {
|
|
4414
4416
|
enumerable: true,
|
|
4415
|
-
get: function () { return
|
|
4417
|
+
get: function () { return chunkJQE2L2GO_js.assetBetweenChainsFromJSON; }
|
|
4416
4418
|
});
|
|
4417
4419
|
Object.defineProperty(exports, "assetBetweenChainsToJSON", {
|
|
4418
4420
|
enumerable: true,
|
|
4419
|
-
get: function () { return
|
|
4421
|
+
get: function () { return chunkJQE2L2GO_js.assetBetweenChainsToJSON; }
|
|
4420
4422
|
});
|
|
4421
4423
|
Object.defineProperty(exports, "assetFromJSON", {
|
|
4422
4424
|
enumerable: true,
|
|
4423
|
-
get: function () { return
|
|
4425
|
+
get: function () { return chunkJQE2L2GO_js.assetFromJSON; }
|
|
4424
4426
|
});
|
|
4425
4427
|
Object.defineProperty(exports, "assetOrErrorFromJSON", {
|
|
4426
4428
|
enumerable: true,
|
|
4427
|
-
get: function () { return
|
|
4429
|
+
get: function () { return chunkJQE2L2GO_js.assetOrErrorFromJSON; }
|
|
4428
4430
|
});
|
|
4429
4431
|
Object.defineProperty(exports, "assetOrErrorToJSON", {
|
|
4430
4432
|
enumerable: true,
|
|
4431
|
-
get: function () { return
|
|
4433
|
+
get: function () { return chunkJQE2L2GO_js.assetOrErrorToJSON; }
|
|
4432
4434
|
});
|
|
4433
4435
|
Object.defineProperty(exports, "assetRecommendationFromJSON", {
|
|
4434
4436
|
enumerable: true,
|
|
4435
|
-
get: function () { return
|
|
4437
|
+
get: function () { return chunkJQE2L2GO_js.assetRecommendationFromJSON; }
|
|
4436
4438
|
});
|
|
4437
4439
|
Object.defineProperty(exports, "assetRecommendationRequestFromJSON", {
|
|
4438
4440
|
enumerable: true,
|
|
4439
|
-
get: function () { return
|
|
4441
|
+
get: function () { return chunkJQE2L2GO_js.assetRecommendationRequestFromJSON; }
|
|
4440
4442
|
});
|
|
4441
4443
|
Object.defineProperty(exports, "assetRecommendationRequestToJSON", {
|
|
4442
4444
|
enumerable: true,
|
|
4443
|
-
get: function () { return
|
|
4445
|
+
get: function () { return chunkJQE2L2GO_js.assetRecommendationRequestToJSON; }
|
|
4444
4446
|
});
|
|
4445
4447
|
Object.defineProperty(exports, "assetRecommendationToJSON", {
|
|
4446
4448
|
enumerable: true,
|
|
4447
|
-
get: function () { return
|
|
4449
|
+
get: function () { return chunkJQE2L2GO_js.assetRecommendationToJSON; }
|
|
4448
4450
|
});
|
|
4449
4451
|
Object.defineProperty(exports, "assetToJSON", {
|
|
4450
4452
|
enumerable: true,
|
|
4451
|
-
get: function () { return
|
|
4453
|
+
get: function () { return chunkJQE2L2GO_js.assetToJSON; }
|
|
4452
4454
|
});
|
|
4453
4455
|
Object.defineProperty(exports, "assetsBetweenChainsRequestFromJSON", {
|
|
4454
4456
|
enumerable: true,
|
|
4455
|
-
get: function () { return
|
|
4457
|
+
get: function () { return chunkJQE2L2GO_js.assetsBetweenChainsRequestFromJSON; }
|
|
4456
4458
|
});
|
|
4457
4459
|
Object.defineProperty(exports, "assetsBetweenChainsRequestToJSON", {
|
|
4458
4460
|
enumerable: true,
|
|
4459
|
-
get: function () { return
|
|
4461
|
+
get: function () { return chunkJQE2L2GO_js.assetsBetweenChainsRequestToJSON; }
|
|
4460
4462
|
});
|
|
4461
4463
|
Object.defineProperty(exports, "assetsBetweenChainsResponseFromJSON", {
|
|
4462
4464
|
enumerable: true,
|
|
4463
|
-
get: function () { return
|
|
4465
|
+
get: function () { return chunkJQE2L2GO_js.assetsBetweenChainsResponseFromJSON; }
|
|
4464
4466
|
});
|
|
4465
4467
|
Object.defineProperty(exports, "assetsFromSourceRequestFromJSON", {
|
|
4466
4468
|
enumerable: true,
|
|
4467
|
-
get: function () { return
|
|
4469
|
+
get: function () { return chunkJQE2L2GO_js.assetsFromSourceRequestFromJSON; }
|
|
4468
4470
|
});
|
|
4469
4471
|
Object.defineProperty(exports, "assetsFromSourceRequestToJSON", {
|
|
4470
4472
|
enumerable: true,
|
|
4471
|
-
get: function () { return
|
|
4473
|
+
get: function () { return chunkJQE2L2GO_js.assetsFromSourceRequestToJSON; }
|
|
4472
4474
|
});
|
|
4473
4475
|
Object.defineProperty(exports, "assetsRequestFromJSON", {
|
|
4474
4476
|
enumerable: true,
|
|
4475
|
-
get: function () { return
|
|
4477
|
+
get: function () { return chunkJQE2L2GO_js.assetsRequestFromJSON; }
|
|
4476
4478
|
});
|
|
4477
4479
|
Object.defineProperty(exports, "assetsRequestToJSON", {
|
|
4478
4480
|
enumerable: true,
|
|
4479
|
-
get: function () { return
|
|
4481
|
+
get: function () { return chunkJQE2L2GO_js.assetsRequestToJSON; }
|
|
4480
4482
|
});
|
|
4481
4483
|
Object.defineProperty(exports, "axelarTransferFromJSON", {
|
|
4482
4484
|
enumerable: true,
|
|
4483
|
-
get: function () { return
|
|
4485
|
+
get: function () { return chunkJQE2L2GO_js.axelarTransferFromJSON; }
|
|
4484
4486
|
});
|
|
4485
4487
|
Object.defineProperty(exports, "axelarTransferInfoFromJSON", {
|
|
4486
4488
|
enumerable: true,
|
|
4487
|
-
get: function () { return
|
|
4489
|
+
get: function () { return chunkJQE2L2GO_js.axelarTransferInfoFromJSON; }
|
|
4488
4490
|
});
|
|
4489
4491
|
Object.defineProperty(exports, "axelarTransferInfoToJSON", {
|
|
4490
4492
|
enumerable: true,
|
|
4491
|
-
get: function () { return
|
|
4493
|
+
get: function () { return chunkJQE2L2GO_js.axelarTransferInfoToJSON; }
|
|
4492
4494
|
});
|
|
4493
4495
|
Object.defineProperty(exports, "axelarTransferToJSON", {
|
|
4494
4496
|
enumerable: true,
|
|
4495
|
-
get: function () { return
|
|
4497
|
+
get: function () { return chunkJQE2L2GO_js.axelarTransferToJSON; }
|
|
4496
4498
|
});
|
|
4497
4499
|
Object.defineProperty(exports, "axelarTransferTransactionsFromJSON", {
|
|
4498
4500
|
enumerable: true,
|
|
4499
|
-
get: function () { return
|
|
4501
|
+
get: function () { return chunkJQE2L2GO_js.axelarTransferTransactionsFromJSON; }
|
|
4500
4502
|
});
|
|
4501
4503
|
Object.defineProperty(exports, "axelarTransferTransactionsToJSON", {
|
|
4502
4504
|
enumerable: true,
|
|
4503
|
-
get: function () { return
|
|
4505
|
+
get: function () { return chunkJQE2L2GO_js.axelarTransferTransactionsToJSON; }
|
|
4504
4506
|
});
|
|
4505
4507
|
Object.defineProperty(exports, "bankSendFromJSON", {
|
|
4506
4508
|
enumerable: true,
|
|
4507
|
-
get: function () { return
|
|
4509
|
+
get: function () { return chunkJQE2L2GO_js.bankSendFromJSON; }
|
|
4508
4510
|
});
|
|
4509
4511
|
Object.defineProperty(exports, "bankSendToJSON", {
|
|
4510
4512
|
enumerable: true,
|
|
4511
|
-
get: function () { return
|
|
4513
|
+
get: function () { return chunkJQE2L2GO_js.bankSendToJSON; }
|
|
4512
4514
|
});
|
|
4513
4515
|
Object.defineProperty(exports, "bridgeFromJSON", {
|
|
4514
4516
|
enumerable: true,
|
|
4515
|
-
get: function () { return
|
|
4517
|
+
get: function () { return chunkJQE2L2GO_js.bridgeFromJSON; }
|
|
4516
4518
|
});
|
|
4517
4519
|
Object.defineProperty(exports, "bridgeToJSON", {
|
|
4518
4520
|
enumerable: true,
|
|
4519
|
-
get: function () { return
|
|
4521
|
+
get: function () { return chunkJQE2L2GO_js.bridgeToJSON; }
|
|
4520
4522
|
});
|
|
4521
4523
|
Object.defineProperty(exports, "bridgesResponseFromJSON", {
|
|
4522
4524
|
enumerable: true,
|
|
4523
|
-
get: function () { return
|
|
4525
|
+
get: function () { return chunkJQE2L2GO_js.bridgesResponseFromJSON; }
|
|
4524
4526
|
});
|
|
4525
4527
|
Object.defineProperty(exports, "bridgesResponseToJSON", {
|
|
4526
4528
|
enumerable: true,
|
|
4527
|
-
get: function () { return
|
|
4529
|
+
get: function () { return chunkJQE2L2GO_js.bridgesResponseToJSON; }
|
|
4528
4530
|
});
|
|
4529
4531
|
Object.defineProperty(exports, "cctpTransferFromJSON", {
|
|
4530
4532
|
enumerable: true,
|
|
4531
|
-
get: function () { return
|
|
4533
|
+
get: function () { return chunkJQE2L2GO_js.cctpTransferFromJSON; }
|
|
4532
4534
|
});
|
|
4533
4535
|
Object.defineProperty(exports, "cctpTransferInfoFromJSON", {
|
|
4534
4536
|
enumerable: true,
|
|
4535
|
-
get: function () { return
|
|
4537
|
+
get: function () { return chunkJQE2L2GO_js.cctpTransferInfoFromJSON; }
|
|
4536
4538
|
});
|
|
4537
4539
|
Object.defineProperty(exports, "cctpTransferInfoToJSON", {
|
|
4538
4540
|
enumerable: true,
|
|
4539
|
-
get: function () { return
|
|
4541
|
+
get: function () { return chunkJQE2L2GO_js.cctpTransferInfoToJSON; }
|
|
4540
4542
|
});
|
|
4541
4543
|
Object.defineProperty(exports, "cctpTransferToJSON", {
|
|
4542
4544
|
enumerable: true,
|
|
4543
|
-
get: function () { return
|
|
4545
|
+
get: function () { return chunkJQE2L2GO_js.cctpTransferToJSON; }
|
|
4544
4546
|
});
|
|
4545
4547
|
Object.defineProperty(exports, "cctpTransferTransactionsFromJSON", {
|
|
4546
4548
|
enumerable: true,
|
|
4547
|
-
get: function () { return
|
|
4549
|
+
get: function () { return chunkJQE2L2GO_js.cctpTransferTransactionsFromJSON; }
|
|
4548
4550
|
});
|
|
4549
4551
|
Object.defineProperty(exports, "cctpTransferTransactionsToJSON", {
|
|
4550
4552
|
enumerable: true,
|
|
4551
|
-
get: function () { return
|
|
4553
|
+
get: function () { return chunkJQE2L2GO_js.cctpTransferTransactionsToJSON; }
|
|
4552
4554
|
});
|
|
4553
4555
|
Object.defineProperty(exports, "chainAffiliatesFromJSON", {
|
|
4554
4556
|
enumerable: true,
|
|
4555
|
-
get: function () { return
|
|
4557
|
+
get: function () { return chunkJQE2L2GO_js.chainAffiliatesFromJSON; }
|
|
4556
4558
|
});
|
|
4557
4559
|
Object.defineProperty(exports, "chainAffiliatesToJSON", {
|
|
4558
4560
|
enumerable: true,
|
|
4559
|
-
get: function () { return
|
|
4561
|
+
get: function () { return chunkJQE2L2GO_js.chainAffiliatesToJSON; }
|
|
4560
4562
|
});
|
|
4561
4563
|
Object.defineProperty(exports, "chainFromJSON", {
|
|
4562
4564
|
enumerable: true,
|
|
4563
|
-
get: function () { return
|
|
4565
|
+
get: function () { return chunkJQE2L2GO_js.chainFromJSON; }
|
|
4564
4566
|
});
|
|
4565
4567
|
Object.defineProperty(exports, "chainIDsToAffiliatesMapFromJSON", {
|
|
4566
4568
|
enumerable: true,
|
|
4567
|
-
get: function () { return
|
|
4569
|
+
get: function () { return chunkJQE2L2GO_js.chainIDsToAffiliatesMapFromJSON; }
|
|
4568
4570
|
});
|
|
4569
4571
|
Object.defineProperty(exports, "chainIDsToAffiliatesMapToJSON", {
|
|
4570
4572
|
enumerable: true,
|
|
4571
|
-
get: function () { return
|
|
4573
|
+
get: function () { return chunkJQE2L2GO_js.chainIDsToAffiliatesMapToJSON; }
|
|
4572
4574
|
});
|
|
4573
4575
|
Object.defineProperty(exports, "chainToJSON", {
|
|
4574
4576
|
enumerable: true,
|
|
4575
|
-
get: function () { return
|
|
4577
|
+
get: function () { return chunkJQE2L2GO_js.chainToJSON; }
|
|
4576
4578
|
});
|
|
4577
4579
|
Object.defineProperty(exports, "chainTransactionFromJSON", {
|
|
4578
4580
|
enumerable: true,
|
|
4579
|
-
get: function () { return
|
|
4581
|
+
get: function () { return chunkJQE2L2GO_js.chainTransactionFromJSON; }
|
|
4580
4582
|
});
|
|
4581
4583
|
Object.defineProperty(exports, "chainTransactionToJSON", {
|
|
4582
4584
|
enumerable: true,
|
|
4583
|
-
get: function () { return
|
|
4585
|
+
get: function () { return chunkJQE2L2GO_js.chainTransactionToJSON; }
|
|
4584
4586
|
});
|
|
4585
4587
|
Object.defineProperty(exports, "contractCallWithTokenTransactionsFromJSON", {
|
|
4586
4588
|
enumerable: true,
|
|
4587
|
-
get: function () { return
|
|
4589
|
+
get: function () { return chunkJQE2L2GO_js.contractCallWithTokenTransactionsFromJSON; }
|
|
4588
4590
|
});
|
|
4589
4591
|
Object.defineProperty(exports, "contractCallWithTokenTransactionsToJSON", {
|
|
4590
4592
|
enumerable: true,
|
|
4591
|
-
get: function () { return
|
|
4593
|
+
get: function () { return chunkJQE2L2GO_js.contractCallWithTokenTransactionsToJSON; }
|
|
4592
4594
|
});
|
|
4593
4595
|
Object.defineProperty(exports, "cosmWasmContractMsgFromJSON", {
|
|
4594
4596
|
enumerable: true,
|
|
4595
|
-
get: function () { return
|
|
4597
|
+
get: function () { return chunkJQE2L2GO_js.cosmWasmContractMsgFromJSON; }
|
|
4596
4598
|
});
|
|
4597
4599
|
Object.defineProperty(exports, "cosmWasmContractMsgToJSON", {
|
|
4598
4600
|
enumerable: true,
|
|
4599
|
-
get: function () { return
|
|
4601
|
+
get: function () { return chunkJQE2L2GO_js.cosmWasmContractMsgToJSON; }
|
|
4600
4602
|
});
|
|
4601
4603
|
Object.defineProperty(exports, "cosmosMsgFromJSON", {
|
|
4602
4604
|
enumerable: true,
|
|
4603
|
-
get: function () { return
|
|
4605
|
+
get: function () { return chunkJQE2L2GO_js.cosmosMsgFromJSON; }
|
|
4604
4606
|
});
|
|
4605
4607
|
Object.defineProperty(exports, "cosmosMsgToJSON", {
|
|
4606
4608
|
enumerable: true,
|
|
4607
|
-
get: function () { return
|
|
4609
|
+
get: function () { return chunkJQE2L2GO_js.cosmosMsgToJSON; }
|
|
4608
4610
|
});
|
|
4609
4611
|
Object.defineProperty(exports, "cosmosTxFromJSON", {
|
|
4610
4612
|
enumerable: true,
|
|
4611
|
-
get: function () { return
|
|
4613
|
+
get: function () { return chunkJQE2L2GO_js.cosmosTxFromJSON; }
|
|
4612
4614
|
});
|
|
4613
4615
|
Object.defineProperty(exports, "cosmosTxToJSON", {
|
|
4614
4616
|
enumerable: true,
|
|
4615
|
-
get: function () { return
|
|
4617
|
+
get: function () { return chunkJQE2L2GO_js.cosmosTxToJSON; }
|
|
4616
4618
|
});
|
|
4617
4619
|
Object.defineProperty(exports, "denomWithChainIDFromJSON", {
|
|
4618
4620
|
enumerable: true,
|
|
4619
|
-
get: function () { return
|
|
4621
|
+
get: function () { return chunkJQE2L2GO_js.denomWithChainIDFromJSON; }
|
|
4620
4622
|
});
|
|
4621
4623
|
Object.defineProperty(exports, "denomWithChainIDToJSON", {
|
|
4622
4624
|
enumerable: true,
|
|
4623
|
-
get: function () { return
|
|
4625
|
+
get: function () { return chunkJQE2L2GO_js.denomWithChainIDToJSON; }
|
|
4624
4626
|
});
|
|
4625
4627
|
Object.defineProperty(exports, "erc20ApprovalFromJSON", {
|
|
4626
4628
|
enumerable: true,
|
|
4627
|
-
get: function () { return
|
|
4629
|
+
get: function () { return chunkJQE2L2GO_js.erc20ApprovalFromJSON; }
|
|
4628
4630
|
});
|
|
4629
4631
|
Object.defineProperty(exports, "erc20ApprovalToJSON", {
|
|
4630
4632
|
enumerable: true,
|
|
4631
|
-
get: function () { return
|
|
4633
|
+
get: function () { return chunkJQE2L2GO_js.erc20ApprovalToJSON; }
|
|
4632
4634
|
});
|
|
4633
4635
|
Object.defineProperty(exports, "estimatedFeeFromJSON", {
|
|
4634
4636
|
enumerable: true,
|
|
4635
|
-
get: function () { return
|
|
4637
|
+
get: function () { return chunkJQE2L2GO_js.estimatedFeeFromJSON; }
|
|
4636
4638
|
});
|
|
4637
4639
|
Object.defineProperty(exports, "estimatedFeeToJSON", {
|
|
4638
4640
|
enumerable: true,
|
|
4639
|
-
get: function () { return
|
|
4641
|
+
get: function () { return chunkJQE2L2GO_js.estimatedFeeToJSON; }
|
|
4640
4642
|
});
|
|
4641
4643
|
Object.defineProperty(exports, "evmSwapFromJSON", {
|
|
4642
4644
|
enumerable: true,
|
|
4643
|
-
get: function () { return
|
|
4645
|
+
get: function () { return chunkJQE2L2GO_js.evmSwapFromJSON; }
|
|
4644
4646
|
});
|
|
4645
4647
|
Object.defineProperty(exports, "evmSwapToJSON", {
|
|
4646
4648
|
enumerable: true,
|
|
4647
|
-
get: function () { return
|
|
4649
|
+
get: function () { return chunkJQE2L2GO_js.evmSwapToJSON; }
|
|
4648
4650
|
});
|
|
4649
4651
|
Object.defineProperty(exports, "evmTxFromJSON", {
|
|
4650
4652
|
enumerable: true,
|
|
4651
|
-
get: function () { return
|
|
4653
|
+
get: function () { return chunkJQE2L2GO_js.evmTxFromJSON; }
|
|
4652
4654
|
});
|
|
4653
4655
|
Object.defineProperty(exports, "evmTxToJSON", {
|
|
4654
4656
|
enumerable: true,
|
|
4655
|
-
get: function () { return
|
|
4657
|
+
get: function () { return chunkJQE2L2GO_js.evmTxToJSON; }
|
|
4656
4658
|
});
|
|
4657
4659
|
Object.defineProperty(exports, "feeAssetFromJSON", {
|
|
4658
4660
|
enumerable: true,
|
|
4659
|
-
get: function () { return
|
|
4661
|
+
get: function () { return chunkJQE2L2GO_js.feeAssetFromJSON; }
|
|
4660
4662
|
});
|
|
4661
4663
|
Object.defineProperty(exports, "feeAssetToJSON", {
|
|
4662
4664
|
enumerable: true,
|
|
4663
|
-
get: function () { return
|
|
4665
|
+
get: function () { return chunkJQE2L2GO_js.feeAssetToJSON; }
|
|
4664
4666
|
});
|
|
4665
4667
|
Object.defineProperty(exports, "hyperlaneTransferFromJSON", {
|
|
4666
4668
|
enumerable: true,
|
|
4667
|
-
get: function () { return
|
|
4669
|
+
get: function () { return chunkJQE2L2GO_js.hyperlaneTransferFromJSON; }
|
|
4668
4670
|
});
|
|
4669
4671
|
Object.defineProperty(exports, "hyperlaneTransferInfoFromJSON", {
|
|
4670
4672
|
enumerable: true,
|
|
4671
|
-
get: function () { return
|
|
4673
|
+
get: function () { return chunkJQE2L2GO_js.hyperlaneTransferInfoFromJSON; }
|
|
4672
4674
|
});
|
|
4673
4675
|
Object.defineProperty(exports, "hyperlaneTransferInfoToJSON", {
|
|
4674
4676
|
enumerable: true,
|
|
4675
|
-
get: function () { return
|
|
4677
|
+
get: function () { return chunkJQE2L2GO_js.hyperlaneTransferInfoToJSON; }
|
|
4676
4678
|
});
|
|
4677
4679
|
Object.defineProperty(exports, "hyperlaneTransferToJSON", {
|
|
4678
4680
|
enumerable: true,
|
|
4679
|
-
get: function () { return
|
|
4681
|
+
get: function () { return chunkJQE2L2GO_js.hyperlaneTransferToJSON; }
|
|
4680
4682
|
});
|
|
4681
4683
|
Object.defineProperty(exports, "hyperlaneTransferTransactionsFromJSON", {
|
|
4682
4684
|
enumerable: true,
|
|
4683
|
-
get: function () { return
|
|
4685
|
+
get: function () { return chunkJQE2L2GO_js.hyperlaneTransferTransactionsFromJSON; }
|
|
4684
4686
|
});
|
|
4685
4687
|
Object.defineProperty(exports, "hyperlaneTransferTransactionsToJSON", {
|
|
4686
4688
|
enumerable: true,
|
|
4687
|
-
get: function () { return
|
|
4689
|
+
get: function () { return chunkJQE2L2GO_js.hyperlaneTransferTransactionsToJSON; }
|
|
4688
4690
|
});
|
|
4689
4691
|
Object.defineProperty(exports, "ibcAddressFromJSON", {
|
|
4690
4692
|
enumerable: true,
|
|
4691
|
-
get: function () { return
|
|
4693
|
+
get: function () { return chunkJQE2L2GO_js.ibcAddressFromJSON; }
|
|
4692
4694
|
});
|
|
4693
4695
|
Object.defineProperty(exports, "ibcAddressToJSON", {
|
|
4694
4696
|
enumerable: true,
|
|
4695
|
-
get: function () { return
|
|
4697
|
+
get: function () { return chunkJQE2L2GO_js.ibcAddressToJSON; }
|
|
4696
4698
|
});
|
|
4697
4699
|
Object.defineProperty(exports, "ibcCapabilitiesFromJSON", {
|
|
4698
4700
|
enumerable: true,
|
|
4699
|
-
get: function () { return
|
|
4701
|
+
get: function () { return chunkJQE2L2GO_js.ibcCapabilitiesFromJSON; }
|
|
4700
4702
|
});
|
|
4701
4703
|
Object.defineProperty(exports, "ibcCapabilitiesToJSON", {
|
|
4702
4704
|
enumerable: true,
|
|
4703
|
-
get: function () { return
|
|
4705
|
+
get: function () { return chunkJQE2L2GO_js.ibcCapabilitiesToJSON; }
|
|
4704
4706
|
});
|
|
4705
4707
|
Object.defineProperty(exports, "messageResponseFromJSON", {
|
|
4706
4708
|
enumerable: true,
|
|
4707
|
-
get: function () { return
|
|
4709
|
+
get: function () { return chunkJQE2L2GO_js.messageResponseFromJSON; }
|
|
4708
4710
|
});
|
|
4709
4711
|
Object.defineProperty(exports, "msgFromJSON", {
|
|
4710
4712
|
enumerable: true,
|
|
4711
|
-
get: function () { return
|
|
4713
|
+
get: function () { return chunkJQE2L2GO_js.msgFromJSON; }
|
|
4712
4714
|
});
|
|
4713
4715
|
Object.defineProperty(exports, "msgToJSON", {
|
|
4714
4716
|
enumerable: true,
|
|
4715
|
-
get: function () { return
|
|
4717
|
+
get: function () { return chunkJQE2L2GO_js.msgToJSON; }
|
|
4716
4718
|
});
|
|
4717
4719
|
Object.defineProperty(exports, "msgsDirectRequestFromJSON", {
|
|
4718
4720
|
enumerable: true,
|
|
4719
|
-
get: function () { return
|
|
4721
|
+
get: function () { return chunkJQE2L2GO_js.msgsDirectRequestFromJSON; }
|
|
4720
4722
|
});
|
|
4721
4723
|
Object.defineProperty(exports, "msgsDirectRequestToJSON", {
|
|
4722
4724
|
enumerable: true,
|
|
4723
|
-
get: function () { return
|
|
4725
|
+
get: function () { return chunkJQE2L2GO_js.msgsDirectRequestToJSON; }
|
|
4724
4726
|
});
|
|
4725
4727
|
Object.defineProperty(exports, "msgsRequestFromJSON", {
|
|
4726
4728
|
enumerable: true,
|
|
4727
|
-
get: function () { return
|
|
4729
|
+
get: function () { return chunkJQE2L2GO_js.msgsRequestFromJSON; }
|
|
4728
4730
|
});
|
|
4729
4731
|
Object.defineProperty(exports, "msgsRequestToJSON", {
|
|
4730
4732
|
enumerable: true,
|
|
4731
|
-
get: function () { return
|
|
4733
|
+
get: function () { return chunkJQE2L2GO_js.msgsRequestToJSON; }
|
|
4732
4734
|
});
|
|
4733
4735
|
Object.defineProperty(exports, "multiChainMsgFromJSON", {
|
|
4734
4736
|
enumerable: true,
|
|
4735
|
-
get: function () { return
|
|
4737
|
+
get: function () { return chunkJQE2L2GO_js.multiChainMsgFromJSON; }
|
|
4736
4738
|
});
|
|
4737
4739
|
Object.defineProperty(exports, "multiChainMsgToJSON", {
|
|
4738
4740
|
enumerable: true,
|
|
4739
|
-
get: function () { return
|
|
4741
|
+
get: function () { return chunkJQE2L2GO_js.multiChainMsgToJSON; }
|
|
4740
4742
|
});
|
|
4741
4743
|
Object.defineProperty(exports, "nextBlockingTransferFromJSON", {
|
|
4742
4744
|
enumerable: true,
|
|
4743
|
-
get: function () { return
|
|
4745
|
+
get: function () { return chunkJQE2L2GO_js.nextBlockingTransferFromJSON; }
|
|
4744
4746
|
});
|
|
4745
4747
|
Object.defineProperty(exports, "nextBlockingTransferToJSON", {
|
|
4746
4748
|
enumerable: true,
|
|
4747
|
-
get: function () { return
|
|
4749
|
+
get: function () { return chunkJQE2L2GO_js.nextBlockingTransferToJSON; }
|
|
4748
4750
|
});
|
|
4749
4751
|
Object.defineProperty(exports, "opInitTransferFromJSON", {
|
|
4750
4752
|
enumerable: true,
|
|
4751
|
-
get: function () { return
|
|
4753
|
+
get: function () { return chunkJQE2L2GO_js.opInitTransferFromJSON; }
|
|
4752
4754
|
});
|
|
4753
4755
|
Object.defineProperty(exports, "opInitTransferInfoFromJSON", {
|
|
4754
4756
|
enumerable: true,
|
|
4755
|
-
get: function () { return
|
|
4757
|
+
get: function () { return chunkJQE2L2GO_js.opInitTransferInfoFromJSON; }
|
|
4756
4758
|
});
|
|
4757
4759
|
Object.defineProperty(exports, "opInitTransferInfoToJSON", {
|
|
4758
4760
|
enumerable: true,
|
|
4759
|
-
get: function () { return
|
|
4761
|
+
get: function () { return chunkJQE2L2GO_js.opInitTransferInfoToJSON; }
|
|
4760
4762
|
});
|
|
4761
4763
|
Object.defineProperty(exports, "opInitTransferToJSON", {
|
|
4762
4764
|
enumerable: true,
|
|
4763
|
-
get: function () { return
|
|
4765
|
+
get: function () { return chunkJQE2L2GO_js.opInitTransferToJSON; }
|
|
4764
4766
|
});
|
|
4765
4767
|
Object.defineProperty(exports, "opInitTransferTransactionsFromJSON", {
|
|
4766
4768
|
enumerable: true,
|
|
4767
|
-
get: function () { return
|
|
4769
|
+
get: function () { return chunkJQE2L2GO_js.opInitTransferTransactionsFromJSON; }
|
|
4768
4770
|
});
|
|
4769
4771
|
Object.defineProperty(exports, "opInitTransferTransactionsToJSON", {
|
|
4770
4772
|
enumerable: true,
|
|
4771
|
-
get: function () { return
|
|
4773
|
+
get: function () { return chunkJQE2L2GO_js.opInitTransferTransactionsToJSON; }
|
|
4772
4774
|
});
|
|
4773
4775
|
Object.defineProperty(exports, "operationFromJSON", {
|
|
4774
4776
|
enumerable: true,
|
|
4775
|
-
get: function () { return
|
|
4777
|
+
get: function () { return chunkJQE2L2GO_js.operationFromJSON; }
|
|
4776
4778
|
});
|
|
4777
4779
|
Object.defineProperty(exports, "operationToJSON", {
|
|
4778
4780
|
enumerable: true,
|
|
4779
|
-
get: function () { return
|
|
4781
|
+
get: function () { return chunkJQE2L2GO_js.operationToJSON; }
|
|
4780
4782
|
});
|
|
4781
4783
|
Object.defineProperty(exports, "originAssetsRequestFromJSON", {
|
|
4782
4784
|
enumerable: true,
|
|
4783
|
-
get: function () { return
|
|
4785
|
+
get: function () { return chunkJQE2L2GO_js.originAssetsRequestFromJSON; }
|
|
4784
4786
|
});
|
|
4785
4787
|
Object.defineProperty(exports, "originAssetsRequestToJSON", {
|
|
4786
4788
|
enumerable: true,
|
|
4787
|
-
get: function () { return
|
|
4789
|
+
get: function () { return chunkJQE2L2GO_js.originAssetsRequestToJSON; }
|
|
4788
4790
|
});
|
|
4789
4791
|
Object.defineProperty(exports, "originAssetsResponseFromJSON", {
|
|
4790
4792
|
enumerable: true,
|
|
4791
|
-
get: function () { return
|
|
4793
|
+
get: function () { return chunkJQE2L2GO_js.originAssetsResponseFromJSON; }
|
|
4792
4794
|
});
|
|
4793
4795
|
Object.defineProperty(exports, "originAssetsResponseToJSON", {
|
|
4794
4796
|
enumerable: true,
|
|
4795
|
-
get: function () { return
|
|
4797
|
+
get: function () { return chunkJQE2L2GO_js.originAssetsResponseToJSON; }
|
|
4796
4798
|
});
|
|
4797
4799
|
Object.defineProperty(exports, "packetFromJSON", {
|
|
4798
4800
|
enumerable: true,
|
|
4799
|
-
get: function () { return
|
|
4801
|
+
get: function () { return chunkJQE2L2GO_js.packetFromJSON; }
|
|
4800
4802
|
});
|
|
4801
4803
|
Object.defineProperty(exports, "packetToJSON", {
|
|
4802
4804
|
enumerable: true,
|
|
4803
|
-
get: function () { return
|
|
4805
|
+
get: function () { return chunkJQE2L2GO_js.packetToJSON; }
|
|
4804
4806
|
});
|
|
4805
4807
|
Object.defineProperty(exports, "postHandlerFromJSON", {
|
|
4806
4808
|
enumerable: true,
|
|
4807
|
-
get: function () { return
|
|
4809
|
+
get: function () { return chunkJQE2L2GO_js.postHandlerFromJSON; }
|
|
4808
4810
|
});
|
|
4809
4811
|
Object.defineProperty(exports, "postHandlerToJSON", {
|
|
4810
4812
|
enumerable: true,
|
|
4811
|
-
get: function () { return
|
|
4813
|
+
get: function () { return chunkJQE2L2GO_js.postHandlerToJSON; }
|
|
4812
4814
|
});
|
|
4813
4815
|
Object.defineProperty(exports, "recommendAssetsRequestFromJSON", {
|
|
4814
4816
|
enumerable: true,
|
|
4815
|
-
get: function () { return
|
|
4817
|
+
get: function () { return chunkJQE2L2GO_js.recommendAssetsRequestFromJSON; }
|
|
4816
4818
|
});
|
|
4817
4819
|
Object.defineProperty(exports, "recommendAssetsRequestToJSON", {
|
|
4818
4820
|
enumerable: true,
|
|
4819
|
-
get: function () { return
|
|
4821
|
+
get: function () { return chunkJQE2L2GO_js.recommendAssetsRequestToJSON; }
|
|
4820
4822
|
});
|
|
4821
4823
|
Object.defineProperty(exports, "recommendAssetsResponseFromJSON", {
|
|
4822
4824
|
enumerable: true,
|
|
4823
|
-
get: function () { return
|
|
4825
|
+
get: function () { return chunkJQE2L2GO_js.recommendAssetsResponseFromJSON; }
|
|
4824
4826
|
});
|
|
4825
4827
|
Object.defineProperty(exports, "recommendAssetsResponseToJSON", {
|
|
4826
4828
|
enumerable: true,
|
|
4827
|
-
get: function () { return
|
|
4829
|
+
get: function () { return chunkJQE2L2GO_js.recommendAssetsResponseToJSON; }
|
|
4828
4830
|
});
|
|
4829
4831
|
Object.defineProperty(exports, "recommendationEntryFromJSON", {
|
|
4830
4832
|
enumerable: true,
|
|
4831
|
-
get: function () { return
|
|
4833
|
+
get: function () { return chunkJQE2L2GO_js.recommendationEntryFromJSON; }
|
|
4832
4834
|
});
|
|
4833
4835
|
Object.defineProperty(exports, "recommendationEntryToJSON", {
|
|
4834
4836
|
enumerable: true,
|
|
4835
|
-
get: function () { return
|
|
4837
|
+
get: function () { return chunkJQE2L2GO_js.recommendationEntryToJSON; }
|
|
4836
4838
|
});
|
|
4837
4839
|
Object.defineProperty(exports, "routeRequestFromJSON", {
|
|
4838
4840
|
enumerable: true,
|
|
4839
|
-
get: function () { return
|
|
4841
|
+
get: function () { return chunkJQE2L2GO_js.routeRequestFromJSON; }
|
|
4840
4842
|
});
|
|
4841
4843
|
Object.defineProperty(exports, "routeRequestToJSON", {
|
|
4842
4844
|
enumerable: true,
|
|
4843
|
-
get: function () { return
|
|
4845
|
+
get: function () { return chunkJQE2L2GO_js.routeRequestToJSON; }
|
|
4844
4846
|
});
|
|
4845
4847
|
Object.defineProperty(exports, "routeResponseFromJSON", {
|
|
4846
4848
|
enumerable: true,
|
|
4847
|
-
get: function () { return
|
|
4849
|
+
get: function () { return chunkJQE2L2GO_js.routeResponseFromJSON; }
|
|
4848
4850
|
});
|
|
4849
4851
|
Object.defineProperty(exports, "routeResponseToJSON", {
|
|
4850
4852
|
enumerable: true,
|
|
4851
|
-
get: function () { return
|
|
4853
|
+
get: function () { return chunkJQE2L2GO_js.routeResponseToJSON; }
|
|
4852
4854
|
});
|
|
4853
4855
|
Object.defineProperty(exports, "sendTokenTransactionsFromJSON", {
|
|
4854
4856
|
enumerable: true,
|
|
4855
|
-
get: function () { return
|
|
4857
|
+
get: function () { return chunkJQE2L2GO_js.sendTokenTransactionsFromJSON; }
|
|
4856
4858
|
});
|
|
4857
4859
|
Object.defineProperty(exports, "sendTokenTransactionsToJSON", {
|
|
4858
4860
|
enumerable: true,
|
|
4859
|
-
get: function () { return
|
|
4861
|
+
get: function () { return chunkJQE2L2GO_js.sendTokenTransactionsToJSON; }
|
|
4862
|
+
});
|
|
4863
|
+
Object.defineProperty(exports, "smartRelayFeeQuoteFromJSON", {
|
|
4864
|
+
enumerable: true,
|
|
4865
|
+
get: function () { return chunkJQE2L2GO_js.smartRelayFeeQuoteFromJSON; }
|
|
4866
|
+
});
|
|
4867
|
+
Object.defineProperty(exports, "smartRelayFeeQuoteToJSON", {
|
|
4868
|
+
enumerable: true,
|
|
4869
|
+
get: function () { return chunkJQE2L2GO_js.smartRelayFeeQuoteToJSON; }
|
|
4860
4870
|
});
|
|
4861
4871
|
Object.defineProperty(exports, "smartSwapExactCoinInFromJSON", {
|
|
4862
4872
|
enumerable: true,
|
|
4863
|
-
get: function () { return
|
|
4873
|
+
get: function () { return chunkJQE2L2GO_js.smartSwapExactCoinInFromJSON; }
|
|
4864
4874
|
});
|
|
4865
4875
|
Object.defineProperty(exports, "smartSwapExactCoinInToJSON", {
|
|
4866
4876
|
enumerable: true,
|
|
4867
|
-
get: function () { return
|
|
4877
|
+
get: function () { return chunkJQE2L2GO_js.smartSwapExactCoinInToJSON; }
|
|
4868
4878
|
});
|
|
4869
4879
|
Object.defineProperty(exports, "smartSwapOptionsFromJSON", {
|
|
4870
4880
|
enumerable: true,
|
|
4871
|
-
get: function () { return
|
|
4881
|
+
get: function () { return chunkJQE2L2GO_js.smartSwapOptionsFromJSON; }
|
|
4872
4882
|
});
|
|
4873
4883
|
Object.defineProperty(exports, "smartSwapOptionsToJSON", {
|
|
4874
4884
|
enumerable: true,
|
|
4875
|
-
get: function () { return
|
|
4885
|
+
get: function () { return chunkJQE2L2GO_js.smartSwapOptionsToJSON; }
|
|
4876
4886
|
});
|
|
4877
4887
|
Object.defineProperty(exports, "submitTxRequestFromJSON", {
|
|
4878
4888
|
enumerable: true,
|
|
4879
|
-
get: function () { return
|
|
4889
|
+
get: function () { return chunkJQE2L2GO_js.submitTxRequestFromJSON; }
|
|
4880
4890
|
});
|
|
4881
4891
|
Object.defineProperty(exports, "submitTxRequestToJSON", {
|
|
4882
4892
|
enumerable: true,
|
|
4883
|
-
get: function () { return
|
|
4893
|
+
get: function () { return chunkJQE2L2GO_js.submitTxRequestToJSON; }
|
|
4884
4894
|
});
|
|
4885
4895
|
Object.defineProperty(exports, "submitTxResponseFromJSON", {
|
|
4886
4896
|
enumerable: true,
|
|
4887
|
-
get: function () { return
|
|
4897
|
+
get: function () { return chunkJQE2L2GO_js.submitTxResponseFromJSON; }
|
|
4888
4898
|
});
|
|
4889
4899
|
Object.defineProperty(exports, "submitTxResponseToJSON", {
|
|
4890
4900
|
enumerable: true,
|
|
4891
|
-
get: function () { return
|
|
4901
|
+
get: function () { return chunkJQE2L2GO_js.submitTxResponseToJSON; }
|
|
4892
4902
|
});
|
|
4893
4903
|
Object.defineProperty(exports, "svmTxFromJSON", {
|
|
4894
4904
|
enumerable: true,
|
|
4895
|
-
get: function () { return
|
|
4905
|
+
get: function () { return chunkJQE2L2GO_js.svmTxFromJSON; }
|
|
4896
4906
|
});
|
|
4897
4907
|
Object.defineProperty(exports, "svmTxToJSON", {
|
|
4898
4908
|
enumerable: true,
|
|
4899
|
-
get: function () { return
|
|
4909
|
+
get: function () { return chunkJQE2L2GO_js.svmTxToJSON; }
|
|
4900
4910
|
});
|
|
4901
4911
|
Object.defineProperty(exports, "swapExactCoinInFromJSON", {
|
|
4902
4912
|
enumerable: true,
|
|
4903
|
-
get: function () { return
|
|
4913
|
+
get: function () { return chunkJQE2L2GO_js.swapExactCoinInFromJSON; }
|
|
4904
4914
|
});
|
|
4905
4915
|
Object.defineProperty(exports, "swapExactCoinInToJSON", {
|
|
4906
4916
|
enumerable: true,
|
|
4907
|
-
get: function () { return
|
|
4917
|
+
get: function () { return chunkJQE2L2GO_js.swapExactCoinInToJSON; }
|
|
4908
4918
|
});
|
|
4909
4919
|
Object.defineProperty(exports, "swapExactCoinOutFromJSON", {
|
|
4910
4920
|
enumerable: true,
|
|
4911
|
-
get: function () { return
|
|
4921
|
+
get: function () { return chunkJQE2L2GO_js.swapExactCoinOutFromJSON; }
|
|
4912
4922
|
});
|
|
4913
4923
|
Object.defineProperty(exports, "swapExactCoinOutToJSON", {
|
|
4914
4924
|
enumerable: true,
|
|
4915
|
-
get: function () { return
|
|
4925
|
+
get: function () { return chunkJQE2L2GO_js.swapExactCoinOutToJSON; }
|
|
4916
4926
|
});
|
|
4917
4927
|
Object.defineProperty(exports, "swapFromJSON", {
|
|
4918
4928
|
enumerable: true,
|
|
4919
|
-
get: function () { return
|
|
4929
|
+
get: function () { return chunkJQE2L2GO_js.swapFromJSON; }
|
|
4920
4930
|
});
|
|
4921
4931
|
Object.defineProperty(exports, "swapOperationFromJSON", {
|
|
4922
4932
|
enumerable: true,
|
|
4923
|
-
get: function () { return
|
|
4933
|
+
get: function () { return chunkJQE2L2GO_js.swapOperationFromJSON; }
|
|
4924
4934
|
});
|
|
4925
4935
|
Object.defineProperty(exports, "swapOperationToJSON", {
|
|
4926
4936
|
enumerable: true,
|
|
4927
|
-
get: function () { return
|
|
4937
|
+
get: function () { return chunkJQE2L2GO_js.swapOperationToJSON; }
|
|
4928
4938
|
});
|
|
4929
4939
|
Object.defineProperty(exports, "swapRouteFromJSON", {
|
|
4930
4940
|
enumerable: true,
|
|
4931
|
-
get: function () { return
|
|
4941
|
+
get: function () { return chunkJQE2L2GO_js.swapRouteFromJSON; }
|
|
4932
4942
|
});
|
|
4933
4943
|
Object.defineProperty(exports, "swapRouteToJSON", {
|
|
4934
4944
|
enumerable: true,
|
|
4935
|
-
get: function () { return
|
|
4945
|
+
get: function () { return chunkJQE2L2GO_js.swapRouteToJSON; }
|
|
4936
4946
|
});
|
|
4937
4947
|
Object.defineProperty(exports, "swapToJSON", {
|
|
4938
4948
|
enumerable: true,
|
|
4939
|
-
get: function () { return
|
|
4949
|
+
get: function () { return chunkJQE2L2GO_js.swapToJSON; }
|
|
4940
4950
|
});
|
|
4941
4951
|
Object.defineProperty(exports, "swapVenueFromJSON", {
|
|
4942
4952
|
enumerable: true,
|
|
4943
|
-
get: function () { return
|
|
4953
|
+
get: function () { return chunkJQE2L2GO_js.swapVenueFromJSON; }
|
|
4944
4954
|
});
|
|
4945
4955
|
Object.defineProperty(exports, "swapVenueRequestFromJSON", {
|
|
4946
4956
|
enumerable: true,
|
|
4947
|
-
get: function () { return
|
|
4957
|
+
get: function () { return chunkJQE2L2GO_js.swapVenueRequestFromJSON; }
|
|
4948
4958
|
});
|
|
4949
4959
|
Object.defineProperty(exports, "swapVenueRequestToJSON", {
|
|
4950
4960
|
enumerable: true,
|
|
4951
|
-
get: function () { return
|
|
4961
|
+
get: function () { return chunkJQE2L2GO_js.swapVenueRequestToJSON; }
|
|
4952
4962
|
});
|
|
4953
4963
|
Object.defineProperty(exports, "swapVenueToJSON", {
|
|
4954
4964
|
enumerable: true,
|
|
4955
|
-
get: function () { return
|
|
4965
|
+
get: function () { return chunkJQE2L2GO_js.swapVenueToJSON; }
|
|
4956
4966
|
});
|
|
4957
4967
|
Object.defineProperty(exports, "trackTxRequestFromJSON", {
|
|
4958
4968
|
enumerable: true,
|
|
4959
|
-
get: function () { return
|
|
4969
|
+
get: function () { return chunkJQE2L2GO_js.trackTxRequestFromJSON; }
|
|
4960
4970
|
});
|
|
4961
4971
|
Object.defineProperty(exports, "trackTxRequestToJSON", {
|
|
4962
4972
|
enumerable: true,
|
|
4963
|
-
get: function () { return
|
|
4973
|
+
get: function () { return chunkJQE2L2GO_js.trackTxRequestToJSON; }
|
|
4964
4974
|
});
|
|
4965
4975
|
Object.defineProperty(exports, "trackTxResponseFromJSON", {
|
|
4966
4976
|
enumerable: true,
|
|
4967
|
-
get: function () { return
|
|
4977
|
+
get: function () { return chunkJQE2L2GO_js.trackTxResponseFromJSON; }
|
|
4968
4978
|
});
|
|
4969
4979
|
Object.defineProperty(exports, "trackTxResponseToJSON", {
|
|
4970
4980
|
enumerable: true,
|
|
4971
|
-
get: function () { return
|
|
4981
|
+
get: function () { return chunkJQE2L2GO_js.trackTxResponseToJSON; }
|
|
4972
4982
|
});
|
|
4973
4983
|
Object.defineProperty(exports, "transferAssetReleaseFromJSON", {
|
|
4974
4984
|
enumerable: true,
|
|
4975
|
-
get: function () { return
|
|
4985
|
+
get: function () { return chunkJQE2L2GO_js.transferAssetReleaseFromJSON; }
|
|
4976
4986
|
});
|
|
4977
4987
|
Object.defineProperty(exports, "transferAssetReleaseToJSON", {
|
|
4978
4988
|
enumerable: true,
|
|
4979
|
-
get: function () { return
|
|
4989
|
+
get: function () { return chunkJQE2L2GO_js.transferAssetReleaseToJSON; }
|
|
4980
4990
|
});
|
|
4981
4991
|
Object.defineProperty(exports, "transferEventFromJSON", {
|
|
4982
4992
|
enumerable: true,
|
|
4983
|
-
get: function () { return
|
|
4993
|
+
get: function () { return chunkJQE2L2GO_js.transferEventFromJSON; }
|
|
4984
4994
|
});
|
|
4985
4995
|
Object.defineProperty(exports, "transferEventToJSON", {
|
|
4986
4996
|
enumerable: true,
|
|
4987
|
-
get: function () { return
|
|
4997
|
+
get: function () { return chunkJQE2L2GO_js.transferEventToJSON; }
|
|
4988
4998
|
});
|
|
4989
4999
|
Object.defineProperty(exports, "transferFromJSON", {
|
|
4990
5000
|
enumerable: true,
|
|
4991
|
-
get: function () { return
|
|
5001
|
+
get: function () { return chunkJQE2L2GO_js.transferFromJSON; }
|
|
4992
5002
|
});
|
|
4993
5003
|
Object.defineProperty(exports, "transferInfoFromJSON", {
|
|
4994
5004
|
enumerable: true,
|
|
4995
|
-
get: function () { return
|
|
5005
|
+
get: function () { return chunkJQE2L2GO_js.transferInfoFromJSON; }
|
|
4996
5006
|
});
|
|
4997
5007
|
Object.defineProperty(exports, "transferInfoToJSON", {
|
|
4998
5008
|
enumerable: true,
|
|
4999
|
-
get: function () { return
|
|
5009
|
+
get: function () { return chunkJQE2L2GO_js.transferInfoToJSON; }
|
|
5000
5010
|
});
|
|
5001
5011
|
Object.defineProperty(exports, "transferStatusFromJSON", {
|
|
5002
5012
|
enumerable: true,
|
|
5003
|
-
get: function () { return
|
|
5013
|
+
get: function () { return chunkJQE2L2GO_js.transferStatusFromJSON; }
|
|
5004
5014
|
});
|
|
5005
5015
|
Object.defineProperty(exports, "transferStatusToJSON", {
|
|
5006
5016
|
enumerable: true,
|
|
5007
|
-
get: function () { return
|
|
5017
|
+
get: function () { return chunkJQE2L2GO_js.transferStatusToJSON; }
|
|
5008
5018
|
});
|
|
5009
5019
|
Object.defineProperty(exports, "transferToJSON", {
|
|
5010
5020
|
enumerable: true,
|
|
5011
|
-
get: function () { return
|
|
5021
|
+
get: function () { return chunkJQE2L2GO_js.transferToJSON; }
|
|
5012
5022
|
});
|
|
5013
5023
|
Object.defineProperty(exports, "txFromJSON", {
|
|
5014
5024
|
enumerable: true,
|
|
5015
|
-
get: function () { return
|
|
5025
|
+
get: function () { return chunkJQE2L2GO_js.txFromJSON; }
|
|
5016
5026
|
});
|
|
5017
5027
|
Object.defineProperty(exports, "txStatusRequestFromJSON", {
|
|
5018
5028
|
enumerable: true,
|
|
5019
|
-
get: function () { return
|
|
5029
|
+
get: function () { return chunkJQE2L2GO_js.txStatusRequestFromJSON; }
|
|
5020
5030
|
});
|
|
5021
5031
|
Object.defineProperty(exports, "txStatusRequestToJSON", {
|
|
5022
5032
|
enumerable: true,
|
|
5023
|
-
get: function () { return
|
|
5033
|
+
get: function () { return chunkJQE2L2GO_js.txStatusRequestToJSON; }
|
|
5024
5034
|
});
|
|
5025
5035
|
Object.defineProperty(exports, "txStatusResponseFromJSON", {
|
|
5026
5036
|
enumerable: true,
|
|
5027
|
-
get: function () { return
|
|
5037
|
+
get: function () { return chunkJQE2L2GO_js.txStatusResponseFromJSON; }
|
|
5028
5038
|
});
|
|
5029
5039
|
Object.defineProperty(exports, "txStatusResponseToJSON", {
|
|
5030
5040
|
enumerable: true,
|
|
5031
|
-
get: function () { return
|
|
5041
|
+
get: function () { return chunkJQE2L2GO_js.txStatusResponseToJSON; }
|
|
5032
5042
|
});
|
|
5033
5043
|
Object.defineProperty(exports, "txToJSON", {
|
|
5034
5044
|
enumerable: true,
|
|
5035
|
-
get: function () { return
|
|
5045
|
+
get: function () { return chunkJQE2L2GO_js.txToJSON; }
|
|
5036
5046
|
});
|
|
5037
5047
|
exports.SKIP_API_URL = SKIP_API_URL;
|
|
5048
|
+
exports.SkipClient = SkipClient;
|
|
5038
5049
|
exports.SkipRouter = SkipRouter;
|