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