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