@injectivelabs/sdk-ts 1.16.25-alpha.0 → 1.16.25-alpha.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.
@@ -1,4 +1,4 @@
1
- const require_PrivateKey = require('./PrivateKey-72Aogc8C.cjs');
1
+ const require_PrivateKey = require('./PrivateKey-s2WzWlG7.cjs');
2
2
  const require_defineProperty = require('./defineProperty-Dkg4B6va.cjs');
3
3
  let __injectivelabs_core_proto_ts_v2_generated_cosmos_base_v1beta1_coin_pb = require("@injectivelabs/core-proto-ts-v2/generated/cosmos/base/v1beta1/coin_pb");
4
4
  __injectivelabs_core_proto_ts_v2_generated_cosmos_base_v1beta1_coin_pb = require_PrivateKey.__toESM(__injectivelabs_core_proto_ts_v2_generated_cosmos_base_v1beta1_coin_pb);
@@ -136,6 +136,15 @@ function hexToBase64(hex) {
136
136
  return uint8ArrayToBase64(hexToUint8Array(hex.startsWith("0x") ? hex.slice(2) : hex));
137
137
  }
138
138
  /**
139
+ * Convert a base64 string to UTF-8 string
140
+ * @param base64String - Base64 encoded string
141
+ * @returns Decoded UTF-8 string
142
+ * @throws Error if base64 string is invalid
143
+ */
144
+ function base64ToUtf8(base64String) {
145
+ return toUtf8(base64ToUint8Array(base64String));
146
+ }
147
+ /**
139
148
  * Convert a string or Uint8Array to Uint8Array using UTF-8 encoding
140
149
  * If input is already Uint8Array, returns it as-is
141
150
  * @param str - String or Uint8Array to encode
@@ -2298,6 +2307,12 @@ Object.defineProperty(exports, 'base64ToUint8Array', {
2298
2307
  return base64ToUint8Array;
2299
2308
  }
2300
2309
  });
2310
+ Object.defineProperty(exports, 'base64ToUtf8', {
2311
+ enumerable: true,
2312
+ get: function () {
2313
+ return base64ToUtf8;
2314
+ }
2315
+ });
2301
2316
  Object.defineProperty(exports, 'binaryToBase64', {
2302
2317
  enumerable: true,
2303
2318
  get: function () {
@@ -1,4 +1,4 @@
1
- const require_PrivateKey = require('../../PrivateKey-72Aogc8C.cjs');
1
+ const require_PrivateKey = require('../../PrivateKey-s2WzWlG7.cjs');
2
2
  const require_defineProperty = require('../../defineProperty-Dkg4B6va.cjs');
3
3
  let __injectivelabs_exceptions = require("@injectivelabs/exceptions");
4
4
  let __apollo_client = require("@apollo/client");
@@ -1,6 +1,6 @@
1
- require('./PrivateKey-72Aogc8C.cjs');
1
+ require('./PrivateKey-s2WzWlG7.cjs');
2
2
  require('./defineProperty-Dkg4B6va.cjs');
3
- const require_DirectEthSecp256k1Wallet = require('./DirectEthSecp256k1Wallet-BA7TBpKO.cjs');
3
+ const require_DirectEthSecp256k1Wallet = require('./DirectEthSecp256k1Wallet-DejkKFN1.cjs');
4
4
 
5
5
  exports.InjectiveDirectEthSecp256k1Wallet = require_DirectEthSecp256k1Wallet.DirectEthSecp256k1Wallet;
6
6
  exports.InjectiveEthSecp256k1Wallet = require_DirectEthSecp256k1Wallet.EthSecp256k1Wallet;
@@ -1,6 +1,6 @@
1
- require('./PrivateKey-72Aogc8C.cjs');
1
+ require('./PrivateKey-s2WzWlG7.cjs');
2
2
  require('./defineProperty-Dkg4B6va.cjs');
3
- const require_DirectEthSecp256k1Wallet = require('./DirectEthSecp256k1Wallet-BA7TBpKO.cjs');
3
+ const require_DirectEthSecp256k1Wallet = require('./DirectEthSecp256k1Wallet-DejkKFN1.cjs');
4
4
 
5
5
  exports.InjectiveDirectEthSecp256k1Wallet = require_DirectEthSecp256k1Wallet.DirectEthSecp256k1Wallet;
6
6
  exports.InjectiveEthSecp256k1Wallet = require_DirectEthSecp256k1Wallet.EthSecp256k1Wallet;
@@ -1,4 +1,4 @@
1
- const require_PrivateKey = require('./PrivateKey-72Aogc8C.cjs');
1
+ const require_PrivateKey = require('./PrivateKey-s2WzWlG7.cjs');
2
2
  const require_defineProperty = require('./defineProperty-Dkg4B6va.cjs');
3
3
  let __injectivelabs_core_proto_ts_v2_generated_cosmos_tx_v1beta1_tx_pb = require("@injectivelabs/core-proto-ts-v2/generated/cosmos/tx/v1beta1/tx_pb");
4
4
  __injectivelabs_core_proto_ts_v2_generated_cosmos_tx_v1beta1_tx_pb = require_PrivateKey.__toESM(__injectivelabs_core_proto_ts_v2_generated_cosmos_tx_v1beta1_tx_pb);
@@ -18665,6 +18665,7 @@ exports.accountEthParser = accountEthParser;
18665
18665
  exports.addHexPrefix = require_PrivateKey.addHexPrefix;
18666
18666
  exports.amountToCosmosSdkDecAmount = require_PrivateKey.amountToCosmosSdkDecAmount;
18667
18667
  exports.base64ToUint8Array = require_PrivateKey.base64ToUint8Array;
18668
+ exports.base64ToUtf8 = require_PrivateKey.base64ToUtf8;
18668
18669
  exports.binaryToBase64 = require_PrivateKey.binaryToBase64;
18669
18670
  exports.concatUint8Arrays = require_PrivateKey.concatUint8Arrays;
18670
18671
  exports.cosmosSdkDecToBigNumber = require_PrivateKey.cosmosSdkDecToBigNumber;
@@ -42894,6 +42894,13 @@ declare function hexToBuff(hex: string): Uint8Array;
42894
42894
  * @returns Base64 encoded string
42895
42895
  */
42896
42896
  declare function hexToBase64(hex: string): string;
