@skip-go/client 1.0.0-alpha-3 → 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/{chunk-PEZHVPSR.mjs → chunk-DZQJN6OX.mjs} +3 -1
- package/dist/{chunk-KSMJWLEH.mjs → chunk-I2MX24LT.mjs} +3 -2
- package/dist/{chunk-WDMGUHWR.mjs → chunk-IHIJJNTV.mjs} +1 -1
- package/dist/{chunk-B72MYSG5.mjs → chunk-ZMEQSFOL.mjs} +2 -1
- package/dist/index.d.mts +2 -0
- package/dist/index.mjs +4 -4
- package/dist/public-functions/executeRoute.mjs +2 -2
- package/dist/public-functions/getRecommendedGasPrice.d.mts +1 -1
- package/dist/public-functions/getRecommendedGasPrice.mjs +1 -1
- package/dist/public-functions/getSigningStargateClient.d.mts +1 -1
- package/dist/public-functions/getSigningStargateClient.mjs +1 -1
- package/dist/public-functions/setClientOptions.mjs +1 -1
- package/package.json +1 -1
|
@@ -1,9 +1,11 @@
|
|
|
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-OTLFF5OB.mjs';
|
|
2
2
|
import { ClientState } from './chunk-DKIWPD5I.mjs';
|
|
3
3
|
import { __spreadValues, ApiState, createRequestClient } from './chunk-RXWDHQLG.mjs';
|
|
4
|
-
import { AminoTypes
|
|
4
|
+
import { AminoTypes } from '@cosmjs/stargate/build/aminotypes';
|
|
5
|
+
import { createDefaultAminoConverters, defaultRegistryTypes } from '@cosmjs/stargate/build/signingstargateclient';
|
|
5
6
|
import { createWasmAminoConverters } from '@cosmjs/cosmwasm-stargate/build/modules/wasm/aminomessages';
|
|
6
7
|
import '@cosmjs/proto-signing';
|
|
8
|
+
import '@cosmjs/stargate';
|
|
7
9
|
import * as _m08 from 'protobufjs/minimal';
|
|
8
10
|
import { Decimal } from '@cosmjs/math';
|
|
9
11
|
import { Registry } from '@cosmjs/proto-signing/build/registry';
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { BigNumber } from './chunk-TUBI6VE6.mjs';
|
|
2
2
|
import { GAS_STATION_CHAIN_IDS } from './chunk-ZAF3Z56R.mjs';
|
|
3
|
-
import { getSigningStargateClient, getRpcEndpointForChain, accountParser } from './chunk-
|
|
3
|
+
import { getSigningStargateClient, getRpcEndpointForChain, accountParser } from './chunk-ZMEQSFOL.mjs';
|
|
4
4
|
import { chains, findFirstWorkingEndpoint, getIsEthermint, getIsInitia } from './chunk-NU7MCJOK.mjs';
|
|
5
5
|
import { MsgDepositForBurn, MsgDepositForBurnWithCaller, MsgExecute, MsgInitiateTokenDeposit, BaseVestingAccount, Timestamp, toTimestamp, Period, fromTimestamp, isSet, fromJsonTimestamp } from './chunk-OTLFF5OB.mjs';
|
|
6
6
|
import { messages } from './chunk-KPK3Z6QZ.mjs';
|
|
@@ -11,7 +11,7 @@ import { ClientState, balances } from './chunk-DKIWPD5I.mjs';
|
|
|
11
11
|
import { __spreadValues, __async, __objRest, __spreadProps, ApiState, wait, createRequestClient, toCamel } from './chunk-RXWDHQLG.mjs';
|
|
12
12
|
import { PublicKey, Transaction, Connection, LAMPORTS_PER_SOL } from '@solana/web3.js';
|
|
13
13
|
import { bech32m, bech32 } from 'bech32';
|
|
14
|
-
import { StargateClient
|
|
14
|
+
import { StargateClient } from '@cosmjs/stargate/build/stargateclient';
|
|
15
15
|
import { TxRaw } from 'cosmjs-types/cosmos/tx/v1beta1/tx';
|
|
16
16
|
import { isOfflineDirectSigner } from '@cosmjs/proto-signing/build/signer';
|
|
17
17
|
import { fromBase64 } from '@cosmjs/encoding/build/base64';
|
|
@@ -30,6 +30,7 @@ import { Any } from 'cosmjs-types/google/protobuf/any';
|
|
|
30
30
|
import { Int53 } from '@cosmjs/math/build/integers';
|
|
31
31
|
import { SignMode } from 'cosmjs-types/cosmos/tx/signing/v1beta1/signing';
|
|
32
32
|
import { isAddress, publicActions, maxUint256, formatUnits } from 'viem';
|
|
33
|
+
import { GasPrice, calculateFee } from '@cosmjs/stargate/build/fee';
|
|
33
34
|
import { Decimal } from '@cosmjs/math/build/decimal';
|
|
34
35
|
|
|
35
36
|
// src/types/swaggerTypes.ts
|
|
@@ -2,7 +2,7 @@ import { BigNumber } from './chunk-TUBI6VE6.mjs';
|
|
|
2
2
|
import { getFeeInfoForChain } from './chunk-2F4MBSMT.mjs';
|
|
3
3
|
import { __async } from './chunk-RXWDHQLG.mjs';
|
|
4
4
|
import { Decimal } from '@cosmjs/math/build/decimal';
|
|
5
|
-
import { GasPrice } from '@cosmjs/stargate';
|
|
5
|
+
import { GasPrice } from '@cosmjs/stargate/build/fee';
|
|
6
6
|
|
|
7
7
|
var getRecommendedGasPrice = (props) => __async(void 0, null, function* () {
|
|
8
8
|
const feeInfo = yield getFeeInfoForChain(props);
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
import { chains, findFirstWorkingEndpoint } from './chunk-NU7MCJOK.mjs';
|
|
2
2
|
import { ClientState } from './chunk-DKIWPD5I.mjs';
|
|
3
3
|
import { __async } from './chunk-RXWDHQLG.mjs';
|
|
4
|
-
import {
|
|
4
|
+
import { SigningStargateClient } from '@cosmjs/stargate/build/signingstargateclient';
|
|
5
|
+
import { accountFromAny } from '@cosmjs/stargate';
|
|
5
6
|
import { assertDefinedAndNotNull } from '@cosmjs/utils';
|
|
6
7
|
import { BinaryWriter, BinaryReader } from 'cosmjs-types/binary';
|
|
7
8
|
import { BaseAccount } from 'cosmjs-types/cosmos/auth/v1beta1/auth';
|
package/dist/index.d.mts
CHANGED
|
@@ -29,6 +29,8 @@ import 'viem';
|
|
|
29
29
|
import '@solana/wallet-adapter-base';
|
|
30
30
|
import './apiState-CdzxTxYd.mjs';
|
|
31
31
|
import '@cosmjs/proto-signing/build/signer';
|
|
32
|
+
import '@cosmjs/stargate/build/signingstargateclient';
|
|
33
|
+
import '@cosmjs/stargate/build/fee';
|
|
32
34
|
|
|
33
35
|
declare const GAS_STATION_CHAIN_IDS: string[];
|
|
34
36
|
|
package/dist/index.mjs
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
export { Api, AutopilotAction, AxelarTransferState, AxelarTransferType, BridgeType, CCTPTransferState, ChainType, ContentType, ContractCallWithTokenErrorType, FeeType, GoFastTransferState, HttpClient, HyperlaneTransferState, LayerZeroTransferState, OPInitTransferState, PacketErrorType, Reason, RoutePriceWarningType, SendTokenErrorType, StargateTransferState, StatusErrorType, TransactionState, TransferState, executeRoute } from './chunk-
|
|
2
|
-
export { getRecommendedGasPrice } from './chunk-
|
|
1
|
+
export { Api, AutopilotAction, AxelarTransferState, AxelarTransferType, BridgeType, CCTPTransferState, ChainType, ContentType, ContractCallWithTokenErrorType, FeeType, GoFastTransferState, HttpClient, HyperlaneTransferState, LayerZeroTransferState, OPInitTransferState, PacketErrorType, Reason, RoutePriceWarningType, SendTokenErrorType, StargateTransferState, StatusErrorType, TransactionState, TransferState, executeRoute } from './chunk-I2MX24LT.mjs';
|
|
2
|
+
export { getRecommendedGasPrice } from './chunk-IHIJJNTV.mjs';
|
|
3
3
|
import './chunk-TUBI6VE6.mjs';
|
|
4
4
|
export { getFeeInfoForChain } from './chunk-2F4MBSMT.mjs';
|
|
5
5
|
export { GAS_STATION_CHAIN_IDS } from './chunk-ZAF3Z56R.mjs';
|
|
6
|
-
export { getSigningStargateClient } from './chunk-
|
|
6
|
+
export { getSigningStargateClient } from './chunk-ZMEQSFOL.mjs';
|
|
7
7
|
import './chunk-NU7MCJOK.mjs';
|
|
8
8
|
export { setApiOptions } from './chunk-2ETF4N4H.mjs';
|
|
9
|
-
export { setClientOptions } from './chunk-
|
|
9
|
+
export { setClientOptions } from './chunk-DZQJN6OX.mjs';
|
|
10
10
|
import './chunk-OTLFF5OB.mjs';
|
|
11
11
|
export { ibcOriginAssets } from './chunk-CZ27FEZ7.mjs';
|
|
12
12
|
export { messages } from './chunk-KPK3Z6QZ.mjs';
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
export { executeRoute } from '../chunk-
|
|
1
|
+
export { executeRoute } from '../chunk-I2MX24LT.mjs';
|
|
2
2
|
import '../chunk-TUBI6VE6.mjs';
|
|
3
3
|
import '../chunk-ZAF3Z56R.mjs';
|
|
4
|
-
import '../chunk-
|
|
4
|
+
import '../chunk-ZMEQSFOL.mjs';
|
|
5
5
|
import '../chunk-NU7MCJOK.mjs';
|
|
6
6
|
import '../chunk-OTLFF5OB.mjs';
|
|
7
7
|
import '../chunk-KPK3Z6QZ.mjs';
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { OfflineSigner } from '@cosmjs/proto-signing/build/signer';
|
|
2
|
-
import { SigningStargateClient } from '@cosmjs/stargate';
|
|
2
|
+
import { SigningStargateClient } from '@cosmjs/stargate/build/signingstargateclient';
|
|
3
3
|
|
|
4
4
|
type getSigningStargateClientProps = {
|
|
5
5
|
chainId: string;
|
package/package.json
CHANGED