@skip-go/client 0.7.0 → 0.8.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.
@@ -413,7 +413,8 @@ function swapExactCoinInFromJSON(swapExactCoinInJSON) {
413
413
  swapOperationFromJSON
414
414
  ),
415
415
  swapAmountIn: swapExactCoinInJSON.swap_amount_in,
416
- priceImpactPercent: swapExactCoinInJSON.price_impact_percent
416
+ priceImpactPercent: swapExactCoinInJSON.price_impact_percent,
417
+ estimatedAmountOut: swapExactCoinInJSON.estimated_amount_out
417
418
  };
418
419
  }
419
420
  function swapExactCoinInToJSON(swapExactCoinIn) {
@@ -421,19 +422,22 @@ function swapExactCoinInToJSON(swapExactCoinIn) {
421
422
  swap_venue: swapVenueToJSON(swapExactCoinIn.swapVenue),
422
423
  swap_operations: swapExactCoinIn.swapOperations.map(swapOperationToJSON),
423
424
  swap_amount_in: swapExactCoinIn.swapAmountIn,
424
- price_impact_percent: swapExactCoinIn.priceImpactPercent
425
+ price_impact_percent: swapExactCoinIn.priceImpactPercent,
426
+ estimated_amount_out: swapExactCoinIn.estimatedAmountOut
425
427
  };
426
428
  }
427
429
  function smartSwapExactCoinInFromJSON(smartSwapExactCoinInJSON) {
428
430
  return {
429
431
  swapVenue: swapVenueFromJSON(smartSwapExactCoinInJSON.swap_venue),
430
- swapRoutes: smartSwapExactCoinInJSON.swap_routes.map(swapRouteFromJSON)
432
+ swapRoutes: smartSwapExactCoinInJSON.swap_routes.map(swapRouteFromJSON),
433
+ estimatedAmountOut: smartSwapExactCoinInJSON.estimated_amount_out
431
434
  };
432
435
  }
433
436
  function smartSwapExactCoinInToJSON(smartSwapExactCoinIn) {
434
437
  return {
435
438
  swap_venue: swapVenueToJSON(smartSwapExactCoinIn.swapVenue),
436
- swap_routes: smartSwapExactCoinIn.swapRoutes.map(swapRouteToJSON)
439
+ swap_routes: smartSwapExactCoinIn.swapRoutes.map(swapRouteToJSON),
440
+ estimated_amount_out: smartSwapExactCoinIn.estimatedAmountOut
437
441
  };
438
442
  }
439
443
  function swapExactCoinOutFromJSON(swapExactCoinOutJSON) {
@@ -1039,6 +1043,24 @@ function bankSendToJSON(value) {
1039
1043
  denom: value.denom
1040
1044
  };
1041
1045
  }