42897
+ /**
42898
+ * Convert a base64 string to UTF-8 string
42899
+ * @param base64String - Base64 encoded string
42900
+ * @returns Decoded UTF-8 string
42901
+ * @throws Error if base64 string is invalid
42902
+ */
42903
+ declare function base64ToUtf8(base64String: string): string;
42897
42904
  /**
42898
42905
  * Convert a string or Uint8Array to Uint8Array using UTF-8 encoding
42899
42906
  * If input is already Uint8Array, returns it as-is
@@ -43062,4 +43069,4 @@ declare class TokenStaticFactory {
43062
43069
  //#region src/core/accounts/AccountParserNoCosmjs.d.ts
43063
43070
  declare const accountEthParser: <T>(ethAccount: any, pubKeyTypeUrl?: string) => T;
43064
43071
  //#endregion
43065
- export { AbacusGrpcApi, AbsoluteTxPosition, AccessType, AccessTypeCode, Account, AccountAuctionV2, AccountPortfolio, AccountPortfolioBalances, AccountPortfolioStreamCallback, AccountPortfolioV2, AccountResponse, AccountStats, AccountVolume, AccountVolumes, AccountsResponse, Address, AllChronosDerivativeMarketSummary, AllChronosMarketHistory, AllChronosSpotMarketSummary, AllDerivativeMarketSummaryResponse, AllSpotMarketSummaryResponse, type AminoSignResponse, AssetInfo, AssetInfoWithPrice, AtomicSwap, Auction, AuctionBid, AuctionCoin, AuctionCoinPrices, AuctionContract, AuctionCurrentBasket, AuctionEventAuctionResult, AuctionEventAuctionStart, AuctionEventBid, AuctionLastAuctionResult, AuctionModuleParams, AuctionModuleState, AuctionModuleStateParams, AuctionModuleStateResponse, AuctionMsgs, AuctionParams, AuctionV2, AuctionsStats, AuthBaseAccount, AuthModuleParams, AuthorityMetadata, AuthzMsgs, BECH32_ADDR_ACC_PREFIX, BECH32_ADDR_CONS_PREFIX, BECH32_ADDR_VAL_PREFIX, BECH32_PUBKEY_ACC_PREFIX, BECH32_PUBKEY_CONS_PREFIX, BECH32_PUBKEY_VAL_PREFIX, BalanceStreamCallback, BalancesResponse, BankModuleParams, BankMsgSendTransaction, BankMsgs, BankTransfer, BankTransferFromExplorerApiResponse, BaseAccount, BaseAccountRestResponse, BaseDerivativeMarket, BatchCancelDerivativeOrdersAuthz, BatchCancelSpotOrdersAuthz, BatchCreateDerivativeLimitOrdersAuthz, BatchCreateSpotLimitOrdersAuthz, BatchDerivativeOrderCancelParams, BatchSpotOrderCancelParams, BidsStreamCallback, BinaryOptionsMarket, Block, BlockFromExplorerApiResponse, BlockLatestRestResponse, BlockWithTxs, BlocksStreamCallback, BlocksWithTxsStreamCallback, BondStatus, BroadcastMode, BroadcastModeKeplr, CW20BalanceExplorerApiResponse, CW20Message, Campaign, CampaignRewardPool, CampaignUser, CampaignV2, CancelDerivativeOrderAuthz, CancelSpotOrderAuthz, ChainDenomDecimal, ChainDenomMinNotional, ChainDerivativePosition, ChainGrpcAuctionApi, ChainGrpcAuctionTransformer, ChainGrpcAuthApi, ChainGrpcAuthTransformer, ChainGrpcAuthZApi, ChainGrpcAuthZTransformer, ChainGrpcBankApi, ChainGrpcBankTransformer, ChainGrpcCommonTransformer, ChainGrpcDistributionApi, ChainGrpcDistributionTransformer, ChainGrpcErc20Api, ChainGrpcErc20Transformer, ChainGrpcEvmApi, ChainGrpcEvmTransformer, ChainGrpcExchangeApi, ChainGrpcExchangeTransformer, ChainGrpcGovApi, ChainGrpcGovTransformer, ChainGrpcIbcApi, ChainGrpcInsuranceFundApi, ChainGrpcInsuranceFundTransformer, ChainGrpcMintApi, ChainGrpcMintTransformer, ChainGrpcOracleApi, ChainGrpcPeggyApi, ChainGrpcPeggyTransformer, ChainGrpcPermissionsApi, ChainGrpcPermissionsTransformer, ChainGrpcStakingApi, ChainGrpcStakingTransformer, ChainGrpcTendermintApi, ChainGrpcTokenFactoryApi, ChainGrpcTokenFactoryTransformer, ChainGrpcTxFeesApi, ChainGrpcTxFeesTransformer, ChainGrpcWasmApi, ChainGrpcWasmTransformer, ChainGrpcWasmXApi, ChainModule, ChainPosition, ChainRestAuthApi, ChainRestBankApi, ChainRestTendermintApi, ChainRestWasmApi, ChronosDerivativeMarketSummary, ChronosDerivativeMarketSummaryResponse, ChronosLeaderboard, ChronosLeaderboardEntry, ChronosLeaderboardResponse, ChronosMarketHistoryResponse, ChronosSpotMarketSummary, ChronosSpotMarketSummaryResponse, CodeInfoResponse, Coin$1 as Coin, Contract, ContractAccountBalance, ContractAccountsBalanceWithPagination, ContractCodeHistoryEntry, ContractCodeHistoryOperationType, ContractCodeHistoryOperationTypeMap, ContractExecutionAuthorization as ContractExecutionAuthz, ContractExecutionCompatAuthorization as ContractExecutionCompatAuthz, ContractExplorerApiResponse, ContractInfo, ContractStateWithPagination, ContractTransaction, ContractTransactionExplorerApiResponse, ContractTransactionWithMessages, CosmWasmChecksum, CosmWasmPermission, CosmosAccountRestResponse, tx_pb_d_exports as CosmosTxV1Beta1TxPb, CreateDerivativeLimitOrderAuthz, CreateDerivativeMarketOrderAuthz, CreateSpotLimitOrderAuthz, CreateSpotMarketOrderAuthz, CreateTransactionArgs, CreateTransactionResult, CreateTransactionWithSignersArgs, DEFAULT_DERIVATION_PATH, Delegation, DenomBalance, DenomHolders, DenomOwnersResponse, DepositProposalParams, DerivativeLimitOrder, DerivativeLimitOrderParams, DerivativeMarket, DerivativeMarketStreamCallback, DerivativeMarketWithoutBinaryOptions, DerivativeOrderCancelParams, DerivativeOrderHistory, DerivativeOrderHistoryStreamCallback, DerivativeOrderbookUpdateStreamCallback, DerivativeOrderbookV2StreamCallback, DerivativeOrdersStreamCallback, DerivativePositionsStreamCallback, DerivativePositionsV2StreamCallback, DerivativeTrade, DerivativeTradesStreamCallback, type DirectSignResponse, DistributionModuleParams, DistributionMsgs, OLPGrpcApi as DmmGrpcApi, OLPGrpcApi, DmmPagination, Eip712ConvertFeeArgs, Eip712ConvertTxArgs, EligibleAddress, EligibleAddresses, EpochConfigV2, EpochScore, EpochScores, EpochScoresHistory, EpochV2, EpochsV2, EthAccount, EventLog, EventLogEvent, EvmBlobConfig, EvmBlobScheduleConfig, EvmChainConfig, EvmLog, EvmParams, ExchangeModuleParams, ExchangeMsgs, ExchangePagination, ExchangeParams, ExchangeV1Msgs, ExchangeV2Msgs, ExecArgCW20AdapterRedeemAndTransfer, ExecArgCW20Send, ExecArgCW20Transfer, ExecArgCreateCampaign, ExecArgCreatePerpGridStrategy, ExecArgCreateRound, ExecArgCreateSpotGridStrategy, ExecArgDepositTokens, ExecArgFundCampaign, ExecArgIncreaseAllowance, ExecArgInitiateTransfer, ExecArgNeptuneDeposit, ExecArgNeptuneWithdraw, ExecArgRemoveGridStrategy, ExecArgSubmitVaa, ExecArgSwapExactOutput, ExecArgSwapMinOutput, ExecArgUpdateGridConfig, ExecArgs, ExecPrivilegedArgOffChainVaultRedeem, ExecPrivilegedArgOffChainVaultSubscribe, ExecPrivilegedArgVaultRedeem, ExecPrivilegedArgVaultSubscribe, ExecPrivilegedArgs, ExitConfig, ExitType, ExpiryFuturesMarket, ExpiryFuturesMarketInfo, ExplorerApiResponse, ExplorerApiResponseWithPagination, ExplorerBlockApiResponse, ExplorerBlockWithTxs, ExplorerCW20BalanceWithToken, ExplorerStats, ExplorerStreamTransformer, ExplorerTransaction, ExplorerTransactionApiResponse, ExplorerTransactionV2, ExplorerTxsV2Response, ExplorerValidator, ExplorerValidatorDescription, ExplorerValidatorUptime, FactoryDenomWithMetadata, FeeDiscountAccountInfo, FeeDiscountSchedule, FeeDiscountTierInfo, FeeDiscountTierTTL, FeegrantMsgs, FundingPayment, FundingRate, GasFee, GenericAuthorization, GenericAuthorization$1 as GenericAuthz, GoogleProtoBufAny, GovModuleStateParams, GovMsgs, Grant$1 as Grant, GrantAuthorization$1 as GrantAuthorization, GrantAuthorizationType, GrantAuthorizationWithDecodedAuthorization, GrantWithDecodedAuthorization, GridStrategyStreamResponse, GridStrategyType, GrpcAbsoluteTxPosition, GrpcAccountAuctionV2, GrpcAccountPortfolio, GrpcAccountPortfolioV2, GrpcAccountVolume, GrpcAtomicSwap, GrpcAuction, GrpcAuctionBid, GrpcAuctionCoin, GrpcAuctionCoinPrices, GrpcAuctionContract, GrpcAuctionEventAuctionResult, GrpcAuctionEventAuctionStart, GrpcAuctionEventBid, GrpcAuctionLastAuctionResult, GrpcAuctionParams, GrpcAuctionV2, GrpcBankMsgSendMessage, GrpcBankParams, GrpcBinaryOptionsMarketInfo, GrpcCampaign, GrpcCampaignRewardPool, GrpcCampaignUser, GrpcCampaignV2, GrpcChainDerivativeMarket, GrpcChainDerivativePosition, GrpcChainFullDerivativeMarket, GrpcChainFullSpotMarket, GrpcChainPosition, GrpcChainSpotMarket, GrpcCodeInfoResponse, GrpcCoin, GrpcContractCodeHistoryEntry, GrpcContractInfo, GrpcDecCoin, GrpcDelegation, GrpcDelegationDelegatorReward, GrpcDelegationResponse, GrpcDenomDecimals, GrpcDenomHolders, GrpcDenomMinNotional, GrpcDerivativeLimitOrder, GrpcDerivativeMarketInfo, GrpcDerivativeOrderHistory, GrpcDerivativePosition, GrpcDerivativePositionV2, GrpcDerivativeTrade, GrpcDistributionParams, GrpcDmmPagination, GrpcEligibleAddress, GrpcEligibleAddresses, GrpcEpochConfigV2, GrpcEpochScore, GrpcEpochScores, GrpcEpochScoresHistory, GrpcEpochV2, GrpcEpochsV2, GrpcEvmBlobConfig, GrpcEvmBlobScheduleConfig, GrpcEvmChainConfig, GrpcEvmLog, GrpcEvmParams, GrpcExchangeParams, GrpcExpiryFuturesMarketInfo, GrpcExplorerStats, GrpcFeeDiscountAccountInfo, GrpcFeeDiscountSchedule, GrpcFeeDiscountTierInfo, GrpcFeeDiscountTierTTL, GrpcFundingPayment, GrpcFundingRate, GrpcGasFee, GrpcGovernanceDepositParams, GrpcGovernanceTallyParams, GrpcGovernanceVotingParams, GrpcGuild, GrpcGuildMember, GrpcHistoricalBalance, GrpcHistoricalRPNL, GrpcHistoricalVolumes, GrpcIBCTransferTx, GrpcIndexerAuctionBid, GrpcIndexerInsuranceFund, GrpcIndexerRedemptionSchedule, GrpcIndexerValidatorDescription, GrpcInsuranceFund, GrpcInsuranceParams, GrpcLeaderboardRow, GrpcMarketReward, GrpcMarketRewards, GrpcMarketStatus, GrpcMarketStatusMap, GrpcMegaVaultApr, GrpcMegaVaultAprStats, GrpcMegaVaultHistoricalPnL, GrpcMegaVaultHistoricalTVL, GrpcMegaVaultIncentives, GrpcMegaVaultMaxDrawdown, GrpcMegaVaultOperator, GrpcMegaVaultOperatorRedemptionBucket, GrpcMegaVaultPnl, GrpcMegaVaultPnlStats, GrpcMegaVaultRedemption, GrpcMegaVaultSubscription, GrpcMegaVaultTargetApr, GrpcMegaVaultUnrealizedPnl, GrpcMegaVaultUserStats, GrpcMegaVaultVaultStats, GrpcMegaVaultVolatility, GrpcMegaVaultVolatilityStats, GrpcMintParams, GrpcMitoChanges, GrpcMitoClaimReference, GrpcMitoDenomBalance, GrpcMitoHolders, GrpcMitoIDO, GrpcMitoIDOClaimedCoins, GrpcMitoIDOProgress, GrpcMitoIDOSubscriber, GrpcMitoIDOSubscription, GrpcMitoIDOSubscriptionActivity, GrpcMitoLeaderboardEntry, GrpcMitoLeaderboardEpoch, GrpcMitoMission, GrpcMitoMissionLeaderboardEntry, GrpcMitoPagination, GrpcMitoPriceSnapshot, GrpcMitoStakingGauge, GrpcMitoStakingPool, GrpcMitoStakingStakingActivity, GrpcMitoStakingStakingReward, GrpcMitoSubaccountBalance, GrpcMitoSubscription, GrpcMitoTokenInfo, GrpcMitoVault, GrpcMitoWhitelistAccount, GrpcOracle, GrpcOracleParams, GrpcOrderInfo, GrpcOrderType, GrpcOrderTypeMap, GrpcParams, GrpcPeggyDepositTx, GrpcPeggyParams, GrpcPeggyWithdrawalTx, GrpcPermissionActorRoles, GrpcPermissionAddressVoucher, GrpcPermissionNamespace, GrpcPermissionPolicyStatus, GrpcPermissionPolicyStatusManagerCapability, GrpcPermissionRole, GrpcPermissionRoleActors, GrpcPermissionRoleIDs, GrpcPermissionRoleManager, GrpcPermissionsNamespace, GrpcPermissionsParams, GrpcPerpetualMarketFunding, GrpcPerpetualMarketInfo, GrpcPnlLeaderboard, GrpcPointsMultiplier, GrpcPool, GrpcPortfolioSubaccountBalanceV2, GrpcPositionDelta, GrpcPositionV2, GrpcPositionsWithUPNL, GrpcPriceLevel, GrpcProposal, GrpcProposalDeposit, type ProposalStatus as GrpcProposalStatus, ProposalStatus, GrpcReDelegation, GrpcReDelegationEntryResponse, GrpcReDelegationResponse, GrpcRedemptionSchedule, GrpcRewardDistribution, GrpcRewardsDistribution, GrpcRewardsEligibility, GrpcSpotAverageEntry, GrpcSpotLimitOrder, GrpcSpotMarket, GrpcSpotMarketInfo, GrpcSpotMarketOrder, GrpcSpotOrder, GrpcSpotOrderHistory, GrpcSpotTrade, GrpcStakingParams, GrpcSubaccountBalance, GrpcSubaccountBalanceTransfer, GrpcSubaccountDeposit, GrpcSubaccountDepositV2, GrpcSubaccountPortfolio, GrpcSupply, GrpcTallyResult, GrpcTokenMeta, GrpcTokenPair, GrpcTotalScore, GrpcTotalScores, GrpcTotalScoresHistory, GrpcTradeRewardCampaign, GrpcTradingReward, GrpcTradingRewardCampaignBoostInfo, GrpcTradingRewardCampaignInfo, GrpcTxFeesEipBaseFee, GrpcTxFeesParams, GrpcUnbondingDelegation, GrpcUnbondingDelegationEntry, GrpcValidator, GrpcValidatorCommission, GrpcValidatorCommissionRates, GrpcValidatorDescription, GrpcValidatorSlashingEvent, GrpcValidatorUptime, GrpcVolLeaderboard, GrpcVote, GrpcWebFetchTransport, Guild, GuildCampaignSummary, GuildMember, HistoricalBalance, HistoricalRPNL, HistoricalStakingStreamCallback, HistoricalVolumes, Holder, IBCTransferTx, IbcMsgs, IncentivesCampaign, IncentivesQueryTransformer, IncentivesRound, IndexerAccountPortfolioStreamTransformer, IndexerAccountStreamTransformer, IndexerArchiverStreamTransformer, IndexerAuctionBid, IndexerAuctionStreamTransformer, IndexerCampaignTransformer, IndexerDerivativeStreamTransformer, IndexerGrpcAccountApi, IndexerGrpcAccountPortfolioApi, IndexerGrpcAccountPortfolioStream, IndexerGrpcAccountPortfolioTransformer, IndexerGrpcAccountStream, IndexerGrpcAccountTransformer, IndexerGrpcArchiverApi, IndexerGrpcArchiverStream, IndexerGrpcArchiverTransformer, IndexerGrpcAuctionApi, IndexerGrpcAuctionStream, IndexerGrpcAuctionTransformer, IndexerGrpcCampaignApi, IndexerGrpcDerivativeTransformer, IndexerGrpcDerivativesApi, IndexerGrpcDerivativesStream, IndexerGrpcExplorerApi, IndexerGrpcExplorerStream, IndexerGrpcExplorerTransformer, IndexerGrpcInsuranceFundApi, IndexerGrpcInsuranceFundTransformer, IndexerGrpcMegaVaultApi, IndexerGrpcMegaVaultTransformer, IndexerGrpcMetaApi, IndexerGrpcMitoApi, IndexerGrpcMitoStream, IndexerGrpcMitoStreamTransformer, IndexerGrpcMitoTransformer, IndexerGrpcOracleApi, IndexerGrpcOracleStream, IndexerGrpcOracleTransformer, IndexerGrpcReferralApi, IndexerGrpcReferralTransformer, IndexerGrpcSpotApi, IndexerGrpcSpotStream, IndexerGrpcSpotTransformer, IndexerGrpcTradingApi, IndexerGrpcTradingStream, IndexerGrpcTransactionApi, IndexerGrpcWeb3GwApi, IndexerInsuranceFund, IndexerModule, IndexerOracleStreamTransformer, IndexerRestDerivativesChronosApi, IndexerRestExplorerApi, IndexerRestExplorerTransformer, IndexerRestLeaderboardChronosApi, IndexerRestMarketChronosApi, IndexerRestSpotChronosApi, IndexerSpotStreamTransformer, IndexerStreamTransaction, IndexerTokenMeta, InjNameServiceQueryTransformer, InsuranceFund, InsuranceFundCreateParams, InsuranceModuleParams, InsuranceMsgs, IsOptedOutOfRewards, LeaderboardRow, LendingRateResponse, ListTradingStrategiesResponse, MapOfTypedDataField, Market, MarketReward, MarketRewards, MarketType, MarketingInfo, MarketsStreamCallback, MegaVault, MegaVaultApr, MegaVaultAprStats, MegaVaultHistoricalPnL, MegaVaultHistoricalTVL, MegaVaultIncentives, MegaVaultMaxDrawdown, MegaVaultOperator, MegaVaultOperatorRedemptionBucket, MegaVaultPnl, MegaVaultPnlStats, MegaVaultRedemption, MegaVaultRedemptionStatus, MegaVaultStats, MegaVaultSubscription, MegaVaultSubscriptionStatus, MegaVaultTargetApr, MegaVaultUnrealizedPnl, MegaVaultUser, MegaVaultUserStats, MegaVaultVolatility, MegaVaultVolatilityStats, Message, Metadata$1 as Metadata, MinMaxRewards, MinModuleParams, MitoChanges, MitoClaimReference, MitoDenomBalance, MitoGauge, MitoGaugeStatus, MitoHolders, MitoIDO, MitoIDOClaimedCoins, MitoIDOInitParams, MitoIDOProgress, MitoIDOSubscriber, MitoIDOSubscription, MitoIDOSubscriptionActivity, MitoLeaderboard, MitoLeaderboardEntry, MitoLeaderboardEpoch, MitoMission, MitoMissionLeaderboard, MitoMissionLeaderboardEntry, MitoPagination, MitoPortfolio, MitoPriceSnapshot, MitoStakeToSubscription, MitoStakingActivity, MitoStakingPool, MitoStakingReward, MitoSubaccountBalance, MitoSubscription, MitoTokenInfo, MitoTransfer, MitoVault, MitoVestingConfig, MitoVestingConfigMap, MitoWhitelistAccount, MsgAdminUpdateBinaryOptionsMarket, MsgArg, MsgAuthorizeStakeGrants, MsgExec as MsgAuthzExec, MsgBatchCancelBinaryOptionsOrders, MsgBatchCancelDerivativeOrders, MsgBatchCancelSpotOrders, MsgBatchUpdateOrders, MsgBeginRedelegate, MsgBid, MsgBroadcasterWithPk, MsgBurn, MsgCancelBinaryOptionsOrder, MsgCancelDerivativeOrder, MsgCancelPostOnlyModeV2, MsgCancelSpotOrder, MsgCancelUnbondingDelegation, MsgChangeAdmin, MsgClaimVoucher, MsgCreateBinaryOptionsLimitOrder, MsgCreateBinaryOptionsMarketOrder, MsgCreateDenom, MsgCreateDerivativeLimitOrder, MsgCreateDerivativeMarketOrder, MsgCreateInsuranceFund, MsgCreateNamespace, MsgCreateSpotLimitOrder, MsgCreateSpotMarketOrder, MsgCreateValidator, MsgDecoder, MsgDelegate, MsgDeposit, MsgEditValidator, MsgExecuteContract, MsgExecuteContractCompat, MsgExternalTransfer, MsgFundCommunityPool, MsgDeposit$1 as MsgGovDeposit, MsgGrant, MsgGrantAllowance, MsgGrantWithAuthorization, MsgIncreasePositionMargin, MsgInstantBinaryOptionsMarketLaunch, MsgInstantSpotMarketLaunch, MsgInstantiateContract, MsgLiquidatePosition, MsgMigrateContract, MsgMint, MsgMultiSend, MsgPrivilegedExecuteContract, MsgReclaimLockedFunds, MsgRequestRedemption, MsgRevoke, MsgRevokeAllowance, MsgRewardsOptOut, MsgSend, MsgSendToEth, MsgSetDelegationTransferReceivers, MsgSetDenomMetadata, MsgSignData, MsgStoreCode, MsgSubmitGenericProposal, MsgSubmitProposal, MsgSubmitProposalExpiryFuturesMarketLaunch, MsgSubmitProposalPerpetualMarketLaunch, MsgSubmitProposalPerpetualMarketLaunchV2, MsgSubmitProposalSpotMarketLaunch, MsgSubmitProposalSpotMarketParamUpdate, MsgSubmitTextProposal, MsgTransfer, MsgTransferDelegation, MsgUndelegate, MsgUnderwrite, MsgUpdateActorRoles, MsgUpdateAdmin, MsgUpdateDerivativeMarketV2, MsgUpdateNamespace, MsgUpdateParams, MsgUpdateSpotMarketV2, MsgVote, MsgWithdraw, MsgWithdrawDelegatorReward, MsgWithdrawValidatorCommission, Msgs, NEPTUNE_PRICE_CONTRACT, NEPTUNE_USDT_CW20_CONTRACT, NeptuneQueryTransformer, NeptuneService, NodeInfoRestResponse, Oracle, OracleModuleParams, OraclePriceStreamCallback, OraclePricesByMarketsStreamCallback, OracleType$1 as OracleType, OracleTypeMap, OrderHashManager, OrderMask, OrderMaskMap, OrderType, OrderTypeMap, Orderbook, OrderbookWithSequence, PagePagination, Pagination, PaginationOption, Paging, Params$1 as Params, PeggyDepositTx, PeggyModuleParams, PeggyMsgs, PeggyWithdrawalTx, PermissionActionMap, PermissionActorRoles, PermissionAddressRoles, PermissionAddressVoucher, PermissionGenesisState, PermissionNamespace, PermissionParams, PermissionPolicyManagerCapability, PermissionPolicyStatus, PermissionRole, PermissionRoleActors, PermissionRoleIDs, PermissionRoleManager, PermissionVoucher, PermissionsModuleParams, PerpetualMarket, PerpetualMarketFunding, PerpetualMarketInfo, PnlLeaderboard, PointsLatestResponse, PointsMultiplier, PointsStatsRow, Pool, PortfolioSubaccountBalanceV2, Position, PositionDelta, PositionV2, PositionsWithUPNL, PriceLevel, PriceResponse, PrivateKey, Proposal, ProposalDecomposer, ProposalDeposit, ProposalStatusMap, PubKey, PublicKey, QuantityAndFees, QueryAllRounds, QueryAllRoutes, QueryCampaignResponse, QueryGetAllLendingRates, QueryGetCampaigns, QueryGetPrices, QueryInjName, QueryInjectiveAddress, QueryInputQuantity, QueryOutputQuantity, QueryQuantityAndFeesResponse, QueryResolverAddress, QueryRoundResponse, QueryRoute, QueryRouteResponse, QueryTradingStrategyContractAllStrategies, QueryTradingStrategyContractConfig, QueryTradingStrategyContractTotalStrategies, QueryTradingStrategyContractUserStrategies, ReDelegation, Redemption, RedemptionStatus, ReferralDetails, RestApiResponse, RestAuthInfo, RestSignerInfo, RestTx, RestTxBody, RestTxLog, RewardDistribution, RewardsDistribution, RewardsEligibility, Route, SIGN_AMINO, SIGN_DIRECT, SIGN_EIP712, SIGN_EIP712_V2, SendEnabled, SignDoc, SignTypedDataVersionV4, Signature, SignerDetails, SimulationResponse, SpotAverageEntriesStreamCallback, SpotAverageEntry, SpotLimitOrder, SpotLimitOrderParams, SpotMarket, SpotOrderCancelParams, SpotOrderHistory, SpotOrderHistoryStreamCallback, SpotOrderbookUpdateStreamCallback, SpotOrderbookV2StreamCallback, SpotOrdersStreamCallback, SpotTrade, SpotTradesStreamCallback, StakingModuleParams, StakingMsgs, StakingRewardByAccountStreamCallback, StrategyType, StreamBidsResponse, StreamOperation, StreamStatusResponse, SubaccountBalance, SubaccountDeposit, SubaccountDepositV2, SubaccountPortfolio, SubaccountTransfer, SwapQueryTransformer, TallyResult, TokenFactoryModuleParams, TokenFactoryModuleState, TokenFactoryMsgs, TokenFactoryStatic, TokenInfo, TokenMeta, TokenPair, TokenPrice, TokenSource, TokenStatic, TokenStaticFactory, TokenType, TokenVerification, TotalScore, TotalScores, TotalScoresHistory, TotalSupply, TradeDirection, TradeExecutionSide, TradeExecutionType, TradeRewardCampaign, TradingReward, TradingRewardCampaignBoostInfo, TradingRewardCampaignInfo, TradingStrategy, TrailingArithmetic, TrailingArithmeticLP, Transaction, TransactionFromExplorerApiResponse, TransactionsStreamCallback, TransferType, TransfersStreamCallback, TxClient, TxClientBroadcastOptions, TxClientBroadcastResponse, TxClientMode, TxClientSimulateResponse, TxConcreteApi, TxFeesEipBaseFee, TxFeesModuleStateParams, TxGrpcApi, TxInfo, TxInfoResponse, TxMessage, TxRaw, TxResponse, TxRestApi, TxResult, TxResultResponse, TxSearchResult, TxSearchResultParams, TypedDataField, TypedDataUtilsHashStruct, TypedDataUtilsSanitizeData, TypedMessageV4, UnBondingDelegation, Validator, ValidatorCommission, ValidatorDescription, ValidatorRewards, ValidatorSlashingEvent, ValidatorUptime, ValidatorUptimeFromExplorerApiResponse, ValidatorUptimeStatus, VaultHolderSubscriptionStreamCallback, VaultStreamCallback, VolLeaderboard, Vote, VoteOption$1 as VoteOption, VoteOptionMap, WasmCode, WasmCodeExplorerApiResponse, WasmContractQueryResponse, WasmMsgs, WeightedVoteOption, accountEthParser, addHexPrefix, amountToCosmosSdkDecAmount, base64ToUint8Array, binaryToBase64, concatUint8Arrays, cosmosSdkDecToBigNumber, createAny, createAnyMessage, createAuthInfo, createBody, createFee, createNonCriticalExtensionFromObject, createSignDoc, createSignDocFromTransaction, createSignerInfo, createSigners, createTransaction, createTransactionAndCosmosSignDoc, createTransactionAndCosmosSignDocForAddressAndMsg, createTransactionForAddressAndMsg, createTransactionFromMsg, createTransactionWithSigners, createTxRawEIP712, createTxRawFromSigResponse, createWeb3Extension, decompressPubKey, denomAmountFromChainDenomAmount, denomAmountFromChainDenomAmountToFixed, denomAmountFromGrpcChainDenomAmount, denomAmountToChainDenomAmount, denomAmountToChainDenomAmountToFixed, denomAmountToGrpcChainDenomAmount, derivativeMarginFromChainMargin, derivativeMarginFromChainMarginToFixed, derivativeMarginToChainMargin, derivativeMarginToChainMarginToFixed, derivativePriceFromChainPrice, derivativePriceFromChainPriceToFixed, derivativePriceToChainPrice, derivativePriceToChainPriceToFixed, derivativeQuantityFromChainQuantity, derivativeQuantityFromChainQuantityToFixed, derivativeQuantityToChainQuantity, derivativeQuantityToChainQuantityToFixed, domainHash, errorToErrorMessage, fetchAllWithPagination, formatAmountToAllowableAmount, formatAmountToAllowableDecimals, formatNumberToAllowableDecimals, formatNumberToAllowableTensMultiplier, formatPriceToAllowableDecimals, formatPriceToAllowablePrice, fromBase64, fromUtf8, generateArbitrarySignDoc, getAddressFromInjectiveAddress, getAminoStdSignDoc, getChecksumAddress, getDefaultEip712Types, getDefaultEip712TypesV2, getDefaultSubaccountId, getDerivativeMarketDecimals, getDerivativeMarketTensMultiplier, getEip712Domain, getEip712DomainV2, getEip712Fee, getEip712FeeV2, getEip712TypedData, getEip712TypedDataV2, getEipTxContext, getEipTxDetails, getErrorMessage, getEthereumAddress, getEthereumSignerAddress, getExactDecimalsFromNumber, getGasPriceBasedOnMessage, getGenericAuthorizationFromMessageType, getGrpcWebTransport, getInjectiveAddress, getInjectiveAddressFromSubaccountId, getInjectiveSignerAddress, getObjectEip712PropertyType, getPublicKey, getSignificantDecimalsFromNumber, getSpotMarketDecimals, getSpotMarketTensMultiplier, getSubaccountId, getTensMultiplier, getTransactionPartsFromTxRaw, getTxRawFromTxRawOrDirectSignResponse, getTypesIncludingFeePayer, grpcCoinToUiCoin, grpcContractInfo, grpcPaginationToPagination, grpcPagingToPaging, grpcPagingToPagingV2, hashToHex, hexToBase64, hexToBuff, hexToNumber, hexToUint8Array, isBrowser, isCw20ContractAddress, isJsonString, isNode, isNumber, isReactNative, isServerSide, isTxNotFoundError, makeTimeoutTimestamp, makeTimeoutTimestampInNs, messageHash, msgsOrMsgExecMsgs, numberToCosmosSdkDecString, numberTypeToReflectionNumberType, objectKeysToEip712Types, objectToJson, ofacWallets, pageRequestToGrpcPageRequestV2, paginationRequestFromPagination, paginationUint8ArrayToString, parseCoins, privateKeyHashToPublicKey, privateKeyHashToPublicKeyBase64, privateKeyToPublicKey, privateKeyToPublicKeyBase64, protoObjectToJson, protoTypeToAminoType, protobufTimestampToDate, protobufTimestampToUnixMs, protobufTimestampToUnixSeconds, publicKeyToAddress, recoverTypedSignaturePubKey, removeHexPrefix, ripemd160, sanitizeTypedData, sha256, sortObjectByKeys, sortObjectByKeysWithReduce, spotPriceFromChainPrice, spotPriceFromChainPriceToFixed, spotPriceToChainPrice, spotPriceToChainPriceToFixed, spotQuantityFromChainQuantity, spotQuantityFromChainQuantityToFixed, spotQuantityToChainQuantity, spotQuantityToChainQuantityToFixed, stringToUint8Array, stringTypeToReflectionStringType, toBase64, toUtf8, uint8ArrayToBase64, uint8ArrayToHex, uint8ArrayToString, waitTxBroadcasted };
43072
+ export { AbacusGrpcApi, AbsoluteTxPosition, AccessType, AccessTypeCode, Account, AccountAuctionV2, AccountPortfolio, AccountPortfolioBalances, AccountPortfolioStreamCallback, AccountPortfolioV2, AccountResponse, AccountStats, AccountVolume, AccountVolumes, AccountsResponse, Address, AllChronosDerivativeMarketSummary, AllChronosMarketHistory, AllChronosSpotMarketSummary, AllDerivativeMarketSummaryResponse, AllSpotMarketSummaryResponse, type AminoSignResponse, AssetInfo, AssetInfoWithPrice, AtomicSwap, Auction, AuctionBid, AuctionCoin, AuctionCoinPrices, AuctionContract, AuctionCurrentBasket, AuctionEventAuctionResult, AuctionEventAuctionStart, AuctionEventBid, AuctionLastAuctionResult, AuctionModuleParams, AuctionModuleState, AuctionModuleStateParams, AuctionModuleStateResponse, AuctionMsgs, AuctionParams, AuctionV2, AuctionsStats, AuthBaseAccount, AuthModuleParams, AuthorityMetadata, AuthzMsgs, BECH32_ADDR_ACC_PREFIX, BECH32_ADDR_CONS_PREFIX, BECH32_ADDR_VAL_PREFIX, BECH32_PUBKEY_ACC_PREFIX, BECH32_PUBKEY_CONS_PREFIX, BECH32_PUBKEY_VAL_PREFIX, BalanceStreamCallback, BalancesResponse, BankModuleParams, BankMsgSendTransaction, BankMsgs, BankTransfer, BankTransferFromExplorerApiResponse, BaseAccount, BaseAccountRestResponse, BaseDerivativeMarket, BatchCancelDerivativeOrdersAuthz, BatchCancelSpotOrdersAuthz, BatchCreateDerivativeLimitOrdersAuthz, BatchCreateSpotLimitOrdersAuthz, BatchDerivativeOrderCancelParams, BatchSpotOrderCancelParams, BidsStreamCallback, BinaryOptionsMarket, Block, BlockFromExplorerApiResponse, BlockLatestRestResponse, BlockWithTxs, BlocksStreamCallback, BlocksWithTxsStreamCallback, BondStatus, BroadcastMode, BroadcastModeKeplr, CW20BalanceExplorerApiResponse, CW20Message, Campaign, CampaignRewardPool, CampaignUser, CampaignV2, CancelDerivativeOrderAuthz, CancelSpotOrderAuthz, ChainDenomDecimal, ChainDenomMinNotional, ChainDerivativePosition, ChainGrpcAuctionApi, ChainGrpcAuctionTransformer, ChainGrpcAuthApi, ChainGrpcAuthTransformer, ChainGrpcAuthZApi, ChainGrpcAuthZTransformer, ChainGrpcBankApi, ChainGrpcBankTransformer, ChainGrpcCommonTransformer, ChainGrpcDistributionApi, ChainGrpcDistributionTransformer, ChainGrpcErc20Api, ChainGrpcErc20Transformer, ChainGrpcEvmApi, ChainGrpcEvmTransformer, ChainGrpcExchangeApi, ChainGrpcExchangeTransformer, ChainGrpcGovApi, ChainGrpcGovTransformer, ChainGrpcIbcApi, ChainGrpcInsuranceFundApi, ChainGrpcInsuranceFundTransformer, ChainGrpcMintApi, ChainGrpcMintTransformer, ChainGrpcOracleApi, ChainGrpcPeggyApi, ChainGrpcPeggyTransformer, ChainGrpcPermissionsApi, ChainGrpcPermissionsTransformer, ChainGrpcStakingApi, ChainGrpcStakingTransformer, ChainGrpcTendermintApi, ChainGrpcTokenFactoryApi, ChainGrpcTokenFactoryTransformer, ChainGrpcTxFeesApi, ChainGrpcTxFeesTransformer, ChainGrpcWasmApi, ChainGrpcWasmTransformer, ChainGrpcWasmXApi, ChainModule, ChainPosition, ChainRestAuthApi, ChainRestBankApi, ChainRestTendermintApi, ChainRestWasmApi, ChronosDerivativeMarketSummary, ChronosDerivativeMarketSummaryResponse, ChronosLeaderboard, ChronosLeaderboardEntry, ChronosLeaderboardResponse, ChronosMarketHistoryResponse, ChronosSpotMarketSummary, ChronosSpotMarketSummaryResponse, CodeInfoResponse, Coin$1 as Coin, Contract, ContractAccountBalance, ContractAccountsBalanceWithPagination, ContractCodeHistoryEntry, ContractCodeHistoryOperationType, ContractCodeHistoryOperationTypeMap, ContractExecutionAuthorization as ContractExecutionAuthz, ContractExecutionCompatAuthorization as ContractExecutionCompatAuthz, ContractExplorerApiResponse, ContractInfo, ContractStateWithPagination, ContractTransaction, ContractTransactionExplorerApiResponse, ContractTransactionWithMessages, CosmWasmChecksum, CosmWasmPermission, CosmosAccountRestResponse, tx_pb_d_exports as CosmosTxV1Beta1TxPb, CreateDerivativeLimitOrderAuthz, CreateDerivativeMarketOrderAuthz, CreateSpotLimitOrderAuthz, CreateSpotMarketOrderAuthz, CreateTransactionArgs, CreateTransactionResult, CreateTransactionWithSignersArgs, DEFAULT_DERIVATION_PATH, Delegation, DenomBalance, DenomHolders, DenomOwnersResponse, DepositProposalParams, DerivativeLimitOrder, DerivativeLimitOrderParams, DerivativeMarket, DerivativeMarketStreamCallback, DerivativeMarketWithoutBinaryOptions, DerivativeOrderCancelParams, DerivativeOrderHistory, DerivativeOrderHistoryStreamCallback, DerivativeOrderbookUpdateStreamCallback, DerivativeOrderbookV2StreamCallback, DerivativeOrdersStreamCallback, DerivativePositionsStreamCallback, DerivativePositionsV2StreamCallback, DerivativeTrade, DerivativeTradesStreamCallback, type DirectSignResponse, DistributionModuleParams, DistributionMsgs, OLPGrpcApi as DmmGrpcApi, OLPGrpcApi, DmmPagination, Eip712ConvertFeeArgs, Eip712ConvertTxArgs, EligibleAddress, EligibleAddresses, EpochConfigV2, EpochScore, EpochScores, EpochScoresHistory, EpochV2, EpochsV2, EthAccount, EventLog, EventLogEvent, EvmBlobConfig, EvmBlobScheduleConfig, EvmChainConfig, EvmLog, EvmParams, ExchangeModuleParams, ExchangeMsgs, ExchangePagination, ExchangeParams, ExchangeV1Msgs, ExchangeV2Msgs, ExecArgCW20AdapterRedeemAndTransfer, ExecArgCW20Send, ExecArgCW20Transfer, ExecArgCreateCampaign, ExecArgCreatePerpGridStrategy, ExecArgCreateRound, ExecArgCreateSpotGridStrategy, ExecArgDepositTokens, ExecArgFundCampaign, ExecArgIncreaseAllowance, ExecArgInitiateTransfer, ExecArgNeptuneDeposit, ExecArgNeptuneWithdraw, ExecArgRemoveGridStrategy, ExecArgSubmitVaa, ExecArgSwapExactOutput, ExecArgSwapMinOutput, ExecArgUpdateGridConfig, ExecArgs, ExecPrivilegedArgOffChainVaultRedeem, ExecPrivilegedArgOffChainVaultSubscribe, ExecPrivilegedArgVaultRedeem, ExecPrivilegedArgVaultSubscribe, ExecPrivilegedArgs, ExitConfig, ExitType, ExpiryFuturesMarket, ExpiryFuturesMarketInfo, ExplorerApiResponse, ExplorerApiResponseWithPagination, ExplorerBlockApiResponse, ExplorerBlockWithTxs, ExplorerCW20BalanceWithToken, ExplorerStats, ExplorerStreamTransformer, ExplorerTransaction, ExplorerTransactionApiResponse, ExplorerTransactionV2, ExplorerTxsV2Response, ExplorerValidator, ExplorerValidatorDescription, ExplorerValidatorUptime, FactoryDenomWithMetadata, FeeDiscountAccountInfo, FeeDiscountSchedule, FeeDiscountTierInfo, FeeDiscountTierTTL, FeegrantMsgs, FundingPayment, FundingRate, GasFee, GenericAuthorization, GenericAuthorization$1 as GenericAuthz, GoogleProtoBufAny, GovModuleStateParams, GovMsgs, Grant$1 as Grant, GrantAuthorization$1 as GrantAuthorization, GrantAuthorizationType, GrantAuthorizationWithDecodedAuthorization, GrantWithDecodedAuthorization, GridStrategyStreamResponse, GridStrategyType, GrpcAbsoluteTxPosition, GrpcAccountAuctionV2, GrpcAccountPortfolio, GrpcAccountPortfolioV2, GrpcAccountVolume, GrpcAtomicSwap, GrpcAuction, GrpcAuctionBid, GrpcAuctionCoin, GrpcAuctionCoinPrices, GrpcAuctionContract, GrpcAuctionEventAuctionResult, GrpcAuctionEventAuctionStart, GrpcAuctionEventBid, GrpcAuctionLastAuctionResult, GrpcAuctionParams, GrpcAuctionV2, GrpcBankMsgSendMessage, GrpcBankParams, GrpcBinaryOptionsMarketInfo, GrpcCampaign, GrpcCampaignRewardPool, GrpcCampaignUser, GrpcCampaignV2, GrpcChainDerivativeMarket, GrpcChainDerivativePosition, GrpcChainFullDerivativeMarket, GrpcChainFullSpotMarket, GrpcChainPosition, GrpcChainSpotMarket, GrpcCodeInfoResponse, GrpcCoin, GrpcContractCodeHistoryEntry, GrpcContractInfo, GrpcDecCoin, GrpcDelegation, GrpcDelegationDelegatorReward, GrpcDelegationResponse, GrpcDenomDecimals, GrpcDenomHolders, GrpcDenomMinNotional, GrpcDerivativeLimitOrder, GrpcDerivativeMarketInfo, GrpcDerivativeOrderHistory, GrpcDerivativePosition, GrpcDerivativePositionV2, GrpcDerivativeTrade, GrpcDistributionParams, GrpcDmmPagination, GrpcEligibleAddress, GrpcEligibleAddresses, GrpcEpochConfigV2, GrpcEpochScore, GrpcEpochScores, GrpcEpochScoresHistory, GrpcEpochV2, GrpcEpochsV2, GrpcEvmBlobConfig, GrpcEvmBlobScheduleConfig, GrpcEvmChainConfig, GrpcEvmLog, GrpcEvmParams, GrpcExchangeParams, GrpcExpiryFuturesMarketInfo, GrpcExplorerStats, GrpcFeeDiscountAccountInfo, GrpcFeeDiscountSchedule, GrpcFeeDiscountTierInfo, GrpcFeeDiscountTierTTL, GrpcFundingPayment, GrpcFundingRate, GrpcGasFee, GrpcGovernanceDepositParams, GrpcGovernanceTallyParams, GrpcGovernanceVotingParams, GrpcGuild, GrpcGuildMember, GrpcHistoricalBalance, GrpcHistoricalRPNL, GrpcHistoricalVolumes, GrpcIBCTransferTx, GrpcIndexerAuctionBid, GrpcIndexerInsuranceFund, GrpcIndexerRedemptionSchedule, GrpcIndexerValidatorDescription, GrpcInsuranceFund, GrpcInsuranceParams, GrpcLeaderboardRow, GrpcMarketReward, GrpcMarketRewards, GrpcMarketStatus, GrpcMarketStatusMap, GrpcMegaVaultApr, GrpcMegaVaultAprStats, GrpcMegaVaultHistoricalPnL, GrpcMegaVaultHistoricalTVL, GrpcMegaVaultIncentives, GrpcMegaVaultMaxDrawdown, GrpcMegaVaultOperator, GrpcMegaVaultOperatorRedemptionBucket, GrpcMegaVaultPnl, GrpcMegaVaultPnlStats, GrpcMegaVaultRedemption, GrpcMegaVaultSubscription, GrpcMegaVaultTargetApr, GrpcMegaVaultUnrealizedPnl, GrpcMegaVaultUserStats, GrpcMegaVaultVaultStats, GrpcMegaVaultVolatility, GrpcMegaVaultVolatilityStats, GrpcMintParams, GrpcMitoChanges, GrpcMitoClaimReference, GrpcMitoDenomBalance, GrpcMitoHolders, GrpcMitoIDO, GrpcMitoIDOClaimedCoins, GrpcMitoIDOProgress, GrpcMitoIDOSubscriber, GrpcMitoIDOSubscription, GrpcMitoIDOSubscriptionActivity, GrpcMitoLeaderboardEntry, GrpcMitoLeaderboardEpoch, GrpcMitoMission, GrpcMitoMissionLeaderboardEntry, GrpcMitoPagination, GrpcMitoPriceSnapshot, GrpcMitoStakingGauge, GrpcMitoStakingPool, GrpcMitoStakingStakingActivity, GrpcMitoStakingStakingReward, GrpcMitoSubaccountBalance, GrpcMitoSubscription, GrpcMitoTokenInfo, GrpcMitoVault, GrpcMitoWhitelistAccount, GrpcOracle, GrpcOracleParams, GrpcOrderInfo, GrpcOrderType, GrpcOrderTypeMap, GrpcParams, GrpcPeggyDepositTx, GrpcPeggyParams, GrpcPeggyWithdrawalTx, GrpcPermissionActorRoles, GrpcPermissionAddressVoucher, GrpcPermissionNamespace, GrpcPermissionPolicyStatus, GrpcPermissionPolicyStatusManagerCapability, GrpcPermissionRole, GrpcPermissionRoleActors, GrpcPermissionRoleIDs, GrpcPermissionRoleManager, GrpcPermissionsNamespace, GrpcPermissionsParams, GrpcPerpetualMarketFunding, GrpcPerpetualMarketInfo, GrpcPnlLeaderboard, GrpcPointsMultiplier, GrpcPool, GrpcPortfolioSubaccountBalanceV2, GrpcPositionDelta, GrpcPositionV2, GrpcPositionsWithUPNL, GrpcPriceLevel, GrpcProposal, GrpcProposalDeposit, type ProposalStatus as GrpcProposalStatus, ProposalStatus, GrpcReDelegation, GrpcReDelegationEntryResponse, GrpcReDelegationResponse, GrpcRedemptionSchedule, GrpcRewardDistribution, GrpcRewardsDistribution, GrpcRewardsEligibility, GrpcSpotAverageEntry, GrpcSpotLimitOrder, GrpcSpotMarket, GrpcSpotMarketInfo, GrpcSpotMarketOrder, GrpcSpotOrder, GrpcSpotOrderHistory, GrpcSpotTrade, GrpcStakingParams, GrpcSubaccountBalance, GrpcSubaccountBalanceTransfer, GrpcSubaccountDeposit, GrpcSubaccountDepositV2, GrpcSubaccountPortfolio, GrpcSupply, GrpcTallyResult, GrpcTokenMeta, GrpcTokenPair, GrpcTotalScore, GrpcTotalScores, GrpcTotalScoresHistory, GrpcTradeRewardCampaign, GrpcTradingReward, GrpcTradingRewardCampaignBoostInfo, GrpcTradingRewardCampaignInfo, GrpcTxFeesEipBaseFee, GrpcTxFeesParams, GrpcUnbondingDelegation, GrpcUnbondingDelegationEntry, GrpcValidator, GrpcValidatorCommission, GrpcValidatorCommissionRates, GrpcValidatorDescription, GrpcValidatorSlashingEvent, GrpcValidatorUptime, GrpcVolLeaderboard, GrpcVote, GrpcWebFetchTransport, Guild, GuildCampaignSummary, GuildMember, HistoricalBalance, HistoricalRPNL, HistoricalStakingStreamCallback, HistoricalVolumes, Holder, IBCTransferTx, IbcMsgs, IncentivesCampaign, IncentivesQueryTransformer, IncentivesRound, IndexerAccountPortfolioStreamTransformer, IndexerAccountStreamTransformer, IndexerArchiverStreamTransformer, IndexerAuctionBid, IndexerAuctionStreamTransformer, IndexerCampaignTransformer, IndexerDerivativeStreamTransformer, IndexerGrpcAccountApi, IndexerGrpcAccountPortfolioApi, IndexerGrpcAccountPortfolioStream, IndexerGrpcAccountPortfolioTransformer, IndexerGrpcAccountStream, IndexerGrpcAccountTransformer, IndexerGrpcArchiverApi, IndexerGrpcArchiverStream, IndexerGrpcArchiverTransformer, IndexerGrpcAuctionApi, IndexerGrpcAuctionStream, IndexerGrpcAuctionTransformer, IndexerGrpcCampaignApi, IndexerGrpcDerivativeTransformer, IndexerGrpcDerivativesApi, IndexerGrpcDerivativesStream, IndexerGrpcExplorerApi, IndexerGrpcExplorerStream, IndexerGrpcExplorerTransformer, IndexerGrpcInsuranceFundApi, IndexerGrpcInsuranceFundTransformer, IndexerGrpcMegaVaultApi, IndexerGrpcMegaVaultTransformer, IndexerGrpcMetaApi, IndexerGrpcMitoApi, IndexerGrpcMitoStream, IndexerGrpcMitoStreamTransformer, IndexerGrpcMitoTransformer, IndexerGrpcOracleApi, IndexerGrpcOracleStream, IndexerGrpcOracleTransformer, IndexerGrpcReferralApi, IndexerGrpcReferralTransformer, IndexerGrpcSpotApi, IndexerGrpcSpotStream, IndexerGrpcSpotTransformer, IndexerGrpcTradingApi, IndexerGrpcTradingStream, IndexerGrpcTransactionApi, IndexerGrpcWeb3GwApi, IndexerInsuranceFund, IndexerModule, IndexerOracleStreamTransformer, IndexerRestDerivativesChronosApi, IndexerRestExplorerApi, IndexerRestExplorerTransformer, IndexerRestLeaderboardChronosApi, IndexerRestMarketChronosApi, IndexerRestSpotChronosApi, IndexerSpotStreamTransformer, IndexerStreamTransaction, IndexerTokenMeta, InjNameServiceQueryTransformer, InsuranceFund, InsuranceFundCreateParams, InsuranceModuleParams, InsuranceMsgs, IsOptedOutOfRewards, LeaderboardRow, LendingRateResponse, ListTradingStrategiesResponse, MapOfTypedDataField, Market, MarketReward, MarketRewards, MarketType, MarketingInfo, MarketsStreamCallback, MegaVault, MegaVaultApr, MegaVaultAprStats, MegaVaultHistoricalPnL, MegaVaultHistoricalTVL, MegaVaultIncentives, MegaVaultMaxDrawdown, MegaVaultOperator, MegaVaultOperatorRedemptionBucket, MegaVaultPnl, MegaVaultPnlStats, MegaVaultRedemption, MegaVaultRedemptionStatus, MegaVaultStats, MegaVaultSubscription, MegaVaultSubscriptionStatus, MegaVaultTargetApr, MegaVaultUnrealizedPnl, MegaVaultUser, MegaVaultUserStats, MegaVaultVolatility, MegaVaultVolatilityStats, Message, Metadata$1 as Metadata, MinMaxRewards, MinModuleParams, MitoChanges, MitoClaimReference, MitoDenomBalance, MitoGauge, MitoGaugeStatus, MitoHolders, MitoIDO, MitoIDOClaimedCoins, MitoIDOInitParams, MitoIDOProgress, MitoIDOSubscriber, MitoIDOSubscription, MitoIDOSubscriptionActivity, MitoLeaderboard, MitoLeaderboardEntry, MitoLeaderboardEpoch, MitoMission, MitoMissionLeaderboard, MitoMissionLeaderboardEntry, MitoPagination, MitoPortfolio, MitoPriceSnapshot, MitoStakeToSubscription, MitoStakingActivity, MitoStakingPool, MitoStakingReward, MitoSubaccountBalance, MitoSubscription, MitoTokenInfo, MitoTransfer, MitoVault, MitoVestingConfig, MitoVestingConfigMap, MitoWhitelistAccount, MsgAdminUpdateBinaryOptionsMarket, MsgArg, MsgAuthorizeStakeGrants, MsgExec as MsgAuthzExec, MsgBatchCancelBinaryOptionsOrders, MsgBatchCancelDerivativeOrders, MsgBatchCancelSpotOrders, MsgBatchUpdateOrders, MsgBeginRedelegate, MsgBid, MsgBroadcasterWithPk, MsgBurn, MsgCancelBinaryOptionsOrder, MsgCancelDerivativeOrder, MsgCancelPostOnlyModeV2, MsgCancelSpotOrder, MsgCancelUnbondingDelegation, MsgChangeAdmin, MsgClaimVoucher, MsgCreateBinaryOptionsLimitOrder, MsgCreateBinaryOptionsMarketOrder, MsgCreateDenom, MsgCreateDerivativeLimitOrder, MsgCreateDerivativeMarketOrder, MsgCreateInsuranceFund, MsgCreateNamespace, MsgCreateSpotLimitOrder, MsgCreateSpotMarketOrder, MsgCreateValidator, MsgDecoder, MsgDelegate, MsgDeposit, MsgEditValidator, MsgExecuteContract, MsgExecuteContractCompat, MsgExternalTransfer, MsgFundCommunityPool, MsgDeposit$1 as MsgGovDeposit, MsgGrant, MsgGrantAllowance, MsgGrantWithAuthorization, MsgIncreasePositionMargin, MsgInstantBinaryOptionsMarketLaunch, MsgInstantSpotMarketLaunch, MsgInstantiateContract, MsgLiquidatePosition, MsgMigrateContract, MsgMint, MsgMultiSend, MsgPrivilegedExecuteContract, MsgReclaimLockedFunds, MsgRequestRedemption, MsgRevoke, MsgRevokeAllowance, MsgRewardsOptOut, MsgSend, MsgSendToEth, MsgSetDelegationTransferReceivers, MsgSetDenomMetadata, MsgSignData, MsgStoreCode, MsgSubmitGenericProposal, MsgSubmitProposal, MsgSubmitProposalExpiryFuturesMarketLaunch, MsgSubmitProposalPerpetualMarketLaunch, MsgSubmitProposalPerpetualMarketLaunchV2, MsgSubmitProposalSpotMarketLaunch, MsgSubmitProposalSpotMarketParamUpdate, MsgSubmitTextProposal, MsgTransfer, MsgTransferDelegation, MsgUndelegate, MsgUnderwrite, MsgUpdateActorRoles, MsgUpdateAdmin, MsgUpdateDerivativeMarketV2, MsgUpdateNamespace, MsgUpdateParams, MsgUpdateSpotMarketV2, MsgVote, MsgWithdraw, MsgWithdrawDelegatorReward, MsgWithdrawValidatorCommission, Msgs, NEPTUNE_PRICE_CONTRACT, NEPTUNE_USDT_CW20_CONTRACT, NeptuneQueryTransformer, NeptuneService, NodeInfoRestResponse, Oracle, OracleModuleParams, OraclePriceStreamCallback, OraclePricesByMarketsStreamCallback, OracleType$1 as OracleType, OracleTypeMap, OrderHashManager, OrderMask, OrderMaskMap, OrderType, OrderTypeMap, Orderbook, OrderbookWithSequence, PagePagination, Pagination, PaginationOption, Paging, Params$1 as Params, PeggyDepositTx, PeggyModuleParams, PeggyMsgs, PeggyWithdrawalTx, PermissionActionMap, PermissionActorRoles, PermissionAddressRoles, PermissionAddressVoucher, PermissionGenesisState, PermissionNamespace, PermissionParams, PermissionPolicyManagerCapability, PermissionPolicyStatus, PermissionRole, PermissionRoleActors, PermissionRoleIDs, PermissionRoleManager, PermissionVoucher, PermissionsModuleParams, PerpetualMarket, PerpetualMarketFunding, PerpetualMarketInfo, PnlLeaderboard, PointsLatestResponse, PointsMultiplier, PointsStatsRow, Pool, PortfolioSubaccountBalanceV2, Position, PositionDelta, PositionV2, PositionsWithUPNL, PriceLevel, PriceResponse, PrivateKey, Proposal, ProposalDecomposer, ProposalDeposit, ProposalStatusMap, PubKey, PublicKey, QuantityAndFees, QueryAllRounds, QueryAllRoutes, QueryCampaignResponse, QueryGetAllLendingRates, QueryGetCampaigns, QueryGetPrices, QueryInjName, QueryInjectiveAddress, QueryInputQuantity, QueryOutputQuantity, QueryQuantityAndFeesResponse, QueryResolverAddress, QueryRoundResponse, QueryRoute, QueryRouteResponse, QueryTradingStrategyContractAllStrategies, QueryTradingStrategyContractConfig, QueryTradingStrategyContractTotalStrategies, QueryTradingStrategyContractUserStrategies, ReDelegation, Redemption, RedemptionStatus, ReferralDetails, RestApiResponse, RestAuthInfo, RestSignerInfo, RestTx, RestTxBody, RestTxLog, RewardDistribution, RewardsDistribution, RewardsEligibility, Route, SIGN_AMINO, SIGN_DIRECT, SIGN_EIP712, SIGN_EIP712_V2, SendEnabled, SignDoc, SignTypedDataVersionV4, Signature, SignerDetails, SimulationResponse, SpotAverageEntriesStreamCallback, SpotAverageEntry, SpotLimitOrder, SpotLimitOrderParams, SpotMarket, SpotOrderCancelParams, SpotOrderHistory, SpotOrderHistoryStreamCallback, SpotOrderbookUpdateStreamCallback, SpotOrderbookV2StreamCallback, SpotOrdersStreamCallback, SpotTrade, SpotTradesStreamCallback, StakingModuleParams, StakingMsgs, StakingRewardByAccountStreamCallback, StrategyType, StreamBidsResponse, StreamOperation, StreamStatusResponse, SubaccountBalance, SubaccountDeposit, SubaccountDepositV2, SubaccountPortfolio, SubaccountTransfer, SwapQueryTransformer, TallyResult, TokenFactoryModuleParams, TokenFactoryModuleState, TokenFactoryMsgs, TokenFactoryStatic, TokenInfo, TokenMeta, TokenPair, TokenPrice, TokenSource, TokenStatic, TokenStaticFactory, TokenType, TokenVerification, TotalScore, TotalScores, TotalScoresHistory, TotalSupply, TradeDirection, TradeExecutionSide, TradeExecutionType, TradeRewardCampaign, TradingReward, TradingRewardCampaignBoostInfo, TradingRewardCampaignInfo, TradingStrategy, TrailingArithmetic, TrailingArithmeticLP, Transaction, TransactionFromExplorerApiResponse, TransactionsStreamCallback, TransferType, TransfersStreamCallback, TxClient, TxClientBroadcastOptions, TxClientBroadcastResponse, TxClientMode, TxClientSimulateResponse, TxConcreteApi, TxFeesEipBaseFee, TxFeesModuleStateParams, TxGrpcApi, TxInfo, TxInfoResponse, TxMessage, TxRaw, TxResponse, TxRestApi, TxResult, TxResultResponse, TxSearchResult, TxSearchResultParams, TypedDataField, TypedDataUtilsHashStruct, TypedDataUtilsSanitizeData, TypedMessageV4, UnBondingDelegation, Validator, ValidatorCommission, ValidatorDescription, ValidatorRewards, ValidatorSlashingEvent, ValidatorUptime, ValidatorUptimeFromExplorerApiResponse, ValidatorUptimeStatus, VaultHolderSubscriptionStreamCallback, VaultStreamCallback, VolLeaderboard, Vote, VoteOption$1 as VoteOption, VoteOptionMap, WasmCode, WasmCodeExplorerApiResponse, WasmContractQueryResponse, WasmMsgs, WeightedVoteOption, accountEthParser, addHexPrefix, amountToCosmosSdkDecAmount, base64ToUint8Array, base64ToUtf8, binaryToBase64, concatUint8Arrays, cosmosSdkDecToBigNumber, createAny, createAnyMessage, createAuthInfo, createBody, createFee, createNonCriticalExtensionFromObject, createSignDoc, createSignDocFromTransaction, createSignerInfo, createSigners, createTransaction, createTransactionAndCosmosSignDoc, createTransactionAndCosmosSignDocForAddressAndMsg, createTransactionForAddressAndMsg, createTransactionFromMsg, createTransactionWithSigners, createTxRawEIP712, createTxRawFromSigResponse, createWeb3Extension, decompressPubKey, denomAmountFromChainDenomAmount, denomAmountFromChainDenomAmountToFixed, denomAmountFromGrpcChainDenomAmount, denomAmountToChainDenomAmount, denomAmountToChainDenomAmountToFixed, denomAmountToGrpcChainDenomAmount, derivativeMarginFromChainMargin, derivativeMarginFromChainMarginToFixed, derivativeMarginToChainMargin, derivativeMarginToChainMarginToFixed, derivativePriceFromChainPrice, derivativePriceFromChainPriceToFixed, derivativePriceToChainPrice, derivativePriceToChainPriceToFixed, derivativeQuantityFromChainQuantity, derivativeQuantityFromChainQuantityToFixed, derivativeQuantityToChainQuantity, derivativeQuantityToChainQuantityToFixed, domainHash, errorToErrorMessage, fetchAllWithPagination, formatAmountToAllowableAmount, formatAmountToAllowableDecimals, formatNumberToAllowableDecimals, formatNumberToAllowableTensMultiplier, formatPriceToAllowableDecimals, formatPriceToAllowablePrice, fromBase64, fromUtf8, generateArbitrarySignDoc, getAddressFromInjectiveAddress, getAminoStdSignDoc, getChecksumAddress, getDefaultEip712Types, getDefaultEip712TypesV2, getDefaultSubaccountId, getDerivativeMarketDecimals, getDerivativeMarketTensMultiplier, getEip712Domain, getEip712DomainV2, getEip712Fee, getEip712FeeV2, getEip712TypedData, getEip712TypedDataV2, getEipTxContext, getEipTxDetails, getErrorMessage, getEthereumAddress, getEthereumSignerAddress, getExactDecimalsFromNumber, getGasPriceBasedOnMessage, getGenericAuthorizationFromMessageType, getGrpcWebTransport, getInjectiveAddress, getInjectiveAddressFromSubaccountId, getInjectiveSignerAddress, getObjectEip712PropertyType, getPublicKey, getSignificantDecimalsFromNumber, getSpotMarketDecimals, getSpotMarketTensMultiplier, getSubaccountId, getTensMultiplier, getTransactionPartsFromTxRaw, getTxRawFromTxRawOrDirectSignResponse, getTypesIncludingFeePayer, grpcCoinToUiCoin, grpcContractInfo, grpcPaginationToPagination, grpcPagingToPaging, grpcPagingToPagingV2, hashToHex, hexToBase64, hexToBuff, hexToNumber, hexToUint8Array, isBrowser, isCw20ContractAddress, isJsonString, isNode, isNumber, isReactNative, isServerSide, isTxNotFoundError, makeTimeoutTimestamp, makeTimeoutTimestampInNs, messageHash, msgsOrMsgExecMsgs, numberToCosmosSdkDecString, numberTypeToReflectionNumberType, objectKeysToEip712Types, objectToJson, ofacWallets, pageRequestToGrpcPageRequestV2, paginationRequestFromPagination, paginationUint8ArrayToString, parseCoins, privateKeyHashToPublicKey, privateKeyHashToPublicKeyBase64, privateKeyToPublicKey, privateKeyToPublicKeyBase64, protoObjectToJson, protoTypeToAminoType, protobufTimestampToDate, protobufTimestampToUnixMs, protobufTimestampToUnixSeconds, publicKeyToAddress, recoverTypedSignaturePubKey, removeHexPrefix, ripemd160, sanitizeTypedData, sha256, sortObjectByKeys, sortObjectByKeysWithReduce, spotPriceFromChainPrice, spotPriceFromChainPriceToFixed, spotPriceToChainPrice, spotPriceToChainPriceToFixed, spotQuantityFromChainQuantity, spotQuantityFromChainQuantityToFixed, spotQuantityToChainQuantity, spotQuantityToChainQuantityToFixed, stringToUint8Array, stringTypeToReflectionStringType, toBase64, toUtf8, uint8ArrayToBase64, uint8ArrayToHex, uint8ArrayToString, waitTxBroadcasted };
@@ -1,4 +1,4 @@
1
- import { ar as uint8ArrayToHex, ht as PublicKey, ir as uint8ArrayToBase64, lt as getPublicKey, qn as base64ToUint8Array, v as PrivateKey } from "./tx-DAtz3JQs.js";
1
+ import { ar as uint8ArrayToBase64, ht as PublicKey, lt as getPublicKey, or as uint8ArrayToHex, qn as base64ToUint8Array, v as PrivateKey } from "./tx-pQPAzEHk.js";
2
2
  import { t as _defineProperty } from "./defineProperty-Ceg7SnGJ.js";
3
3
  import * as CosmosBaseV1Beta1CoinPb from "@injectivelabs/core-proto-ts-v2/generated/cosmos/base/v1beta1/coin_pb";
4
4
  import * as InjectiveTypesV1Beta1AccountPb from "@injectivelabs/core-proto-ts-v2/generated/injective/types/v1beta1/account_pb";
@@ -1,5 +1,5 @@
1
- import "./tx-DAtz3JQs.js";
1
+ import "./tx-pQPAzEHk.js";
2
2
  import "./defineProperty-Ceg7SnGJ.js";
3
- import { a as accountParser, i as StargateClient, n as EthSecp256k1Wallet, o as MsgTransferCosmjs, r as SigningStargateClient, t as DirectEthSecp256k1Wallet } from "./DirectEthSecp256k1Wallet-DomuBAIj.js";
3
+ import { a as accountParser, i as StargateClient, n as EthSecp256k1Wallet, o as MsgTransferCosmjs, r as SigningStargateClient, t as DirectEthSecp256k1Wallet } from "./DirectEthSecp256k1Wallet-E7liGwDR.js";
4
4
 
5
5
  export { DirectEthSecp256k1Wallet as InjectiveDirectEthSecp256k1Wallet, EthSecp256k1Wallet as InjectiveEthSecp256k1Wallet, SigningStargateClient as InjectiveSigningStargateClient, StargateClient as InjectiveStargateClient, MsgTransferCosmjs, accountParser as injectiveAccountParser };
@@ -1,5 +1,5 @@
1
- import "./tx-DAtz3JQs.js";
1
+ import "./tx-pQPAzEHk.js";
2
2
  import "./defineProperty-Ceg7SnGJ.js";
3
- import { a as accountParser, i as StargateClient, n as EthSecp256k1Wallet, o as MsgTransferCosmjs, r as SigningStargateClient, t as DirectEthSecp256k1Wallet } from "./DirectEthSecp256k1Wallet-DomuBAIj.js";
3
+ import { a as accountParser, i as StargateClient, n as EthSecp256k1Wallet, o as MsgTransferCosmjs, r as SigningStargateClient, t as DirectEthSecp256k1Wallet } from "./DirectEthSecp256k1Wallet-E7liGwDR.js";
4
4
 
5
5
  export { DirectEthSecp256k1Wallet as InjectiveDirectEthSecp256k1Wallet, EthSecp256k1Wallet as InjectiveEthSecp256k1Wallet, SigningStargateClient as InjectiveSigningStargateClient, StargateClient as InjectiveStargateClient, MsgTransferCosmjs, accountParser as injectiveAccountParser };
@@ -42894,6 +42894,13 @@ declare function hexToBuff(hex: string): Uint8Array;
42894
42894
  * @returns Base64 encoded string
42895
42895
  */
