@skip-go/client 0.9.3 → 0.10.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +8 -3
- package/dist/{chunk-5I2266VA.js → chunk-F6SLLVEL.js} +28 -8
- package/dist/index.d.ts +18 -5
- package/dist/index.js +279 -221
- package/dist/{shared-DxdVuIaC.d.ts → shared-IGtrUCgc.d.ts} +23 -9
- package/dist/transactions.d.ts +1 -1
- package/dist/types.d.ts +2 -2
- package/dist/types.js +171 -171
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
var chunkJRIEAGIQ_js = require('./chunk-JRIEAGIQ.js');
|
|
4
4
|
var chunkTUX4SN3U_js = require('./chunk-TUX4SN3U.js');
|
|
5
|
-
var
|
|
5
|
+
var chunkF6SLLVEL_js = require('./chunk-F6SLLVEL.js');
|
|
6
6
|
var chunk6FNC3XMI_js = require('./chunk-6FNC3XMI.js');
|
|
7
7
|
var amino = require('@cosmjs/amino');
|
|
8
8
|
var cosmwasmStargate = require('@cosmjs/cosmwasm-stargate');
|
|
@@ -27,6 +27,7 @@ var coreProtoTs = require('@injectivelabs/core-proto-ts');
|
|
|
27
27
|
var tx$2 = require('@injectivelabs/sdk-ts/dist/cjs/core/modules/tx/utils/tx');
|
|
28
28
|
var keccak256 = require('keccak256');
|
|
29
29
|
var web3_js = require('@solana/web3.js');
|
|
30
|
+
var crypto = require('@cosmjs/crypto');
|
|
30
31
|
|
|
31
32
|
function _interopDefault (e) { return e && e.__esModule ? e : { default: e }; }
|
|
32
33
|
|
|
@@ -3040,11 +3041,11 @@ var SkipClient = class {
|
|
|
3040
3041
|
return chunk6FNC3XMI_js.__async(this, arguments, function* (options = {}) {
|
|
3041
3042
|
const response = yield this.requestClient.get(
|
|
3042
3043
|
"/v2/fungible/assets",
|
|
3043
|
-
|
|
3044
|
+
chunkF6SLLVEL_js.assetsRequestToJSON(chunk6FNC3XMI_js.__spreadValues({}, options))
|
|
3044
3045
|
);
|
|
3045
3046
|
return Object.entries(response.chain_to_assets_map).reduce(
|
|
3046
3047
|
(acc, [chainID, { assets }]) => {
|
|
3047
|
-
acc[chainID] = assets.map((asset) =>
|
|
3048
|
+
acc[chainID] = assets.map((asset) => chunkF6SLLVEL_js.assetFromJSON(asset));
|
|
3048
3049
|
return acc;
|
|
3049
3050
|
},
|
|
3050
3051
|
{}
|
|
@@ -3055,11 +3056,11 @@ var SkipClient = class {
|
|
|
3055
3056
|
return chunk6FNC3XMI_js.__async(this, null, function* () {
|
|
3056
3057
|
const response = yield this.requestClient.post(
|
|
3057
3058
|
"/v2/fungible/assets_from_source",
|
|
3058
|
-
|
|
3059
|
+
chunkF6SLLVEL_js.assetsFromSourceRequestToJSON(chunk6FNC3XMI_js.__spreadValues({}, options))
|
|
3059
3060
|
);
|
|
3060
3061
|
return Object.entries(response.dest_assets).reduce(
|
|
3061
3062
|
(acc, [chainID, { assets }]) => {
|
|
3062
|
-
acc[chainID] = assets.map((asset) =>
|
|
3063
|
+
acc[chainID] = assets.map((asset) => chunkF6SLLVEL_js.assetFromJSON(asset));
|
|
3063
3064
|
return acc;
|
|
3064
3065
|
},
|
|
3065
3066
|
{}
|
|
@@ -3070,9 +3071,9 @@ var SkipClient = class {
|
|
|
3070
3071
|
return chunk6FNC3XMI_js.__async(this, null, function* () {
|
|
3071
3072
|
const response = yield this.requestClient.post(
|
|
3072
3073
|
"/v2/fungible/assets_between_chains",
|
|
3073
|
-
|
|
3074
|
+
chunkF6SLLVEL_js.assetsBetweenChainsRequestToJSON(options)
|
|
3074
3075
|
);
|
|
3075
|
-
return
|
|
3076
|
+
return chunkF6SLLVEL_js.assetsBetweenChainsResponseFromJSON(response).assetsBetweenChains;
|
|
3076
3077
|
});
|
|
3077
3078
|
}
|
|
3078
3079
|
bridges() {
|
|
@@ -3080,7 +3081,7 @@ var SkipClient = class {
|
|
|
3080
3081
|
const response = yield this.requestClient.get(
|
|
3081
3082
|
"/v2/info/bridges"
|
|
3082
3083
|
);
|
|
3083
|
-
return
|
|
3084
|
+
return chunkF6SLLVEL_js.bridgesResponseFromJSON(response).bridges;
|
|
3084
3085
|
});
|
|
3085
3086
|
}
|
|
3086
3087
|
chains() {
|
|
@@ -3096,16 +3097,16 @@ var SkipClient = class {
|
|
|
3096
3097
|
only_testnets: onlyTestnets,
|
|
3097
3098
|
chain_ids: chainIDs
|
|
3098
3099
|
});
|
|
3099
|
-
return response.chains.map((chain) =>
|
|
3100
|
+
return response.chains.map((chain) => chunkF6SLLVEL_js.chainFromJSON(chain));
|
|
3100
3101
|
});
|
|
3101
3102
|
}
|
|
3102
3103
|
balances(request) {
|
|
3103
3104
|
return chunk6FNC3XMI_js.__async(this, null, function* () {
|
|
3104
3105
|
const response = yield this.requestClient.post(
|
|
3105
3106
|
"/v2/info/balances",
|
|
3106
|
-
|
|
3107
|
+
chunkF6SLLVEL_js.balanceRequestToJSON(request)
|
|
3107
3108
|
);
|
|
3108
|
-
return
|
|
3109
|
+
return chunkF6SLLVEL_js.balanceResponseFromJSON(response);
|
|
3109
3110
|
});
|
|
3110
3111
|
}
|
|
3111
3112
|
executeRoute(options) {
|
|
@@ -3163,7 +3164,8 @@ var SkipClient = class {
|
|
|
3163
3164
|
getOfflineSigner: options.getCosmosSigner,
|
|
3164
3165
|
getGasPrice,
|
|
3165
3166
|
gasAmountMultiplier,
|
|
3166
|
-
getFallbackGasAmount
|
|
3167
|
+
getFallbackGasAmount,
|
|
3168
|
+
onValidateGasBalance: options.onValidateGasBalance
|
|
3167
3169
|
});
|
|
3168
3170
|
}
|
|
3169
3171
|
for (let i = 0; i < txs.length; i++) {
|
|
@@ -3221,7 +3223,8 @@ var SkipClient = class {
|
|
|
3221
3223
|
gasAmountMultiplier,
|
|
3222
3224
|
signerAddress: currentUserAddress,
|
|
3223
3225
|
getFallbackGasAmount,
|
|
3224
|
-
gasTokenUsed
|
|
3226
|
+
gasTokenUsed,
|
|
3227
|
+
onTransactionSigned: options.onTransactionSigned
|
|
3225
3228
|
});
|
|
3226
3229
|
txResult = {
|
|
3227
3230
|
chainID: cosmosTx.chainID,
|
|
@@ -3244,7 +3247,8 @@ var SkipClient = class {
|
|
|
3244
3247
|
const svmSigner = yield getSVMSigner();
|
|
3245
3248
|
const txReceipt = yield this.executeSVMTransaction({
|
|
3246
3249
|
signer: svmSigner,
|
|
3247
|
-
message: svmTx
|
|
3250
|
+
message: svmTx,
|
|
3251
|
+
onTransactionSigned: options.onTransactionSigned
|
|
3248
3252
|
});
|
|
3249
3253
|
txResult = {
|
|
3250
3254
|
chainID: svmTx.chainID,
|
|
@@ -3279,7 +3283,8 @@ var SkipClient = class {
|
|
|
3279
3283
|
const evmSigner = yield getEVMSigner(evmTx.chainID);
|
|
3280
3284
|
return yield this.executeEVMTransaction({
|
|
3281
3285
|
message: evmTx,
|
|
3282
|
-
signer: evmSigner
|
|
3286
|
+
signer: evmSigner,
|
|
3287
|
+
onTransactionSigned: options.onTransactionSigned
|
|
3283
3288
|
});
|
|
3284
3289
|
});
|
|
3285
3290
|
}
|
|
@@ -3293,7 +3298,8 @@ var SkipClient = class {
|
|
|
3293
3298
|
getGasPrice,
|
|
3294
3299
|
gasAmountMultiplier,
|
|
3295
3300
|
getFallbackGasAmount,
|
|
3296
|
-
gasTokenUsed
|
|
3301
|
+
gasTokenUsed,
|
|
3302
|
+
onTransactionSigned
|
|
3297
3303
|
} = options;
|
|
3298
3304
|
const getOfflineSigner = this.getCosmosSigner || getCosmosSigner || raise(
|
|
3299
3305
|
"executeRoute error: 'getCosmosSigner' is not provided or configured in skip router"
|
|
@@ -3369,6 +3375,11 @@ var SkipClient = class {
|
|
|
3369
3375
|
});
|
|
3370
3376
|
}
|
|
3371
3377
|
const txBytes = tx$1.TxRaw.encode(rawTx).finish();
|
|
3378
|
+
const txHash = encoding.toHex(crypto.sha256(txBytes));
|
|
3379
|
+
onTransactionSigned == null ? void 0 : onTransactionSigned({
|
|
3380
|
+
chainID,
|
|
3381
|
+
txHash
|
|
3382
|
+
});
|
|
3372
3383
|
const tx = yield stargateClient.broadcastTx(txBytes);
|
|
3373
3384
|
return tx;
|
|
3374
3385
|
});
|
|
@@ -3385,6 +3396,16 @@ var SkipClient = class {
|
|
|
3385
3396
|
getFallbackGasAmount
|
|
3386
3397
|
}) {
|
|
3387
3398
|
var _a;
|
|
3399
|
+
const gasPrice = (getGasPrice ? yield getGasPrice(chainID, "cosmos") : yield this.getRecommendedGasPrice(chainID)) || raise(
|
|
3400
|
+
`executeRoute error: unable to get gas prices for chain '${chainID}'`
|
|
3401
|
+
);
|
|
3402
|
+
if (chainID === "noble-1") {
|
|
3403
|
+
const fee2 = stargate.calculateFee(
|
|
3404
|
+
2e5,
|
|
3405
|
+
gasPrice
|
|
3406
|
+
);
|
|
3407
|
+
return fee2;
|
|
3408
|
+
}
|
|
3388
3409
|
const estimatedGasAmount = yield (() => chunk6FNC3XMI_js.__async(this, null, function* () {
|
|
3389
3410
|
try {
|
|
3390
3411
|
const estimatedGas = yield chunkTUX4SN3U_js.getCosmosGasAmountForMessage(
|
|
@@ -3409,14 +3430,9 @@ var SkipClient = class {
|
|
|
3409
3430
|
}
|
|
3410
3431
|
return String(fallbackGasAmount);
|
|
3411
3432
|
}
|
|
3412
|
-
|
|
3413
|
-
`executeRoute error: unable to estimate gas for message(s) ${messages || encodedMsgs}`
|
|
3414
|
-
);
|
|
3433
|
+
throw error;
|
|
3415
3434
|
}
|
|
3416
3435
|
}))();
|
|
3417
|
-
const gasPrice = (getGasPrice ? yield getGasPrice(chainID, "cosmos") : yield this.getRecommendedGasPrice(chainID)) || raise(
|
|
3418
|
-
`executeRoute error: unable to get gas prices for chain '${chainID}'`
|
|
3419
|
-
);
|
|
3420
3436
|
const fee = stargate.calculateFee(
|
|
3421
3437
|
Math.ceil(parseFloat(estimatedGasAmount)),
|
|
3422
3438
|
gasPrice
|
|
@@ -3458,7 +3474,8 @@ var SkipClient = class {
|
|
|
3458
3474
|
executeEVMTransaction(_0) {
|
|
3459
3475
|
return chunk6FNC3XMI_js.__async(this, arguments, function* ({
|
|
3460
3476
|
message,
|
|
3461
|
-
signer
|
|
3477
|
+
signer,
|
|
3478
|
+
onTransactionSigned
|
|
3462
3479
|
}) {
|
|
3463
3480
|
if (!signer.account) {
|
|
3464
3481
|
throw new Error(
|
|
@@ -3490,6 +3507,10 @@ var SkipClient = class {
|
|
|
3490
3507
|
],
|
|
3491
3508
|
chain: signer.chain
|
|
3492
3509
|
});
|
|
3510
|
+
onTransactionSigned == null ? void 0 : onTransactionSigned({
|
|
3511
|
+
chainID: message.chainID,
|
|
3512
|
+
txHash: txHash2
|
|
3513
|
+
});
|
|
3493
3514
|
const receipt2 = yield extendedSigner.waitForTransactionReceipt({
|
|
3494
3515
|
hash: txHash2
|
|
3495
3516
|
});
|
|
@@ -3515,7 +3536,8 @@ var SkipClient = class {
|
|
|
3515
3536
|
executeSVMTransaction(_0) {
|
|
3516
3537
|
return chunk6FNC3XMI_js.__async(this, arguments, function* ({
|
|
3517
3538
|
signer,
|
|
3518
|
-
message
|
|
3539
|
+
message,
|
|
3540
|
+
onTransactionSigned
|
|
3519
3541
|
}) {
|
|
3520
3542
|
var _a;
|
|
3521
3543
|
const _tx = Buffer.from(message.tx, "base64");
|
|
@@ -3529,6 +3551,12 @@ var SkipClient = class {
|
|
|
3529
3551
|
yield this.submitTransaction({
|
|
3530
3552
|
chainID: message.chainID,
|
|
3531
3553
|
tx: Buffer.from(serializedTx).toString("base64")
|
|
3554
|
+
}).then((res) => {
|
|
3555
|
+
onTransactionSigned == null ? void 0 : onTransactionSigned({
|
|
3556
|
+
chainID: message.chainID,
|
|
3557
|
+
txHash: res.txHash
|
|
3558
|
+
});
|
|
3559
|
+
signature = res.txHash;
|
|
3532
3560
|
});
|
|
3533
3561
|
const sig = yield connection.sendRawTransaction(serializedTx, {
|
|
3534
3562
|
preflightCommitment: "confirmed",
|
|
@@ -3547,6 +3575,7 @@ var SkipClient = class {
|
|
|
3547
3575
|
searchTransactionHistory: true
|
|
3548
3576
|
});
|
|
3549
3577
|
if (((_a = result == null ? void 0 : result.value) == null ? void 0 : _a.confirmationStatus) === "confirmed") {
|
|
3578
|
+
console.log("sol2 sig", signature);
|
|
3550
3579
|
return signature;
|
|
3551
3580
|
} else if (getStatusCount > 12) {
|
|
3552
3581
|
yield wait(3e3);
|
|
@@ -3804,51 +3833,51 @@ var SkipClient = class {
|
|
|
3804
3833
|
}
|
|
3805
3834
|
messages(options) {
|
|
3806
3835
|
return chunk6FNC3XMI_js.__async(this, null, function* () {
|
|
3807
|
-
const response = yield this.requestClient.post("/v2/fungible/msgs", chunk6FNC3XMI_js.__spreadProps(chunk6FNC3XMI_js.__spreadValues({},
|
|
3836
|
+
const response = yield this.requestClient.post("/v2/fungible/msgs", chunk6FNC3XMI_js.__spreadProps(chunk6FNC3XMI_js.__spreadValues({}, chunkF6SLLVEL_js.msgsRequestToJSON(options)), {
|
|
3808
3837
|
slippage_tolerance_percent: options.slippageTolerancePercent || "0"
|
|
3809
3838
|
}));
|
|
3810
|
-
return
|
|
3839
|
+
return chunkF6SLLVEL_js.messageResponseFromJSON(response);
|
|
3811
3840
|
});
|
|
3812
3841
|
}
|
|
3813
3842
|
route(options) {
|
|
3814
3843
|
return chunk6FNC3XMI_js.__async(this, null, function* () {
|
|
3815
|
-
const response = yield this.requestClient.post("/v2/fungible/route", chunk6FNC3XMI_js.__spreadProps(chunk6FNC3XMI_js.__spreadValues({},
|
|
3844
|
+
const response = yield this.requestClient.post("/v2/fungible/route", chunk6FNC3XMI_js.__spreadProps(chunk6FNC3XMI_js.__spreadValues({}, chunkF6SLLVEL_js.routeRequestToJSON(options)), {
|
|
3816
3845
|
cumulative_affiliate_fee_bps: this.cumulativeAffiliateFeeBPS
|
|
3817
3846
|
}));
|
|
3818
|
-
return
|
|
3847
|
+
return chunkF6SLLVEL_js.routeResponseFromJSON(response);
|
|
3819
3848
|
});
|
|
3820
3849
|
}
|
|
3821
3850
|
msgsDirect(options) {
|
|
3822
3851
|
return chunk6FNC3XMI_js.__async(this, null, function* () {
|
|
3823
|
-
const response = yield this.requestClient.post("/v2/fungible/msgs_direct", chunk6FNC3XMI_js.__spreadValues({},
|
|
3852
|
+
const response = yield this.requestClient.post("/v2/fungible/msgs_direct", chunk6FNC3XMI_js.__spreadValues({}, chunkF6SLLVEL_js.msgsDirectRequestToJSON(options)));
|
|
3824
3853
|
return {
|
|
3825
|
-
msgs: response.msgs.map((msg) =>
|
|
3826
|
-
txs: response.txs.map((tx) =>
|
|
3827
|
-
route:
|
|
3854
|
+
msgs: response.msgs.map((msg) => chunkF6SLLVEL_js.msgFromJSON(msg)),
|
|
3855
|
+
txs: response.txs.map((tx) => chunkF6SLLVEL_js.txFromJSON(tx)),
|
|
3856
|
+
route: chunkF6SLLVEL_js.routeResponseFromJSON(response.route)
|
|
3828
3857
|
};
|
|
3829
3858
|
});
|
|
3830
3859
|
}
|
|
3831
3860
|
recommendAssets(request) {
|
|
3832
3861
|
return chunk6FNC3XMI_js.__async(this, null, function* () {
|
|
3833
|
-
const options =
|
|
3862
|
+
const options = chunkF6SLLVEL_js.recommendAssetsRequestToJSON({
|
|
3834
3863
|
requests: Array.isArray(request) ? request : [request]
|
|
3835
3864
|
});
|
|
3836
3865
|
const response = yield this.requestClient.post(
|
|
3837
3866
|
"/v2/fungible/recommend_assets",
|
|
3838
3867
|
options
|
|
3839
3868
|
);
|
|
3840
|
-
return
|
|
3869
|
+
return chunkF6SLLVEL_js.recommendAssetsResponseFromJSON(response).recommendationEntries;
|
|
3841
3870
|
});
|
|
3842
3871
|
}
|
|
3843
3872
|
ibcOriginAssets(assets) {
|
|
3844
3873
|
return chunk6FNC3XMI_js.__async(this, null, function* () {
|
|
3845
3874
|
const response = yield this.requestClient.post(
|
|
3846
3875
|
"/v2/fungible/ibc_origin_assets",
|
|
3847
|
-
|
|
3876
|
+
chunkF6SLLVEL_js.originAssetsRequestToJSON({
|
|
3848
3877
|
assets
|
|
3849
3878
|
})
|
|
3850
3879
|
);
|
|
3851
|
-
return
|
|
3880
|
+
return chunkF6SLLVEL_js.originAssetsResponseFromJSON(response).originAssets;
|
|
3852
3881
|
});
|
|
3853
3882
|
}
|
|
3854
3883
|
submitTransaction(_0) {
|
|
@@ -3860,7 +3889,7 @@ var SkipClient = class {
|
|
|
3860
3889
|
chain_id: chainID,
|
|
3861
3890
|
tx
|
|
3862
3891
|
});
|
|
3863
|
-
return
|
|
3892
|
+
return chunkF6SLLVEL_js.submitTxResponseFromJSON(response);
|
|
3864
3893
|
});
|
|
3865
3894
|
}
|
|
3866
3895
|
trackTransaction(_0) {
|
|
@@ -3881,7 +3910,7 @@ var SkipClient = class {
|
|
|
3881
3910
|
chain_id: chainID,
|
|
3882
3911
|
tx_hash: txHash
|
|
3883
3912
|
});
|
|
3884
|
-
return
|
|
3913
|
+
return chunkF6SLLVEL_js.trackTxResponseFromJSON(response);
|
|
3885
3914
|
} catch (error) {
|
|
3886
3915
|
lastError = error;
|
|
3887
3916
|
retries++;
|
|
@@ -3909,7 +3938,7 @@ var SkipClient = class {
|
|
|
3909
3938
|
chain_id: chainID,
|
|
3910
3939
|
tx_hash: txHash
|
|
3911
3940
|
});
|
|
3912
|
-
return
|
|
3941
|
+
return chunkF6SLLVEL_js.txStatusResponseFromJSON(response);
|
|
3913
3942
|
} catch (error) {
|
|
3914
3943
|
lastError = error;
|
|
3915
3944
|
retries++;
|
|
@@ -3954,7 +3983,7 @@ var SkipClient = class {
|
|
|
3954
3983
|
const response = yield this.requestClient.get("/v2/fungible/venues", {
|
|
3955
3984
|
only_testnets: onlyTestnets
|
|
3956
3985
|
});
|
|
3957
|
-
return response.venues.map((venue) =>
|
|
3986
|
+
return response.venues.map((venue) => chunkF6SLLVEL_js.swapVenueFromJSON(venue));
|
|
3958
3987
|
});
|
|
3959
3988
|
}
|
|
3960
3989
|
getCosmsosGasAmountForMessage(client, signerAddress, chainID, cosmosMessages) {
|
|
@@ -4287,7 +4316,8 @@ var SkipClient = class {
|
|
|
4287
4316
|
getOfflineSigner,
|
|
4288
4317
|
getGasPrice,
|
|
4289
4318
|
gasAmountMultiplier,
|
|
4290
|
-
getFallbackGasAmount
|
|
4319
|
+
getFallbackGasAmount,
|
|
4320
|
+
onValidateGasBalance
|
|
4291
4321
|
}) {
|
|
4292
4322
|
var _a;
|
|
4293
4323
|
let gasTokenRecord = {};
|
|
@@ -4297,6 +4327,11 @@ var SkipClient = class {
|
|
|
4297
4327
|
raise(`validateGasBalances error: invalid tx at index ${i}`);
|
|
4298
4328
|
}
|
|
4299
4329
|
if ("cosmosTx" in tx) {
|
|
4330
|
+
onValidateGasBalance == null ? void 0 : onValidateGasBalance({
|
|
4331
|
+
chainID: tx.cosmosTx.chainID,
|
|
4332
|
+
txIndex: i,
|
|
4333
|
+
status: "pending"
|
|
4334
|
+
});
|
|
4300
4335
|
const msgs = tx.cosmosTx.msgs;
|
|
4301
4336
|
if (!msgs) {
|
|
4302
4337
|
raise(`validateGasBalances error: invalid msgs ${msgs}`);
|
|
@@ -4323,18 +4358,38 @@ var SkipClient = class {
|
|
|
4323
4358
|
)) == null ? void 0 : _a.address) || raise(
|
|
4324
4359
|
`validateGasBalance error: invalid address for chain '${tx.cosmosTx.chainID}'`
|
|
4325
4360
|
);
|
|
4326
|
-
|
|
4327
|
-
|
|
4328
|
-
|
|
4329
|
-
|
|
4330
|
-
|
|
4331
|
-
|
|
4332
|
-
|
|
4333
|
-
|
|
4334
|
-
|
|
4335
|
-
|
|
4361
|
+
try {
|
|
4362
|
+
const coinUsed = yield this.validateCosmosGasBalance({
|
|
4363
|
+
client,
|
|
4364
|
+
signerAddress: currentAddress,
|
|
4365
|
+
chainID: tx.cosmosTx.chainID,
|
|
4366
|
+
messages: msgs,
|
|
4367
|
+
getGasPrice,
|
|
4368
|
+
gasAmountMultiplier,
|
|
4369
|
+
getFallbackGasAmount
|
|
4370
|
+
});
|
|
4371
|
+
gasTokenRecord[i] = coinUsed;
|
|
4372
|
+
onValidateGasBalance == null ? void 0 : onValidateGasBalance({
|
|
4373
|
+
chainID: tx.cosmosTx.chainID,
|
|
4374
|
+
txIndex: i,
|
|
4375
|
+
status: "success"
|
|
4376
|
+
});
|
|
4377
|
+
} catch (e) {
|
|
4378
|
+
const error = e;
|
|
4379
|
+
onValidateGasBalance == null ? void 0 : onValidateGasBalance({
|
|
4380
|
+
chainID: tx.cosmosTx.chainID,
|
|
4381
|
+
txIndex: i,
|
|
4382
|
+
status: "error"
|
|
4383
|
+
});
|
|
4384
|
+
throw new Error(
|
|
4385
|
+
`validateGasBalances error: ${error.message}`
|
|
4386
|
+
);
|
|
4387
|
+
}
|
|
4336
4388
|
}
|
|
4337
4389
|
}
|
|
4390
|
+
onValidateGasBalance == null ? void 0 : onValidateGasBalance({
|
|
4391
|
+
status: "completed"
|
|
4392
|
+
});
|
|
4338
4393
|
return gasTokenRecord;
|
|
4339
4394
|
});
|
|
4340
4395
|
}
|
|
@@ -4363,6 +4418,9 @@ var SkipClient = class {
|
|
|
4363
4418
|
`validateCosmosGasBalance error: unable to get fee amount`
|
|
4364
4419
|
);
|
|
4365
4420
|
}
|
|
4421
|
+
if (chainID === "noble-1") {
|
|
4422
|
+
return fee.amount[0];
|
|
4423
|
+
}
|
|
4366
4424
|
const mainnetAssets = yield this.assets();
|
|
4367
4425
|
const testnetAssets = yield this.assets({ onlyTestnets: true });
|
|
4368
4426
|
const assets = chunk6FNC3XMI_js.__spreadValues(chunk6FNC3XMI_js.__spreadValues({}, mainnetAssets), testnetAssets);
|
|
@@ -4468,683 +4526,683 @@ Object.defineProperty(exports, "getEncodeObjectFromCosmosMessageInjective", {
|
|
|
4468
4526
|
});
|
|
4469
4527
|
Object.defineProperty(exports, "affiliateFromJSON", {
|
|
4470
4528
|
enumerable: true,
|
|
4471
|
-
get: function () { return
|
|
4529
|
+
get: function () { return chunkF6SLLVEL_js.affiliateFromJSON; }
|
|
4472
4530
|
});
|
|
4473
4531
|
Object.defineProperty(exports, "affiliateToJSON", {
|
|
4474
4532
|
enumerable: true,
|
|
4475
|
-
get: function () { return
|
|
4533
|
+
get: function () { return chunkF6SLLVEL_js.affiliateToJSON; }
|
|
4476
4534
|
});
|
|
4477
4535
|
Object.defineProperty(exports, "assetBetweenChainsFromJSON", {
|
|
4478
4536
|
enumerable: true,
|
|
4479
|
-
get: function () { return
|
|
4537
|
+
get: function () { return chunkF6SLLVEL_js.assetBetweenChainsFromJSON; }
|
|
4480
4538
|
});
|
|
4481
4539
|
Object.defineProperty(exports, "assetBetweenChainsToJSON", {
|
|
4482
4540
|
enumerable: true,
|
|
4483
|
-
get: function () { return
|
|
4541
|
+
get: function () { return chunkF6SLLVEL_js.assetBetweenChainsToJSON; }
|
|
4484
4542
|
});
|
|
4485
4543
|
Object.defineProperty(exports, "assetFromJSON", {
|
|
4486
4544
|
enumerable: true,
|
|
4487
|
-
get: function () { return
|
|
4545
|
+
get: function () { return chunkF6SLLVEL_js.assetFromJSON; }
|
|
4488
4546
|
});
|
|
4489
4547
|
Object.defineProperty(exports, "assetOrErrorFromJSON", {
|
|
4490
4548
|
enumerable: true,
|
|
4491
|
-
get: function () { return
|
|
4549
|
+
get: function () { return chunkF6SLLVEL_js.assetOrErrorFromJSON; }
|
|
4492
4550
|
});
|
|
4493
4551
|
Object.defineProperty(exports, "assetOrErrorToJSON", {
|
|
4494
4552
|
enumerable: true,
|
|
4495
|
-
get: function () { return
|
|
4553
|
+
get: function () { return chunkF6SLLVEL_js.assetOrErrorToJSON; }
|
|
4496
4554
|
});
|
|
4497
4555
|
Object.defineProperty(exports, "assetRecommendationFromJSON", {
|
|
4498
4556
|
enumerable: true,
|
|
4499
|
-
get: function () { return
|
|
4557
|
+
get: function () { return chunkF6SLLVEL_js.assetRecommendationFromJSON; }
|
|
4500
4558
|
});
|
|
4501
4559
|
Object.defineProperty(exports, "assetRecommendationRequestFromJSON", {
|
|
4502
4560
|
enumerable: true,
|
|
4503
|
-
get: function () { return
|
|
4561
|
+
get: function () { return chunkF6SLLVEL_js.assetRecommendationRequestFromJSON; }
|
|
4504
4562
|
});
|
|
4505
4563
|
Object.defineProperty(exports, "assetRecommendationRequestToJSON", {
|
|
4506
4564
|
enumerable: true,
|
|
4507
|
-
get: function () { return
|
|
4565
|
+
get: function () { return chunkF6SLLVEL_js.assetRecommendationRequestToJSON; }
|
|
4508
4566
|
});
|
|
4509
4567
|
Object.defineProperty(exports, "assetRecommendationToJSON", {
|
|
4510
4568
|
enumerable: true,
|
|
4511
|
-
get: function () { return
|
|
4569
|
+
get: function () { return chunkF6SLLVEL_js.assetRecommendationToJSON; }
|
|
4512
4570
|
});
|
|
4513
4571
|
Object.defineProperty(exports, "assetToJSON", {
|
|
4514
4572
|
enumerable: true,
|
|
4515
|
-
get: function () { return
|
|
4573
|
+
get: function () { return chunkF6SLLVEL_js.assetToJSON; }
|
|
4516
4574
|
});
|
|
4517
4575
|
Object.defineProperty(exports, "assetsBetweenChainsRequestFromJSON", {
|
|
4518
4576
|
enumerable: true,
|
|
4519
|
-
get: function () { return
|
|
4577
|
+
get: function () { return chunkF6SLLVEL_js.assetsBetweenChainsRequestFromJSON; }
|
|
4520
4578
|
});
|
|
4521
4579
|
Object.defineProperty(exports, "assetsBetweenChainsRequestToJSON", {
|
|
4522
4580
|
enumerable: true,
|
|
4523
|
-
get: function () { return
|
|
4581
|
+
get: function () { return chunkF6SLLVEL_js.assetsBetweenChainsRequestToJSON; }
|
|
4524
4582
|
});
|
|
4525
4583
|
Object.defineProperty(exports, "assetsBetweenChainsResponseFromJSON", {
|
|
4526
4584
|
enumerable: true,
|
|
4527
|
-
get: function () { return
|
|
4585
|
+
get: function () { return chunkF6SLLVEL_js.assetsBetweenChainsResponseFromJSON; }
|
|
4528
4586
|
});
|
|
4529
4587
|
Object.defineProperty(exports, "assetsFromSourceRequestFromJSON", {
|
|
4530
4588
|
enumerable: true,
|
|
4531
|
-
get: function () { return
|
|
4589
|
+
get: function () { return chunkF6SLLVEL_js.assetsFromSourceRequestFromJSON; }
|
|
4532
4590
|
});
|
|
4533
4591
|
Object.defineProperty(exports, "assetsFromSourceRequestToJSON", {
|
|
4534
4592
|
enumerable: true,
|
|
4535
|
-
get: function () { return
|
|
4593
|
+
get: function () { return chunkF6SLLVEL_js.assetsFromSourceRequestToJSON; }
|
|
4536
4594
|
});
|
|
4537
4595
|
Object.defineProperty(exports, "assetsRequestFromJSON", {
|
|
4538
4596
|
enumerable: true,
|
|
4539
|
-
get: function () { return
|
|
4597
|
+
get: function () { return chunkF6SLLVEL_js.assetsRequestFromJSON; }
|
|
4540
4598
|
});
|
|
4541
4599
|
Object.defineProperty(exports, "assetsRequestToJSON", {
|
|
4542
4600
|
enumerable: true,
|
|
4543
|
-
get: function () { return
|
|
4601
|
+
get: function () { return chunkF6SLLVEL_js.assetsRequestToJSON; }
|
|
4544
4602
|
});
|
|
4545
4603
|
Object.defineProperty(exports, "axelarTransferFromJSON", {
|
|
4546
4604
|
enumerable: true,
|
|
4547
|
-
get: function () { return
|
|
4605
|
+
get: function () { return chunkF6SLLVEL_js.axelarTransferFromJSON; }
|
|
4548
4606
|
});
|
|
4549
4607
|
Object.defineProperty(exports, "axelarTransferInfoFromJSON", {
|
|
4550
4608
|
enumerable: true,
|
|
4551
|
-
get: function () { return
|
|
4609
|
+
get: function () { return chunkF6SLLVEL_js.axelarTransferInfoFromJSON; }
|
|
4552
4610
|
});
|
|
4553
4611
|
Object.defineProperty(exports, "axelarTransferInfoToJSON", {
|
|
4554
4612
|
enumerable: true,
|
|
4555
|
-
get: function () { return
|
|
4613
|
+
get: function () { return chunkF6SLLVEL_js.axelarTransferInfoToJSON; }
|
|
4556
4614
|
});
|
|
4557
4615
|
Object.defineProperty(exports, "axelarTransferToJSON", {
|
|
4558
4616
|
enumerable: true,
|
|
4559
|
-
get: function () { return
|
|
4617
|
+
get: function () { return chunkF6SLLVEL_js.axelarTransferToJSON; }
|
|
4560
4618
|
});
|
|
4561
4619
|
Object.defineProperty(exports, "axelarTransferTransactionsFromJSON", {
|
|
4562
4620
|
enumerable: true,
|
|
4563
|
-
get: function () { return
|
|
4621
|
+
get: function () { return chunkF6SLLVEL_js.axelarTransferTransactionsFromJSON; }
|
|
4564
4622
|
});
|
|
4565
4623
|
Object.defineProperty(exports, "axelarTransferTransactionsToJSON", {
|
|
4566
4624
|
enumerable: true,
|
|
4567
|
-
get: function () { return
|
|
4625
|
+
get: function () { return chunkF6SLLVEL_js.axelarTransferTransactionsToJSON; }
|
|
4568
4626
|
});
|
|
4569
4627
|
Object.defineProperty(exports, "balanceRequestChainEntryFromJSON", {
|
|
4570
4628
|
enumerable: true,
|
|
4571
|
-
get: function () { return
|
|
4629
|
+
get: function () { return chunkF6SLLVEL_js.balanceRequestChainEntryFromJSON; }
|
|
4572
4630
|
});
|
|
4573
4631
|
Object.defineProperty(exports, "balanceRequestChainEntryToJSON", {
|
|
4574
4632
|
enumerable: true,
|
|
4575
|
-
get: function () { return
|
|
4633
|
+
get: function () { return chunkF6SLLVEL_js.balanceRequestChainEntryToJSON; }
|
|
4576
4634
|
});
|
|
4577
4635
|
Object.defineProperty(exports, "balanceRequestFromJSON", {
|
|
4578
4636
|
enumerable: true,
|
|
4579
|
-
get: function () { return
|
|
4637
|
+
get: function () { return chunkF6SLLVEL_js.balanceRequestFromJSON; }
|
|
4580
4638
|
});
|
|
4581
4639
|
Object.defineProperty(exports, "balanceRequestToJSON", {
|
|
4582
4640
|
enumerable: true,
|
|
4583
|
-
get: function () { return
|
|
4641
|
+
get: function () { return chunkF6SLLVEL_js.balanceRequestToJSON; }
|
|
4584
4642
|
});
|
|
4585
4643
|
Object.defineProperty(exports, "balanceResponseChainEntryFromJSON", {
|
|
4586
4644
|
enumerable: true,
|
|
4587
|
-
get: function () { return
|
|
4645
|
+
get: function () { return chunkF6SLLVEL_js.balanceResponseChainEntryFromJSON; }
|
|
4588
4646
|
});
|
|
4589
4647
|
Object.defineProperty(exports, "balanceResponseChainEntryToJSON", {
|
|
4590
4648
|
enumerable: true,
|
|
4591
|
-
get: function () { return
|
|
4649
|
+
get: function () { return chunkF6SLLVEL_js.balanceResponseChainEntryToJSON; }
|
|
4592
4650
|
});
|
|
4593
4651
|
Object.defineProperty(exports, "balanceResponseDenomEntryFromJSON", {
|
|
4594
4652
|
enumerable: true,
|
|
4595
|
-
get: function () { return
|
|
4653
|
+
get: function () { return chunkF6SLLVEL_js.balanceResponseDenomEntryFromJSON; }
|
|
4596
4654
|
});
|
|
4597
4655
|
Object.defineProperty(exports, "balanceResponseDenomEntryToJSON", {
|
|
4598
4656
|
enumerable: true,
|
|
4599
|
-
get: function () { return
|
|
4657
|
+
get: function () { return chunkF6SLLVEL_js.balanceResponseDenomEntryToJSON; }
|
|
4600
4658
|
});
|
|
4601
4659
|
Object.defineProperty(exports, "balanceResponseFromJSON", {
|
|
4602
4660
|
enumerable: true,
|
|
4603
|
-
get: function () { return
|
|
4661
|
+
get: function () { return chunkF6SLLVEL_js.balanceResponseFromJSON; }
|
|
4604
4662
|
});
|
|
4605
4663
|
Object.defineProperty(exports, "balanceResponseToJSON", {
|
|
4606
4664
|
enumerable: true,
|
|
4607
|
-
get: function () { return
|
|
4665
|
+
get: function () { return chunkF6SLLVEL_js.balanceResponseToJSON; }
|
|
4608
4666
|
});
|
|
4609
4667
|
Object.defineProperty(exports, "bankSendFromJSON", {
|
|
4610
4668
|
enumerable: true,
|
|
4611
|
-
get: function () { return
|
|
4669
|
+
get: function () { return chunkF6SLLVEL_js.bankSendFromJSON; }
|
|
4612
4670
|
});
|
|
4613
4671
|
Object.defineProperty(exports, "bankSendToJSON", {
|
|
4614
4672
|
enumerable: true,
|
|
4615
|
-
get: function () { return
|
|
4673
|
+
get: function () { return chunkF6SLLVEL_js.bankSendToJSON; }
|
|
4616
4674
|
});
|
|
4617
4675
|
Object.defineProperty(exports, "bridgeFromJSON", {
|
|
4618
4676
|
enumerable: true,
|
|
4619
|
-
get: function () { return
|
|
4677
|
+
get: function () { return chunkF6SLLVEL_js.bridgeFromJSON; }
|
|
4620
4678
|
});
|
|
4621
4679
|
Object.defineProperty(exports, "bridgeToJSON", {
|
|
4622
4680
|
enumerable: true,
|
|
4623
|
-
get: function () { return
|
|
4681
|
+
get: function () { return chunkF6SLLVEL_js.bridgeToJSON; }
|
|
4624
4682
|
});
|
|
4625
4683
|
Object.defineProperty(exports, "bridgesResponseFromJSON", {
|
|
4626
4684
|
enumerable: true,
|
|
4627
|
-
get: function () { return
|
|
4685
|
+
get: function () { return chunkF6SLLVEL_js.bridgesResponseFromJSON; }
|
|
4628
4686
|
});
|
|
4629
4687
|
Object.defineProperty(exports, "bridgesResponseToJSON", {
|
|
4630
4688
|
enumerable: true,
|
|
4631
|
-
get: function () { return
|
|
4689
|
+
get: function () { return chunkF6SLLVEL_js.bridgesResponseToJSON; }
|
|
4632
4690
|
});
|
|
4633
4691
|
Object.defineProperty(exports, "cctpTransferFromJSON", {
|
|
4634
4692
|
enumerable: true,
|
|
4635
|
-
get: function () { return
|
|
4693
|
+
get: function () { return chunkF6SLLVEL_js.cctpTransferFromJSON; }
|
|
4636
4694
|
});
|
|
4637
4695
|
Object.defineProperty(exports, "cctpTransferInfoFromJSON", {
|
|
4638
4696
|
enumerable: true,
|
|
4639
|
-
get: function () { return
|
|
4697
|
+
get: function () { return chunkF6SLLVEL_js.cctpTransferInfoFromJSON; }
|
|
4640
4698
|
});
|
|
4641
4699
|
Object.defineProperty(exports, "cctpTransferInfoToJSON", {
|
|
4642
4700
|
enumerable: true,
|
|
4643
|
-
get: function () { return
|
|
4701
|
+
get: function () { return chunkF6SLLVEL_js.cctpTransferInfoToJSON; }
|
|
4644
4702
|
});
|
|
4645
4703
|
Object.defineProperty(exports, "cctpTransferToJSON", {
|
|
4646
4704
|
enumerable: true,
|
|
4647
|
-
get: function () { return
|
|
4705
|
+
get: function () { return chunkF6SLLVEL_js.cctpTransferToJSON; }
|
|
4648
4706
|
});
|
|
4649
4707
|
Object.defineProperty(exports, "cctpTransferTransactionsFromJSON", {
|
|
4650
4708
|
enumerable: true,
|
|
4651
|
-
get: function () { return
|
|
4709
|
+
get: function () { return chunkF6SLLVEL_js.cctpTransferTransactionsFromJSON; }
|
|
4652
4710
|
});
|
|
4653
4711
|
Object.defineProperty(exports, "cctpTransferTransactionsToJSON", {
|
|
4654
4712
|
enumerable: true,
|
|
4655
|
-
get: function () { return
|
|
4713
|
+
get: function () { return chunkF6SLLVEL_js.cctpTransferTransactionsToJSON; }
|
|
4656
4714
|
});
|
|
4657
4715
|
Object.defineProperty(exports, "chainAffiliatesFromJSON", {
|
|
4658
4716
|
enumerable: true,
|
|
4659
|
-
get: function () { return
|
|
4717
|
+
get: function () { return chunkF6SLLVEL_js.chainAffiliatesFromJSON; }
|
|
4660
4718
|
});
|
|
4661
4719
|
Object.defineProperty(exports, "chainAffiliatesToJSON", {
|
|
4662
4720
|
enumerable: true,
|
|
4663
|
-
get: function () { return
|
|
4721
|
+
get: function () { return chunkF6SLLVEL_js.chainAffiliatesToJSON; }
|
|
4664
4722
|
});
|
|
4665
4723
|
Object.defineProperty(exports, "chainFromJSON", {
|
|
4666
4724
|
enumerable: true,
|
|
4667
|
-
get: function () { return
|
|
4725
|
+
get: function () { return chunkF6SLLVEL_js.chainFromJSON; }
|
|
4668
4726
|
});
|
|
4669
4727
|
Object.defineProperty(exports, "chainIDsToAffiliatesMapFromJSON", {
|
|
4670
4728
|
enumerable: true,
|
|
4671
|
-
get: function () { return
|
|
4729
|
+
get: function () { return chunkF6SLLVEL_js.chainIDsToAffiliatesMapFromJSON; }
|
|
4672
4730
|
});
|
|
4673
4731
|
Object.defineProperty(exports, "chainIDsToAffiliatesMapToJSON", {
|
|
4674
4732
|
enumerable: true,
|
|
4675
|
-
get: function () { return
|
|
4733
|
+
get: function () { return chunkF6SLLVEL_js.chainIDsToAffiliatesMapToJSON; }
|
|
4676
4734
|
});
|
|
4677
4735
|
Object.defineProperty(exports, "chainToJSON", {
|
|
4678
4736
|
enumerable: true,
|
|
4679
|
-
get: function () { return
|
|
4737
|
+
get: function () { return chunkF6SLLVEL_js.chainToJSON; }
|
|
4680
4738
|
});
|
|
4681
4739
|
Object.defineProperty(exports, "chainTransactionFromJSON", {
|
|
4682
4740
|
enumerable: true,
|
|
4683
|
-
get: function () { return
|
|
4741
|
+
get: function () { return chunkF6SLLVEL_js.chainTransactionFromJSON; }
|
|
4684
4742
|
});
|
|
4685
4743
|
Object.defineProperty(exports, "chainTransactionToJSON", {
|
|
4686
4744
|
enumerable: true,
|
|
4687
|
-
get: function () { return
|
|
4745
|
+
get: function () { return chunkF6SLLVEL_js.chainTransactionToJSON; }
|
|
4688
4746
|
});
|
|
4689
4747
|
Object.defineProperty(exports, "contractCallWithTokenTransactionsFromJSON", {
|
|
4690
4748
|
enumerable: true,
|
|
4691
|
-
get: function () { return
|
|
4749
|
+
get: function () { return chunkF6SLLVEL_js.contractCallWithTokenTransactionsFromJSON; }
|
|
4692
4750
|
});
|
|
4693
4751
|
Object.defineProperty(exports, "contractCallWithTokenTransactionsToJSON", {
|
|
4694
4752
|
enumerable: true,
|
|
4695
|
-
get: function () { return
|
|
4753
|
+
get: function () { return chunkF6SLLVEL_js.contractCallWithTokenTransactionsToJSON; }
|
|
4696
4754
|
});
|
|
4697
4755
|
Object.defineProperty(exports, "cosmWasmContractMsgFromJSON", {
|
|
4698
4756
|
enumerable: true,
|
|
4699
|
-
get: function () { return
|
|
4757
|
+
get: function () { return chunkF6SLLVEL_js.cosmWasmContractMsgFromJSON; }
|
|
4700
4758
|
});
|
|
4701
4759
|
Object.defineProperty(exports, "cosmWasmContractMsgToJSON", {
|
|
4702
4760
|
enumerable: true,
|
|
4703
|
-
get: function () { return
|
|
4761
|
+
get: function () { return chunkF6SLLVEL_js.cosmWasmContractMsgToJSON; }
|
|
4704
4762
|
});
|
|
4705
4763
|
Object.defineProperty(exports, "cosmosMsgFromJSON", {
|
|
4706
4764
|
enumerable: true,
|
|
4707
|
-
get: function () { return
|
|
4765
|
+
get: function () { return chunkF6SLLVEL_js.cosmosMsgFromJSON; }
|
|
4708
4766
|
});
|
|
4709
4767
|
Object.defineProperty(exports, "cosmosMsgToJSON", {
|
|
4710
4768
|
enumerable: true,
|
|
4711
|
-
get: function () { return
|
|
4769
|
+
get: function () { return chunkF6SLLVEL_js.cosmosMsgToJSON; }
|
|
4712
4770
|
});
|
|
4713
4771
|
Object.defineProperty(exports, "cosmosTxFromJSON", {
|
|
4714
4772
|
enumerable: true,
|
|
4715
|
-
get: function () { return
|
|
4773
|
+
get: function () { return chunkF6SLLVEL_js.cosmosTxFromJSON; }
|
|
4716
4774
|
});
|
|
4717
4775
|
Object.defineProperty(exports, "cosmosTxToJSON", {
|
|
4718
4776
|
enumerable: true,
|
|
4719
|
-
get: function () { return
|
|
4777
|
+
get: function () { return chunkF6SLLVEL_js.cosmosTxToJSON; }
|
|
4720
4778
|
});
|
|
4721
4779
|
Object.defineProperty(exports, "denomWithChainIDFromJSON", {
|
|
4722
4780
|
enumerable: true,
|
|
4723
|
-
get: function () { return
|
|
4781
|
+
get: function () { return chunkF6SLLVEL_js.denomWithChainIDFromJSON; }
|
|
4724
4782
|
});
|
|
4725
4783
|
Object.defineProperty(exports, "denomWithChainIDToJSON", {
|
|
4726
4784
|
enumerable: true,
|
|
4727
|
-
get: function () { return
|
|
4785
|
+
get: function () { return chunkF6SLLVEL_js.denomWithChainIDToJSON; }
|
|
4728
4786
|
});
|
|
4729
4787
|
Object.defineProperty(exports, "erc20ApprovalFromJSON", {
|
|
4730
4788
|
enumerable: true,
|
|
4731
|
-
get: function () { return
|
|
4789
|
+
get: function () { return chunkF6SLLVEL_js.erc20ApprovalFromJSON; }
|
|
4732
4790
|
});
|
|
4733
4791
|
Object.defineProperty(exports, "erc20ApprovalToJSON", {
|
|
4734
4792
|
enumerable: true,
|
|
4735
|
-
get: function () { return
|
|
4793
|
+
get: function () { return chunkF6SLLVEL_js.erc20ApprovalToJSON; }
|
|
4736
4794
|
});
|
|
4737
4795
|
Object.defineProperty(exports, "estimatedFeeFromJSON", {
|
|
4738
4796
|
enumerable: true,
|
|
4739
|
-
get: function () { return
|
|
4797
|
+
get: function () { return chunkF6SLLVEL_js.estimatedFeeFromJSON; }
|
|
4740
4798
|
});
|
|
4741
4799
|
Object.defineProperty(exports, "estimatedFeeToJSON", {
|
|
4742
4800
|
enumerable: true,
|
|
4743
|
-
get: function () { return
|
|
4801
|
+
get: function () { return chunkF6SLLVEL_js.estimatedFeeToJSON; }
|
|
4744
4802
|
});
|
|
4745
4803
|
Object.defineProperty(exports, "evmSwapFromJSON", {
|
|
4746
4804
|
enumerable: true,
|
|
4747
|
-
get: function () { return
|
|
4805
|
+
get: function () { return chunkF6SLLVEL_js.evmSwapFromJSON; }
|
|
4748
4806
|
});
|
|
4749
4807
|
Object.defineProperty(exports, "evmSwapToJSON", {
|
|
4750
4808
|
enumerable: true,
|
|
4751
|
-
get: function () { return
|
|
4809
|
+
get: function () { return chunkF6SLLVEL_js.evmSwapToJSON; }
|
|
4752
4810
|
});
|
|
4753
4811
|
Object.defineProperty(exports, "evmTxFromJSON", {
|
|
4754
4812
|
enumerable: true,
|
|
4755
|
-
get: function () { return
|
|
4813
|
+
get: function () { return chunkF6SLLVEL_js.evmTxFromJSON; }
|
|
4756
4814
|
});
|
|
4757
4815
|
Object.defineProperty(exports, "evmTxToJSON", {
|
|
4758
4816
|
enumerable: true,
|
|
4759
|
-
get: function () { return
|
|
4817
|
+
get: function () { return chunkF6SLLVEL_js.evmTxToJSON; }
|
|
4760
4818
|
});
|
|
4761
4819
|
Object.defineProperty(exports, "feeAssetFromJSON", {
|
|
4762
4820
|
enumerable: true,
|
|
4763
|
-
get: function () { return
|
|
4821
|
+
get: function () { return chunkF6SLLVEL_js.feeAssetFromJSON; }
|
|
4764
4822
|
});
|
|
4765
4823
|
Object.defineProperty(exports, "feeAssetToJSON", {
|
|
4766
4824
|
enumerable: true,
|
|
4767
|
-
get: function () { return
|
|
4825
|
+
get: function () { return chunkF6SLLVEL_js.feeAssetToJSON; }
|
|
4768
4826
|
});
|
|
4769
4827
|
Object.defineProperty(exports, "hyperlaneTransferFromJSON", {
|
|
4770
4828
|
enumerable: true,
|
|
4771
|
-
get: function () { return
|
|
4829
|
+
get: function () { return chunkF6SLLVEL_js.hyperlaneTransferFromJSON; }
|
|
4772
4830
|
});
|
|
4773
4831
|
Object.defineProperty(exports, "hyperlaneTransferInfoFromJSON", {
|
|
4774
4832
|
enumerable: true,
|
|
4775
|
-
get: function () { return
|
|
4833
|
+
get: function () { return chunkF6SLLVEL_js.hyperlaneTransferInfoFromJSON; }
|
|
4776
4834
|
});
|
|
4777
4835
|
Object.defineProperty(exports, "hyperlaneTransferInfoToJSON", {
|
|
4778
4836
|
enumerable: true,
|
|
4779
|
-
get: function () { return
|
|
4837
|
+
get: function () { return chunkF6SLLVEL_js.hyperlaneTransferInfoToJSON; }
|
|
4780
4838
|
});
|
|
4781
4839
|
Object.defineProperty(exports, "hyperlaneTransferToJSON", {
|
|
4782
4840
|
enumerable: true,
|
|
4783
|
-
get: function () { return
|
|
4841
|
+
get: function () { return chunkF6SLLVEL_js.hyperlaneTransferToJSON; }
|
|
4784
4842
|
});
|
|
4785
4843
|
Object.defineProperty(exports, "hyperlaneTransferTransactionsFromJSON", {
|
|
4786
4844
|
enumerable: true,
|
|
4787
|
-
get: function () { return
|
|
4845
|
+
get: function () { return chunkF6SLLVEL_js.hyperlaneTransferTransactionsFromJSON; }
|
|
4788
4846
|
});
|
|
4789
4847
|
Object.defineProperty(exports, "hyperlaneTransferTransactionsToJSON", {
|
|
4790
4848
|
enumerable: true,
|
|
4791
|
-
get: function () { return
|
|
4849
|
+
get: function () { return chunkF6SLLVEL_js.hyperlaneTransferTransactionsToJSON; }
|
|
4792
4850
|
});
|
|
4793
4851
|
Object.defineProperty(exports, "ibcAddressFromJSON", {
|
|
4794
4852
|
enumerable: true,
|
|
4795
|
-
get: function () { return
|
|
4853
|
+
get: function () { return chunkF6SLLVEL_js.ibcAddressFromJSON; }
|
|
4796
4854
|
});
|
|
4797
4855
|
Object.defineProperty(exports, "ibcAddressToJSON", {
|
|
4798
4856
|
enumerable: true,
|
|
4799
|
-
get: function () { return
|
|
4857
|
+
get: function () { return chunkF6SLLVEL_js.ibcAddressToJSON; }
|
|
4800
4858
|
});
|
|
4801
4859
|
Object.defineProperty(exports, "ibcCapabilitiesFromJSON", {
|
|
4802
4860
|
enumerable: true,
|
|
4803
|
-
get: function () { return
|
|
4861
|
+
get: function () { return chunkF6SLLVEL_js.ibcCapabilitiesFromJSON; }
|
|
4804
4862
|
});
|
|
4805
4863
|
Object.defineProperty(exports, "ibcCapabilitiesToJSON", {
|
|
4806
4864
|
enumerable: true,
|
|
4807
|
-
get: function () { return
|
|
4865
|
+
get: function () { return chunkF6SLLVEL_js.ibcCapabilitiesToJSON; }
|
|
4808
4866
|
});
|
|
4809
4867
|
Object.defineProperty(exports, "messageResponseFromJSON", {
|
|
4810
4868
|
enumerable: true,
|
|
4811
|
-
get: function () { return
|
|
4869
|
+
get: function () { return chunkF6SLLVEL_js.messageResponseFromJSON; }
|
|
4812
4870
|
});
|
|
4813
4871
|
Object.defineProperty(exports, "msgFromJSON", {
|
|
4814
4872
|
enumerable: true,
|
|
4815
|
-
get: function () { return
|
|
4873
|
+
get: function () { return chunkF6SLLVEL_js.msgFromJSON; }
|
|
4816
4874
|
});
|
|
4817
4875
|
Object.defineProperty(exports, "msgToJSON", {
|
|
4818
4876
|
enumerable: true,
|
|
4819
|
-
get: function () { return
|
|
4877
|
+
get: function () { return chunkF6SLLVEL_js.msgToJSON; }
|
|
4820
4878
|
});
|
|
4821
4879
|
Object.defineProperty(exports, "msgsDirectRequestFromJSON", {
|
|
4822
4880
|
enumerable: true,
|
|
4823
|
-
get: function () { return
|
|
4881
|
+
get: function () { return chunkF6SLLVEL_js.msgsDirectRequestFromJSON; }
|
|
4824
4882
|
});
|
|
4825
4883
|
Object.defineProperty(exports, "msgsDirectRequestToJSON", {
|
|
4826
4884
|
enumerable: true,
|
|
4827
|
-
get: function () { return
|
|
4885
|
+
get: function () { return chunkF6SLLVEL_js.msgsDirectRequestToJSON; }
|
|
4828
4886
|
});
|
|
4829
4887
|
Object.defineProperty(exports, "msgsRequestFromJSON", {
|
|
4830
4888
|
enumerable: true,
|
|
4831
|
-
get: function () { return
|
|
4889
|
+
get: function () { return chunkF6SLLVEL_js.msgsRequestFromJSON; }
|
|
4832
4890
|
});
|
|
4833
4891
|
Object.defineProperty(exports, "msgsRequestToJSON", {
|
|
4834
4892
|
enumerable: true,
|
|
4835
|
-
get: function () { return
|
|
4893
|
+
get: function () { return chunkF6SLLVEL_js.msgsRequestToJSON; }
|
|
4836
4894
|
});
|
|
4837
4895
|
Object.defineProperty(exports, "multiChainMsgFromJSON", {
|
|
4838
4896
|
enumerable: true,
|
|
4839
|
-
get: function () { return
|
|
4897
|
+
get: function () { return chunkF6SLLVEL_js.multiChainMsgFromJSON; }
|
|
4840
4898
|
});
|
|
4841
4899
|
Object.defineProperty(exports, "multiChainMsgToJSON", {
|
|
4842
4900
|
enumerable: true,
|
|
4843
|
-
get: function () { return
|
|
4901
|
+
get: function () { return chunkF6SLLVEL_js.multiChainMsgToJSON; }
|
|
4844
4902
|
});
|
|
4845
4903
|
Object.defineProperty(exports, "nextBlockingTransferFromJSON", {
|
|
4846
4904
|
enumerable: true,
|
|
4847
|
-
get: function () { return
|
|
4905
|
+
get: function () { return chunkF6SLLVEL_js.nextBlockingTransferFromJSON; }
|
|
4848
4906
|
});
|
|
4849
4907
|
Object.defineProperty(exports, "nextBlockingTransferToJSON", {
|
|
4850
4908
|
enumerable: true,
|
|
4851
|
-
get: function () { return
|
|
4909
|
+
get: function () { return chunkF6SLLVEL_js.nextBlockingTransferToJSON; }
|
|
4852
4910
|
});
|
|
4853
4911
|
Object.defineProperty(exports, "opInitTransferFromJSON", {
|
|
4854
4912
|
enumerable: true,
|
|
4855
|
-
get: function () { return
|
|
4913
|
+
get: function () { return chunkF6SLLVEL_js.opInitTransferFromJSON; }
|
|
4856
4914
|
});
|
|
4857
4915
|
Object.defineProperty(exports, "opInitTransferInfoFromJSON", {
|
|
4858
4916
|
enumerable: true,
|
|
4859
|
-
get: function () { return
|
|
4917
|
+
get: function () { return chunkF6SLLVEL_js.opInitTransferInfoFromJSON; }
|
|
4860
4918
|
});
|
|
4861
4919
|
Object.defineProperty(exports, "opInitTransferInfoToJSON", {
|
|
4862
4920
|
enumerable: true,
|
|
4863
|
-
get: function () { return
|
|
4921
|
+
get: function () { return chunkF6SLLVEL_js.opInitTransferInfoToJSON; }
|
|
4864
4922
|
});
|
|
4865
4923
|
Object.defineProperty(exports, "opInitTransferToJSON", {
|
|
4866
4924
|
enumerable: true,
|
|
4867
|
-
get: function () { return
|
|
4925
|
+
get: function () { return chunkF6SLLVEL_js.opInitTransferToJSON; }
|
|
4868
4926
|
});
|
|
4869
4927
|
Object.defineProperty(exports, "opInitTransferTransactionsFromJSON", {
|
|
4870
4928
|
enumerable: true,
|
|
4871
|
-
get: function () { return
|
|
4929
|
+
get: function () { return chunkF6SLLVEL_js.opInitTransferTransactionsFromJSON; }
|
|
4872
4930
|
});
|
|
4873
4931
|
Object.defineProperty(exports, "opInitTransferTransactionsToJSON", {
|
|
4874
4932
|
enumerable: true,
|
|
4875
|
-
get: function () { return
|
|
4933
|
+
get: function () { return chunkF6SLLVEL_js.opInitTransferTransactionsToJSON; }
|
|
4876
4934
|
});
|
|
4877
4935
|
Object.defineProperty(exports, "operationFromJSON", {
|
|
4878
4936
|
enumerable: true,
|
|
4879
|
-
get: function () { return
|
|
4937
|
+
get: function () { return chunkF6SLLVEL_js.operationFromJSON; }
|
|
4880
4938
|
});
|
|
4881
4939
|
Object.defineProperty(exports, "operationToJSON", {
|
|
4882
4940
|
enumerable: true,
|
|
4883
|
-
get: function () { return
|
|
4941
|
+
get: function () { return chunkF6SLLVEL_js.operationToJSON; }
|
|
4884
4942
|
});
|
|
4885
4943
|
Object.defineProperty(exports, "originAssetsRequestFromJSON", {
|
|
4886
4944
|
enumerable: true,
|
|
4887
|
-
get: function () { return
|
|
4945
|
+
get: function () { return chunkF6SLLVEL_js.originAssetsRequestFromJSON; }
|
|
4888
4946
|
});
|
|
4889
4947
|
Object.defineProperty(exports, "originAssetsRequestToJSON", {
|
|
4890
4948
|
enumerable: true,
|
|
4891
|
-
get: function () { return
|
|
4949
|
+
get: function () { return chunkF6SLLVEL_js.originAssetsRequestToJSON; }
|
|
4892
4950
|
});
|
|
4893
4951
|
Object.defineProperty(exports, "originAssetsResponseFromJSON", {
|
|
4894
4952
|
enumerable: true,
|
|
4895
|
-
get: function () { return
|
|
4953
|
+
get: function () { return chunkF6SLLVEL_js.originAssetsResponseFromJSON; }
|
|
4896
4954
|
});
|
|
4897
4955
|
Object.defineProperty(exports, "originAssetsResponseToJSON", {
|
|
4898
4956
|
enumerable: true,
|
|
4899
|
-
get: function () { return
|
|
4957
|
+
get: function () { return chunkF6SLLVEL_js.originAssetsResponseToJSON; }
|
|
4900
4958
|
});
|
|
4901
4959
|
Object.defineProperty(exports, "packetFromJSON", {
|
|
4902
4960
|
enumerable: true,
|
|
4903
|
-
get: function () { return
|
|
4961
|
+
get: function () { return chunkF6SLLVEL_js.packetFromJSON; }
|
|
4904
4962
|
});
|
|
4905
4963
|
Object.defineProperty(exports, "packetToJSON", {
|
|
4906
4964
|
enumerable: true,
|
|
4907
|
-
get: function () { return
|
|
4965
|
+
get: function () { return chunkF6SLLVEL_js.packetToJSON; }
|
|
4908
4966
|
});
|
|
4909
4967
|
Object.defineProperty(exports, "postHandlerFromJSON", {
|
|
4910
4968
|
enumerable: true,
|
|
4911
|
-
get: function () { return
|
|
4969
|
+
get: function () { return chunkF6SLLVEL_js.postHandlerFromJSON; }
|
|
4912
4970
|
});
|
|
4913
4971
|
Object.defineProperty(exports, "postHandlerToJSON", {
|
|
4914
4972
|
enumerable: true,
|
|
4915
|
-
get: function () { return
|
|
4973
|
+
get: function () { return chunkF6SLLVEL_js.postHandlerToJSON; }
|
|
4916
4974
|
});
|
|
4917
4975
|
Object.defineProperty(exports, "recommendAssetsRequestFromJSON", {
|
|
4918
4976
|
enumerable: true,
|
|
4919
|
-
get: function () { return
|
|
4977
|
+
get: function () { return chunkF6SLLVEL_js.recommendAssetsRequestFromJSON; }
|
|
4920
4978
|
});
|
|
4921
4979
|
Object.defineProperty(exports, "recommendAssetsRequestToJSON", {
|
|
4922
4980
|
enumerable: true,
|
|
4923
|
-
get: function () { return
|
|
4981
|
+
get: function () { return chunkF6SLLVEL_js.recommendAssetsRequestToJSON; }
|
|
4924
4982
|
});
|
|
4925
4983
|
Object.defineProperty(exports, "recommendAssetsResponseFromJSON", {
|
|
4926
4984
|
enumerable: true,
|
|
4927
|
-
get: function () { return
|
|
4985
|
+
get: function () { return chunkF6SLLVEL_js.recommendAssetsResponseFromJSON; }
|
|
4928
4986
|
});
|
|
4929
4987
|
Object.defineProperty(exports, "recommendAssetsResponseToJSON", {
|
|
4930
4988
|
enumerable: true,
|
|
4931
|
-
get: function () { return
|
|
4989
|
+
get: function () { return chunkF6SLLVEL_js.recommendAssetsResponseToJSON; }
|
|
4932
4990
|
});
|
|
4933
4991
|
Object.defineProperty(exports, "recommendationEntryFromJSON", {
|
|
4934
4992
|
enumerable: true,
|
|
4935
|
-
get: function () { return
|
|
4993
|
+
get: function () { return chunkF6SLLVEL_js.recommendationEntryFromJSON; }
|
|
4936
4994
|
});
|
|
4937
4995
|
Object.defineProperty(exports, "recommendationEntryToJSON", {
|
|
4938
4996
|
enumerable: true,
|
|
4939
|
-
get: function () { return
|
|
4997
|
+
get: function () { return chunkF6SLLVEL_js.recommendationEntryToJSON; }
|
|
4940
4998
|
});
|
|
4941
4999
|
Object.defineProperty(exports, "routeRequestFromJSON", {
|
|
4942
5000
|
enumerable: true,
|
|
4943
|
-
get: function () { return
|
|
5001
|
+
get: function () { return chunkF6SLLVEL_js.routeRequestFromJSON; }
|
|
4944
5002
|
});
|
|
4945
5003
|
Object.defineProperty(exports, "routeRequestToJSON", {
|
|
4946
5004
|
enumerable: true,
|
|
4947
|
-
get: function () { return
|
|
5005
|
+
get: function () { return chunkF6SLLVEL_js.routeRequestToJSON; }
|
|
4948
5006
|
});
|
|
4949
5007
|
Object.defineProperty(exports, "routeResponseFromJSON", {
|
|
4950
5008
|
enumerable: true,
|
|
4951
|
-
get: function () { return
|
|
5009
|
+
get: function () { return chunkF6SLLVEL_js.routeResponseFromJSON; }
|
|
4952
5010
|
});
|
|
4953
5011
|
Object.defineProperty(exports, "routeResponseToJSON", {
|
|
4954
5012
|
enumerable: true,
|
|
4955
|
-
get: function () { return
|
|
5013
|
+
get: function () { return chunkF6SLLVEL_js.routeResponseToJSON; }
|
|
4956
5014
|
});
|
|
4957
5015
|
Object.defineProperty(exports, "sendTokenTransactionsFromJSON", {
|
|
4958
5016
|
enumerable: true,
|
|
4959
|
-
get: function () { return
|
|
5017
|
+
get: function () { return chunkF6SLLVEL_js.sendTokenTransactionsFromJSON; }
|
|
4960
5018
|
});
|
|
4961
5019
|
Object.defineProperty(exports, "sendTokenTransactionsToJSON", {
|
|
4962
5020
|
enumerable: true,
|
|
4963
|
-
get: function () { return
|
|
5021
|
+
get: function () { return chunkF6SLLVEL_js.sendTokenTransactionsToJSON; }
|
|
4964
5022
|
});
|
|
4965
5023
|
Object.defineProperty(exports, "smartRelayFeeQuoteFromJSON", {
|
|
4966
5024
|
enumerable: true,
|
|
4967
|
-
get: function () { return
|
|
5025
|
+
get: function () { return chunkF6SLLVEL_js.smartRelayFeeQuoteFromJSON; }
|
|
4968
5026
|
});
|
|
4969
5027
|
Object.defineProperty(exports, "smartRelayFeeQuoteToJSON", {
|
|
4970
5028
|
enumerable: true,
|
|
4971
|
-
get: function () { return
|
|
5029
|
+
get: function () { return chunkF6SLLVEL_js.smartRelayFeeQuoteToJSON; }
|
|
4972
5030
|
});
|
|
4973
5031
|
Object.defineProperty(exports, "smartSwapExactCoinInFromJSON", {
|
|
4974
5032
|
enumerable: true,
|
|
4975
|
-
get: function () { return
|
|
5033
|
+
get: function () { return chunkF6SLLVEL_js.smartSwapExactCoinInFromJSON; }
|
|
4976
5034
|
});
|
|
4977
5035
|
Object.defineProperty(exports, "smartSwapExactCoinInToJSON", {
|
|
4978
5036
|
enumerable: true,
|
|
4979
|
-
get: function () { return
|
|
5037
|
+
get: function () { return chunkF6SLLVEL_js.smartSwapExactCoinInToJSON; }
|
|
4980
5038
|
});
|
|
4981
5039
|
Object.defineProperty(exports, "smartSwapOptionsFromJSON", {
|
|
4982
5040
|
enumerable: true,
|
|
4983
|
-
get: function () { return
|
|
5041
|
+
get: function () { return chunkF6SLLVEL_js.smartSwapOptionsFromJSON; }
|
|
4984
5042
|
});
|
|
4985
5043
|
Object.defineProperty(exports, "smartSwapOptionsToJSON", {
|
|
4986
5044
|
enumerable: true,
|
|
4987
|
-
get: function () { return
|
|
5045
|
+
get: function () { return chunkF6SLLVEL_js.smartSwapOptionsToJSON; }
|
|
4988
5046
|
});
|
|
4989
5047
|
Object.defineProperty(exports, "submitTxRequestFromJSON", {
|
|
4990
5048
|
enumerable: true,
|
|
4991
|
-
get: function () { return
|
|
5049
|
+
get: function () { return chunkF6SLLVEL_js.submitTxRequestFromJSON; }
|
|
4992
5050
|
});
|
|
4993
5051
|
Object.defineProperty(exports, "submitTxRequestToJSON", {
|
|
4994
5052
|
enumerable: true,
|
|
4995
|
-
get: function () { return
|
|
5053
|
+
get: function () { return chunkF6SLLVEL_js.submitTxRequestToJSON; }
|
|
4996
5054
|
});
|
|
4997
5055
|
Object.defineProperty(exports, "submitTxResponseFromJSON", {
|
|
4998
5056
|
enumerable: true,
|
|
4999
|
-
get: function () { return
|
|
5057
|
+
get: function () { return chunkF6SLLVEL_js.submitTxResponseFromJSON; }
|
|
5000
5058
|
});
|
|
5001
5059
|
Object.defineProperty(exports, "submitTxResponseToJSON", {
|
|
5002
5060
|
enumerable: true,
|
|
5003
|
-
get: function () { return
|
|
5061
|
+
get: function () { return chunkF6SLLVEL_js.submitTxResponseToJSON; }
|
|
5004
5062
|
});
|
|
5005
5063
|
Object.defineProperty(exports, "svmTxFromJSON", {
|
|
5006
5064
|
enumerable: true,
|
|
5007
|
-
get: function () { return
|
|
5065
|
+
get: function () { return chunkF6SLLVEL_js.svmTxFromJSON; }
|
|
5008
5066
|
});
|
|
5009
5067
|
Object.defineProperty(exports, "svmTxToJSON", {
|
|
5010
5068
|
enumerable: true,
|
|
5011
|
-
get: function () { return
|
|
5069
|
+
get: function () { return chunkF6SLLVEL_js.svmTxToJSON; }
|
|
5012
5070
|
});
|
|
5013
5071
|
Object.defineProperty(exports, "swapExactCoinInFromJSON", {
|
|
5014
5072
|
enumerable: true,
|
|
5015
|
-
get: function () { return
|
|
5073
|
+
get: function () { return chunkF6SLLVEL_js.swapExactCoinInFromJSON; }
|
|
5016
5074
|
});
|
|
5017
5075
|
Object.defineProperty(exports, "swapExactCoinInToJSON", {
|
|
5018
5076
|
enumerable: true,
|
|
5019
|
-
get: function () { return
|
|
5077
|
+
get: function () { return chunkF6SLLVEL_js.swapExactCoinInToJSON; }
|
|
5020
5078
|
});
|
|
5021
5079
|
Object.defineProperty(exports, "swapExactCoinOutFromJSON", {
|
|
5022
5080
|
enumerable: true,
|
|
5023
|
-
get: function () { return
|
|
5081
|
+
get: function () { return chunkF6SLLVEL_js.swapExactCoinOutFromJSON; }
|
|
5024
5082
|
});
|
|
5025
5083
|
Object.defineProperty(exports, "swapExactCoinOutToJSON", {
|
|
5026
5084
|
enumerable: true,
|
|
5027
|
-
get: function () { return
|
|
5085
|
+
get: function () { return chunkF6SLLVEL_js.swapExactCoinOutToJSON; }
|
|
5028
5086
|
});
|
|
5029
5087
|
Object.defineProperty(exports, "swapFromJSON", {
|
|
5030
5088
|
enumerable: true,
|
|
5031
|
-
get: function () { return
|
|
5089
|
+
get: function () { return chunkF6SLLVEL_js.swapFromJSON; }
|
|
5032
5090
|
});
|
|
5033
5091
|
Object.defineProperty(exports, "swapOperationFromJSON", {
|
|
5034
5092
|
enumerable: true,
|
|
5035
|
-
get: function () { return
|
|
5093
|
+
get: function () { return chunkF6SLLVEL_js.swapOperationFromJSON; }
|
|
5036
5094
|
});
|
|
5037
5095
|
Object.defineProperty(exports, "swapOperationToJSON", {
|
|
5038
5096
|
enumerable: true,
|
|
5039
|
-
get: function () { return
|
|
5097
|
+
get: function () { return chunkF6SLLVEL_js.swapOperationToJSON; }
|
|
5040
5098
|
});
|
|
5041
5099
|
Object.defineProperty(exports, "swapRouteFromJSON", {
|
|
5042
5100
|
enumerable: true,
|
|
5043
|
-
get: function () { return
|
|
5101
|
+
get: function () { return chunkF6SLLVEL_js.swapRouteFromJSON; }
|
|
5044
5102
|
});
|
|
5045
5103
|
Object.defineProperty(exports, "swapRouteToJSON", {
|
|
5046
5104
|
enumerable: true,
|
|
5047
|
-
get: function () { return
|
|
5105
|
+
get: function () { return chunkF6SLLVEL_js.swapRouteToJSON; }
|
|
5048
5106
|
});
|
|
5049
5107
|
Object.defineProperty(exports, "swapToJSON", {
|
|
5050
5108
|
enumerable: true,
|
|
5051
|
-
get: function () { return
|
|
5109
|
+
get: function () { return chunkF6SLLVEL_js.swapToJSON; }
|
|
5052
5110
|
});
|
|
5053
5111
|
Object.defineProperty(exports, "swapVenueFromJSON", {
|
|
5054
5112
|
enumerable: true,
|
|
5055
|
-
get: function () { return
|
|
5113
|
+
get: function () { return chunkF6SLLVEL_js.swapVenueFromJSON; }
|
|
5056
5114
|
});
|
|
5057
5115
|
Object.defineProperty(exports, "swapVenueRequestFromJSON", {
|
|
5058
5116
|
enumerable: true,
|
|
5059
|
-
get: function () { return
|
|
5117
|
+
get: function () { return chunkF6SLLVEL_js.swapVenueRequestFromJSON; }
|
|
5060
5118
|
});
|
|
5061
5119
|
Object.defineProperty(exports, "swapVenueRequestToJSON", {
|
|
5062
5120
|
enumerable: true,
|
|
5063
|
-
get: function () { return
|
|
5121
|
+
get: function () { return chunkF6SLLVEL_js.swapVenueRequestToJSON; }
|
|
5064
5122
|
});
|
|
5065
5123
|
Object.defineProperty(exports, "swapVenueToJSON", {
|
|
5066
5124
|
enumerable: true,
|
|
5067
|
-
get: function () { return
|
|
5125
|
+
get: function () { return chunkF6SLLVEL_js.swapVenueToJSON; }
|
|
5068
5126
|
});
|
|
5069
5127
|
Object.defineProperty(exports, "trackTxRequestFromJSON", {
|
|
5070
5128
|
enumerable: true,
|
|
5071
|
-
get: function () { return
|
|
5129
|
+
get: function () { return chunkF6SLLVEL_js.trackTxRequestFromJSON; }
|
|
5072
5130
|
});
|
|
5073
5131
|
Object.defineProperty(exports, "trackTxRequestToJSON", {
|
|
5074
5132
|
enumerable: true,
|
|
5075
|
-
get: function () { return
|
|
5133
|
+
get: function () { return chunkF6SLLVEL_js.trackTxRequestToJSON; }
|
|
5076
5134
|
});
|
|
5077
5135
|
Object.defineProperty(exports, "trackTxResponseFromJSON", {
|
|
5078
5136
|
enumerable: true,
|
|
5079
|
-
get: function () { return
|
|
5137
|
+
get: function () { return chunkF6SLLVEL_js.trackTxResponseFromJSON; }
|
|
5080
5138
|
});
|
|
5081
5139
|
Object.defineProperty(exports, "trackTxResponseToJSON", {
|
|
5082
5140
|
enumerable: true,
|
|
5083
|
-
get: function () { return
|
|
5141
|
+
get: function () { return chunkF6SLLVEL_js.trackTxResponseToJSON; }
|
|
5084
5142
|
});
|
|
5085
5143
|
Object.defineProperty(exports, "transferAssetReleaseFromJSON", {
|
|
5086
5144
|
enumerable: true,
|
|
5087
|
-
get: function () { return
|
|
5145
|
+
get: function () { return chunkF6SLLVEL_js.transferAssetReleaseFromJSON; }
|
|
5088
5146
|
});
|
|
5089
5147
|
Object.defineProperty(exports, "transferAssetReleaseToJSON", {
|
|
5090
5148
|
enumerable: true,
|
|
5091
|
-
get: function () { return
|
|
5149
|
+
get: function () { return chunkF6SLLVEL_js.transferAssetReleaseToJSON; }
|
|
5092
5150
|
});
|
|
5093
5151
|
Object.defineProperty(exports, "transferEventFromJSON", {
|
|
5094
5152
|
enumerable: true,
|
|
5095
|
-
get: function () { return
|
|
5153
|
+
get: function () { return chunkF6SLLVEL_js.transferEventFromJSON; }
|
|
5096
5154
|
});
|
|
5097
5155
|
Object.defineProperty(exports, "transferEventToJSON", {
|
|
5098
5156
|
enumerable: true,
|
|
5099
|
-
get: function () { return
|
|
5157
|
+
get: function () { return chunkF6SLLVEL_js.transferEventToJSON; }
|
|
5100
5158
|
});
|
|
5101
5159
|
Object.defineProperty(exports, "transferFromJSON", {
|
|
5102
5160
|
enumerable: true,
|
|
5103
|
-
get: function () { return
|
|
5161
|
+
get: function () { return chunkF6SLLVEL_js.transferFromJSON; }
|
|
5104
5162
|
});
|
|
5105
5163
|
Object.defineProperty(exports, "transferInfoFromJSON", {
|
|
5106
5164
|
enumerable: true,
|
|
5107
|
-
get: function () { return
|
|
5165
|
+
get: function () { return chunkF6SLLVEL_js.transferInfoFromJSON; }
|
|
5108
5166
|
});
|
|
5109
5167
|
Object.defineProperty(exports, "transferInfoToJSON", {
|
|
5110
5168
|
enumerable: true,
|
|
5111
|
-
get: function () { return
|
|
5169
|
+
get: function () { return chunkF6SLLVEL_js.transferInfoToJSON; }
|
|
5112
5170
|
});
|
|
5113
5171
|
Object.defineProperty(exports, "transferStatusFromJSON", {
|
|
5114
5172
|
enumerable: true,
|
|
5115
|
-
get: function () { return
|
|
5173
|
+
get: function () { return chunkF6SLLVEL_js.transferStatusFromJSON; }
|
|
5116
5174
|
});
|
|
5117
5175
|
Object.defineProperty(exports, "transferStatusToJSON", {
|
|
5118
5176
|
enumerable: true,
|
|
5119
|
-
get: function () { return
|
|
5177
|
+
get: function () { return chunkF6SLLVEL_js.transferStatusToJSON; }
|
|
5120
5178
|
});
|
|
5121
5179
|
Object.defineProperty(exports, "transferToJSON", {
|
|
5122
5180
|
enumerable: true,
|
|
5123
|
-
get: function () { return
|
|
5181
|
+
get: function () { return chunkF6SLLVEL_js.transferToJSON; }
|
|
5124
5182
|
});
|
|
5125
5183
|
Object.defineProperty(exports, "txFromJSON", {
|
|
5126
5184
|
enumerable: true,
|
|
5127
|
-
get: function () { return
|
|
5185
|
+
get: function () { return chunkF6SLLVEL_js.txFromJSON; }
|
|
5128
5186
|
});
|
|
5129
5187
|
Object.defineProperty(exports, "txStatusRequestFromJSON", {
|
|
5130
5188
|
enumerable: true,
|
|
5131
|
-
get: function () { return
|
|
5189
|
+
get: function () { return chunkF6SLLVEL_js.txStatusRequestFromJSON; }
|
|
5132
5190
|
});
|
|
5133
5191
|
Object.defineProperty(exports, "txStatusRequestToJSON", {
|
|
5134
5192
|
enumerable: true,
|
|
5135
|
-
get: function () { return
|
|
5193
|
+
get: function () { return chunkF6SLLVEL_js.txStatusRequestToJSON; }
|
|
5136
5194
|
});
|
|
5137
5195
|
Object.defineProperty(exports, "txStatusResponseFromJSON", {
|
|
5138
5196
|
enumerable: true,
|
|
5139
|
-
get: function () { return
|
|
5197
|
+
get: function () { return chunkF6SLLVEL_js.txStatusResponseFromJSON; }
|
|
5140
5198
|
});
|
|
5141
5199
|
Object.defineProperty(exports, "txStatusResponseToJSON", {
|
|
5142
5200
|
enumerable: true,
|
|
5143
|
-
get: function () { return
|
|
5201
|
+
get: function () { return chunkF6SLLVEL_js.txStatusResponseToJSON; }
|
|
5144
5202
|
});
|
|
5145
5203
|
Object.defineProperty(exports, "txToJSON", {
|
|
5146
5204
|
enumerable: true,
|
|
5147
|
-
get: function () { return
|
|
5205
|
+
get: function () { return chunkF6SLLVEL_js.txToJSON; }
|
|
5148
5206
|
});
|
|
5149
5207
|
exports.SKIP_API_URL = SKIP_API_URL;
|
|
5150
5208
|
exports.SkipClient = SkipClient;
|