1046
+ function smartRelayFeeQuoteFromJSON(value) {
1047
+ return {
1048
+ feeAmount: value.fee_amount,
1049
+ relayerAddress: value.relayer_address,
1050
+ expiration: value.expiration,
1051
+ feePaymentAddress: value.fee_payment_address,
1052
+ feeDenom: value.fee_denom
1053
+ };
1054
+ }
1055
+ function smartRelayFeeQuoteToJSON(value) {
1056
+ return {
1057
+ fee_amount: value.feeAmount,
1058
+ relayer_address: value.relayerAddress,
1059
+ expiration: value.expiration,
1060
+ fee_payment_address: value.feePaymentAddress,
1061
+ fee_denom: value.feeDenom
1062
+ };
1063
+ }
1042
1064
  function cctpTransferFromJSON(value) {
1043
1065
  return {
1044
1066
  fromChainID: value.from_chain_id,
@@ -1047,7 +1069,8 @@ function cctpTransferFromJSON(value) {
1047
1069
  bridgeID: value.bridge_id,
1048
1070
  denomIn: value.denom_in,
1049
1071
  denomOut: value.denom_out,
1050
- smartRelay: value.smart_relay
1072
+ smartRelay: value.smart_relay,
1073
+ smartRelayFeeQuote: smartRelayFeeQuoteFromJSON(value.smart_relay_fee_quote)
1051
1074
  };
1052
1075
  }
1053
1076
  function cctpTransferToJSON(value) {
@@ -1058,7 +1081,8 @@ function cctpTransferToJSON(value) {
1058
1081
  bridge_id: value.bridgeID,
1059
1082
  denom_in: value.denomIn,
1060
1083
  denom_out: value.denomOut,
1061
- smart_relay: value.smartRelay
1084
+ smart_relay: value.smartRelay,
1085
+ smart_relay_fee_quote: smartRelayFeeQuoteToJSON(value.smartRelayFeeQuote)
1062
1086
  };
1063
1087
  }
1064
1088
  function hyperlaneTransferFromJSON(value) {
@@ -1826,6 +1850,8 @@ exports.routeResponseFromJSON = routeResponseFromJSON;
1826
1850
  exports.routeResponseToJSON = routeResponseToJSON;
1827
1851
  exports.sendTokenTransactionsFromJSON = sendTokenTransactionsFromJSON;
1828
1852
  exports.sendTokenTransactionsToJSON = sendTokenTransactionsToJSON;
1853
+ exports.smartRelayFeeQuoteFromJSON = smartRelayFeeQuoteFromJSON;
1854
+ exports.smartRelayFeeQuoteToJSON = smartRelayFeeQuoteToJSON;
1829
1855
  exports.smartSwapExactCoinInFromJSON = smartSwapExactCoinInFromJSON;
1830
1856
  exports.smartSwapExactCoinInToJSON = smartSwapExactCoinInToJSON;
1831
1857
  exports.smartSwapOptionsFromJSON = smartSwapOptionsFromJSON;
package/dist/index.d.ts CHANGED
@@ -6,9 +6,9 @@ import { OfflineSigner, GeneratedType, OfflineDirectSigner, Registry, EncodeObje
6
6
  import { AminoConverters, GasPrice, StdFee, SignerData, AminoTypes, SigningStargateClient } from '@cosmjs/stargate';
7
7
  import { TxRaw } from 'cosmjs-types/cosmos/tx/v1beta1/tx';
8
8
  import { TxStatusResponse, Chain, SubmitTxResponse, TrackTxResponse, FeeAsset } from './types.js';
9
- export { AcknowledgementError, AxelarTransferInfo, AxelarTransferInfoJSON, AxelarTransferState, AxelarTransferTransactions, AxelarTransferTransactionsJSON, AxelarTransferType, CCTPTransferInfo, CCTPTransferInfoJSON, CCTPTransferState, CCTPTransferTransactions, CCTPTransferTransactionsJSON, ChainJSON, ChainTransaction, ChainTransactionJSON, ContractCallWithTokenError, ContractCallWithTokenErrorType, ContractCallWithTokenTransactions, ContractCallWithTokenTransactionsJSON, FeeAssetJSON, GasPriceInfo, HyperlaneTransferInfo, HyperlaneTransferInfoJSON, HyperlaneTransferState, HyperlaneTransferTransactions, HyperlaneTransferTransactionsJSON, IbcCapabilities, IbcCapabilitiesJSON, ModuleSupport, ModuleVersionInfo, NextBlockingTransfer, NextBlockingTransferJSON, OPInitTransferInfo, OPInitTransferInfoJSON, OPInitTransferState, OPInitTransferTransactions, OPInitTransferTransactionsJSON, Packet, PacketError, PacketErrorJSON, PacketErrorType, PacketJSON, SendTokenError, SendTokenErrorType, SendTokenTransactions, SendTokenTransactionsJSON, StatusError, StatusErrorJSON, StatusErrorType, StatusRequest, StatusRequestJSON, StatusState, SubmitTxRequest, SubmitTxRequestJSON, SubmitTxResponseJSON, TrackTxRequest, TrackTxRequestJSON, TrackTxResponseJSON, TransactionExecutionError, TransferAssetRelease, TransferAssetReleaseJSON, TransferEvent, TransferEventJSON, TransferInfo, TransferInfoJSON, TransferState, TransferStatus, TransferStatusJSON, TxStatusResponseJSON, Venue, affiliateFromJSON, affiliateToJSON, assetBetweenChainsFromJSON, assetBetweenChainsToJSON, assetFromJSON, assetOrErrorFromJSON, assetOrErrorToJSON, assetRecommendationFromJSON, assetRecommendationRequestFromJSON, assetRecommendationRequestToJSON, assetRecommendationToJSON, assetToJSON, assetsBetweenChainsRequestFromJSON, assetsBetweenChainsRequestToJSON, assetsBetweenChainsResponseFromJSON, assetsFromSourceRequestFromJSON, assetsFromSourceRequestToJSON, assetsRequestFromJSON, assetsRequestToJSON, axelarTransferFromJSON, axelarTransferInfoFromJSON, axelarTransferInfoToJSON, axelarTransferToJSON, axelarTransferTransactionsFromJSON, axelarTransferTransactionsToJSON, bankSendFromJSON, bankSendToJSON, bridgeFromJSON, bridgeToJSON, bridgesResponseFromJSON, bridgesResponseToJSON, cctpTransferFromJSON, cctpTransferInfoFromJSON, cctpTransferInfoToJSON, cctpTransferToJSON, cctpTransferTransactionsFromJSON, cctpTransferTransactionsToJSON, chainAffiliatesFromJSON, chainAffiliatesToJSON, chainFromJSON, chainIDsToAffiliatesMapFromJSON, chainIDsToAffiliatesMapToJSON, chainToJSON, chainTransactionFromJSON, chainTransactionToJSON, contractCallWithTokenTransactionsFromJSON, contractCallWithTokenTransactionsToJSON, cosmWasmContractMsgFromJSON, cosmWasmContractMsgToJSON, cosmosMsgFromJSON, cosmosMsgToJSON, cosmosTxFromJSON, cosmosTxToJSON, denomWithChainIDFromJSON, denomWithChainIDToJSON, erc20ApprovalFromJSON, erc20ApprovalToJSON, estimatedFeeFromJSON, estimatedFeeToJSON, evmSwapFromJSON, evmSwapToJSON, evmTxFromJSON, evmTxToJSON, feeAssetFromJSON, feeAssetToJSON, hyperlaneTransferFromJSON, hyperlaneTransferInfoFromJSON, hyperlaneTransferInfoToJSON, hyperlaneTransferToJSON, hyperlaneTransferTransactionsFromJSON, hyperlaneTransferTransactionsToJSON, ibcAddressFromJSON, ibcAddressToJSON, ibcCapabilitiesFromJSON, ibcCapabilitiesToJSON, messageResponseFromJSON, msgFromJSON, msgToJSON, msgsDirectRequestFromJSON, msgsDirectRequestToJSON, msgsRequestFromJSON, msgsRequestToJSON, multiChainMsgFromJSON, multiChainMsgToJSON, nextBlockingTransferFromJSON, nextBlockingTransferToJSON, opInitTransferFromJSON, opInitTransferInfoFromJSON, opInitTransferInfoToJSON, opInitTransferToJSON, opInitTransferTransactionsFromJSON, opInitTransferTransactionsToJSON, operationFromJSON, operationToJSON, originAssetsRequestFromJSON, originAssetsRequestToJSON, originAssetsResponseFromJSON, originAssetsResponseToJSON, packetFromJSON, packetToJSON, postHandlerFromJSON, postHandlerToJSON, recommendAssetsRequestFromJSON, recommendAssetsRequestToJSON, recommendAssetsResponseFromJSON, recommendAssetsResponseToJSON, recommendationEntryFromJSON, recommendationEntryToJSON, routeRequestFromJSON, routeRequestToJSON, routeResponseFromJSON, routeResponseToJSON, sendTokenTransactionsFromJSON, sendTokenTransactionsToJSON, smartSwapExactCoinInFromJSON, smartSwapExactCoinInToJSON, smartSwapOptionsFromJSON, smartSwapOptionsToJSON, submitTxRequestFromJSON, submitTxRequestToJSON, submitTxResponseFromJSON, submitTxResponseToJSON, svmTxFromJSON, svmTxToJSON, swapExactCoinInFromJSON, swapExactCoinInToJSON, swapExactCoinOutFromJSON, swapExactCoinOutToJSON, swapFromJSON, swapOperationFromJSON, swapOperationToJSON, swapRouteFromJSON, swapRouteToJSON, swapToJSON, swapVenueFromJSON, swapVenueRequestFromJSON, swapVenueRequestToJSON, swapVenueToJSON, trackTxRequestFromJSON, trackTxRequestToJSON, trackTxResponseFromJSON, trackTxResponseToJSON, transferAssetReleaseFromJSON, transferAssetReleaseToJSON, transferEventFromJSON, transferEventToJSON, transferFromJSON, transferInfoFromJSON, transferInfoToJSON, transferStatusFromJSON, transferStatusToJSON, transferToJSON, txFromJSON, txStatusRequestFromJSON, txStatusRequestToJSON, txStatusResponseFromJSON, txStatusResponseToJSON, txToJSON } from './types.js';
10
- import { a as ChainAffiliates, R as RouteResponse, M as MultiChainMsg, C as CosmosMsg, A as AssetsRequest, b as Asset, c as AssetsFromSourceRequest, d as AssetsBetweenChainsRequest, e as AssetBetweenChains, B as Bridge, T as Tx, E as EvmTx, S as SvmTx, f as MsgsRequest, g as MsgsResponse, h as RouteRequest, i as MsgsDirectRequest, j as MsgsDirectResponse, k as AssetRecommendationRequest, l as RecommendationEntry, D as DenomWithChainID, m as AssetOrError, n as SwapVenue } from './shared-CpfDn0H3.js';
11
- export { a6 as Affiliate, a5 as AffiliateJSON, ak as ApiError, b0 as AssetBetweenChainsJSON, p as AssetJSON, al as AssetOrErrorJSON, au as AssetRecommendation, av as AssetRecommendationJSON, aw as AssetRecommendationRequestJSON, b1 as AssetsBetweenChainsRequestJSON, b3 as AssetsBetweenChainsResponse, b2 as AssetsBetweenChainsResponseJSON, at as AssetsFromSourceRequestJSON, as as AssetsRequestJSON, ab as AutopilotAction, ac as AutopilotMsg, t as AxelarTransfer, s as AxelarTransferJSON, v as BankSend, u as BankSendJSON, b6 as BridgeJSON, a$ as BridgeType, b5 as BridgesResponse, b4 as BridgesResponseJSON, G as CCTPTransfer, F as CCTPTransferJSON, a7 as ChainAffiliatesJSON, aa as CosmWasmContractMsg, a9 as CosmWasmContractMsgJSON, x as CosmosMsgJSON, z as CosmosTx, y as CosmosTxJSON, aj as DenomWithChainIDJSON, ag as ERC20Approval, af as ERC20ApprovalJSON, aQ as EstimatedFee, aR as EstimatedFeeJSON, a4 as EvmSwap, a3 as EvmSwapJSON, ai as EvmTxJSON, aM as ExperimentalFeature, aP as FeeType, J as HyperlaneTransfer, H as HyperlaneTransferJSON, o as IBCAddress, I as IBCAddressJSON, aY as Msg, aX as MsgJSON, aW as MsgsDirectRequestJSON, aG as MsgsDirectResponseJSON, aV as MsgsRequestJSON, a_ as MsgsResponseJSON, aO as MsgsWarning, aL as MsgsWarningType, w as MultiChainMsgJSON, K as OPInitTransfer, O as OPInitTransferJSON, aT as Operation, aS as OperationJSON, an as OriginAssetsRequest, am as OriginAssetsRequestJSON, ap as OriginAssetsResponse, ao as OriginAssetsResponseJSON, ae as PostHandler, ad as PostHandlerJSON, a8 as Reason, ay as RecommendAssetsRequest, ax as RecommendAssetsRequestJSON, aA as RecommendAssetsResponse, az as RecommendAssetsResponseJSON, aB as RecommendationEntryJSON, aH as RouteRequestBase, aC as RouteRequestBaseJSON, aI as RouteRequestGivenIn, aD as RouteRequestGivenInJSON, aJ as RouteRequestGivenOut, aE as RouteRequestGivenOutJSON, aF as RouteRequestJSON, aU as RouteResponseJSON, aN as RouteWarning, aK as RouteWarningType, a0 as SmartSwapExactCoinIn, $ as SmartSwapExactCoinInJSON, ar as SmartSwapOptions, aq as SmartSwapOptionsJSON, ah as SvmTxJSON, a2 as Swap, Y as SwapExactCoinIn, X as SwapExactCoinInJSON, W as SwapExactCoinOut, V as SwapExactCoinOutJSON, a1 as SwapJSON, U as SwapOperation, Q as SwapOperationJSON, _ as SwapRoute, Z as SwapRouteJSON, L as SwapVenueJSON, P as SwapVenueRequest, N as SwapVenueRequestJSON, r as Transfer, q as TransferJSON, aZ as TxJSON } from './shared-CpfDn0H3.js';
9
+ export { AcknowledgementError, AxelarTransferInfo, AxelarTransferInfoJSON, AxelarTransferState, AxelarTransferTransactions, AxelarTransferTransactionsJSON, AxelarTransferType, CCTPTransferInfo, CCTPTransferInfoJSON, CCTPTransferState, CCTPTransferTransactions, CCTPTransferTransactionsJSON, ChainJSON, ChainTransaction, ChainTransactionJSON, ContractCallWithTokenError, ContractCallWithTokenErrorType, ContractCallWithTokenTransactions, ContractCallWithTokenTransactionsJSON, FeeAssetJSON, GasPriceInfo, HyperlaneTransferInfo, HyperlaneTransferInfoJSON, HyperlaneTransferState, HyperlaneTransferTransactions, HyperlaneTransferTransactionsJSON, IbcCapabilities, IbcCapabilitiesJSON, ModuleSupport, ModuleVersionInfo, NextBlockingTransfer, NextBlockingTransferJSON, OPInitTransferInfo, OPInitTransferInfoJSON, OPInitTransferState, OPInitTransferTransactions, OPInitTransferTransactionsJSON, Packet, PacketError, PacketErrorJSON, PacketErrorType, PacketJSON, SendTokenError, SendTokenErrorType, SendTokenTransactions, SendTokenTransactionsJSON, StatusError, StatusErrorJSON, StatusErrorType, StatusRequest, StatusRequestJSON, StatusState, SubmitTxRequest, SubmitTxRequestJSON, SubmitTxResponseJSON, TrackTxRequest, TrackTxRequestJSON, TrackTxResponseJSON, TransactionExecutionError, TransferAssetRelease, TransferAssetReleaseJSON, TransferEvent, TransferEventJSON, TransferInfo, TransferInfoJSON, TransferState, TransferStatus, TransferStatusJSON, TxStatusResponseJSON, Venue, affiliateFromJSON, affiliateToJSON, assetBetweenChainsFromJSON, assetBetweenChainsToJSON, assetFromJSON, assetOrErrorFromJSON, assetOrErrorToJSON, assetRecommendationFromJSON, assetRecommendationRequestFromJSON, assetRecommendationRequestToJSON, assetRecommendationToJSON, assetToJSON, assetsBetweenChainsRequestFromJSON, assetsBetweenChainsRequestToJSON, assetsBetweenChainsResponseFromJSON, assetsFromSourceRequestFromJSON, assetsFromSourceRequestToJSON, assetsRequestFromJSON, assetsRequestToJSON, axelarTransferFromJSON, axelarTransferInfoFromJSON, axelarTransferInfoToJSON, axelarTransferToJSON, axelarTransferTransactionsFromJSON, axelarTransferTransactionsToJSON, bankSendFromJSON, bankSendToJSON, bridgeFromJSON, bridgeToJSON, bridgesResponseFromJSON, bridgesResponseToJSON, cctpTransferFromJSON, cctpTransferInfoFromJSON, cctpTransferInfoToJSON, cctpTransferToJSON, cctpTransferTransactionsFromJSON, cctpTransferTransactionsToJSON, chainAffiliatesFromJSON, chainAffiliatesToJSON, chainFromJSON, chainIDsToAffiliatesMapFromJSON, chainIDsToAffiliatesMapToJSON, chainToJSON, chainTransactionFromJSON, chainTransactionToJSON, contractCallWithTokenTransactionsFromJSON, contractCallWithTokenTransactionsToJSON, cosmWasmContractMsgFromJSON, cosmWasmContractMsgToJSON, cosmosMsgFromJSON, cosmosMsgToJSON, cosmosTxFromJSON, cosmosTxToJSON, denomWithChainIDFromJSON, denomWithChainIDToJSON, erc20ApprovalFromJSON, erc20ApprovalToJSON, estimatedFeeFromJSON, estimatedFeeToJSON, evmSwapFromJSON, evmSwapToJSON, evmTxFromJSON, evmTxToJSON, feeAssetFromJSON, feeAssetToJSON, hyperlaneTransferFromJSON, hyperlaneTransferInfoFromJSON, hyperlaneTransferInfoToJSON, hyperlaneTransferToJSON, hyperlaneTransferTransactionsFromJSON, hyperlaneTransferTransactionsToJSON, ibcAddressFromJSON, ibcAddressToJSON, ibcCapabilitiesFromJSON, ibcCapabilitiesToJSON, messageResponseFromJSON, msgFromJSON, msgToJSON, msgsDirectRequestFromJSON, msgsDirectRequestToJSON, msgsRequestFromJSON, msgsRequestToJSON, multiChainMsgFromJSON, multiChainMsgToJSON, nextBlockingTransferFromJSON, nextBlockingTransferToJSON, opInitTransferFromJSON, opInitTransferInfoFromJSON, opInitTransferInfoToJSON, opInitTransferToJSON, opInitTransferTransactionsFromJSON, opInitTransferTransactionsToJSON, operationFromJSON, operationToJSON, originAssetsRequestFromJSON, originAssetsRequestToJSON, originAssetsResponseFromJSON, originAssetsResponseToJSON, packetFromJSON, packetToJSON, postHandlerFromJSON, postHandlerToJSON, recommendAssetsRequestFromJSON, recommendAssetsRequestToJSON, recommendAssetsResponseFromJSON, recommendAssetsResponseToJSON, recommendationEntryFromJSON, recommendationEntryToJSON, routeRequestFromJSON, routeRequestToJSON, routeResponseFromJSON, routeResponseToJSON, sendTokenTransactionsFromJSON, sendTokenTransactionsToJSON, smartRelayFeeQuoteFromJSON, smartRelayFeeQuoteToJSON, smartSwapExactCoinInFromJSON, smartSwapExactCoinInToJSON, smartSwapOptionsFromJSON, smartSwapOptionsToJSON, submitTxRequestFromJSON, submitTxRequestToJSON, submitTxResponseFromJSON, submitTxResponseToJSON, svmTxFromJSON, svmTxToJSON, swapExactCoinInFromJSON, swapExactCoinInToJSON, swapExactCoinOutFromJSON, swapExactCoinOutToJSON, swapFromJSON, swapOperationFromJSON, swapOperationToJSON, swapRouteFromJSON, swapRouteToJSON, swapToJSON, swapVenueFromJSON, swapVenueRequestFromJSON, swapVenueRequestToJSON, swapVenueToJSON, trackTxRequestFromJSON, trackTxRequestToJSON, trackTxResponseFromJSON, trackTxResponseToJSON, transferAssetReleaseFromJSON, transferAssetReleaseToJSON, transferEventFromJSON, transferEventToJSON, transferFromJSON, transferInfoFromJSON, transferInfoToJSON, transferStatusFromJSON, transferStatusToJSON, transferToJSON, txFromJSON, txStatusRequestFromJSON, txStatusRequestToJSON, txStatusResponseFromJSON, txStatusResponseToJSON, txToJSON } from './types.js';
10
+ import { a as ChainAffiliates, R as RouteResponse, M as MultiChainMsg, C as CosmosMsg, A as AssetsRequest, b as Asset, c as AssetsFromSourceRequest, d as AssetsBetweenChainsRequest, e as AssetBetweenChains, B as Bridge, T as Tx, E as EvmTx, S as SvmTx, f as MsgsRequest, g as MsgsResponse, h as RouteRequest, i as MsgsDirectRequest, j as MsgsDirectResponse, k as AssetRecommendationRequest, l as RecommendationEntry, D as DenomWithChainID, m as AssetOrError, n as SwapVenue } from './shared-CXij4l4y.js';
11
+ export { a8 as Affiliate, a7 as AffiliateJSON, am as ApiError, b2 as AssetBetweenChainsJSON, p as AssetJSON, an as AssetOrErrorJSON, aw as AssetRecommendation, ax as AssetRecommendationJSON, ay as AssetRecommendationRequestJSON, b3 as AssetsBetweenChainsRequestJSON, b5 as AssetsBetweenChainsResponse, b4 as AssetsBetweenChainsResponseJSON, av as AssetsFromSourceRequestJSON, au as AssetsRequestJSON, ad as AutopilotAction, ae as AutopilotMsg, t as AxelarTransfer, s as AxelarTransferJSON, v as BankSend, u as BankSendJSON, b8 as BridgeJSON, b1 as BridgeType, b7 as BridgesResponse, b6 as BridgesResponseJSON, G as CCTPTransfer, F as CCTPTransferJSON, a9 as ChainAffiliatesJSON, ac as CosmWasmContractMsg, ab as CosmWasmContractMsgJSON, x as CosmosMsgJSON, z as CosmosTx, y as CosmosTxJSON, al as DenomWithChainIDJSON, ai as ERC20Approval, ah as ERC20ApprovalJSON, aS as EstimatedFee, aT as EstimatedFeeJSON, a6 as EvmSwap, a5 as EvmSwapJSON, ak as EvmTxJSON, aO as ExperimentalFeature, aR as FeeType, J as HyperlaneTransfer, H as HyperlaneTransferJSON, o as IBCAddress, I as IBCAddressJSON, a_ as Msg, aZ as MsgJSON, aY as MsgsDirectRequestJSON, aI as MsgsDirectResponseJSON, aX as MsgsRequestJSON, b0 as MsgsResponseJSON, aQ as MsgsWarning, aN as MsgsWarningType, w as MultiChainMsgJSON, K as OPInitTransfer, O as OPInitTransferJSON, aV as Operation, aU as OperationJSON, ap as OriginAssetsRequest, ao as OriginAssetsRequestJSON, ar as OriginAssetsResponse, aq as OriginAssetsResponseJSON, ag as PostHandler, af as PostHandlerJSON, aa as Reason, aA as RecommendAssetsRequest, az as RecommendAssetsRequestJSON, aC as RecommendAssetsResponse, aB as RecommendAssetsResponseJSON, aD as RecommendationEntryJSON, aJ as RouteRequestBase, aE as RouteRequestBaseJSON, aK as RouteRequestGivenIn, aF as RouteRequestGivenInJSON, aL as RouteRequestGivenOut, aG as RouteRequestGivenOutJSON, aH as RouteRequestJSON, aW as RouteResponseJSON, aP as RouteWarning, aM as RouteWarningType, N as SmartRelayFeeQuote, L as SmartRelayFeeQuoteJSON, a2 as SmartSwapExactCoinIn, a1 as SmartSwapExactCoinInJSON, at as SmartSwapOptions, as as SmartSwapOptionsJSON, aj as SvmTxJSON, a4 as Swap, _ as SwapExactCoinIn, Z as SwapExactCoinInJSON, Y as SwapExactCoinOut, X as SwapExactCoinOutJSON, a3 as SwapJSON, W as SwapOperation, V as SwapOperationJSON, a0 as SwapRoute, $ as SwapRouteJSON, P as SwapVenueJSON, U as SwapVenueRequest, Q as SwapVenueRequestJSON, r as Transfer, q as TransferJSON, a$ as TxJSON } from './shared-CXij4l4y.js';
12
12
  import { Adapter } from '@solana/wallet-adapter-base';
13
13
  export { DEFAULT_GAS_MULTIPLIER, getCosmosGasAmountForMessage, getEncodeObjectFromCosmosMessage, getEncodeObjectFromCosmosMessageInjective } from './transactions.js';
14
14
  import '@injectivelabs/sdk-ts/dist/cjs/core/modules/msgs';