42896
42896
  declare function hexToBase64(hex: string): string;
42897
+ /**
42898
+ * Convert a base64 string to UTF-8 string
42899
+ * @param base64String - Base64 encoded string
42900
+ * @returns Decoded UTF-8 string
42901
+ * @throws Error if base64 string is invalid
42902
+ */
42903
+ declare function base64ToUtf8(base64String: string): string;
42897
42904
  /**
42898
42905
  * Convert a string or Uint8Array to Uint8Array using UTF-8 encoding
42899
42906
  * If input is already Uint8Array, returns it as-is
@@ -43062,4 +43069,4 @@ declare class TokenStaticFactory {
43062
43069
  //#region src/core/accounts/AccountParserNoCosmjs.d.ts
43063
43070
  declare const accountEthParser: <T>(ethAccount: any, pubKeyTypeUrl?: string) => T;
43064
43071
  //#endregion
43065
- export { AbacusGrpcApi, AbsoluteTxPosition, AccessType, AccessTypeCode, Account, AccountAuctionV2, AccountPortfolio, AccountPortfolioBalances, AccountPortfolioStreamCallback, AccountPortfolioV2, AccountResponse, AccountStats, AccountVolume, AccountVolumes, AccountsResponse, Address, AllChronosDerivativeMarketSummary, AllChronosMarketHistory, AllChronosSpotMarketSummary, AllDerivativeMarketSummaryResponse, AllSpotMarketSummaryResponse, type AminoSignResponse, AssetInfo, AssetInfoWithPrice, AtomicSwap, Auction, AuctionBid, AuctionCoin, AuctionCoinPrices, AuctionContract, AuctionCurrentBasket, AuctionEventAuctionResult, AuctionEventAuctionStart, AuctionEventBid, AuctionLastAuctionResult, AuctionModuleParams, AuctionModuleState, AuctionModuleStateParams, AuctionModuleStateResponse, AuctionMsgs, AuctionParams, AuctionV2, AuctionsStats, AuthBaseAccount, AuthModuleParams, AuthorityMetadata, AuthzMsgs, BECH32_ADDR_ACC_PREFIX, BECH32_ADDR_CONS_PREFIX, BECH32_ADDR_VAL_PREFIX, BECH32_PUBKEY_ACC_PREFIX, BECH32_PUBKEY_CONS_PREFIX, BECH32_PUBKEY_VAL_PREFIX, BalanceStreamCallback, BalancesResponse, BankModuleParams, BankMsgSendTransaction, BankMsgs, BankTransfer, BankTransferFromExplorerApiResponse, BaseAccount, BaseAccountRestResponse, BaseDerivativeMarket, BatchCancelDerivativeOrdersAuthz, BatchCancelSpotOrdersAuthz, BatchCreateDerivativeLimitOrdersAuthz, BatchCreateSpotLimitOrdersAuthz, BatchDerivativeOrderCancelParams, BatchSpotOrderCancelParams, BidsStreamCallback, BinaryOptionsMarket, Block, BlockFromExplorerApiResponse, BlockLatestRestResponse, BlockWithTxs, BlocksStreamCallback, BlocksWithTxsStreamCallback, BondStatus, BroadcastMode, BroadcastModeKeplr, CW20BalanceExplorerApiResponse, CW20Message, Campaign, CampaignRewardPool, CampaignUser, CampaignV2, CancelDerivativeOrderAuthz, CancelSpotOrderAuthz, ChainDenomDecimal, ChainDenomMinNotional, ChainDerivativePosition, ChainGrpcAuctionApi, ChainGrpcAuctionTransformer, ChainGrpcAuthApi, ChainGrpcAuthTransformer, ChainGrpcAuthZApi, ChainGrpcAuthZTransformer, ChainGrpcBankApi, ChainGrpcBankTransformer, ChainGrpcCommonTransformer, ChainGrpcDistributionApi, ChainGrpcDistributionTransformer, ChainGrpcErc20Api, ChainGrpcErc20Transformer, ChainGrpcEvmApi, ChainGrpcEvmTransformer, ChainGrpcExchangeApi, ChainGrpcExchangeTransformer, ChainGrpcGovApi, ChainGrpcGovTransformer, ChainGrpcIbcApi, ChainGrpcInsuranceFundApi, ChainGrpcInsuranceFundTransformer, ChainGrpcMintApi, ChainGrpcMintTransformer, ChainGrpcOracleApi, ChainGrpcPeggyApi, ChainGrpcPeggyTransformer, ChainGrpcPermissionsApi, ChainGrpcPermissionsTransformer, ChainGrpcStakingApi, ChainGrpcStakingTransformer, ChainGrpcTendermintApi, ChainGrpcTokenFactoryApi, ChainGrpcTokenFactoryTransformer, ChainGrpcTxFeesApi, ChainGrpcTxFeesTransformer, ChainGrpcWasmApi, ChainGrpcWasmTransformer, ChainGrpcWasmXApi, ChainModule, ChainPosition, ChainRestAuthApi, ChainRestBankApi, ChainRestTendermintApi, ChainRestWasmApi, ChronosDerivativeMarketSummary, ChronosDerivativeMarketSummaryResponse, ChronosLeaderboard, ChronosLeaderboardEntry, ChronosLeaderboardResponse, ChronosMarketHistoryResponse, ChronosSpotMarketSummary, ChronosSpotMarketSummaryResponse, CodeInfoResponse, Coin$1 as Coin, Contract, ContractAccountBalance, ContractAccountsBalanceWithPagination, ContractCodeHistoryEntry, ContractCodeHistoryOperationType, ContractCodeHistoryOperationTypeMap, ContractExecutionAuthorization as ContractExecutionAuthz, ContractExecutionCompatAuthorization as ContractExecutionCompatAuthz, ContractExplorerApiResponse, ContractInfo, ContractStateWithPagination, ContractTransaction, ContractTransactionExplorerApiResponse, ContractTransactionWithMessages, CosmWasmChecksum, CosmWasmPermission, CosmosAccountRestResponse, tx_pb_d_exports as CosmosTxV1Beta1TxPb, CreateDerivativeLimitOrderAuthz, CreateDerivativeMarketOrderAuthz, CreateSpotLimitOrderAuthz, CreateSpotMarketOrderAuthz, CreateTransactionArgs, CreateTransactionResult, CreateTransactionWithSignersArgs, DEFAULT_DERIVATION_PATH, Delegation, DenomBalance, DenomHolders, DenomOwnersResponse, DepositProposalParams, DerivativeLimitOrder, DerivativeLimitOrderParams, DerivativeMarket, DerivativeMarketStreamCallback, DerivativeMarketWithoutBinaryOptions, DerivativeOrderCancelParams, DerivativeOrderHistory, DerivativeOrderHistoryStreamCallback, DerivativeOrderbookUpdateStreamCallback, DerivativeOrderbookV2StreamCallback, DerivativeOrdersStreamCallback, DerivativePositionsStreamCallback, DerivativePositionsV2StreamCallback, DerivativeTrade, DerivativeTradesStreamCallback, type DirectSignResponse, DistributionModuleParams, DistributionMsgs, OLPGrpcApi as DmmGrpcApi, OLPGrpcApi, DmmPagination, Eip712ConvertFeeArgs, Eip712ConvertTxArgs, EligibleAddress, EligibleAddresses, EpochConfigV2, EpochScore, EpochScores, EpochScoresHistory, EpochV2, EpochsV2, EthAccount, EventLog, EventLogEvent, EvmBlobConfig, EvmBlobScheduleConfig, EvmChainConfig, EvmLog, EvmParams, ExchangeModuleParams, ExchangeMsgs, ExchangePagination, ExchangeParams, ExchangeV1Msgs, ExchangeV2Msgs, ExecArgCW20AdapterRedeemAndTransfer, ExecArgCW20Send, ExecArgCW20Transfer, ExecArgCreateCampaign, ExecArgCreatePerpGridStrategy, ExecArgCreateRound, ExecArgCreateSpotGridStrategy, ExecArgDepositTokens, ExecArgFundCampaign, ExecArgIncreaseAllowance, ExecArgInitiateTransfer, ExecArgNeptuneDeposit, ExecArgNeptuneWithdraw, ExecArgRemoveGridStrategy, ExecArgSubmitVaa, ExecArgSwapExactOutput, ExecArgSwapMinOutput, ExecArgUpdateGridConfig, ExecArgs, ExecPrivilegedArgOffChainVaultRedeem, ExecPrivilegedArgOffChainVaultSubscribe, ExecPrivilegedArgVaultRedeem, ExecPrivilegedArgVaultSubscribe, ExecPrivilegedArgs, ExitConfig, ExitType, ExpiryFuturesMarket, ExpiryFuturesMarketInfo, ExplorerApiResponse, ExplorerApiResponseWithPagination, ExplorerBlockApiResponse, ExplorerBlockWithTxs, ExplorerCW20BalanceWithToken, ExplorerStats, ExplorerStreamTransformer, ExplorerTransaction, ExplorerTransactionApiResponse, ExplorerTransactionV2, ExplorerTxsV2Response, ExplorerValidator, ExplorerValidatorDescription, ExplorerValidatorUptime, FactoryDenomWithMetadata, FeeDiscountAccountInfo, FeeDiscountSchedule, FeeDiscountTierInfo, FeeDiscountTierTTL, FeegrantMsgs, FundingPayment, FundingRate, GasFee, GenericAuthorization, GenericAuthorization$1 as GenericAuthz, GoogleProtoBufAny, GovModuleStateParams, GovMsgs, Grant$1 as Grant, GrantAuthorization$1 as GrantAuthorization, GrantAuthorizationType, GrantAuthorizationWithDecodedAuthorization, GrantWithDecodedAuthorization, GridStrategyStreamResponse, GridStrategyType, GrpcAbsoluteTxPosition, GrpcAccountAuctionV2, GrpcAccountPortfolio, GrpcAccountPortfolioV2, GrpcAccountVolume, GrpcAtomicSwap, GrpcAuction, GrpcAuctionBid, GrpcAuctionCoin, GrpcAuctionCoinPrices, GrpcAuctionContract, GrpcAuctionEventAuctionResult, GrpcAuctionEventAuctionStart, GrpcAuctionEventBid, GrpcAuctionLastAuctionResult, GrpcAuctionParams, GrpcAuctionV2, GrpcBankMsgSendMessage, GrpcBankParams, GrpcBinaryOptionsMarketInfo, GrpcCampaign, GrpcCampaignRewardPool, GrpcCampaignUser, GrpcCampaignV2, GrpcChainDerivativeMarket, GrpcChainDerivativePosition, GrpcChainFullDerivativeMarket, GrpcChainFullSpotMarket, GrpcChainPosition, GrpcChainSpotMarket, GrpcCodeInfoResponse, GrpcCoin, GrpcContractCodeHistoryEntry, GrpcContractInfo, GrpcDecCoin, GrpcDelegation, GrpcDelegationDelegatorReward, GrpcDelegationResponse, GrpcDenomDecimals, GrpcDenomHolders, GrpcDenomMinNotional, GrpcDerivativeLimitOrder, GrpcDerivativeMarketInfo, GrpcDerivativeOrderHistory, GrpcDerivativePosition, GrpcDerivativePositionV2, GrpcDerivativeTrade, GrpcDistributionParams, GrpcDmmPagination, GrpcEligibleAddress, GrpcEligibleAddresses, GrpcEpochConfigV2, GrpcEpochScore, GrpcEpochScores, GrpcEpochScoresHistory, GrpcEpochV2, GrpcEpochsV2, GrpcEvmBlobConfig, GrpcEvmBlobScheduleConfig, GrpcEvmChainConfig, GrpcEvmLog, GrpcEvmParams, GrpcExchangeParams, GrpcExpiryFuturesMarketInfo, GrpcExplorerStats, GrpcFeeDiscountAccountInfo, GrpcFeeDiscountSchedule, GrpcFeeDiscountTierInfo, GrpcFeeDiscountTierTTL, GrpcFundingPayment, GrpcFundingRate, GrpcGasFee, GrpcGovernanceDepositParams, GrpcGovernanceTallyParams, GrpcGovernanceVotingParams, GrpcGuild, GrpcGuildMember, GrpcHistoricalBalance, GrpcHistoricalRPNL, GrpcHistoricalVolumes, GrpcIBCTransferTx, GrpcIndexerAuctionBid, GrpcIndexerInsuranceFund, GrpcIndexerRedemptionSchedule, GrpcIndexerValidatorDescription, GrpcInsuranceFund, GrpcInsuranceParams, GrpcLeaderboardRow, GrpcMarketReward, GrpcMarketRewards, GrpcMarketStatus, GrpcMarketStatusMap, GrpcMegaVaultApr, GrpcMegaVaultAprStats, GrpcMegaVaultHistoricalPnL, GrpcMegaVaultHistoricalTVL, GrpcMegaVaultIncentives, GrpcMegaVaultMaxDrawdown, GrpcMegaVaultOperator, GrpcMegaVaultOperatorRedemptionBucket, GrpcMegaVaultPnl, GrpcMegaVaultPnlStats, GrpcMegaVaultRedemption, GrpcMegaVaultSubscription, GrpcMegaVaultTargetApr, GrpcMegaVaultUnrealizedPnl, GrpcMegaVaultUserStats, GrpcMegaVaultVaultStats, GrpcMegaVaultVolatility, GrpcMegaVaultVolatilityStats, GrpcMintParams, GrpcMitoChanges, GrpcMitoClaimReference, GrpcMitoDenomBalance, GrpcMitoHolders, GrpcMitoIDO, GrpcMitoIDOClaimedCoins, GrpcMitoIDOProgress, GrpcMitoIDOSubscriber, GrpcMitoIDOSubscription, GrpcMitoIDOSubscriptionActivity, GrpcMitoLeaderboardEntry, GrpcMitoLeaderboardEpoch, GrpcMitoMission, GrpcMitoMissionLeaderboardEntry, GrpcMitoPagination, GrpcMitoPriceSnapshot, GrpcMitoStakingGauge, GrpcMitoStakingPool, GrpcMitoStakingStakingActivity, GrpcMitoStakingStakingReward, GrpcMitoSubaccountBalance, GrpcMitoSubscription, GrpcMitoTokenInfo, GrpcMitoVault, GrpcMitoWhitelistAccount, GrpcOracle, GrpcOracleParams, GrpcOrderInfo, GrpcOrderType, GrpcOrderTypeMap, GrpcParams, GrpcPeggyDepositTx, GrpcPeggyParams, GrpcPeggyWithdrawalTx, GrpcPermissionActorRoles, GrpcPermissionAddressVoucher, GrpcPermissionNamespace, GrpcPermissionPolicyStatus, GrpcPermissionPolicyStatusManagerCapability, GrpcPermissionRole, GrpcPermissionRoleActors, GrpcPermissionRoleIDs, GrpcPermissionRoleManager, GrpcPermissionsNamespace, GrpcPermissionsParams, GrpcPerpetualMarketFunding, GrpcPerpetualMarketInfo, GrpcPnlLeaderboard, GrpcPointsMultiplier, GrpcPool, GrpcPortfolioSubaccountBalanceV2, GrpcPositionDelta, GrpcPositionV2, GrpcPositionsWithUPNL, GrpcPriceLevel, GrpcProposal, GrpcProposalDeposit, type ProposalStatus as GrpcProposalStatus, ProposalStatus, GrpcReDelegation, GrpcReDelegationEntryResponse, GrpcReDelegationResponse, GrpcRedemptionSchedule, GrpcRewardDistribution, GrpcRewardsDistribution, GrpcRewardsEligibility, GrpcSpotAverageEntry, GrpcSpotLimitOrder, GrpcSpotMarket, GrpcSpotMarketInfo, GrpcSpotMarketOrder, GrpcSpotOrder, GrpcSpotOrderHistory, GrpcSpotTrade, GrpcStakingParams, GrpcSubaccountBalance, GrpcSubaccountBalanceTransfer, GrpcSubaccountDeposit, GrpcSubaccountDepositV2, GrpcSubaccountPortfolio, GrpcSupply, GrpcTallyResult, GrpcTokenMeta, GrpcTokenPair, GrpcTotalScore, GrpcTotalScores, GrpcTotalScoresHistory, GrpcTradeRewardCampaign, GrpcTradingReward, GrpcTradingRewardCampaignBoostInfo, GrpcTradingRewardCampaignInfo, GrpcTxFeesEipBaseFee, GrpcTxFeesParams, GrpcUnbondingDelegation, GrpcUnbondingDelegationEntry, GrpcValidator, GrpcValidatorCommission, GrpcValidatorCommissionRates, GrpcValidatorDescription, GrpcValidatorSlashingEvent, GrpcValidatorUptime, GrpcVolLeaderboard, GrpcVote, GrpcWebFetchTransport, Guild, GuildCampaignSummary, GuildMember, HistoricalBalance, HistoricalRPNL, HistoricalStakingStreamCallback, HistoricalVolumes, Holder, IBCTransferTx, IbcMsgs, IncentivesCampaign, IncentivesQueryTransformer, IncentivesRound, IndexerAccountPortfolioStreamTransformer, IndexerAccountStreamTransformer, IndexerArchiverStreamTransformer, IndexerAuctionBid, IndexerAuctionStreamTransformer, IndexerCampaignTransformer, IndexerDerivativeStreamTransformer, IndexerGrpcAccountApi, IndexerGrpcAccountPortfolioApi, IndexerGrpcAccountPortfolioStream, IndexerGrpcAccountPortfolioTransformer, IndexerGrpcAccountStream, IndexerGrpcAccountTransformer, IndexerGrpcArchiverApi, IndexerGrpcArchiverStream, IndexerGrpcArchiverTransformer, IndexerGrpcAuctionApi, IndexerGrpcAuctionStream, IndexerGrpcAuctionTransformer, IndexerGrpcCampaignApi, IndexerGrpcDerivativeTransformer, IndexerGrpcDerivativesApi, IndexerGrpcDerivativesStream, IndexerGrpcExplorerApi, IndexerGrpcExplorerStream, IndexerGrpcExplorerTransformer, IndexerGrpcInsuranceFundApi, IndexerGrpcInsuranceFundTransformer, IndexerGrpcMegaVaultApi, IndexerGrpcMegaVaultTransformer, IndexerGrpcMetaApi, IndexerGrpcMitoApi, IndexerGrpcMitoStream, IndexerGrpcMitoStreamTransformer, IndexerGrpcMitoTransformer, IndexerGrpcOracleApi, IndexerGrpcOracleStream, IndexerGrpcOracleTransformer, IndexerGrpcReferralApi, IndexerGrpcReferralTransformer, IndexerGrpcSpotApi, IndexerGrpcSpotStream, IndexerGrpcSpotTransformer, IndexerGrpcTradingApi, IndexerGrpcTradingStream, IndexerGrpcTransactionApi, IndexerGrpcWeb3GwApi, IndexerInsuranceFund, IndexerModule, IndexerOracleStreamTransformer, IndexerRestDerivativesChronosApi, IndexerRestExplorerApi, IndexerRestExplorerTransformer, IndexerRestLeaderboardChronosApi, IndexerRestMarketChronosApi, IndexerRestSpotChronosApi, IndexerSpotStreamTransformer, IndexerStreamTransaction, IndexerTokenMeta, InjNameServiceQueryTransformer, InsuranceFund, InsuranceFundCreateParams, InsuranceModuleParams, InsuranceMsgs, IsOptedOutOfRewards, LeaderboardRow, LendingRateResponse, ListTradingStrategiesResponse, MapOfTypedDataField, Market, MarketReward, MarketRewards, MarketType, MarketingInfo, MarketsStreamCallback, MegaVault, MegaVaultApr, MegaVaultAprStats, MegaVaultHistoricalPnL, MegaVaultHistoricalTVL, MegaVaultIncentives, MegaVaultMaxDrawdown, MegaVaultOperator, MegaVaultOperatorRedemptionBucket, MegaVaultPnl, MegaVaultPnlStats, MegaVaultRedemption, MegaVaultRedemptionStatus, MegaVaultStats, MegaVaultSubscription, MegaVaultSubscriptionStatus, MegaVaultTargetApr, MegaVaultUnrealizedPnl, MegaVaultUser, MegaVaultUserStats, MegaVaultVolatility, MegaVaultVolatilityStats, Message, Metadata$1 as Metadata, MinMaxRewards, MinModuleParams, MitoChanges, MitoClaimReference, MitoDenomBalance, MitoGauge, MitoGaugeStatus, MitoHolders, MitoIDO, MitoIDOClaimedCoins, MitoIDOInitParams, MitoIDOProgress, MitoIDOSubscriber, MitoIDOSubscription, MitoIDOSubscriptionActivity, MitoLeaderboard, MitoLeaderboardEntry, MitoLeaderboardEpoch, MitoMission, MitoMissionLeaderboard, MitoMissionLeaderboardEntry, MitoPagination, MitoPortfolio, MitoPriceSnapshot, MitoStakeToSubscription, MitoStakingActivity, MitoStakingPool, MitoStakingReward, MitoSubaccountBalance, MitoSubscription, MitoTokenInfo, MitoTransfer, MitoVault, MitoVestingConfig, MitoVestingConfigMap, MitoWhitelistAccount, MsgAdminUpdateBinaryOptionsMarket, MsgArg, MsgAuthorizeStakeGrants, MsgExec as MsgAuthzExec, MsgBatchCancelBinaryOptionsOrders, MsgBatchCancelDerivativeOrders, MsgBatchCancelSpotOrders, MsgBatchUpdateOrders, MsgBeginRedelegate, MsgBid, MsgBroadcasterWithPk, MsgBurn, MsgCancelBinaryOptionsOrder, MsgCancelDerivativeOrder, MsgCancelPostOnlyModeV2, MsgCancelSpotOrder, MsgCancelUnbondingDelegation, MsgChangeAdmin, MsgClaimVoucher, MsgCreateBinaryOptionsLimitOrder, MsgCreateBinaryOptionsMarketOrder, MsgCreateDenom, MsgCreateDerivativeLimitOrder, MsgCreateDerivativeMarketOrder, MsgCreateInsuranceFund, MsgCreateNamespace, MsgCreateSpotLimitOrder, MsgCreateSpotMarketOrder, MsgCreateValidator, MsgDecoder, MsgDelegate, MsgDeposit, MsgEditValidator, MsgExecuteContract, MsgExecuteContractCompat, MsgExternalTransfer, MsgFundCommunityPool, MsgDeposit$1 as MsgGovDeposit, MsgGrant, MsgGrantAllowance, MsgGrantWithAuthorization, MsgIncreasePositionMargin, MsgInstantBinaryOptionsMarketLaunch, MsgInstantSpotMarketLaunch, MsgInstantiateContract, MsgLiquidatePosition, MsgMigrateContract, MsgMint, MsgMultiSend, MsgPrivilegedExecuteContract, MsgReclaimLockedFunds, MsgRequestRedemption, MsgRevoke, MsgRevokeAllowance, MsgRewardsOptOut, MsgSend, MsgSendToEth, MsgSetDelegationTransferReceivers, MsgSetDenomMetadata, MsgSignData, MsgStoreCode, MsgSubmitGenericProposal, MsgSubmitProposal, MsgSubmitProposalExpiryFuturesMarketLaunch, MsgSubmitProposalPerpetualMarketLaunch, MsgSubmitProposalPerpetualMarketLaunchV2, MsgSubmitProposalSpotMarketLaunch, MsgSubmitProposalSpotMarketParamUpdate, MsgSubmitTextProposal, MsgTransfer, MsgTransferDelegation, MsgUndelegate, MsgUnderwrite, MsgUpdateActorRoles, MsgUpdateAdmin, MsgUpdateDerivativeMarketV2, MsgUpdateNamespace, MsgUpdateParams, MsgUpdateSpotMarketV2, MsgVote, MsgWithdraw, MsgWithdrawDelegatorReward, MsgWithdrawValidatorCommission, Msgs, NEPTUNE_PRICE_CONTRACT, NEPTUNE_USDT_CW20_CONTRACT, NeptuneQueryTransformer, NeptuneService, NodeInfoRestResponse, Oracle, OracleModuleParams, OraclePriceStreamCallback, OraclePricesByMarketsStreamCallback, OracleType$1 as OracleType, OracleTypeMap, OrderHashManager, OrderMask, OrderMaskMap, OrderType, OrderTypeMap, Orderbook, OrderbookWithSequence, PagePagination, Pagination, PaginationOption, Paging, Params$1 as Params, PeggyDepositTx, PeggyModuleParams, PeggyMsgs, PeggyWithdrawalTx, PermissionActionMap, PermissionActorRoles, PermissionAddressRoles, PermissionAddressVoucher, PermissionGenesisState, PermissionNamespace, PermissionParams, PermissionPolicyManagerCapability, PermissionPolicyStatus, PermissionRole, PermissionRoleActors, PermissionRoleIDs, PermissionRoleManager, PermissionVoucher, PermissionsModuleParams, PerpetualMarket, PerpetualMarketFunding, PerpetualMarketInfo, PnlLeaderboard, PointsLatestResponse, PointsMultiplier, PointsStatsRow, Pool, PortfolioSubaccountBalanceV2, Position, PositionDelta, PositionV2, PositionsWithUPNL, PriceLevel, PriceResponse, PrivateKey, Proposal, ProposalDecomposer, ProposalDeposit, ProposalStatusMap, PubKey, PublicKey, QuantityAndFees, QueryAllRounds, QueryAllRoutes, QueryCampaignResponse, QueryGetAllLendingRates, QueryGetCampaigns, QueryGetPrices, QueryInjName, QueryInjectiveAddress, QueryInputQuantity, QueryOutputQuantity, QueryQuantityAndFeesResponse, QueryResolverAddress, QueryRoundResponse, QueryRoute, QueryRouteResponse, QueryTradingStrategyContractAllStrategies, QueryTradingStrategyContractConfig, QueryTradingStrategyContractTotalStrategies, QueryTradingStrategyContractUserStrategies, ReDelegation, Redemption, RedemptionStatus, ReferralDetails, RestApiResponse, RestAuthInfo, RestSignerInfo, RestTx, RestTxBody, RestTxLog, RewardDistribution, RewardsDistribution, RewardsEligibility, Route, SIGN_AMINO, SIGN_DIRECT, SIGN_EIP712, SIGN_EIP712_V2, SendEnabled, SignDoc, SignTypedDataVersionV4, Signature, SignerDetails, SimulationResponse, SpotAverageEntriesStreamCallback, SpotAverageEntry, SpotLimitOrder, SpotLimitOrderParams, SpotMarket, SpotOrderCancelParams, SpotOrderHistory, SpotOrderHistoryStreamCallback, SpotOrderbookUpdateStreamCallback, SpotOrderbookV2StreamCallback, SpotOrdersStreamCallback, SpotTrade, SpotTradesStreamCallback, StakingModuleParams, StakingMsgs, StakingRewardByAccountStreamCallback, StrategyType, StreamBidsResponse, StreamOperation, StreamStatusResponse, SubaccountBalance, SubaccountDeposit, SubaccountDepositV2, SubaccountPortfolio, SubaccountTransfer, SwapQueryTransformer, TallyResult, TokenFactoryModuleParams, TokenFactoryModuleState, TokenFactoryMsgs, TokenFactoryStatic, TokenInfo, TokenMeta, TokenPair, TokenPrice, TokenSource, TokenStatic, TokenStaticFactory, TokenType, TokenVerification, TotalScore, TotalScores, TotalScoresHistory, TotalSupply, TradeDirection, TradeExecutionSide, TradeExecutionType, TradeRewardCampaign, TradingReward, TradingRewardCampaignBoostInfo, TradingRewardCampaignInfo, TradingStrategy, TrailingArithmetic, TrailingArithmeticLP, Transaction, TransactionFromExplorerApiResponse, TransactionsStreamCallback, TransferType, TransfersStreamCallback, TxClient, TxClientBroadcastOptions, TxClientBroadcastResponse, TxClientMode, TxClientSimulateResponse, TxConcreteApi, TxFeesEipBaseFee, TxFeesModuleStateParams, TxGrpcApi, TxInfo, TxInfoResponse, TxMessage, TxRaw, TxResponse, TxRestApi, TxResult, TxResultResponse, TxSearchResult, TxSearchResultParams, TypedDataField, TypedDataUtilsHashStruct, TypedDataUtilsSanitizeData, TypedMessageV4, UnBondingDelegation, Validator, ValidatorCommission, ValidatorDescription, ValidatorRewards, ValidatorSlashingEvent, ValidatorUptime, ValidatorUptimeFromExplorerApiResponse, ValidatorUptimeStatus, VaultHolderSubscriptionStreamCallback, VaultStreamCallback, VolLeaderboard, Vote, VoteOption$1 as VoteOption, VoteOptionMap, WasmCode, WasmCodeExplorerApiResponse, WasmContractQueryResponse, WasmMsgs, WeightedVoteOption, accountEthParser, addHexPrefix, amountToCosmosSdkDecAmount, base64ToUint8Array, binaryToBase64, concatUint8Arrays, cosmosSdkDecToBigNumber, createAny, createAnyMessage, createAuthInfo, createBody, createFee, createNonCriticalExtensionFromObject, createSignDoc, createSignDocFromTransaction, createSignerInfo, createSigners, createTransaction, createTransactionAndCosmosSignDoc, createTransactionAndCosmosSignDocForAddressAndMsg, createTransactionForAddressAndMsg, createTransactionFromMsg, createTransactionWithSigners, createTxRawEIP712, createTxRawFromSigResponse, createWeb3Extension, decompressPubKey, denomAmountFromChainDenomAmount, denomAmountFromChainDenomAmountToFixed, denomAmountFromGrpcChainDenomAmount, denomAmountToChainDenomAmount, denomAmountToChainDenomAmountToFixed, denomAmountToGrpcChainDenomAmount, derivativeMarginFromChainMargin, derivativeMarginFromChainMarginToFixed, derivativeMarginToChainMargin, derivativeMarginToChainMarginToFixed, derivativePriceFromChainPrice, derivativePriceFromChainPriceToFixed, derivativePriceToChainPrice, derivativePriceToChainPriceToFixed, derivativeQuantityFromChainQuantity, derivativeQuantityFromChainQuantityToFixed, derivativeQuantityToChainQuantity, derivativeQuantityToChainQuantityToFixed, domainHash, errorToErrorMessage, fetchAllWithPagination, formatAmountToAllowableAmount, formatAmountToAllowableDecimals, formatNumberToAllowableDecimals, formatNumberToAllowableTensMultiplier, formatPriceToAllowableDecimals, formatPriceToAllowablePrice, fromBase64, fromUtf8, generateArbitrarySignDoc, getAddressFromInjectiveAddress, getAminoStdSignDoc, getChecksumAddress, getDefaultEip712Types, getDefaultEip712TypesV2, getDefaultSubaccountId, getDerivativeMarketDecimals, getDerivativeMarketTensMultiplier, getEip712Domain, getEip712DomainV2, getEip712Fee, getEip712FeeV2, getEip712TypedData, getEip712TypedDataV2, getEipTxContext, getEipTxDetails, getErrorMessage, getEthereumAddress, getEthereumSignerAddress, getExactDecimalsFromNumber, getGasPriceBasedOnMessage, getGenericAuthorizationFromMessageType, getGrpcWebTransport, getInjectiveAddress, getInjectiveAddressFromSubaccountId, getInjectiveSignerAddress, getObjectEip712PropertyType, getPublicKey, getSignificantDecimalsFromNumber, getSpotMarketDecimals, getSpotMarketTensMultiplier, getSubaccountId, getTensMultiplier, getTransactionPartsFromTxRaw, getTxRawFromTxRawOrDirectSignResponse, getTypesIncludingFeePayer, grpcCoinToUiCoin, grpcContractInfo, grpcPaginationToPagination, grpcPagingToPaging, grpcPagingToPagingV2, hashToHex, hexToBase64, hexToBuff, hexToNumber, hexToUint8Array, isBrowser, isCw20ContractAddress, isJsonString, isNode, isNumber, isReactNative, isServerSide, isTxNotFoundError, makeTimeoutTimestamp, makeTimeoutTimestampInNs, messageHash, msgsOrMsgExecMsgs, numberToCosmosSdkDecString, numberTypeToReflectionNumberType, objectKeysToEip712Types, objectToJson, ofacWallets, pageRequestToGrpcPageRequestV2, paginationRequestFromPagination, paginationUint8ArrayToString, parseCoins, privateKeyHashToPublicKey, privateKeyHashToPublicKeyBase64, privateKeyToPublicKey, privateKeyToPublicKeyBase64, protoObjectToJson, protoTypeToAminoType, protobufTimestampToDate, protobufTimestampToUnixMs, protobufTimestampToUnixSeconds, publicKeyToAddress, recoverTypedSignaturePubKey, removeHexPrefix, ripemd160, sanitizeTypedData, sha256, sortObjectByKeys, sortObjectByKeysWithReduce, spotPriceFromChainPrice, spotPriceFromChainPriceToFixed, spotPriceToChainPrice, spotPriceToChainPriceToFixed, spotQuantityFromChainQuantity, spotQuantityFromChainQuantityToFixed, spotQuantityToChainQuantity, spotQuantityToChainQuantityToFixed, stringToUint8Array, stringTypeToReflectionStringType, toBase64, toUtf8, uint8ArrayToBase64, uint8ArrayToHex, uint8ArrayToString, waitTxBroadcasted };
43072
+ export { AbacusGrpcApi, AbsoluteTxPosition, AccessType, AccessTypeCode, Account, AccountAuctionV2, AccountPortfolio, AccountPortfolioBalances, AccountPortfolioStreamCallback, AccountPortfolioV2, AccountResponse, AccountStats, AccountVolume, AccountVolumes, AccountsResponse, Address, AllChronosDerivativeMarketSummary, AllChronosMarketHistory, AllChronosSpotMarketSummary, AllDerivativeMarketSummaryResponse, AllSpotMarketSummaryResponse, type AminoSignResponse, AssetInfo, AssetInfoWithPrice, AtomicSwap, Auction, AuctionBid, AuctionCoin, AuctionCoinPrices, AuctionContract, AuctionCurrentBasket, AuctionEventAuctionResult, AuctionEventAuctionStart, AuctionEventBid, AuctionLastAuctionResult, AuctionModuleParams, AuctionModuleState, AuctionModuleStateParams, AuctionModuleStateResponse, AuctionMsgs, AuctionParams, AuctionV2, AuctionsStats, AuthBaseAccount, AuthModuleParams, AuthorityMetadata, AuthzMsgs, BECH32_ADDR_ACC_PREFIX, BECH32_ADDR_CONS_PREFIX, BECH32_ADDR_VAL_PREFIX, BECH32_PUBKEY_ACC_PREFIX, BECH32_PUBKEY_CONS_PREFIX, BECH32_PUBKEY_VAL_PREFIX, BalanceStreamCallback, BalancesResponse, BankModuleParams, BankMsgSendTransaction, BankMsgs, BankTransfer, BankTransferFromExplorerApiResponse, BaseAccount, BaseAccountRestResponse, BaseDerivativeMarket, BatchCancelDerivativeOrdersAuthz, BatchCancelSpotOrdersAuthz, BatchCreateDerivativeLimitOrdersAuthz, BatchCreateSpotLimitOrdersAuthz, BatchDerivativeOrderCancelParams, BatchSpotOrderCancelParams, BidsStreamCallback, BinaryOptionsMarket, Block, BlockFromExplorerApiResponse, BlockLatestRestResponse, BlockWithTxs, BlocksStreamCallback, BlocksWithTxsStreamCallback, BondStatus, BroadcastMode, BroadcastModeKeplr, CW20BalanceExplorerApiResponse, CW20Message, Campaign, CampaignRewardPool, CampaignUser, CampaignV2, CancelDerivativeOrderAuthz, CancelSpotOrderAuthz, ChainDenomDecimal, ChainDenomMinNotional, ChainDerivativePosition, ChainGrpcAuctionApi, ChainGrpcAuctionTransformer, ChainGrpcAuthApi, ChainGrpcAuthTransformer, ChainGrpcAuthZApi, ChainGrpcAuthZTransformer, ChainGrpcBankApi, ChainGrpcBankTransformer, ChainGrpcCommonTransformer, ChainGrpcDistributionApi, ChainGrpcDistributionTransformer, ChainGrpcErc20Api, ChainGrpcErc20Transformer, ChainGrpcEvmApi, ChainGrpcEvmTransformer, ChainGrpcExchangeApi, ChainGrpcExchangeTransformer, ChainGrpcGovApi, ChainGrpcGovTransformer, ChainGrpcIbcApi, ChainGrpcInsuranceFundApi, ChainGrpcInsuranceFundTransformer, ChainGrpcMintApi, ChainGrpcMintTransformer, ChainGrpcOracleApi, ChainGrpcPeggyApi, ChainGrpcPeggyTransformer, ChainGrpcPermissionsApi, ChainGrpcPermissionsTransformer, ChainGrpcStakingApi, ChainGrpcStakingTransformer, ChainGrpcTendermintApi, ChainGrpcTokenFactoryApi, ChainGrpcTokenFactoryTransformer, ChainGrpcTxFeesApi, ChainGrpcTxFeesTransformer, ChainGrpcWasmApi, ChainGrpcWasmTransformer, ChainGrpcWasmXApi, ChainModule, ChainPosition, ChainRestAuthApi, ChainRestBankApi, ChainRestTendermintApi, ChainRestWasmApi, ChronosDerivativeMarketSummary, ChronosDerivativeMarketSummaryResponse, ChronosLeaderboard, ChronosLeaderboardEntry, ChronosLeaderboardResponse, ChronosMarketHistoryResponse, ChronosSpotMarketSummary, ChronosSpotMarketSummaryResponse, CodeInfoResponse, Coin$1 as Coin, Contract, ContractAccountBalance, ContractAccountsBalanceWithPagination, ContractCodeHistoryEntry, ContractCodeHistoryOperationType, ContractCodeHistoryOperationTypeMap, ContractExecutionAuthorization as ContractExecutionAuthz, ContractExecutionCompatAuthorization as ContractExecutionCompatAuthz, ContractExplorerApiResponse, ContractInfo, ContractStateWithPagination, ContractTransaction, ContractTransactionExplorerApiResponse, ContractTransactionWithMessages, CosmWasmChecksum, CosmWasmPermission, CosmosAccountRestResponse, tx_pb_d_exports as CosmosTxV1Beta1TxPb, CreateDerivativeLimitOrderAuthz, CreateDerivativeMarketOrderAuthz, CreateSpotLimitOrderAuthz, CreateSpotMarketOrderAuthz, CreateTransactionArgs, CreateTransactionResult, CreateTransactionWithSignersArgs, DEFAULT_DERIVATION_PATH, Delegation, DenomBalance, DenomHolders, DenomOwnersResponse, DepositProposalParams, DerivativeLimitOrder, DerivativeLimitOrderParams, DerivativeMarket, DerivativeMarketStreamCallback, DerivativeMarketWithoutBinaryOptions, DerivativeOrderCancelParams, DerivativeOrderHistory, DerivativeOrderHistoryStreamCallback, DerivativeOrderbookUpdateStreamCallback, DerivativeOrderbookV2StreamCallback, DerivativeOrdersStreamCallback, DerivativePositionsStreamCallback, DerivativePositionsV2StreamCallback, DerivativeTrade, DerivativeTradesStreamCallback, type DirectSignResponse, DistributionModuleParams, DistributionMsgs, OLPGrpcApi as DmmGrpcApi, OLPGrpcApi, DmmPagination, Eip712ConvertFeeArgs, Eip712ConvertTxArgs, EligibleAddress, EligibleAddresses, EpochConfigV2, EpochScore, EpochScores, EpochScoresHistory, EpochV2, EpochsV2, EthAccount, EventLog, EventLogEvent, EvmBlobConfig, EvmBlobScheduleConfig, EvmChainConfig, EvmLog, EvmParams, ExchangeModuleParams, ExchangeMsgs, ExchangePagination, ExchangeParams, ExchangeV1Msgs, ExchangeV2Msgs, ExecArgCW20AdapterRedeemAndTransfer, ExecArgCW20Send, ExecArgCW20Transfer, ExecArgCreateCampaign, ExecArgCreatePerpGridStrategy, ExecArgCreateRound, ExecArgCreateSpotGridStrategy, ExecArgDepositTokens, ExecArgFundCampaign, ExecArgIncreaseAllowance, ExecArgInitiateTransfer, ExecArgNeptuneDeposit, ExecArgNeptuneWithdraw, ExecArgRemoveGridStrategy, ExecArgSubmitVaa, ExecArgSwapExactOutput, ExecArgSwapMinOutput, ExecArgUpdateGridConfig, ExecArgs, ExecPrivilegedArgOffChainVaultRedeem, ExecPrivilegedArgOffChainVaultSubscribe, ExecPrivilegedArgVaultRedeem, ExecPrivilegedArgVaultSubscribe, ExecPrivilegedArgs, ExitConfig, ExitType, ExpiryFuturesMarket, ExpiryFuturesMarketInfo, ExplorerApiResponse, ExplorerApiResponseWithPagination, ExplorerBlockApiResponse, ExplorerBlockWithTxs, ExplorerCW20BalanceWithToken, ExplorerStats, ExplorerStreamTransformer, ExplorerTransaction, ExplorerTransactionApiResponse, ExplorerTransactionV2, ExplorerTxsV2Response, ExplorerValidator, ExplorerValidatorDescription, ExplorerValidatorUptime, FactoryDenomWithMetadata, FeeDiscountAccountInfo, FeeDiscountSchedule, FeeDiscountTierInfo, FeeDiscountTierTTL, FeegrantMsgs, FundingPayment, FundingRate, GasFee, GenericAuthorization, GenericAuthorization$1 as GenericAuthz, GoogleProtoBufAny, GovModuleStateParams, GovMsgs, Grant$1 as Grant, GrantAuthorization$1 as GrantAuthorization, GrantAuthorizationType, GrantAuthorizationWithDecodedAuthorization, GrantWithDecodedAuthorization, GridStrategyStreamResponse, GridStrategyType, GrpcAbsoluteTxPosition, GrpcAccountAuctionV2, GrpcAccountPortfolio, GrpcAccountPortfolioV2, GrpcAccountVolume, GrpcAtomicSwap, GrpcAuction, GrpcAuctionBid, GrpcAuctionCoin, GrpcAuctionCoinPrices, GrpcAuctionContract, GrpcAuctionEventAuctionResult, GrpcAuctionEventAuctionStart, GrpcAuctionEventBid, GrpcAuctionLastAuctionResult, GrpcAuctionParams, GrpcAuctionV2, GrpcBankMsgSendMessage, GrpcBankParams, GrpcBinaryOptionsMarketInfo, GrpcCampaign, GrpcCampaignRewardPool, GrpcCampaignUser, GrpcCampaignV2, GrpcChainDerivativeMarket, GrpcChainDerivativePosition, GrpcChainFullDerivativeMarket, GrpcChainFullSpotMarket, GrpcChainPosition, GrpcChainSpotMarket, GrpcCodeInfoResponse, GrpcCoin, GrpcContractCodeHistoryEntry, GrpcContractInfo, GrpcDecCoin, GrpcDelegation, GrpcDelegationDelegatorReward, GrpcDelegationResponse, GrpcDenomDecimals, GrpcDenomHolders, GrpcDenomMinNotional, GrpcDerivativeLimitOrder, GrpcDerivativeMarketInfo, GrpcDerivativeOrderHistory, GrpcDerivativePosition, GrpcDerivativePositionV2, GrpcDerivativeTrade, GrpcDistributionParams, GrpcDmmPagination, GrpcEligibleAddress, GrpcEligibleAddresses, GrpcEpochConfigV2, GrpcEpochScore, GrpcEpochScores, GrpcEpochScoresHistory, GrpcEpochV2, GrpcEpochsV2, GrpcEvmBlobConfig, GrpcEvmBlobScheduleConfig, GrpcEvmChainConfig, GrpcEvmLog, GrpcEvmParams, GrpcExchangeParams, GrpcExpiryFuturesMarketInfo, GrpcExplorerStats, GrpcFeeDiscountAccountInfo, GrpcFeeDiscountSchedule, GrpcFeeDiscountTierInfo, GrpcFeeDiscountTierTTL, GrpcFundingPayment, GrpcFundingRate, GrpcGasFee, GrpcGovernanceDepositParams, GrpcGovernanceTallyParams, GrpcGovernanceVotingParams, GrpcGuild, GrpcGuildMember, GrpcHistoricalBalance, GrpcHistoricalRPNL, GrpcHistoricalVolumes, GrpcIBCTransferTx, GrpcIndexerAuctionBid, GrpcIndexerInsuranceFund, GrpcIndexerRedemptionSchedule, GrpcIndexerValidatorDescription, GrpcInsuranceFund, GrpcInsuranceParams, GrpcLeaderboardRow, GrpcMarketReward, GrpcMarketRewards, GrpcMarketStatus, GrpcMarketStatusMap, GrpcMegaVaultApr, GrpcMegaVaultAprStats, GrpcMegaVaultHistoricalPnL, GrpcMegaVaultHistoricalTVL, GrpcMegaVaultIncentives, GrpcMegaVaultMaxDrawdown, GrpcMegaVaultOperator, GrpcMegaVaultOperatorRedemptionBucket, GrpcMegaVaultPnl, GrpcMegaVaultPnlStats, GrpcMegaVaultRedemption, GrpcMegaVaultSubscription, GrpcMegaVaultTargetApr, GrpcMegaVaultUnrealizedPnl, GrpcMegaVaultUserStats, GrpcMegaVaultVaultStats, GrpcMegaVaultVolatility, GrpcMegaVaultVolatilityStats, GrpcMintParams, GrpcMitoChanges, GrpcMitoClaimReference, GrpcMitoDenomBalance, GrpcMitoHolders, GrpcMitoIDO, GrpcMitoIDOClaimedCoins, GrpcMitoIDOProgress, GrpcMitoIDOSubscriber, GrpcMitoIDOSubscription, GrpcMitoIDOSubscriptionActivity, GrpcMitoLeaderboardEntry, GrpcMitoLeaderboardEpoch, GrpcMitoMission, GrpcMitoMissionLeaderboardEntry, GrpcMitoPagination, GrpcMitoPriceSnapshot, GrpcMitoStakingGauge, GrpcMitoStakingPool, GrpcMitoStakingStakingActivity, GrpcMitoStakingStakingReward, GrpcMitoSubaccountBalance, GrpcMitoSubscription, GrpcMitoTokenInfo, GrpcMitoVault, GrpcMitoWhitelistAccount, GrpcOracle, GrpcOracleParams, GrpcOrderInfo, GrpcOrderType, GrpcOrderTypeMap, GrpcParams, GrpcPeggyDepositTx, GrpcPeggyParams, GrpcPeggyWithdrawalTx, GrpcPermissionActorRoles, GrpcPermissionAddressVoucher, GrpcPermissionNamespace, GrpcPermissionPolicyStatus, GrpcPermissionPolicyStatusManagerCapability, GrpcPermissionRole, GrpcPermissionRoleActors, GrpcPermissionRoleIDs, GrpcPermissionRoleManager, GrpcPermissionsNamespace, GrpcPermissionsParams, GrpcPerpetualMarketFunding, GrpcPerpetualMarketInfo, GrpcPnlLeaderboard, GrpcPointsMultiplier, GrpcPool, GrpcPortfolioSubaccountBalanceV2, GrpcPositionDelta, GrpcPositionV2, GrpcPositionsWithUPNL, GrpcPriceLevel, GrpcProposal, GrpcProposalDeposit, type ProposalStatus as GrpcProposalStatus, ProposalStatus, GrpcReDelegation, GrpcReDelegationEntryResponse, GrpcReDelegationResponse, GrpcRedemptionSchedule, GrpcRewardDistribution, GrpcRewardsDistribution, GrpcRewardsEligibility, GrpcSpotAverageEntry, GrpcSpotLimitOrder, GrpcSpotMarket, GrpcSpotMarketInfo, GrpcSpotMarketOrder, GrpcSpotOrder, GrpcSpotOrderHistory, GrpcSpotTrade, GrpcStakingParams, GrpcSubaccountBalance, GrpcSubaccountBalanceTransfer, GrpcSubaccountDeposit, GrpcSubaccountDepositV2, GrpcSubaccountPortfolio, GrpcSupply, GrpcTallyResult, GrpcTokenMeta, GrpcTokenPair, GrpcTotalScore, GrpcTotalScores, GrpcTotalScoresHistory, GrpcTradeRewardCampaign, GrpcTradingReward, GrpcTradingRewardCampaignBoostInfo, GrpcTradingRewardCampaignInfo, GrpcTxFeesEipBaseFee, GrpcTxFeesParams, GrpcUnbondingDelegation, GrpcUnbondingDelegationEntry, GrpcValidator, GrpcValidatorCommission, GrpcValidatorCommissionRates, GrpcValidatorDescription, GrpcValidatorSlashingEvent, GrpcValidatorUptime, GrpcVolLeaderboard, GrpcVote, GrpcWebFetchTransport, Guild, GuildCampaignSummary, GuildMember, HistoricalBalance, HistoricalRPNL, HistoricalStakingStreamCallback, HistoricalVolumes, Holder, IBCTransferTx, IbcMsgs, IncentivesCampaign, IncentivesQueryTransformer, IncentivesRound, IndexerAccountPortfolioStreamTransformer, IndexerAccountStreamTransformer, IndexerArchiverStreamTransformer, IndexerAuctionBid, IndexerAuctionStreamTransformer, IndexerCampaignTransformer, IndexerDerivativeStreamTransformer, IndexerGrpcAccountApi, IndexerGrpcAccountPortfolioApi, IndexerGrpcAccountPortfolioStream, IndexerGrpcAccountPortfolioTransformer, IndexerGrpcAccountStream, IndexerGrpcAccountTransformer, IndexerGrpcArchiverApi, IndexerGrpcArchiverStream, IndexerGrpcArchiverTransformer, IndexerGrpcAuctionApi, IndexerGrpcAuctionStream, IndexerGrpcAuctionTransformer, IndexerGrpcCampaignApi, IndexerGrpcDerivativeTransformer, IndexerGrpcDerivativesApi, IndexerGrpcDerivativesStream, IndexerGrpcExplorerApi, IndexerGrpcExplorerStream, IndexerGrpcExplorerTransformer, IndexerGrpcInsuranceFundApi, IndexerGrpcInsuranceFundTransformer, IndexerGrpcMegaVaultApi, IndexerGrpcMegaVaultTransformer, IndexerGrpcMetaApi, IndexerGrpcMitoApi, IndexerGrpcMitoStream, IndexerGrpcMitoStreamTransformer, IndexerGrpcMitoTransformer, IndexerGrpcOracleApi, IndexerGrpcOracleStream, IndexerGrpcOracleTransformer, IndexerGrpcReferralApi, IndexerGrpcReferralTransformer, IndexerGrpcSpotApi, IndexerGrpcSpotStream, IndexerGrpcSpotTransformer, IndexerGrpcTradingApi, IndexerGrpcTradingStream, IndexerGrpcTransactionApi, IndexerGrpcWeb3GwApi, IndexerInsuranceFund, IndexerModule, IndexerOracleStreamTransformer, IndexerRestDerivativesChronosApi, IndexerRestExplorerApi, IndexerRestExplorerTransformer, IndexerRestLeaderboardChronosApi, IndexerRestMarketChronosApi, IndexerRestSpotChronosApi, IndexerSpotStreamTransformer, IndexerStreamTransaction, IndexerTokenMeta, InjNameServiceQueryTransformer, InsuranceFund, InsuranceFundCreateParams, InsuranceModuleParams, InsuranceMsgs, IsOptedOutOfRewards, LeaderboardRow, LendingRateResponse, ListTradingStrategiesResponse, MapOfTypedDataField, Market, MarketReward, MarketRewards, MarketType, MarketingInfo, MarketsStreamCallback, MegaVault, MegaVaultApr, MegaVaultAprStats, MegaVaultHistoricalPnL, MegaVaultHistoricalTVL, MegaVaultIncentives, MegaVaultMaxDrawdown, MegaVaultOperator, MegaVaultOperatorRedemptionBucket, MegaVaultPnl, MegaVaultPnlStats, MegaVaultRedemption, MegaVaultRedemptionStatus, MegaVaultStats, MegaVaultSubscription, MegaVaultSubscriptionStatus, MegaVaultTargetApr, MegaVaultUnrealizedPnl, MegaVaultUser, MegaVaultUserStats, MegaVaultVolatility, MegaVaultVolatilityStats, Message, Metadata$1 as Metadata, MinMaxRewards, MinModuleParams, MitoChanges, MitoClaimReference, MitoDenomBalance, MitoGauge, MitoGaugeStatus, MitoHolders, MitoIDO, MitoIDOClaimedCoins, MitoIDOInitParams, MitoIDOProgress, MitoIDOSubscriber, MitoIDOSubscription, MitoIDOSubscriptionActivity, MitoLeaderboard, MitoLeaderboardEntry, MitoLeaderboardEpoch, MitoMission, MitoMissionLeaderboard, MitoMissionLeaderboardEntry, MitoPagination, MitoPortfolio, MitoPriceSnapshot, MitoStakeToSubscription, MitoStakingActivity, MitoStakingPool, MitoStakingReward, MitoSubaccountBalance, MitoSubscription, MitoTokenInfo, MitoTransfer, MitoVault, MitoVestingConfig, MitoVestingConfigMap, MitoWhitelistAccount, MsgAdminUpdateBinaryOptionsMarket, MsgArg, MsgAuthorizeStakeGrants, MsgExec as MsgAuthzExec, MsgBatchCancelBinaryOptionsOrders, MsgBatchCancelDerivativeOrders, MsgBatchCancelSpotOrders, MsgBatchUpdateOrders, MsgBeginRedelegate, MsgBid, MsgBroadcasterWithPk, MsgBurn, MsgCancelBinaryOptionsOrder, MsgCancelDerivativeOrder, MsgCancelPostOnlyModeV2, MsgCancelSpotOrder, MsgCancelUnbondingDelegation, MsgChangeAdmin, MsgClaimVoucher, MsgCreateBinaryOptionsLimitOrder, MsgCreateBinaryOptionsMarketOrder, MsgCreateDenom, MsgCreateDerivativeLimitOrder, MsgCreateDerivativeMarketOrder, MsgCreateInsuranceFund, MsgCreateNamespace, MsgCreateSpotLimitOrder, MsgCreateSpotMarketOrder, MsgCreateValidator, MsgDecoder, MsgDelegate, MsgDeposit, MsgEditValidator, MsgExecuteContract, MsgExecuteContractCompat, MsgExternalTransfer, MsgFundCommunityPool, MsgDeposit$1 as MsgGovDeposit, MsgGrant, MsgGrantAllowance, MsgGrantWithAuthorization, MsgIncreasePositionMargin, MsgInstantBinaryOptionsMarketLaunch, MsgInstantSpotMarketLaunch, MsgInstantiateContract, MsgLiquidatePosition, MsgMigrateContract, MsgMint, MsgMultiSend, MsgPrivilegedExecuteContract, MsgReclaimLockedFunds, MsgRequestRedemption, MsgRevoke, MsgRevokeAllowance, MsgRewardsOptOut, MsgSend, MsgSendToEth, MsgSetDelegationTransferReceivers, MsgSetDenomMetadata, MsgSignData, MsgStoreCode, MsgSubmitGenericProposal, MsgSubmitProposal, MsgSubmitProposalExpiryFuturesMarketLaunch, MsgSubmitProposalPerpetualMarketLaunch, MsgSubmitProposalPerpetualMarketLaunchV2, MsgSubmitProposalSpotMarketLaunch, MsgSubmitProposalSpotMarketParamUpdate, MsgSubmitTextProposal, MsgTransfer, MsgTransferDelegation, MsgUndelegate, MsgUnderwrite, MsgUpdateActorRoles, MsgUpdateAdmin, MsgUpdateDerivativeMarketV2, MsgUpdateNamespace, MsgUpdateParams, MsgUpdateSpotMarketV2, MsgVote, MsgWithdraw, MsgWithdrawDelegatorReward, MsgWithdrawValidatorCommission, Msgs, NEPTUNE_PRICE_CONTRACT, NEPTUNE_USDT_CW20_CONTRACT, NeptuneQueryTransformer, NeptuneService, NodeInfoRestResponse, Oracle, OracleModuleParams, OraclePriceStreamCallback, OraclePricesByMarketsStreamCallback, OracleType$1 as OracleType, OracleTypeMap, OrderHashManager, OrderMask, OrderMaskMap, OrderType, OrderTypeMap, Orderbook, OrderbookWithSequence, PagePagination, Pagination, PaginationOption, Paging, Params$1 as Params, PeggyDepositTx, PeggyModuleParams, PeggyMsgs, PeggyWithdrawalTx, PermissionActionMap, PermissionActorRoles, PermissionAddressRoles, PermissionAddressVoucher, PermissionGenesisState, PermissionNamespace, PermissionParams, PermissionPolicyManagerCapability, PermissionPolicyStatus, PermissionRole, PermissionRoleActors, PermissionRoleIDs, PermissionRoleManager, PermissionVoucher, PermissionsModuleParams, PerpetualMarket, PerpetualMarketFunding, PerpetualMarketInfo, PnlLeaderboard, PointsLatestResponse, PointsMultiplier, PointsStatsRow, Pool, PortfolioSubaccountBalanceV2, Position, PositionDelta, PositionV2, PositionsWithUPNL, PriceLevel, PriceResponse, PrivateKey, Proposal, ProposalDecomposer, ProposalDeposit, ProposalStatusMap, PubKey, PublicKey, QuantityAndFees, QueryAllRounds, QueryAllRoutes, QueryCampaignResponse, QueryGetAllLendingRates, QueryGetCampaigns, QueryGetPrices, QueryInjName, QueryInjectiveAddress, QueryInputQuantity, QueryOutputQuantity, QueryQuantityAndFeesResponse, QueryResolverAddress, QueryRoundResponse, QueryRoute, QueryRouteResponse, QueryTradingStrategyContractAllStrategies, QueryTradingStrategyContractConfig, QueryTradingStrategyContractTotalStrategies, QueryTradingStrategyContractUserStrategies, ReDelegation, Redemption, RedemptionStatus, ReferralDetails, RestApiResponse, RestAuthInfo, RestSignerInfo, RestTx, RestTxBody, RestTxLog, RewardDistribution, RewardsDistribution, RewardsEligibility, Route, SIGN_AMINO, SIGN_DIRECT, SIGN_EIP712, SIGN_EIP712_V2, SendEnabled, SignDoc, SignTypedDataVersionV4, Signature, SignerDetails, SimulationResponse, SpotAverageEntriesStreamCallback, SpotAverageEntry, SpotLimitOrder, SpotLimitOrderParams, SpotMarket, SpotOrderCancelParams, SpotOrderHistory, SpotOrderHistoryStreamCallback, SpotOrderbookUpdateStreamCallback, SpotOrderbookV2StreamCallback, SpotOrdersStreamCallback, SpotTrade, SpotTradesStreamCallback, StakingModuleParams, StakingMsgs, StakingRewardByAccountStreamCallback, StrategyType, StreamBidsResponse, StreamOperation, StreamStatusResponse, SubaccountBalance, SubaccountDeposit, SubaccountDepositV2, SubaccountPortfolio, SubaccountTransfer, SwapQueryTransformer, TallyResult, TokenFactoryModuleParams, TokenFactoryModuleState, TokenFactoryMsgs, TokenFactoryStatic, TokenInfo, TokenMeta, TokenPair, TokenPrice, TokenSource, TokenStatic, TokenStaticFactory, TokenType, TokenVerification, TotalScore, TotalScores, TotalScoresHistory, TotalSupply, TradeDirection, TradeExecutionSide, TradeExecutionType, TradeRewardCampaign, TradingReward, TradingRewardCampaignBoostInfo, TradingRewardCampaignInfo, TradingStrategy, TrailingArithmetic, TrailingArithmeticLP, Transaction, TransactionFromExplorerApiResponse, TransactionsStreamCallback, TransferType, TransfersStreamCallback, TxClient, TxClientBroadcastOptions, TxClientBroadcastResponse, TxClientMode, TxClientSimulateResponse, TxConcreteApi, TxFeesEipBaseFee, TxFeesModuleStateParams, TxGrpcApi, TxInfo, TxInfoResponse, TxMessage, TxRaw, TxResponse, TxRestApi, TxResult, TxResultResponse, TxSearchResult, TxSearchResultParams, TypedDataField, TypedDataUtilsHashStruct, TypedDataUtilsSanitizeData, TypedMessageV4, UnBondingDelegation, Validator, ValidatorCommission, ValidatorDescription, ValidatorRewards, ValidatorSlashingEvent, ValidatorUptime, ValidatorUptimeFromExplorerApiResponse, ValidatorUptimeStatus, VaultHolderSubscriptionStreamCallback, VaultStreamCallback, VolLeaderboard, Vote, VoteOption$1 as VoteOption, VoteOptionMap, WasmCode, WasmCodeExplorerApiResponse, WasmContractQueryResponse, WasmMsgs, WeightedVoteOption, accountEthParser, addHexPrefix, amountToCosmosSdkDecAmount, base64ToUint8Array, base64ToUtf8, binaryToBase64, concatUint8Arrays, cosmosSdkDecToBigNumber, createAny, createAnyMessage, createAuthInfo, createBody, createFee, createNonCriticalExtensionFromObject, createSignDoc, createSignDocFromTransaction, createSignerInfo, createSigners, createTransaction, createTransactionAndCosmosSignDoc, createTransactionAndCosmosSignDocForAddressAndMsg, createTransactionForAddressAndMsg, createTransactionFromMsg, createTransactionWithSigners, createTxRawEIP712, createTxRawFromSigResponse, createWeb3Extension, decompressPubKey, denomAmountFromChainDenomAmount, denomAmountFromChainDenomAmountToFixed, denomAmountFromGrpcChainDenomAmount, denomAmountToChainDenomAmount, denomAmountToChainDenomAmountToFixed, denomAmountToGrpcChainDenomAmount, derivativeMarginFromChainMargin, derivativeMarginFromChainMarginToFixed, derivativeMarginToChainMargin, derivativeMarginToChainMarginToFixed, derivativePriceFromChainPrice, derivativePriceFromChainPriceToFixed, derivativePriceToChainPrice, derivativePriceToChainPriceToFixed, derivativeQuantityFromChainQuantity, derivativeQuantityFromChainQuantityToFixed, derivativeQuantityToChainQuantity, derivativeQuantityToChainQuantityToFixed, domainHash, errorToErrorMessage, fetchAllWithPagination, formatAmountToAllowableAmount, formatAmountToAllowableDecimals, formatNumberToAllowableDecimals, formatNumberToAllowableTensMultiplier, formatPriceToAllowableDecimals, formatPriceToAllowablePrice, fromBase64, fromUtf8, generateArbitrarySignDoc, getAddressFromInjectiveAddress, getAminoStdSignDoc, getChecksumAddress, getDefaultEip712Types, getDefaultEip712TypesV2, getDefaultSubaccountId, getDerivativeMarketDecimals, getDerivativeMarketTensMultiplier, getEip712Domain, getEip712DomainV2, getEip712Fee, getEip712FeeV2, getEip712TypedData, getEip712TypedDataV2, getEipTxContext, getEipTxDetails, getErrorMessage, getEthereumAddress, getEthereumSignerAddress, getExactDecimalsFromNumber, getGasPriceBasedOnMessage, getGenericAuthorizationFromMessageType, getGrpcWebTransport, getInjectiveAddress, getInjectiveAddressFromSubaccountId, getInjectiveSignerAddress, getObjectEip712PropertyType, getPublicKey, getSignificantDecimalsFromNumber, getSpotMarketDecimals, getSpotMarketTensMultiplier, getSubaccountId, getTensMultiplier, getTransactionPartsFromTxRaw, getTxRawFromTxRawOrDirectSignResponse, getTypesIncludingFeePayer, grpcCoinToUiCoin, grpcContractInfo, grpcPaginationToPagination, grpcPagingToPaging, grpcPagingToPagingV2, hashToHex, hexToBase64, hexToBuff, hexToNumber, hexToUint8Array, isBrowser, isCw20ContractAddress, isJsonString, isNode, isNumber, isReactNative, isServerSide, isTxNotFoundError, makeTimeoutTimestamp, makeTimeoutTimestampInNs, messageHash, msgsOrMsgExecMsgs, numberToCosmosSdkDecString, numberTypeToReflectionNumberType, objectKeysToEip712Types, objectToJson, ofacWallets, pageRequestToGrpcPageRequestV2, paginationRequestFromPagination, paginationUint8ArrayToString, parseCoins, privateKeyHashToPublicKey, privateKeyHashToPublicKeyBase64, privateKeyToPublicKey, privateKeyToPublicKeyBase64, protoObjectToJson, protoTypeToAminoType, protobufTimestampToDate, protobufTimestampToUnixMs, protobufTimestampToUnixSeconds, publicKeyToAddress, recoverTypedSignaturePubKey, removeHexPrefix, ripemd160, sanitizeTypedData, sha256, sortObjectByKeys, sortObjectByKeysWithReduce, spotPriceFromChainPrice, spotPriceFromChainPriceToFixed, spotPriceToChainPrice, spotPriceToChainPriceToFixed, spotQuantityFromChainQuantity, spotQuantityFromChainQuantityToFixed, spotQuantityToChainQuantity, spotQuantityToChainQuantityToFixed, stringToUint8Array, stringTypeToReflectionStringType, toBase64, toUtf8, uint8ArrayToBase64, uint8ArrayToHex, uint8ArrayToString, waitTxBroadcasted };
package/dist/esm/index.js CHANGED
@@ -1,4 +1,4 @@
1
- import { $ as createBody, $n as hexToBuff, $t as getExactDecimalsFromNumber, A as VoteOptionMap, An as messageHash, At as denomAmountFromChainDenomAmountToFixed, B as getEip712DomainV2, Bn as BECH32_ADDR_ACC_PREFIX, Bt as derivativePriceFromChainPriceToFixed, C as OracleTypeMap, Cn as sortObjectByKeysWithReduce, Ct as getInjectiveAddressFromSubaccountId, D as BondStatus, Dn as decompressPubKey, Dt as amountToCosmosSdkDecAmount, E as OrderTypeMap, En as TypedDataUtilsSanitizeData, Et as removeHexPrefix, F as getEip712TypedData, Fn as publicKeyToAddress, Ft as derivativeMarginFromChainMargin, G as getTypesIncludingFeePayer, Gn as BECH32_PUBKEY_VAL_PREFIX, Gt as derivativeQuantityToChainQuantity, H as getEip712FeeV2, Hn as BECH32_ADDR_VAL_PREFIX, Ht as derivativePriceToChainPriceToFixed, I as getEip712TypedDataV2, In as ripemd160, It as derivativeMarginFromChainMarginToFixed, J as objectKeysToEip712Types, Jn as binaryToBase64, Jt as formatAmountToAllowableDecimals, K as getObjectEip712PropertyType, Kn as DEFAULT_DERIVATION_PATH, Kt as derivativeQuantityToChainQuantityToFixed, L as getDefaultEip712Types, Ln as sanitizeTypedData, Lt as derivativeMarginToChainMargin, M as MsgSignData, Mn as privateKeyHashToPublicKeyBase64, Mt as denomAmountToChainDenomAmount, N as MsgBase, Nn as privateKeyToPublicKey, Nt as denomAmountToChainDenomAmountToFixed, O as ContractCodeHistoryOperationTypeMap, On as domainHash, Ot as cosmosSdkDecToBigNumber, P as prepareSignBytes, Pn as privateKeyToPublicKeyBase64, Pt as denomAmountToGrpcChainDenomAmount, Q as createAuthInfo, Qn as hexToBase64, Qt as formatPriceToAllowablePrice, R as getDefaultEip712TypesV2, Rn as sha256, Rt as derivativeMarginToChainMarginToFixed, S as OracleType, Sn as sortObjectByKeys, St as getInjectiveAddress, T as GrpcOrderTypeMap, Tn as TypedDataUtilsHashStruct, Tt as isCw20ContractAddress, U as getEipTxContext, Un as BECH32_PUBKEY_ACC_PREFIX, Ut as derivativeQuantityFromChainQuantity, V as getEip712Fee, Vn as BECH32_ADDR_CONS_PREFIX, Vt as derivativePriceToChainPrice, W as getEipTxDetails, Wn as BECH32_PUBKEY_CONS_PREFIX, Wt as derivativeQuantityFromChainQuantityToFixed, X as stringTypeToReflectionStringType, Xn as fromBase64, Xt as formatNumberToAllowableTensMultiplier, Y as protoTypeToAminoType, Yn as concatUint8Arrays, Yt as formatNumberToAllowableDecimals, Z as CosmosTxV1Beta1TxPb, Zn as fromUtf8, Zt as formatPriceToAllowableDecimals, _ as BaseAccount, _n as isNode, _t as addHexPrefix, a as createTransactionForAddressAndMsg, an as spotPriceFromChainPriceToFixed, ar as uint8ArrayToHex, at as createSigners, b as ChainModule, bn as objectToJson, bt as getDefaultSubaccountId, c as createTxRawFromSigResponse, cn as spotQuantityFromChainQuantity, ct as getAminoStdSignDoc, d as SIGN_DIRECT, dn as spotQuantityToChainQuantityToFixed, dt as createAny, en as getSignificantDecimalsFromNumber, er as hexToUint8Array, et as createFee, f as SIGN_EIP712, fn as getErrorMessage, ft as createAnyMessage, g as BaseRestConsumer, gn as isJsonString, gt as recoverTypedSignaturePubKey, h as ChainRestAuthApi, hn as isBrowser, ht as PublicKey, i as createTransactionAndCosmosSignDocForAddressAndMsg, in as spotPriceFromChainPrice, ir as uint8ArrayToBase64, it as createSignerInfo, j as MsgIncreasePositionMargin, jn as privateKeyHashToPublicKey, jt as denomAmountFromGrpcChainDenomAmount, k as ProposalStatusMap, kn as hashToHex, kt as denomAmountFromChainDenomAmount, l as getTxRawFromTxRawOrDirectSignResponse, ln as spotQuantityFromChainQuantityToFixed, lt as getPublicKey, m as ChainRestTendermintApi, mn as hexToNumber, mt as getInjectiveSignerAddress, n as createTransaction, nn as isNumber, nr as toBase64, nt as createSignDoc, o as createTransactionFromMsg, on as spotPriceToChainPrice, or as uint8ArrayToString, ot as createTxRawEIP712, p as SIGN_EIP712_V2, pn as grpcCoinToUiCoin, pt as getEthereumSignerAddress, q as numberTypeToReflectionNumberType, qn as base64ToUint8Array, qt as formatAmountToAllowableAmount, r as createTransactionAndCosmosSignDoc, rn as numberToCosmosSdkDecString, rr as toUtf8, rt as createSignDocFromTransaction, s as createTransactionWithSigners, sn as spotPriceToChainPriceToFixed, st as createWeb3Extension, t as generateArbitrarySignDoc, tn as getTensMultiplier, tr as stringToUint8Array, tt as createNonCriticalExtensionFromObject, u as SIGN_AMINO, un as spotQuantityToChainQuantity, ut as getTransactionPartsFromTxRaw, v as PrivateKey, vn as isReactNative, vt as getAddressFromInjectiveAddress, w as GrpcMarketStatusMap, wn as SignTypedDataVersionV4, wt as getSubaccountId, x as PermissionActionMap, xn as protoObjectToJson, xt as getEthereumAddress, y as MsgDecoder, yn as isServerSide, yt as getChecksumAddress, z as getEip712Domain, zn as Address, zt as derivativePriceFromChainPrice } from "./tx-DAtz3JQs.js";
1
+ import { $ as createBody, $n as hexToBase64, $t as getExactDecimalsFromNumber, A as VoteOptionMap, An as messageHash, At as denomAmountFromChainDenomAmountToFixed, B as getEip712DomainV2, Bn as BECH32_ADDR_ACC_PREFIX, Bt as derivativePriceFromChainPriceToFixed, C as OracleTypeMap, Cn as sortObjectByKeysWithReduce, Ct as getInjectiveAddressFromSubaccountId, D as BondStatus, Dn as decompressPubKey, Dt as amountToCosmosSdkDecAmount, E as OrderTypeMap, En as TypedDataUtilsSanitizeData, Et as removeHexPrefix, F as getEip712TypedData, Fn as publicKeyToAddress, Ft as derivativeMarginFromChainMargin, G as getTypesIncludingFeePayer, Gn as BECH32_PUBKEY_VAL_PREFIX, Gt as derivativeQuantityToChainQuantity, H as getEip712FeeV2, Hn as BECH32_ADDR_VAL_PREFIX, Ht as derivativePriceToChainPriceToFixed, I as getEip712TypedDataV2, In as ripemd160, It as derivativeMarginFromChainMarginToFixed, J as objectKeysToEip712Types, Jn as base64ToUtf8, Jt as formatAmountToAllowableDecimals, K as getObjectEip712PropertyType, Kn as DEFAULT_DERIVATION_PATH, Kt as derivativeQuantityToChainQuantityToFixed, L as getDefaultEip712Types, Ln as sanitizeTypedData, Lt as derivativeMarginToChainMargin, M as MsgSignData, Mn as privateKeyHashToPublicKeyBase64, Mt as denomAmountToChainDenomAmount, N as MsgBase, Nn as privateKeyToPublicKey, Nt as denomAmountToChainDenomAmountToFixed, O as ContractCodeHistoryOperationTypeMap, On as domainHash, Ot as cosmosSdkDecToBigNumber, P as prepareSignBytes, Pn as privateKeyToPublicKeyBase64, Pt as denomAmountToGrpcChainDenomAmount, Q as createAuthInfo, Qn as fromUtf8, Qt as formatPriceToAllowablePrice, R as getDefaultEip712TypesV2, Rn as sha256, Rt as derivativeMarginToChainMarginToFixed, S as OracleType, Sn as sortObjectByKeys, St as getInjectiveAddress, T as GrpcOrderTypeMap, Tn as TypedDataUtilsHashStruct, Tt as isCw20ContractAddress, U as getEipTxContext, Un as BECH32_PUBKEY_ACC_PREFIX, Ut as derivativeQuantityFromChainQuantity, V as getEip712Fee, Vn as BECH32_ADDR_CONS_PREFIX, Vt as derivativePriceToChainPrice, W as getEipTxDetails, Wn as BECH32_PUBKEY_CONS_PREFIX, Wt as derivativeQuantityFromChainQuantityToFixed, X as stringTypeToReflectionStringType, Xn as concatUint8Arrays, Xt as formatNumberToAllowableTensMultiplier, Y as protoTypeToAminoType, Yn as binaryToBase64, Yt as formatNumberToAllowableDecimals, Z as CosmosTxV1Beta1TxPb, Zn as fromBase64, Zt as formatPriceToAllowableDecimals, _ as BaseAccount, _n as isNode, _t as addHexPrefix, a as createTransactionForAddressAndMsg, an as spotPriceFromChainPriceToFixed, ar as uint8ArrayToBase64, at as createSigners, b as ChainModule, bn as objectToJson, bt as getDefaultSubaccountId, c as createTxRawFromSigResponse, cn as spotQuantityFromChainQuantity, ct as getAminoStdSignDoc, d as SIGN_DIRECT, dn as spotQuantityToChainQuantityToFixed, dt as createAny, en as getSignificantDecimalsFromNumber, er as hexToBuff, et as createFee, f as SIGN_EIP712, fn as getErrorMessage, ft as createAnyMessage, g as BaseRestConsumer, gn as isJsonString, gt as recoverTypedSignaturePubKey, h as ChainRestAuthApi, hn as isBrowser, ht as PublicKey, i as createTransactionAndCosmosSignDocForAddressAndMsg, in as spotPriceFromChainPrice, ir as toUtf8, it as createSignerInfo, j as MsgIncreasePositionMargin, jn as privateKeyHashToPublicKey, jt as denomAmountFromGrpcChainDenomAmount, k as ProposalStatusMap, kn as hashToHex, kt as denomAmountFromChainDenomAmount, l as getTxRawFromTxRawOrDirectSignResponse, ln as spotQuantityFromChainQuantityToFixed, lt as getPublicKey, m as ChainRestTendermintApi, mn as hexToNumber, mt as getInjectiveSignerAddress, n as createTransaction, nn as isNumber, nr as stringToUint8Array, nt as createSignDoc, o as createTransactionFromMsg, on as spotPriceToChainPrice, or as uint8ArrayToHex, ot as createTxRawEIP712, p as SIGN_EIP712_V2, pn as grpcCoinToUiCoin, pt as getEthereumSignerAddress, q as numberTypeToReflectionNumberType, qn as base64ToUint8Array, qt as formatAmountToAllowableAmount, r as createTransactionAndCosmosSignDoc, rn as numberToCosmosSdkDecString, rr as toBase64, rt as createSignDocFromTransaction, s as createTransactionWithSigners, sn as spotPriceToChainPriceToFixed, sr as uint8ArrayToString, st as createWeb3Extension, t as generateArbitrarySignDoc, tn as getTensMultiplier, tr as hexToUint8Array, tt as createNonCriticalExtensionFromObject, u as SIGN_AMINO, un as spotQuantityToChainQuantity, ut as getTransactionPartsFromTxRaw, v as PrivateKey, vn as isReactNative, vt as getAddressFromInjectiveAddress, w as GrpcMarketStatusMap, wn as SignTypedDataVersionV4, wt as getSubaccountId, x as PermissionActionMap, xn as protoObjectToJson, xt as getEthereumAddress, y as MsgDecoder, yn as isServerSide, yt as getChecksumAddress, z as getEip712Domain, zn as Address, zt as derivativePriceFromChainPrice } from "./tx-pQPAzEHk.js";
2
2
  import { t as _defineProperty } from "./defineProperty-Ceg7SnGJ.js";
3
3
  import * as CosmosTxV1Beta1TxPb$1 from "@injectivelabs/core-proto-ts-v2/generated/cosmos/tx/v1beta1/tx_pb";
4
4
  import { keccak256 } from "viem";
@@ -17775,4 +17775,4 @@ const accountEthParser = (ethAccount, pubKeyTypeUrl = "/injective.crypto.v1beta1
17775
17775
  };
17776
17776
 
17777
17777
  //#endregion
17778
- export { AbacusGrpcApi, AccessType, AccessTypeCode, Address, BECH32_ADDR_ACC_PREFIX, BECH32_ADDR_CONS_PREFIX, BECH32_ADDR_VAL_PREFIX, BECH32_PUBKEY_ACC_PREFIX, BECH32_PUBKEY_CONS_PREFIX, BECH32_PUBKEY_VAL_PREFIX, BaseAccount, BondStatus, BroadcastMode, BroadcastModeKeplr, ChainGrpcAuctionApi, ChainGrpcAuctionTransformer, ChainGrpcAuthApi, ChainGrpcAuthTransformer, ChainGrpcAuthZApi, ChainGrpcAuthZTransformer, ChainGrpcBankApi, ChainGrpcBankTransformer, ChainGrpcCommonTransformer, ChainGrpcDistributionApi, ChainGrpcDistributionTransformer, ChainGrpcErc20Api, ChainGrpcErc20Transformer, ChainGrpcEvmApi, ChainGrpcEvmTransformer, ChainGrpcExchangeApi, ChainGrpcExchangeTransformer, ChainGrpcGovApi, ChainGrpcGovTransformer, ChainGrpcIbcApi, ChainGrpcInsuranceFundApi, ChainGrpcInsuranceFundTransformer, ChainGrpcMintApi, ChainGrpcMintTransformer, ChainGrpcOracleApi, ChainGrpcPeggyApi, ChainGrpcPeggyTransformer, ChainGrpcPermissionsApi, ChainGrpcPermissionsTransformer, ChainGrpcStakingApi, ChainGrpcStakingTransformer, ChainGrpcTendermintApi, ChainGrpcTokenFactoryApi, ChainGrpcTokenFactoryTransformer, ChainGrpcTxFeesApi, ChainGrpcTxFeesTransformer, ChainGrpcWasmApi, ChainGrpcWasmTransformer, ChainGrpcWasmXApi, ChainModule, ChainRestAuthApi, ChainRestBankApi, ChainRestTendermintApi, ChainRestWasmApi, ContractCodeHistoryOperationTypeMap, ContractExecutionAuthorization as ContractExecutionAuthz, ContractExecutionCompatAuthorization as ContractExecutionCompatAuthz, CosmosTxV1Beta1TxPb, DEFAULT_DERIVATION_PATH, OLPGrpcApi as DmmGrpcApi, OLPGrpcApi, ExecArgCW20AdapterRedeemAndTransfer, ExecArgCW20Send, ExecArgCW20Transfer, ExecArgCreateCampaign, ExecArgCreatePerpGridStrategy, ExecArgCreateRound, ExecArgCreateSpotGridStrategy, ExecArgDepositTokens, ExecArgFundCampaign, ExecArgIncreaseAllowance, ExecArgInitiateTransfer, ExecArgNeptuneDeposit, ExecArgNeptuneWithdraw, ExecArgRemoveGridStrategy, ExecArgSubmitVaa, ExecArgSwapExactOutput, ExecArgSwapMinOutput, ExecArgUpdateGridConfig, ExecPrivilegedArgOffChainVaultRedeem, ExecPrivilegedArgOffChainVaultSubscribe, ExecPrivilegedArgVaultRedeem, ExecPrivilegedArgVaultSubscribe, ExitType, ExplorerStreamTransformer, GenericAuthorization as GenericAuthz, GrantAuthorizationType, GridStrategyType, GrpcMarketStatusMap, GrpcOrderTypeMap, GrpcWebFetchTransport, IncentivesQueryTransformer, IndexerAccountPortfolioStreamTransformer, IndexerAccountStreamTransformer, IndexerArchiverStreamTransformer, IndexerAuctionStreamTransformer, IndexerCampaignTransformer, IndexerDerivativeStreamTransformer, IndexerGrpcAccountApi, IndexerGrpcAccountPortfolioApi, IndexerGrpcAccountPortfolioStream, IndexerGrpcAccountPortfolioTransformer, IndexerGrpcAccountStream, IndexerGrpcAccountTransformer, IndexerGrpcArchiverApi, IndexerGrpcArchiverStream, IndexerGrpcArchiverTransformer, IndexerGrpcAuctionApi, IndexerGrpcAuctionStream, IndexerGrpcAuctionTransformer, IndexerGrpcCampaignApi, IndexerGrpcDerivativeTransformer, IndexerGrpcDerivativesApi, IndexerGrpcDerivativesStream, IndexerGrpcExplorerApi, IndexerGrpcExplorerStream, IndexerGrpcExplorerTransformer, IndexerGrpcInsuranceFundApi, IndexerGrpcInsuranceFundTransformer, IndexerGrpcMegaVaultApi, IndexerGrpcMegaVaultTransformer, IndexerGrpcMetaApi, IndexerGrpcMitoApi, IndexerGrpcMitoStream, IndexerGrpcMitoStreamTransformer, IndexerGrpcMitoTransformer, IndexerGrpcOracleApi, IndexerGrpcOracleStream, IndexerGrpcOracleTransformer, IndexerGrpcReferralApi, IndexerGrpcReferralTransformer, IndexerGrpcSpotApi, IndexerGrpcSpotStream, IndexerGrpcSpotTransformer, IndexerGrpcTradingApi, IndexerGrpcTradingStream, IndexerGrpcTransactionApi, IndexerGrpcWeb3GwApi, IndexerModule, IndexerOracleStreamTransformer, IndexerRestDerivativesChronosApi, IndexerRestExplorerApi, IndexerRestExplorerTransformer, IndexerRestLeaderboardChronosApi, IndexerRestMarketChronosApi, IndexerRestSpotChronosApi, IndexerSpotStreamTransformer, InjNameServiceQueryTransformer, MarketType, MitoGaugeStatus, MsgAdminUpdateBinaryOptionsMarket, MsgAuthorizeStakeGrants, MsgExec as MsgAuthzExec, MsgBatchCancelBinaryOptionsOrders, MsgBatchCancelDerivativeOrders, MsgBatchCancelSpotOrders, MsgBatchUpdateOrders, MsgBeginRedelegate, MsgBid, MsgBroadcasterWithPk, MsgBurn, MsgCancelBinaryOptionsOrder, MsgCancelDerivativeOrder, MsgCancelPostOnlyModeV2, MsgCancelSpotOrder, MsgCancelUnbondingDelegation, MsgChangeAdmin, MsgClaimVoucher, MsgCreateBinaryOptionsLimitOrder, MsgCreateBinaryOptionsMarketOrder, MsgCreateDenom, MsgCreateDerivativeLimitOrder, MsgCreateDerivativeMarketOrder, MsgCreateInsuranceFund, MsgCreateNamespace, MsgCreateSpotLimitOrder, MsgCreateSpotMarketOrder, MsgCreateValidator, MsgDecoder, MsgDelegate, MsgDeposit, MsgEditValidator, MsgExecuteContract, MsgExecuteContractCompat, MsgExternalTransfer, MsgFundCommunityPool, MsgDeposit$1 as MsgGovDeposit, MsgGrant, MsgGrantAllowance, MsgGrantWithAuthorization, MsgIncreasePositionMargin, MsgInstantBinaryOptionsMarketLaunch, MsgInstantSpotMarketLaunch, MsgInstantiateContract, MsgLiquidatePosition, MsgMigrateContract, MsgMint, MsgMultiSend, MsgPrivilegedExecuteContract, MsgReclaimLockedFunds, MsgRequestRedemption, MsgRevoke, MsgRevokeAllowance, MsgRewardsOptOut, MsgSend, MsgSendToEth, MsgSetDelegationTransferReceivers, MsgSetDenomMetadata, MsgSignData, MsgStoreCode, MsgSubmitGenericProposal, MsgSubmitProposalExpiryFuturesMarketLaunch, MsgSubmitProposalPerpetualMarketLaunch, MsgSubmitProposalPerpetualMarketLaunchV2, MsgSubmitProposalSpotMarketLaunch, MsgSubmitProposalSpotMarketParamUpdate, MsgSubmitTextProposal, MsgTransfer, MsgTransferDelegation, MsgUndelegate, MsgUnderwrite, MsgUpdateActorRoles, MsgUpdateAdmin, MsgUpdateDerivativeMarketV2, MsgUpdateNamespace, MsgUpdateParams, MsgUpdateSpotMarketV2, MsgVote, MsgWithdraw, MsgWithdrawDelegatorReward, MsgWithdrawValidatorCommission, NEPTUNE_PRICE_CONTRACT, NEPTUNE_USDT_CW20_CONTRACT, NeptuneQueryTransformer, NeptuneService, OracleType, OracleTypeMap, OrderHashManager, OrderMaskMap, OrderTypeMap, PermissionActionMap, PrivateKey, ProposalDecomposer, ProposalStatusMap, PublicKey, QueryAllRounds, QueryAllRoutes, QueryGetAllLendingRates, QueryGetCampaigns, QueryGetPrices, QueryInjName, QueryInjectiveAddress, QueryInputQuantity, QueryOutputQuantity, QueryResolverAddress, QueryRoute, QueryTradingStrategyContractAllStrategies, QueryTradingStrategyContractConfig, QueryTradingStrategyContractTotalStrategies, QueryTradingStrategyContractUserStrategies, RedemptionStatus, SIGN_AMINO, SIGN_DIRECT, SIGN_EIP712, SIGN_EIP712_V2, SignTypedDataVersionV4, StrategyType, StreamOperation, SwapQueryTransformer, TokenFactoryStatic, TokenPrice, TokenSource, TokenStaticFactory, TokenType, TokenVerification, TradeDirection, TradeExecutionSide, TradeExecutionType, TransferType, TxClient, TxClientMode, TxGrpcApi, TxRestApi, TypedDataUtilsHashStruct, TypedDataUtilsSanitizeData, ValidatorUptimeStatus, VoteOptionMap, accountEthParser, addHexPrefix, amountToCosmosSdkDecAmount, base64ToUint8Array, binaryToBase64, concatUint8Arrays, cosmosSdkDecToBigNumber, createAny, createAnyMessage, createAuthInfo, createBody, createFee, createNonCriticalExtensionFromObject, createSignDoc, createSignDocFromTransaction, createSignerInfo, createSigners, createTransaction, createTransactionAndCosmosSignDoc, createTransactionAndCosmosSignDocForAddressAndMsg, createTransactionForAddressAndMsg, createTransactionFromMsg, createTransactionWithSigners, createTxRawEIP712, createTxRawFromSigResponse, createWeb3Extension, decompressPubKey, denomAmountFromChainDenomAmount, denomAmountFromChainDenomAmountToFixed, denomAmountFromGrpcChainDenomAmount, denomAmountToChainDenomAmount, denomAmountToChainDenomAmountToFixed, denomAmountToGrpcChainDenomAmount, derivativeMarginFromChainMargin, derivativeMarginFromChainMarginToFixed, derivativeMarginToChainMargin, derivativeMarginToChainMarginToFixed, derivativePriceFromChainPrice, derivativePriceFromChainPriceToFixed, derivativePriceToChainPrice, derivativePriceToChainPriceToFixed, derivativeQuantityFromChainQuantity, derivativeQuantityFromChainQuantityToFixed, derivativeQuantityToChainQuantity, derivativeQuantityToChainQuantityToFixed, domainHash, errorToErrorMessage, fetchAllWithPagination, formatAmountToAllowableAmount, formatAmountToAllowableDecimals, formatNumberToAllowableDecimals, formatNumberToAllowableTensMultiplier, formatPriceToAllowableDecimals, formatPriceToAllowablePrice, fromBase64, fromUtf8, generateArbitrarySignDoc, getAddressFromInjectiveAddress, getAminoStdSignDoc, getChecksumAddress, getDefaultEip712Types, getDefaultEip712TypesV2, getDefaultSubaccountId, getDerivativeMarketDecimals, getDerivativeMarketTensMultiplier, getEip712Domain, getEip712DomainV2, getEip712Fee, getEip712FeeV2, getEip712TypedData, getEip712TypedDataV2, getEipTxContext, getEipTxDetails, getErrorMessage, getEthereumAddress, getEthereumSignerAddress, getExactDecimalsFromNumber, getGasPriceBasedOnMessage, getGenericAuthorizationFromMessageType, getGrpcWebTransport, getInjectiveAddress, getInjectiveAddressFromSubaccountId, getInjectiveSignerAddress, getObjectEip712PropertyType, getPublicKey, getSignificantDecimalsFromNumber, getSpotMarketDecimals, getSpotMarketTensMultiplier, getSubaccountId, getTensMultiplier, getTransactionPartsFromTxRaw, getTxRawFromTxRawOrDirectSignResponse, getTypesIncludingFeePayer, grpcCoinToUiCoin, grpcPaginationToPagination, grpcPagingToPaging, grpcPagingToPagingV2, hashToHex, hexToBase64, hexToBuff, hexToNumber, hexToUint8Array, isBrowser, isCw20ContractAddress, isJsonString, isNode, isNumber, isReactNative, isServerSide, isTxNotFoundError, makeTimeoutTimestamp, makeTimeoutTimestampInNs, messageHash, msgsOrMsgExecMsgs, numberToCosmosSdkDecString, numberTypeToReflectionNumberType, objectKeysToEip712Types, objectToJson, ofacWallets, pageRequestToGrpcPageRequestV2, paginationRequestFromPagination, paginationUint8ArrayToString, parseCoins, privateKeyHashToPublicKey, privateKeyHashToPublicKeyBase64, privateKeyToPublicKey, privateKeyToPublicKeyBase64, protoObjectToJson, protoTypeToAminoType, protobufTimestampToDate, protobufTimestampToUnixMs, protobufTimestampToUnixSeconds, publicKeyToAddress, recoverTypedSignaturePubKey, removeHexPrefix, ripemd160, sanitizeTypedData, sha256, sortObjectByKeys, sortObjectByKeysWithReduce, spotPriceFromChainPrice, spotPriceFromChainPriceToFixed, spotPriceToChainPrice, spotPriceToChainPriceToFixed, spotQuantityFromChainQuantity, spotQuantityFromChainQuantityToFixed, spotQuantityToChainQuantity, spotQuantityToChainQuantityToFixed, stringToUint8Array, stringTypeToReflectionStringType, toBase64, toUtf8, uint8ArrayToBase64, uint8ArrayToHex, uint8ArrayToString, waitTxBroadcasted };
17778
+ export { AbacusGrpcApi, AccessType, AccessTypeCode, Address, BECH32_ADDR_ACC_PREFIX, BECH32_ADDR_CONS_PREFIX, BECH32_ADDR_VAL_PREFIX, BECH32_PUBKEY_ACC_PREFIX, BECH32_PUBKEY_CONS_PREFIX, BECH32_PUBKEY_VAL_PREFIX, BaseAccount, BondStatus, BroadcastMode, BroadcastModeKeplr, ChainGrpcAuctionApi, ChainGrpcAuctionTransformer, ChainGrpcAuthApi, ChainGrpcAuthTransformer, ChainGrpcAuthZApi, ChainGrpcAuthZTransformer, ChainGrpcBankApi, ChainGrpcBankTransformer, ChainGrpcCommonTransformer, ChainGrpcDistributionApi, ChainGrpcDistributionTransformer, ChainGrpcErc20Api, ChainGrpcErc20Transformer, ChainGrpcEvmApi, ChainGrpcEvmTransformer, ChainGrpcExchangeApi, ChainGrpcExchangeTransformer, ChainGrpcGovApi, ChainGrpcGovTransformer, ChainGrpcIbcApi, ChainGrpcInsuranceFundApi, ChainGrpcInsuranceFundTransformer, ChainGrpcMintApi, ChainGrpcMintTransformer, ChainGrpcOracleApi, ChainGrpcPeggyApi, ChainGrpcPeggyTransformer, ChainGrpcPermissionsApi, ChainGrpcPermissionsTransformer, ChainGrpcStakingApi, ChainGrpcStakingTransformer, ChainGrpcTendermintApi, ChainGrpcTokenFactoryApi, ChainGrpcTokenFactoryTransformer, ChainGrpcTxFeesApi, ChainGrpcTxFeesTransformer, ChainGrpcWasmApi, ChainGrpcWasmTransformer, ChainGrpcWasmXApi, ChainModule, ChainRestAuthApi, ChainRestBankApi, ChainRestTendermintApi, ChainRestWasmApi, ContractCodeHistoryOperationTypeMap, ContractExecutionAuthorization as ContractExecutionAuthz, ContractExecutionCompatAuthorization as ContractExecutionCompatAuthz, CosmosTxV1Beta1TxPb, DEFAULT_DERIVATION_PATH, OLPGrpcApi as DmmGrpcApi, OLPGrpcApi, ExecArgCW20AdapterRedeemAndTransfer, ExecArgCW20Send, ExecArgCW20Transfer, ExecArgCreateCampaign, ExecArgCreatePerpGridStrategy, ExecArgCreateRound, ExecArgCreateSpotGridStrategy, ExecArgDepositTokens, ExecArgFundCampaign, ExecArgIncreaseAllowance, ExecArgInitiateTransfer, ExecArgNeptuneDeposit, ExecArgNeptuneWithdraw, ExecArgRemoveGridStrategy, ExecArgSubmitVaa, ExecArgSwapExactOutput, ExecArgSwapMinOutput, ExecArgUpdateGridConfig, ExecPrivilegedArgOffChainVaultRedeem, ExecPrivilegedArgOffChainVaultSubscribe, ExecPrivilegedArgVaultRedeem, ExecPrivilegedArgVaultSubscribe, ExitType, ExplorerStreamTransformer, GenericAuthorization as GenericAuthz, GrantAuthorizationType, GridStrategyType, GrpcMarketStatusMap, GrpcOrderTypeMap, GrpcWebFetchTransport, IncentivesQueryTransformer, IndexerAccountPortfolioStreamTransformer, IndexerAccountStreamTransformer, IndexerArchiverStreamTransformer, IndexerAuctionStreamTransformer, IndexerCampaignTransformer, IndexerDerivativeStreamTransformer, IndexerGrpcAccountApi, IndexerGrpcAccountPortfolioApi, IndexerGrpcAccountPortfolioStream, IndexerGrpcAccountPortfolioTransformer, IndexerGrpcAccountStream, IndexerGrpcAccountTransformer, IndexerGrpcArchiverApi, IndexerGrpcArchiverStream, IndexerGrpcArchiverTransformer, IndexerGrpcAuctionApi, IndexerGrpcAuctionStream, IndexerGrpcAuctionTransformer, IndexerGrpcCampaignApi, IndexerGrpcDerivativeTransformer, IndexerGrpcDerivativesApi, IndexerGrpcDerivativesStream, IndexerGrpcExplorerApi, IndexerGrpcExplorerStream, IndexerGrpcExplorerTransformer, IndexerGrpcInsuranceFundApi, IndexerGrpcInsuranceFundTransformer, IndexerGrpcMegaVaultApi, IndexerGrpcMegaVaultTransformer, IndexerGrpcMetaApi, IndexerGrpcMitoApi, IndexerGrpcMitoStream, IndexerGrpcMitoStreamTransformer, IndexerGrpcMitoTransformer, IndexerGrpcOracleApi, IndexerGrpcOracleStream, IndexerGrpcOracleTransformer, IndexerGrpcReferralApi, IndexerGrpcReferralTransformer, IndexerGrpcSpotApi, IndexerGrpcSpotStream, IndexerGrpcSpotTransformer, IndexerGrpcTradingApi, IndexerGrpcTradingStream, IndexerGrpcTransactionApi, IndexerGrpcWeb3GwApi, IndexerModule, IndexerOracleStreamTransformer, IndexerRestDerivativesChronosApi, IndexerRestExplorerApi, IndexerRestExplorerTransformer, IndexerRestLeaderboardChronosApi, IndexerRestMarketChronosApi, IndexerRestSpotChronosApi, IndexerSpotStreamTransformer, InjNameServiceQueryTransformer, MarketType, MitoGaugeStatus, MsgAdminUpdateBinaryOptionsMarket, MsgAuthorizeStakeGrants, MsgExec as MsgAuthzExec, MsgBatchCancelBinaryOptionsOrders, MsgBatchCancelDerivativeOrders, MsgBatchCancelSpotOrders, MsgBatchUpdateOrders, MsgBeginRedelegate, MsgBid, MsgBroadcasterWithPk, MsgBurn, MsgCancelBinaryOptionsOrder, MsgCancelDerivativeOrder, MsgCancelPostOnlyModeV2, MsgCancelSpotOrder, MsgCancelUnbondingDelegation, MsgChangeAdmin, MsgClaimVoucher, MsgCreateBinaryOptionsLimitOrder, MsgCreateBinaryOptionsMarketOrder, MsgCreateDenom, MsgCreateDerivativeLimitOrder, MsgCreateDerivativeMarketOrder, MsgCreateInsuranceFund, MsgCreateNamespace, MsgCreateSpotLimitOrder, MsgCreateSpotMarketOrder, MsgCreateValidator, MsgDecoder, MsgDelegate, MsgDeposit, MsgEditValidator, MsgExecuteContract, MsgExecuteContractCompat, MsgExternalTransfer, MsgFundCommunityPool, MsgDeposit$1 as MsgGovDeposit, MsgGrant, MsgGrantAllowance, MsgGrantWithAuthorization, MsgIncreasePositionMargin, MsgInstantBinaryOptionsMarketLaunch, MsgInstantSpotMarketLaunch, MsgInstantiateContract, MsgLiquidatePosition, MsgMigrateContract, MsgMint, MsgMultiSend, MsgPrivilegedExecuteContract, MsgReclaimLockedFunds, MsgRequestRedemption, MsgRevoke, MsgRevokeAllowance, MsgRewardsOptOut, MsgSend, MsgSendToEth, MsgSetDelegationTransferReceivers, MsgSetDenomMetadata, MsgSignData, MsgStoreCode, MsgSubmitGenericProposal, MsgSubmitProposalExpiryFuturesMarketLaunch, MsgSubmitProposalPerpetualMarketLaunch, MsgSubmitProposalPerpetualMarketLaunchV2, MsgSubmitProposalSpotMarketLaunch, MsgSubmitProposalSpotMarketParamUpdate, MsgSubmitTextProposal, MsgTransfer, MsgTransferDelegation, MsgUndelegate, MsgUnderwrite, MsgUpdateActorRoles, MsgUpdateAdmin, MsgUpdateDerivativeMarketV2, MsgUpdateNamespace, MsgUpdateParams, MsgUpdateSpotMarketV2, MsgVote, MsgWithdraw, MsgWithdrawDelegatorReward, MsgWithdrawValidatorCommission, NEPTUNE_PRICE_CONTRACT, NEPTUNE_USDT_CW20_CONTRACT, NeptuneQueryTransformer, NeptuneService, OracleType, OracleTypeMap, OrderHashManager, OrderMaskMap, OrderTypeMap, PermissionActionMap, PrivateKey, ProposalDecomposer, ProposalStatusMap, PublicKey, QueryAllRounds, QueryAllRoutes, QueryGetAllLendingRates, QueryGetCampaigns, QueryGetPrices, QueryInjName, QueryInjectiveAddress, QueryInputQuantity, QueryOutputQuantity, QueryResolverAddress, QueryRoute, QueryTradingStrategyContractAllStrategies, QueryTradingStrategyContractConfig, QueryTradingStrategyContractTotalStrategies, QueryTradingStrategyContractUserStrategies, RedemptionStatus, SIGN_AMINO, SIGN_DIRECT, SIGN_EIP712, SIGN_EIP712_V2, SignTypedDataVersionV4, StrategyType, StreamOperation, SwapQueryTransformer, TokenFactoryStatic, TokenPrice, TokenSource, TokenStaticFactory, TokenType, TokenVerification, TradeDirection, TradeExecutionSide, TradeExecutionType, TransferType, TxClient, TxClientMode, TxGrpcApi, TxRestApi, TypedDataUtilsHashStruct, TypedDataUtilsSanitizeData, ValidatorUptimeStatus, VoteOptionMap, accountEthParser, addHexPrefix, amountToCosmosSdkDecAmount, base64ToUint8Array, base64ToUtf8, binaryToBase64, concatUint8Arrays, cosmosSdkDecToBigNumber, createAny, createAnyMessage, createAuthInfo, createBody, createFee, createNonCriticalExtensionFromObject, createSignDoc, createSignDocFromTransaction, createSignerInfo, createSigners, createTransaction, createTransactionAndCosmosSignDoc, createTransactionAndCosmosSignDocForAddressAndMsg, createTransactionForAddressAndMsg, createTransactionFromMsg, createTransactionWithSigners, createTxRawEIP712, createTxRawFromSigResponse, createWeb3Extension, decompressPubKey, denomAmountFromChainDenomAmount, denomAmountFromChainDenomAmountToFixed, denomAmountFromGrpcChainDenomAmount, denomAmountToChainDenomAmount, denomAmountToChainDenomAmountToFixed, denomAmountToGrpcChainDenomAmount, derivativeMarginFromChainMargin, derivativeMarginFromChainMarginToFixed, derivativeMarginToChainMargin, derivativeMarginToChainMarginToFixed, derivativePriceFromChainPrice, derivativePriceFromChainPriceToFixed, derivativePriceToChainPrice, derivativePriceToChainPriceToFixed, derivativeQuantityFromChainQuantity, derivativeQuantityFromChainQuantityToFixed, derivativeQuantityToChainQuantity, derivativeQuantityToChainQuantityToFixed, domainHash, errorToErrorMessage, fetchAllWithPagination, formatAmountToAllowableAmount, formatAmountToAllowableDecimals, formatNumberToAllowableDecimals, formatNumberToAllowableTensMultiplier, formatPriceToAllowableDecimals, formatPriceToAllowablePrice, fromBase64, fromUtf8, generateArbitrarySignDoc, getAddressFromInjectiveAddress, getAminoStdSignDoc, getChecksumAddress, getDefaultEip712Types, getDefaultEip712TypesV2, getDefaultSubaccountId, getDerivativeMarketDecimals, getDerivativeMarketTensMultiplier, getEip712Domain, getEip712DomainV2, getEip712Fee, getEip712FeeV2, getEip712TypedData, getEip712TypedDataV2, getEipTxContext, getEipTxDetails, getErrorMessage, getEthereumAddress, getEthereumSignerAddress, getExactDecimalsFromNumber, getGasPriceBasedOnMessage, getGenericAuthorizationFromMessageType, getGrpcWebTransport, getInjectiveAddress, getInjectiveAddressFromSubaccountId, getInjectiveSignerAddress, getObjectEip712PropertyType, getPublicKey, getSignificantDecimalsFromNumber, getSpotMarketDecimals, getSpotMarketTensMultiplier, getSubaccountId, getTensMultiplier, getTransactionPartsFromTxRaw, getTxRawFromTxRawOrDirectSignResponse, getTypesIncludingFeePayer, grpcCoinToUiCoin, grpcPaginationToPagination, grpcPagingToPaging, grpcPagingToPagingV2, hashToHex, hexToBase64, hexToBuff, hexToNumber, hexToUint8Array, isBrowser, isCw20ContractAddress, isJsonString, isNode, isNumber, isReactNative, isServerSide, isTxNotFoundError, makeTimeoutTimestamp, makeTimeoutTimestampInNs, messageHash, msgsOrMsgExecMsgs, numberToCosmosSdkDecString, numberTypeToReflectionNumberType, objectKeysToEip712Types, objectToJson, ofacWallets, pageRequestToGrpcPageRequestV2, paginationRequestFromPagination, paginationUint8ArrayToString, parseCoins, privateKeyHashToPublicKey, privateKeyHashToPublicKeyBase64, privateKeyToPublicKey, privateKeyToPublicKeyBase64, protoObjectToJson, protoTypeToAminoType, protobufTimestampToDate, protobufTimestampToUnixMs, protobufTimestampToUnixSeconds, publicKeyToAddress, recoverTypedSignaturePubKey, removeHexPrefix, ripemd160, sanitizeTypedData, sha256, sortObjectByKeys, sortObjectByKeysWithReduce, spotPriceFromChainPrice, spotPriceFromChainPriceToFixed, spotPriceToChainPrice, spotPriceToChainPriceToFixed, spotQuantityFromChainQuantity, spotQuantityFromChainQuantityToFixed, spotQuantityToChainQuantity, spotQuantityToChainQuantityToFixed, stringToUint8Array, stringTypeToReflectionStringType, toBase64, toUtf8, uint8ArrayToBase64, uint8ArrayToHex, uint8ArrayToString, waitTxBroadcasted };
@@ -107,6 +107,15 @@ function hexToBase64(hex) {
107
107
  return uint8ArrayToBase64(hexToUint8Array(hex.startsWith("0x") ? hex.slice(2) : hex));
108
108
  }
109
109
  /**
110
+ * Convert a base64 string to UTF-8 string
111
+ * @param base64String - Base64 encoded string
112
+ * @returns Decoded UTF-8 string
113
+ * @throws Error if base64 string is invalid
114
+ */
115
+ function base64ToUtf8(base64String) {
116
+ return toUtf8(base64ToUint8Array(base64String));
117
+ }
118
+ /**
110
119
  * Convert a string or Uint8Array to Uint8Array using UTF-8 encoding
111
120
  * If input is already Uint8Array, returns it as-is
112
121
  * @param str - String or Uint8Array to encode
@@ -2640,4 +2649,4 @@ const generateArbitrarySignDoc = (message, signer) => {
2640
2649
  };
2641
2650
 
2642
2651
  //#endregion
2643
- export { createBody as $, hexToBuff as $n, getExactDecimalsFromNumber as $t, VoteOptionMap as A, messageHash as An, denomAmountFromChainDenomAmountToFixed as At, getEip712DomainV2 as B, BECH32_ADDR_ACC_PREFIX as Bn, derivativePriceFromChainPriceToFixed as Bt, OracleTypeMap as C, sortObjectByKeysWithReduce as Cn, getInjectiveAddressFromSubaccountId as Ct, BondStatus as D, decompressPubKey as Dn, amountToCosmosSdkDecAmount as Dt, OrderTypeMap as E, TypedDataUtilsSanitizeData as En, removeHexPrefix as Et, getEip712TypedData as F, publicKeyToAddress as Fn, derivativeMarginFromChainMargin as Ft, getTypesIncludingFeePayer as G, BECH32_PUBKEY_VAL_PREFIX as Gn, derivativeQuantityToChainQuantity as Gt, getEip712FeeV2 as H, BECH32_ADDR_VAL_PREFIX as Hn, derivativePriceToChainPriceToFixed as Ht, getEip712TypedDataV2 as I, ripemd160 as In, derivativeMarginFromChainMarginToFixed as It, objectKeysToEip712Types as J, binaryToBase64 as Jn, formatAmountToAllowableDecimals as Jt, getObjectEip712PropertyType as K, DEFAULT_DERIVATION_PATH as Kn, derivativeQuantityToChainQuantityToFixed as Kt, getDefaultEip712Types as L, sanitizeTypedData as Ln, derivativeMarginToChainMargin as Lt, MsgSignData as M, privateKeyHashToPublicKeyBase64 as Mn, denomAmountToChainDenomAmount as Mt, MsgBase as N, privateKeyToPublicKey as Nn, denomAmountToChainDenomAmountToFixed as Nt, ContractCodeHistoryOperationTypeMap as O, domainHash as On, cosmosSdkDecToBigNumber as Ot, prepareSignBytes as P, privateKeyToPublicKeyBase64 as Pn, denomAmountToGrpcChainDenomAmount as Pt, createAuthInfo as Q, hexToBase64 as Qn, formatPriceToAllowablePrice as Qt, getDefaultEip712TypesV2 as R, sha256 as Rn, derivativeMarginToChainMarginToFixed as Rt, OracleType as S, sortObjectByKeys as Sn, getInjectiveAddress as St, GrpcOrderTypeMap as T, TypedDataUtilsHashStruct as Tn, isCw20ContractAddress as Tt, getEipTxContext as U, BECH32_PUBKEY_ACC_PREFIX as Un, derivativeQuantityFromChainQuantity as Ut, getEip712Fee as V, BECH32_ADDR_CONS_PREFIX as Vn, derivativePriceToChainPrice as Vt, getEipTxDetails as W, BECH32_PUBKEY_CONS_PREFIX as Wn, derivativeQuantityFromChainQuantityToFixed as Wt, stringTypeToReflectionStringType as X, fromBase64 as Xn, formatNumberToAllowableTensMultiplier as Xt, protoTypeToAminoType as Y, concatUint8Arrays as Yn, formatNumberToAllowableDecimals as Yt, CosmosTxV1Beta1TxPb as Z, fromUtf8 as Zn, formatPriceToAllowableDecimals as Zt, BaseAccount as _, isNode as _n, addHexPrefix as _t, createTransactionForAddressAndMsg as a, spotPriceFromChainPriceToFixed as an, uint8ArrayToHex as ar, createSigners as at, ChainModule as b, objectToJson as bn, getDefaultSubaccountId as bt, createTxRawFromSigResponse as c, spotQuantityFromChainQuantity as cn, getAminoStdSignDoc as ct, SIGN_DIRECT as d, spotQuantityToChainQuantityToFixed as dn, createAny as dt, getSignificantDecimalsFromNumber as en, hexToUint8Array as er, createFee as et, SIGN_EIP712 as f, getErrorMessage as fn, createAnyMessage as ft, BaseRestConsumer as g, isJsonString as gn, recoverTypedSignaturePubKey as gt, ChainRestAuthApi as h, isBrowser as hn, PublicKey as ht, createTransactionAndCosmosSignDocForAddressAndMsg as i, spotPriceFromChainPrice as in, uint8ArrayToBase64 as ir, createSignerInfo as it, MsgIncreasePositionMargin as j, privateKeyHashToPublicKey as jn, denomAmountFromGrpcChainDenomAmount as jt, ProposalStatusMap as k, hashToHex as kn, denomAmountFromChainDenomAmount as kt, getTxRawFromTxRawOrDirectSignResponse as l, spotQuantityFromChainQuantityToFixed as ln, getPublicKey as lt, ChainRestTendermintApi as m, hexToNumber as mn, getInjectiveSignerAddress as mt, createTransaction as n, isNumber as nn, toBase64 as nr, createSignDoc as nt, createTransactionFromMsg as o, spotPriceToChainPrice as on, uint8ArrayToString as or, createTxRawEIP712 as ot, SIGN_EIP712_V2 as p, grpcCoinToUiCoin as pn, getEthereumSignerAddress as pt, numberTypeToReflectionNumberType as q, base64ToUint8Array as qn, formatAmountToAllowableAmount as qt, createTransactionAndCosmosSignDoc as r, numberToCosmosSdkDecString as rn, toUtf8 as rr, createSignDocFromTransaction as rt, createTransactionWithSigners as s, spotPriceToChainPriceToFixed as sn, createWeb3Extension as st, generateArbitrarySignDoc as t, getTensMultiplier as tn, stringToUint8Array as tr, createNonCriticalExtensionFromObject as tt, SIGN_AMINO as u, spotQuantityToChainQuantity as un, getTransactionPartsFromTxRaw as ut, PrivateKey as v, isReactNative as vn, getAddressFromInjectiveAddress as vt, GrpcMarketStatusMap as w, SignTypedDataVersionV4 as wn, getSubaccountId as wt, PermissionActionMap as x, protoObjectToJson as xn, getEthereumAddress as xt, MsgDecoder as y, isServerSide as yn, getChecksumAddress as yt, getEip712Domain as z, Address as zn, derivativePriceFromChainPrice as zt };
2652
+ export { createBody as $, hexToBase64 as $n, getExactDecimalsFromNumber as $t, VoteOptionMap as A, messageHash as An, denomAmountFromChainDenomAmountToFixed as At, getEip712DomainV2 as B, BECH32_ADDR_ACC_PREFIX as Bn, derivativePriceFromChainPriceToFixed as Bt, OracleTypeMap as C, sortObjectByKeysWithReduce as Cn, getInjectiveAddressFromSubaccountId as Ct, BondStatus as D, decompressPubKey as Dn, amountToCosmosSdkDecAmount as Dt, OrderTypeMap as E, TypedDataUtilsSanitizeData as En, removeHexPrefix as Et, getEip712TypedData as F, publicKeyToAddress as Fn, derivativeMarginFromChainMargin as Ft, getTypesIncludingFeePayer as G, BECH32_PUBKEY_VAL_PREFIX as Gn, derivativeQuantityToChainQuantity as Gt, getEip712FeeV2 as H, BECH32_ADDR_VAL_PREFIX as Hn, derivativePriceToChainPriceToFixed as Ht, getEip712TypedDataV2 as I, ripemd160 as In, derivativeMarginFromChainMarginToFixed as It, objectKeysToEip712Types as J, base64ToUtf8 as Jn, formatAmountToAllowableDecimals as Jt, getObjectEip712PropertyType as K, DEFAULT_DERIVATION_PATH as Kn, derivativeQuantityToChainQuantityToFixed as Kt, getDefaultEip712Types as L, sanitizeTypedData as Ln, derivativeMarginToChainMargin as Lt, MsgSignData as M, privateKeyHashToPublicKeyBase64 as Mn, denomAmountToChainDenomAmount as Mt, MsgBase as N, privateKeyToPublicKey as Nn, denomAmountToChainDenomAmountToFixed as Nt, ContractCodeHistoryOperationTypeMap as O, domainHash as On, cosmosSdkDecToBigNumber as Ot, prepareSignBytes as P, privateKeyToPublicKeyBase64 as Pn, denomAmountToGrpcChainDenomAmount as Pt, createAuthInfo as Q, fromUtf8 as Qn, formatPriceToAllowablePrice as Qt, getDefaultEip712TypesV2 as R, sha256 as Rn, derivativeMarginToChainMarginToFixed as Rt, OracleType as S, sortObjectByKeys as Sn, getInjectiveAddress as St, GrpcOrderTypeMap as T, TypedDataUtilsHashStruct as Tn, isCw20ContractAddress as Tt, getEipTxContext as U, BECH32_PUBKEY_ACC_PREFIX as Un, derivativeQuantityFromChainQuantity as Ut, getEip712Fee as V, BECH32_ADDR_CONS_PREFIX as Vn, derivativePriceToChainPrice as Vt, getEipTxDetails as W, BECH32_PUBKEY_CONS_PREFIX as Wn, derivativeQuantityFromChainQuantityToFixed as Wt, stringTypeToReflectionStringType as X, concatUint8Arrays as Xn, formatNumberToAllowableTensMultiplier as Xt, protoTypeToAminoType as Y, binaryToBase64 as Yn, formatNumberToAllowableDecimals as Yt, CosmosTxV1Beta1TxPb as Z, fromBase64 as Zn, formatPriceToAllowableDecimals as Zt, BaseAccount as _, isNode as _n, addHexPrefix as _t, createTransactionForAddressAndMsg as a, spotPriceFromChainPriceToFixed as an, uint8ArrayToBase64 as ar, createSigners as at, ChainModule as b, objectToJson as bn, getDefaultSubaccountId as bt, createTxRawFromSigResponse as c, spotQuantityFromChainQuantity as cn, getAminoStdSignDoc as ct, SIGN_DIRECT as d, spotQuantityToChainQuantityToFixed as dn, createAny as dt, getSignificantDecimalsFromNumber as en, hexToBuff as er, createFee as et, SIGN_EIP712 as f, getErrorMessage as fn, createAnyMessage as ft, BaseRestConsumer as g, isJsonString as gn, recoverTypedSignaturePubKey as gt, ChainRestAuthApi as h, isBrowser as hn, PublicKey as ht, createTransactionAndCosmosSignDocForAddressAndMsg as i, spotPriceFromChainPrice as in, toUtf8 as ir, createSignerInfo as it, MsgIncreasePositionMargin as j, privateKeyHashToPublicKey as jn, denomAmountFromGrpcChainDenomAmount as jt, ProposalStatusMap as k, hashToHex as kn, denomAmountFromChainDenomAmount as kt, getTxRawFromTxRawOrDirectSignResponse as l, spotQuantityFromChainQuantityToFixed as ln, getPublicKey as lt, ChainRestTendermintApi as m, hexToNumber as mn, getInjectiveSignerAddress as mt, createTransaction as n, isNumber as nn, stringToUint8Array as nr, createSignDoc as nt, createTransactionFromMsg as o, spotPriceToChainPrice as on, uint8ArrayToHex as or, createTxRawEIP712 as ot, SIGN_EIP712_V2 as p, grpcCoinToUiCoin as pn, getEthereumSignerAddress as pt, numberTypeToReflectionNumberType as q, base64ToUint8Array as qn, formatAmountToAllowableAmount as qt, createTransactionAndCosmosSignDoc as r, numberToCosmosSdkDecString as rn, toBase64 as rr, createSignDocFromTransaction as rt, createTransactionWithSigners as s, spotPriceToChainPriceToFixed as sn, uint8ArrayToString as sr, createWeb3Extension as st, generateArbitrarySignDoc as t, getTensMultiplier as tn, hexToUint8Array as tr, createNonCriticalExtensionFromObject as tt, SIGN_AMINO as u, spotQuantityToChainQuantity as un, getTransactionPartsFromTxRaw as ut, PrivateKey as v, isReactNative as vn, getAddressFromInjectiveAddress as vt, GrpcMarketStatusMap as w, SignTypedDataVersionV4 as wn, getSubaccountId as wt, PermissionActionMap as x, protoObjectToJson as xn, getEthereumAddress as xt, MsgDecoder as y, isServerSide as yn, getChecksumAddress as yt, getEip712Domain as z, Address as zn, derivativePriceFromChainPrice as zt };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@injectivelabs/sdk-ts",
3
3
  "description": "SDK in TypeScript for building Injective applications in a browser, node, and react native environment.",
4
- "version": "1.16.25-alpha.0",
4
+ "version": "1.16.25-alpha.1",
5
5
  "sideEffects": false,
6
6
  "license": "Apache-2.0",
7
7
  "author": {
@@ -124,16 +124,16 @@
124
124
  "@cosmjs/stargate": "^0.33.0",
125
125
  "@injectivelabs/abacus-proto-ts-v2": "1.17.2",
126
126
  "@injectivelabs/core-proto-ts-v2": "1.17.1",
127
- "@injectivelabs/exceptions": "1.16.25-alpha.0",
127
+ "@injectivelabs/exceptions": "1.16.25-alpha.1",
128
128
  "@injectivelabs/grpc-web": "^0.0.1",
129
129
  "@injectivelabs/grpc-web-node-http-transport": "^0.0.2",
130
130
  "@injectivelabs/grpc-web-react-native-transport": "^0.0.2",
131
131
  "@injectivelabs/indexer-proto-ts-v2": "1.17.1",
132
132
  "@injectivelabs/mito-proto-ts-v2": "1.17.1",
133
- "@injectivelabs/networks": "1.16.25-alpha.0",
133
+ "@injectivelabs/networks": "1.16.25-alpha.1",
134
134
  "@injectivelabs/olp-proto-ts-v2": "1.17.1",
135
- "@injectivelabs/ts-types": "1.16.25-alpha.0",
136
- "@injectivelabs/utils": "1.16.25-alpha.0",
135
+ "@injectivelabs/ts-types": "1.16.25-alpha.1",
136
+ "@injectivelabs/utils": "1.16.25-alpha.1",
137
137
  "@noble/curves": "^1.8.1",
138
138
  "@noble/hashes": "^1.7.1",
139
139
  "@protobuf-ts/grpcweb-transport": "^2.11.1",
@@ -154,7 +154,7 @@
154
154
  "snakecase-keys": "^5.4.1",
155
155
  "viem": "^2.33.2"
156
156
  },
157
- "gitHead": "8766fbe2bf8e2b54c7ee70430dd02b2a5da8e924",
157
+ "gitHead": "e59fe33d170260cc2214f5db7e48e0c7223dc37f",
158
158
  "typedoc": {
159
159
  "entryPoint": "./src/index.ts",
160
160
  "readmeFile": "./README.md",