@skip-go/client 1.1.6 → 1.1.7
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/api/getAssets.js +1 -1
- package/dist/api/getChains.js +1 -1
- package/dist/api/postAssetsFromSource.js +2 -2
- package/dist/api/postBalances.js +1 -1
- package/dist/{chunk-RCSN7BAU.js → chunk-2LKKFCUM.js} +1 -1
- package/dist/{chunk-NXNVAUER.js → chunk-7QEN4XCJ.js} +2 -2
- package/dist/{chunk-5QPGL2BH.js → chunk-GOYJWJEC.js} +1 -1
- package/dist/{chunk-NWC6BSNB.js → chunk-SYQHTXE7.js} +1 -1
- package/dist/{chunk-KKNOCIFN.js → chunk-VDEYJJZI.js} +1 -1
- package/dist/{chunk-DAR753BM.js → chunk-VTK34ED6.js} +1 -1
- package/dist/{chunk-2YP6FMPV.js → chunk-YMUVYT3O.js} +1 -1
- package/dist/index.js +7 -7
- package/dist/public-functions/executeRoute.js +3 -3
- package/dist/public-functions/getFeeInfoForChain.js +2 -2
- package/dist/public-functions/getRecommendedGasPrice.js +3 -3
- package/dist/public-functions/getSigningStargateClient.js +2 -2
- package/dist/public-functions/setClientOptions.js +2 -2
- package/package.json +1 -1
package/dist/api/getAssets.js
CHANGED
package/dist/api/getChains.js
CHANGED
package/dist/api/postBalances.js
CHANGED
|
@@ -3,13 +3,13 @@ import { getEncodeObjectFromCosmosMessage, getCosmosGasAmountForMessage, getEnco
|
|
|
3
3
|
import { getEVMGasAmountForMessage } from './chunk-GV2QOWB4.js';
|
|
4
4
|
import { BigNumber } from './chunk-VQ5SIQWU.js';
|
|
5
5
|
import { GAS_STATION_CHAIN_IDS } from './chunk-SWYON2RG.js';
|
|
6
|
-
import { getSigningStargateClient, getRpcEndpointForChain, accountParser } from './chunk-
|
|
6
|
+
import { getSigningStargateClient, getRpcEndpointForChain, accountParser } from './chunk-GOYJWJEC.js';
|
|
7
7
|
import { chains, findFirstWorkingEndpoint, getIsEthermint, getIsInitia } from './chunk-36MCR5DZ.js';
|
|
8
8
|
import { messages } from './chunk-25FJ6EBA.js';
|
|
9
9
|
import { submit } from './chunk-X67P5URV.js';
|
|
10
10
|
import { submitTransaction } from './chunk-CRTTBUO4.js';
|
|
11
11
|
import { venues } from './chunk-XXJUDZKJ.js';
|
|
12
|
-
import { ClientState, balances } from './chunk-
|
|
12
|
+
import { ClientState, balances } from './chunk-SYQHTXE7.js';
|
|
13
13
|
import { ApiState, wait, createRequestClient, toCamel } from './chunk-DV3I2S3T.js';
|
|
14
14
|
import { PublicKey, Transaction, Connection, LAMPORTS_PER_SOL } from '@solana/web3.js';
|
|
15
15
|
import { bech32m, bech32 } from 'bech32';
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { chains, findFirstWorkingEndpoint } from './chunk-36MCR5DZ.js';
|
|
2
|
-
import { ClientState } from './chunk-
|
|
2
|
+
import { ClientState } from './chunk-SYQHTXE7.js';
|
|
3
3
|
import { accountFromAny, SigningStargateClient } from '@cosmjs/stargate';
|
|
4
4
|
import { assertDefinedAndNotNull } from '@cosmjs/utils';
|
|
5
5
|
import { BinaryWriter, BinaryReader } from 'cosmjs-types/binary.js';
|
|
@@ -96,7 +96,7 @@ var ClientState = class {
|
|
|
96
96
|
return response;
|
|
97
97
|
}
|
|
98
98
|
static async getSkipAssets(props) {
|
|
99
|
-
if (this.skipAssets) {
|
|
99
|
+
if (props.chainId && this.skipAssets?.[props.chainId] || !props.chainId && this.skipAssets) {
|
|
100
100
|
return this.skipAssets;
|
|
101
101
|
}
|
|
102
102
|
const response = await getMainnetAndTestnetAssets(props);
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { MsgAcceptOwner, MsgAddRemoteTokenMessenger, MsgDepositForBurn, MsgDepositForBurnWithCaller, MsgDisableAttester, MsgEnableAttester, MsgLinkTokenPair, MsgPauseBurningAndMinting, MsgPauseSendingAndReceivingMessages, MsgReceiveMessage, MsgRemoveRemoteTokenMessenger, MsgReplaceDepositForBurn, MsgReplaceMessage, MsgSendMessage, MsgSendMessageWithCaller, MsgUnlinkTokenPair, MsgUnpauseBurningAndMinting, MsgUnpauseSendingAndReceivingMessages, MsgUpdateOwner, MsgUpdateAttesterManager, MsgUpdateTokenController, MsgUpdatePauser, MsgUpdateMaxMessageBodySize, MsgSetMaxBurnAmountPerMessage, MsgUpdateSignatureThreshold, MsgExecute, MsgInitiateTokenDeposit, Coin, isSet, Long, Timestamp, toTimestamp, Period, fromTimestamp, fromJsonTimestamp, padDecimal } from './chunk-TD63P2AG.js';
|
|
2
|
-
import { ClientState } from './chunk-
|
|
2
|
+
import { ClientState } from './chunk-SYQHTXE7.js';
|
|
3
3
|
import { ApiState, createRequestClient } from './chunk-DV3I2S3T.js';
|
|
4
4
|
import { AminoTypes, createDefaultAminoConverters, defaultRegistryTypes } from '@cosmjs/stargate';
|
|
5
5
|
import { createWasmAminoConverters } from '@cosmjs/cosmwasm-stargate';
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { DEFAULT_GAS_DENOM_OVERRIDES } from './chunk-SWYON2RG.js';
|
|
2
2
|
import { chains } from './chunk-36MCR5DZ.js';
|
|
3
|
-
import { ClientState } from './chunk-
|
|
3
|
+
import { ClientState } from './chunk-SYQHTXE7.js';
|
|
4
4
|
|
|
5
5
|
// src/private-functions/getDefaultGasTokenForChain.ts
|
|
6
6
|
var getDefaultGasTokenForChain = async (chainId) => {
|
package/dist/index.js
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
|
-
export { setClientOptions } from './chunk-
|
|
2
|
-
export { executeRoute } from './chunk-
|
|
1
|
+
export { setClientOptions } from './chunk-VDEYJJZI.js';
|
|
2
|
+
export { executeRoute } from './chunk-7QEN4XCJ.js';
|
|
3
3
|
export { waitForTransaction } from './chunk-DU3RX43W.js';
|
|
4
4
|
export { transactionStatus } from './chunk-PPUUN7FI.js';
|
|
5
5
|
export { getCosmosGasAmountForMessage } from './chunk-TV2XPAIF.js';
|
|
6
6
|
import './chunk-TD63P2AG.js';
|
|
7
7
|
export { getEVMGasAmountForMessage } from './chunk-GV2QOWB4.js';
|
|
8
|
-
export { getRecommendedGasPrice } from './chunk-
|
|
8
|
+
export { getRecommendedGasPrice } from './chunk-VTK34ED6.js';
|
|
9
9
|
import './chunk-VQ5SIQWU.js';
|
|
10
|
-
export { getFeeInfoForChain } from './chunk-
|
|
10
|
+
export { getFeeInfoForChain } from './chunk-YMUVYT3O.js';
|
|
11
11
|
export { GAS_STATION_CHAIN_IDS } from './chunk-SWYON2RG.js';
|
|
12
|
-
export { getSigningStargateClient } from './chunk-
|
|
12
|
+
export { getSigningStargateClient } from './chunk-GOYJWJEC.js';
|
|
13
13
|
import './chunk-36MCR5DZ.js';
|
|
14
14
|
export { setApiOptions } from './chunk-RFZBKQ35.js';
|
|
15
15
|
export { ibcOriginAssets } from './chunk-RYOVQFZO.js';
|
|
@@ -23,8 +23,8 @@ export { trackTransaction } from './chunk-T7GKUROO.js';
|
|
|
23
23
|
export { assetsBetweenChains } from './chunk-IWW34V4S.js';
|
|
24
24
|
export { bridges } from './chunk-U6XZFJW2.js';
|
|
25
25
|
export { venues } from './chunk-XXJUDZKJ.js';
|
|
26
|
-
export { assetsFromSource } from './chunk-
|
|
27
|
-
export { assets, balances, chains } from './chunk-
|
|
26
|
+
export { assetsFromSource } from './chunk-2LKKFCUM.js';
|
|
27
|
+
export { assets, balances, chains } from './chunk-SYQHTXE7.js';
|
|
28
28
|
import './chunk-DV3I2S3T.js';
|
|
29
29
|
export { Api, AutopilotAction, AxelarTransferState, AxelarTransferType, BridgeType, CCTPTransferState, ChainType, ContentType, ContractCallWithTokenErrorType, FeeType, GoFastTransferState, HttpClient, HyperlaneTransferState, LayerZeroTransferState, OPInitTransferState, PacketErrorType, Reason, RoutePriceWarningType, SendTokenErrorType, StargateTransferState, StatusErrorType, TransactionState, TransferState } from './chunk-UXUJNZOA.js';
|
|
30
30
|
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { executeRoute } from '../chunk-
|
|
1
|
+
export { executeRoute } from '../chunk-7QEN4XCJ.js';
|
|
2
2
|
import '../chunk-DU3RX43W.js';
|
|
3
3
|
import '../chunk-PPUUN7FI.js';
|
|
4
4
|
import '../chunk-TV2XPAIF.js';
|
|
@@ -6,13 +6,13 @@ import '../chunk-TD63P2AG.js';
|
|
|
6
6
|
import '../chunk-GV2QOWB4.js';
|
|
7
7
|
import '../chunk-VQ5SIQWU.js';
|
|
8
8
|
import '../chunk-SWYON2RG.js';
|
|
9
|
-
import '../chunk-
|
|
9
|
+
import '../chunk-GOYJWJEC.js';
|
|
10
10
|
import '../chunk-36MCR5DZ.js';
|
|
11
11
|
import '../chunk-25FJ6EBA.js';
|
|
12
12
|
import '../chunk-X67P5URV.js';
|
|
13
13
|
import '../chunk-CRTTBUO4.js';
|
|
14
14
|
import '../chunk-T7GKUROO.js';
|
|
15
15
|
import '../chunk-XXJUDZKJ.js';
|
|
16
|
-
import '../chunk-
|
|
16
|
+
import '../chunk-SYQHTXE7.js';
|
|
17
17
|
import '../chunk-DV3I2S3T.js';
|
|
18
18
|
import '../chunk-UXUJNZOA.js';
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
export { getFeeInfoForChain } from '../chunk-
|
|
1
|
+
export { getFeeInfoForChain } from '../chunk-YMUVYT3O.js';
|
|
2
2
|
import '../chunk-SWYON2RG.js';
|
|
3
3
|
import '../chunk-36MCR5DZ.js';
|
|
4
|
-
import '../chunk-
|
|
4
|
+
import '../chunk-SYQHTXE7.js';
|
|
5
5
|
import '../chunk-DV3I2S3T.js';
|
|
6
6
|
import '../chunk-UXUJNZOA.js';
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
export { getRecommendedGasPrice } from '../chunk-
|
|
1
|
+
export { getRecommendedGasPrice } from '../chunk-VTK34ED6.js';
|
|
2
2
|
import '../chunk-VQ5SIQWU.js';
|
|
3
|
-
import '../chunk-
|
|
3
|
+
import '../chunk-YMUVYT3O.js';
|
|
4
4
|
import '../chunk-SWYON2RG.js';
|
|
5
5
|
import '../chunk-36MCR5DZ.js';
|
|
6
|
-
import '../chunk-
|
|
6
|
+
import '../chunk-SYQHTXE7.js';
|
|
7
7
|
import '../chunk-DV3I2S3T.js';
|
|
8
8
|
import '../chunk-UXUJNZOA.js';
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
export { getSigningStargateClient } from '../chunk-
|
|
1
|
+
export { getSigningStargateClient } from '../chunk-GOYJWJEC.js';
|
|
2
2
|
import '../chunk-36MCR5DZ.js';
|
|
3
|
-
import '../chunk-
|
|
3
|
+
import '../chunk-SYQHTXE7.js';
|
|
4
4
|
import '../chunk-DV3I2S3T.js';
|
|
5
5
|
import '../chunk-UXUJNZOA.js';
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
export { setClientOptions } from '../chunk-
|
|
1
|
+
export { setClientOptions } from '../chunk-VDEYJJZI.js';
|
|
2
2
|
import '../chunk-TD63P2AG.js';
|
|
3
|
-
import '../chunk-
|
|
3
|
+
import '../chunk-SYQHTXE7.js';
|
|
4
4
|
import '../chunk-DV3I2S3T.js';
|
|
5
5
|
import '../chunk-UXUJNZOA.js';
|