@injectivelabs/sdk-ts 1.18.18 → 1.18.19
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/{TcAbacusGrpcApi-BCa2MVKP.cjs → TcAbacusGrpcApi-BS--LQ5U.cjs} +16 -0
- package/dist/cjs/client/chain.d.cts +1 -1
- package/dist/cjs/client/indexer.d.cts +1 -1
- package/dist/cjs/client/tcAbacus.cjs +1 -1
- package/dist/cjs/client/tcAbacus.d.cts +2 -2
- package/dist/cjs/core/accounts.d.cts +1 -1
- package/dist/cjs/core/modules.d.cts +1 -1
- package/dist/cjs/core/tx.d.cts +1 -1
- package/dist/cjs/{index-D8FDy_Zv.d.cts → index-Bl_Fyw1G.d.cts} +12 -2
- package/dist/cjs/index.cjs +1 -1
- package/dist/cjs/index.d.cts +2 -2
- package/dist/cjs/utils.d.cts +1 -1
- package/dist/esm/{TcAbacusGrpcApi-H-jMhP5W.js → TcAbacusGrpcApi-5GsBEo3k.js} +16 -0
- package/dist/esm/client/chain.d.ts +1 -1
- package/dist/esm/client/indexer.d.ts +1 -1
- package/dist/esm/client/tcAbacus.d.ts +2 -2
- package/dist/esm/client/tcAbacus.js +1 -1
- package/dist/esm/core/accounts.d.ts +1 -1
- package/dist/esm/core/modules.d.ts +1 -1
- package/dist/esm/core/tx.d.ts +1 -1
- package/dist/esm/{index-DYqx2rC3.d.ts → index-BkBHsdbJ.d.ts} +12 -2
- package/dist/esm/index.d.ts +2 -2
- package/dist/esm/index.js +1 -1
- package/dist/esm/utils.d.ts +1 -1
- package/package.json +6 -6
|
@@ -44,6 +44,7 @@ var TcAbacusGrpcTransformer = class TcAbacusGrpcTransformer {
|
|
|
44
44
|
static grpcAccountStatsToAccountStats(response) {
|
|
45
45
|
return {
|
|
46
46
|
cap: response.cap,
|
|
47
|
+
code: response.code,
|
|
47
48
|
address: response.address,
|
|
48
49
|
last7DVolume: response.last7DVolume,
|
|
49
50
|
inviteeCount: response.inviteeCount,
|
|
@@ -71,6 +72,7 @@ var TcAbacusGrpcTransformer = class TcAbacusGrpcTransformer {
|
|
|
71
72
|
address: invitee.address,
|
|
72
73
|
createdAt: invitee.createdAt,
|
|
73
74
|
height: invitee.height.toString(),
|
|
75
|
+
allTimeVolume: invitee.allTimeVolume,
|
|
74
76
|
referralPoints: invitee.referralPoints
|
|
75
77
|
};
|
|
76
78
|
}
|
|
@@ -102,6 +104,15 @@ var TcAbacusGrpcTransformer = class TcAbacusGrpcTransformer {
|
|
|
102
104
|
codes: response.codes.map((code) => TcAbacusGrpcTransformer.grpcReferrerCodeToReferrerCode(code))
|
|
103
105
|
};
|
|
104
106
|
}
|
|
107
|
+
static grpcInviteeReferrerToInviteeReferrer(response) {
|
|
108
|
+
return {
|
|
109
|
+
code: response.code,
|
|
110
|
+
address: response.address,
|
|
111
|
+
createdAt: response.createdAt,
|
|
112
|
+
height: response.height.toString(),
|
|
113
|
+
referrerAddress: response.referrerAddress
|
|
114
|
+
};
|
|
115
|
+
}
|
|
105
116
|
};
|
|
106
117
|
|
|
107
118
|
//#endregion
|
|
@@ -176,6 +187,11 @@ var TcAbacusGrpcApi = class extends require_BaseGrpcConsumer.BaseGrpcConsumer {
|
|
|
176
187
|
const response = await this.executeGrpcCall(request, this.client.listReferrerCodes.bind(this.client));
|
|
177
188
|
return TcAbacusGrpcTransformer.grpcListReferrerCodesToListReferrerCodes(response);
|
|
178
189
|
}
|
|
190
|
+
async fetchInviteeReferrer(address) {
|
|
191
|
+
const request = __injectivelabs_tc_abacus_proto_ts_v2_generated_injective_tc_abacus_rpc_pb.GetInviteeReferrerRequest.create({ address });
|
|
192
|
+
const response = await this.executeGrpcCall(request, this.client.getInviteeReferrer.bind(this.client));
|
|
193
|
+
return TcAbacusGrpcTransformer.grpcInviteeReferrerToInviteeReferrer(response);
|
|
194
|
+
}
|
|
179
195
|
};
|
|
180
196
|
|
|
181
197
|
//#endregion
|
|
@@ -5,6 +5,6 @@ import "../BaseGrpcConsumer-Ba4uw4ZN.cjs";
|
|
|
5
5
|
import "../index-CgHU4RQF.cjs";
|
|
6
6
|
import "../index-DfJ_98xz.cjs";
|
|
7
7
|
import "../index-BhsPcNn5.cjs";
|
|
8
|
-
import "../index-
|
|
8
|
+
import "../index-Bl_Fyw1G.cjs";
|
|
9
9
|
import "../index-4xdeGNK4.cjs";
|
|
10
10
|
export { AbsoluteTxPosition, Account, AccountResponse, AccountsResponse, AuctionBid, AuctionCurrentBasket, AuctionEventAuctionResult, AuctionEventAuctionStart, AuctionEventBid, AuctionLastAuctionResult, AuctionModuleParams, AuctionModuleState, AuctionModuleStateParams, AuctionModuleStateResponse, AuctionParams, AuthBaseAccount, AuthModuleParams, AuthorityMetadata, BalancesResponse, BankModuleParams, BaseAccountRestResponse, BatchCancelDerivativeOrdersAuthz, BatchCancelSpotOrdersAuthz, BatchCreateDerivativeLimitOrdersAuthz, BatchCreateSpotLimitOrdersAuthz, BlockLatestRestResponse, BondStatus, CampaignRewardPool, 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, CodeInfoResponse, ContractAccountBalance, ContractAccountsBalanceWithPagination, ContractCodeHistoryEntry, ContractCodeHistoryOperationType, ContractCodeHistoryOperationTypeMap, ContractInfo, ContractStateWithPagination, CosmosAccountRestResponse, CreateDerivativeLimitOrderAuthz, CreateDerivativeMarketOrderAuthz, CreateSpotLimitOrderAuthz, CreateSpotMarketOrderAuthz, Delegation, DenomBalance, DenomOwnersResponse, DepositProposalParams, DistributionModuleParams, EthAccount, EvmBlobConfig, EvmBlobScheduleConfig, EvmChainConfig, EvmLog, EvmParams, ExchangeModuleParams, ExchangeParams, FactoryDenomWithMetadata, FeeDiscountAccountInfo, FeeDiscountSchedule, FeeDiscountTierInfo, FeeDiscountTierTTL, GenericAuthorization, GoogleProtoBufAny, GovModuleStateParams, Grant, GrantAuthorization, GrantAuthorizationWithDecodedAuthorization, GrantWithDecodedAuthorization, GrpcAbsoluteTxPosition, GrpcAuctionBid, GrpcAuctionEventAuctionResult, GrpcAuctionEventAuctionStart, GrpcAuctionEventBid, GrpcAuctionLastAuctionResult, GrpcAuctionParams, GrpcBankParams, GrpcCampaignRewardPool, GrpcChainDerivativeMarket, GrpcChainDerivativePosition, GrpcChainFullDerivativeMarket, GrpcChainFullSpotMarket, GrpcChainPosition, GrpcChainSpotMarket, GrpcCodeInfoResponse, GrpcContractCodeHistoryEntry, GrpcContractInfo, GrpcDecCoin, GrpcDelegation, GrpcDelegationDelegatorReward, GrpcDelegationResponse, GrpcDenomDecimals, GrpcDenomMinNotional, GrpcDistributionParams, GrpcEvmBlobConfig, GrpcEvmBlobScheduleConfig, GrpcEvmChainConfig, GrpcEvmLog, GrpcEvmParams, GrpcExchangeParams, GrpcFeeDiscountAccountInfo, GrpcFeeDiscountSchedule, GrpcFeeDiscountTierInfo, GrpcFeeDiscountTierTTL, GrpcGovernanceDepositParams, GrpcGovernanceTallyParams, GrpcGovernanceVotingParams, GrpcInsuranceFund, GrpcInsuranceParams, GrpcMarketStatus, GrpcMarketStatusMap, GrpcMintParams, GrpcOracleParams, GrpcOrderInfo, GrpcOrderType, GrpcOrderTypeMap, GrpcParams, GrpcPeggyParams, GrpcPermissionActorRoles, GrpcPermissionAddressVoucher, GrpcPermissionNamespace, GrpcPermissionPolicyStatus, GrpcPermissionPolicyStatusManagerCapability, GrpcPermissionRole, GrpcPermissionRoleActors, GrpcPermissionRoleIDs, GrpcPermissionRoleManager, GrpcPermissionsNamespace, GrpcPermissionsParams, GrpcPointsMultiplier, GrpcPool, GrpcProposal, GrpcProposalDeposit, ProposalStatus as GrpcProposalStatus, ProposalStatus, GrpcReDelegation, GrpcReDelegationEntryResponse, GrpcReDelegationResponse, GrpcRedemptionSchedule, GrpcSpotMarket, GrpcSpotMarketOrder, GrpcSpotOrder, GrpcStakingParams, GrpcSupply, GrpcTallyResult, GrpcTokenPair, GrpcTradeRewardCampaign, GrpcTradingRewardCampaignBoostInfo, GrpcTradingRewardCampaignInfo, GrpcTxFeesEipBaseFee, GrpcTxFeesParams, GrpcUnbondingDelegation, GrpcUnbondingDelegationEntry, GrpcValidator, GrpcValidatorCommission, GrpcValidatorCommissionRates, GrpcValidatorDescription, GrpcVote, InsuranceFund, InsuranceModuleParams, IsOptedOutOfRewards, MarketingInfo, Metadata, MinModuleParams, NodeInfoRestResponse, OracleModuleParams, OracleType, OracleTypeMap, OrderType, OrderTypeMap, Params, PeggyModuleParams, PermissionActionMap, PermissionActorRoles, PermissionAddressRoles, PermissionAddressVoucher, PermissionGenesisState, PermissionNamespace, PermissionParams, PermissionPolicyManagerCapability, PermissionPolicyStatus, PermissionRole, PermissionRoleActors, PermissionRoleIDs, PermissionRoleManager, PermissionVoucher, PermissionsModuleParams, PointsMultiplier, Pool, Proposal, ProposalDeposit, ProposalStatusMap, PubKey, ReDelegation, RestApiResponse, SendEnabled, StakingModuleParams, TallyResult, TokenFactoryModuleParams, TokenFactoryModuleState, TokenInfo, TokenPair, TotalSupply, TradeRewardCampaign, TradingRewardCampaignBoostInfo, TradingRewardCampaignInfo, TxFeesEipBaseFee, TxFeesModuleStateParams, UnBondingDelegation, Validator, ValidatorCommission, ValidatorDescription, ValidatorRewards, Vote, VoteOption, VoteOptionMap, WeightedVoteOption, grpcContractInfo };
|
|
@@ -5,6 +5,6 @@ import "../BaseGrpcConsumer-Ba4uw4ZN.cjs";
|
|
|
5
5
|
import "../index-CgHU4RQF.cjs";
|
|
6
6
|
import "../index-DfJ_98xz.cjs";
|
|
7
7
|
import "../index-BhsPcNn5.cjs";
|
|
8
|
-
import "../index-
|
|
8
|
+
import "../index-Bl_Fyw1G.cjs";
|
|
9
9
|
import "../index-4xdeGNK4.cjs";
|
|
10
10
|
export { AccessType, AccessTypeCode, AccountAuctionStatus, AccountAuctionV2, AccountPortfolio, AccountPortfolioBalances, AccountPortfolioStreamCallback, AccountPortfolioStreamCallbackV2, AccountPortfolioV2, AccountStats, AllChronosDerivativeMarketSummary, AllChronosMarketHistory, AllChronosSpotMarketSummary, AllDerivativeMarketSummaryResponse, AllSpotMarketSummaryResponse, AtomicSwap, Auction, AuctionCoin, AuctionCoinPrices, AuctionContract, AuctionV2, AuctionsStats, BalanceStreamCallback, BalanceStreamCallbackV2, BankMsgSendTransaction, BankTransfer, BankTransferFromExplorerApiResponse, BaseDerivativeMarket, BatchDerivativeOrderCancelParams, BatchSpotOrderCancelParams, BidsStreamCallback, BidsStreamCallbackV2, BinaryOptionsMarket, Block, BlockFromExplorerApiResponse, BlockWithTxs, BlocksStreamCallback, BlocksStreamCallbackV2, BlocksWithTxsStreamCallback, BlocksWithTxsStreamCallbackV2, CW20BalanceExplorerApiResponse, CW20Message, Campaign, CampaignUser, CampaignV2, ChronosDerivativeMarketSummary, ChronosDerivativeMarketSummaryResponse, ChronosLeaderboard, ChronosLeaderboardEntry, ChronosLeaderboardResponse, ChronosMarketHistoryResponse, ChronosSpotMarketSummary, ChronosSpotMarketSummaryResponse, Contract, ContractExplorerApiResponse, ContractTransaction, ContractTransactionExplorerApiResponse, ContractTransactionWithMessages, CosmWasmChecksum, CosmWasmPermission, DenomHolders, DerivativeLimitOrder, DerivativeLimitOrderParams, DerivativeMarket, DerivativeMarketStreamCallback, DerivativeMarketStreamCallbackV2, DerivativeMarketWithoutBinaryOptions, DerivativeOrderCancelParams, DerivativeOrderHistory, DerivativeOrderHistoryStreamCallback, DerivativeOrderHistoryStreamCallbackV2, DerivativeOrderbookUpdateStreamCallback, DerivativeOrderbookUpdateStreamCallbackV2, DerivativeOrderbookV2StreamCallback, DerivativeOrderbookV2StreamCallbackV2, DerivativeOrdersStreamCallback, DerivativeOrdersStreamCallbackV2, DerivativePositionsStreamCallback, DerivativePositionsStreamCallbackV2, DerivativePositionsV2StreamCallback, DerivativePositionsV2StreamCallbackV2, DerivativeTrade, DerivativeTradesStreamCallback, DerivativeTradesStreamCallbackV2, EventLog, EventLogEvent, ExpiryFuturesMarket, ExpiryFuturesMarketInfo, ExplorerApiResponse, ExplorerApiResponseWithPagination, ExplorerBlockApiResponse, ExplorerBlockWithTxs, ExplorerCW20BalanceWithToken, ExplorerStats, ExplorerStreamTransformer, ExplorerTransaction, ExplorerTransactionApiResponse, ExplorerTransactionV2, ExplorerTxsV2Response, ExplorerValidator, ExplorerValidatorDescription, ExplorerValidatorUptime, FundingPayment, FundingRate, GasFee, GridStrategyStreamCallbackV2, GridStrategyStreamResponse, GridStrategyType, GrpcAccountAuctionV2, GrpcAccountPortfolio, GrpcAccountPortfolioV2, GrpcAtomicSwap, GrpcAuction, GrpcAuctionCoin, GrpcAuctionCoinPrices, GrpcAuctionContract, GrpcAuctionV2, GrpcBankMsgSendMessage, GrpcBinaryOptionsMarketInfo, GrpcCampaign, GrpcCampaignUser, GrpcCampaignV2, GrpcDecodeError, GrpcDenomHolders, GrpcDerivativeLimitOrder, GrpcDerivativeMarketInfo, GrpcDerivativeOrderHistory, GrpcDerivativePosition, GrpcDerivativePositionV2, GrpcDerivativeTrade, GrpcExpiryFuturesMarketInfo, GrpcExplorerStats, GrpcFrame, GrpcFundingPayment, GrpcFundingRate, GrpcGasFee, GrpcGuild, GrpcGuildMember, GrpcHistoricalBalance, GrpcHistoricalRPNL, GrpcHistoricalVolumes, GrpcIBCTransferTx, GrpcIndexerAuctionBid, GrpcIndexerInsuranceFund, GrpcIndexerRedemptionSchedule, GrpcIndexerValidatorDescription, GrpcLeaderboardRow, GrpcMegaVaultApr, GrpcMegaVaultAprStats, GrpcMegaVaultHistoricalPnL, GrpcMegaVaultHistoricalTVL, GrpcMegaVaultIncentives, GrpcMegaVaultMaxDrawdown, GrpcMegaVaultOperationStatusLogEntry, GrpcMegaVaultOperator, GrpcMegaVaultOperatorRedemptionBucket, GrpcMegaVaultPnl, GrpcMegaVaultPnlStats, GrpcMegaVaultRedemption, GrpcMegaVaultSubscription, GrpcMegaVaultTargetApr, GrpcMegaVaultUnrealizedPnl, GrpcMegaVaultUserStats, GrpcMegaVaultVaultStats, GrpcMegaVaultVolatility, GrpcMegaVaultVolatilityStats, 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, GrpcPeggyDepositTx, GrpcPeggyWithdrawalTx, GrpcPerpetualMarketFunding, GrpcPerpetualMarketInfo, GrpcPnlLeaderboard, GrpcPortfolioSubaccountBalanceV2, GrpcPositionDelta, GrpcPositionV2, GrpcPositionsWithUPNL, GrpcPriceLevel, GrpcRFQConditionalOrder, GrpcRFQExpiry, GrpcRFQProcessedQuote, GrpcRFQQuote, GrpcRFQRequest, GrpcRFQSettlement, GrpcSpotAverageEntry, GrpcSpotLimitOrder, GrpcSpotMarketInfo, GrpcSpotOrderHistory, GrpcSpotTrade, GrpcSubaccountBalance, GrpcSubaccountBalanceTransfer, GrpcSubaccountDeposit, GrpcSubaccountDepositV2, GrpcSubaccountPortfolio, GrpcTcDerivativeLimitOrder, GrpcTcDerivativeOrderHistory, GrpcTcDerivativeOrdersResponse, GrpcTcDerivativePosition, GrpcTcDerivativeTradeHistory, GrpcTcDerivativeTradesResponse, GrpcTcDerivativesOrdersHistoryResponse, GrpcTcDerivativesPositionsResponse, GrpcTcPositionDelta, GrpcTokenMeta, GrpcTradingReward, GrpcValidatorSlashingEvent, GrpcValidatorUptime, GrpcVolLeaderboard, GrpcWebSocketCodec, GrpcWebSocketTransport, Guild, GuildCampaignSummary, GuildMember, HistoricalBalance, HistoricalRPNL, HistoricalStakingStreamCallback, HistoricalStakingStreamCallbackV2, HistoricalVolumes, Holder, IBCTransferTx, IncentivesCampaign, IncentivesRound, IndexerAccountPortfolioStreamTransformer, IndexerAccountStreamTransformer, IndexerArchiverStreamTransformer, IndexerAuctionBid, IndexerAuctionStreamTransformer, IndexerCampaignTransformer, IndexerDerivativeStreamTransformer, IndexerGrpcAccountApi, IndexerGrpcAccountPortfolioApi, IndexerGrpcAccountPortfolioStream, IndexerGrpcAccountPortfolioStreamV2, IndexerGrpcAccountPortfolioTransformer, IndexerGrpcAccountStream, IndexerGrpcAccountStreamV2, IndexerGrpcAccountTransformer, IndexerGrpcArchiverApi, IndexerGrpcArchiverStream, IndexerGrpcArchiverStreamV2, IndexerGrpcArchiverTransformer, IndexerGrpcAuctionApi, IndexerGrpcAuctionStream, IndexerGrpcAuctionStreamV2, IndexerGrpcAuctionTransformer, IndexerGrpcCampaignApi, IndexerGrpcDerivativeTransformer, IndexerGrpcDerivativesApi, IndexerGrpcDerivativesStream, IndexerGrpcDerivativesStreamV2, IndexerGrpcExplorerApi, IndexerGrpcExplorerStream, IndexerGrpcExplorerStreamV2, IndexerGrpcExplorerTransformer, IndexerGrpcInsuranceFundApi, IndexerGrpcInsuranceFundTransformer, IndexerGrpcMegaVaultApi, IndexerGrpcMegaVaultTransformer, IndexerGrpcMetaApi, IndexerGrpcMitoApi, IndexerGrpcMitoStream, IndexerGrpcMitoStreamTransformer, IndexerGrpcMitoStreamV2, IndexerGrpcMitoTransformer, IndexerGrpcOracleApi, IndexerGrpcOracleStream, IndexerGrpcOracleStreamV2, IndexerGrpcOracleTransformer, IndexerGrpcRFQApi, IndexerGrpcReferralApi, IndexerGrpcReferralTransformer, IndexerGrpcRfqStreamV2, IndexerGrpcRfqTransformer, IndexerGrpcSpotApi, IndexerGrpcSpotStream, IndexerGrpcSpotStreamV2, IndexerGrpcSpotTransformer, IndexerGrpcTcDerivativesApi, IndexerGrpcTcDerivativesStreamV2, IndexerGrpcTcDerivativesTransformer, IndexerGrpcTradingApi, IndexerGrpcTradingStream, IndexerGrpcTradingStreamV2, IndexerGrpcTransactionApi, IndexerGrpcWeb3GwApi, IndexerInsuranceFund, IndexerModule, IndexerOracleStreamTransformer, IndexerRestDerivativesChronosApi, IndexerRestExplorerApi, IndexerRestExplorerTransformer, IndexerRestLeaderboardChronosApi, IndexerRestMarketChronosApi, IndexerRestSpotChronosApi, IndexerRfqStreamTransformer, IndexerSpotStreamTransformer, IndexerStreamTransaction, IndexerTcDerivativesStreamTransformer, IndexerTokenMeta, IndexerWsMakerStream, IndexerWsTakerStream, InsuranceFundCreateParams, IsomorphicWebSocket, LeaderboardRow, ListTradingStrategiesResponse, MakerStreamConfig, MakerStreamEvents, MarketType, MarketsStreamCallback, MegaVault, MegaVaultApr, MegaVaultAprStats, MegaVaultHistoricalPnL, MegaVaultHistoricalTVL, MegaVaultIncentives, MegaVaultMaxDrawdown, MegaVaultOperator, MegaVaultOperatorRedemptionBucket, MegaVaultPnl, MegaVaultPnlStats, MegaVaultRedemption, MegaVaultRedemptionStatus, MegaVaultStats, MegaVaultSubscription, MegaVaultSubscriptionStatus, MegaVaultTargetApr, MegaVaultUnrealizedPnl, MegaVaultUser, MegaVaultUserStats, MegaVaultVolatility, MegaVaultVolatilityStats, Message, 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, OperationStatusLogEntry, Oracle, OraclePriceStreamCallback, OraclePriceStreamCallbackV2, OraclePricesByMarketsStreamCallback, OraclePricesByMarketsStreamCallbackV2, Orderbook, OrderbookWithSequence, Paging, PeggyDepositTx, PeggyWithdrawalTx, PerpetualMarket, PerpetualMarketFunding, PerpetualMarketInfo, PnlLeaderboard, PortfolioSubaccountBalanceV2, Position, PositionDelta, PositionV2, PositionsWithUPNL, PriceLevel, QuantityAndFees, QuoteStreamCallbackV2, RFQConditionalOrder, RFQConditionalOrderInput, RFQConditionalOrdersResponse, RFQExpiryType, RFQMakerStreamAckData, RFQProcessedQuoteType, RFQQuoteType, RFQRequestInputType, RFQRequestType, RFQSettlementLimitActionType, RFQSettlementType, RFQSettlementUnfilledActionType, RFQStreamErrorData, RFQTakerStreamAckData, Redemption, RedemptionStatus, ReferralDetails, RequestStreamCallbackV2, ResolvedWsTransportConfig, Route, SettlementStreamCallbackV2, SettlementsResponse, Signature, SpotAverageEntriesStreamCallback, SpotAverageEntriesStreamCallbackV2, SpotAverageEntry, SpotLimitOrder, SpotLimitOrderParams, SpotMarket, SpotOrderCancelParams, SpotOrderHistory, SpotOrderHistoryStreamCallback, SpotOrderHistoryStreamCallbackV2, SpotOrderbookUpdateStreamCallback, SpotOrderbookUpdateStreamCallbackV2, SpotOrderbookV2StreamCallback, SpotOrdersStreamCallback, SpotOrdersStreamCallbackV2, SpotTrade, SpotTradesStreamCallback, SpotTradesStreamCallbackV2, StakingRewardByAccountStreamCallback, StakingRewardByAccountStreamCallbackV2, StreamBidsResponse, StreamManager, StreamManagerV2, StreamStatusResponse, SubaccountBalance, SubaccountDeposit, SubaccountDepositV2, SubaccountPortfolio, SubaccountTransfer, TakerStreamConfig, TakerStreamEvents, TcDerivativeLimitOrder, TcDerivativeOrderHistory, TcDerivativeOrderHistoryStreamCallbackV2, TcDerivativeOrdersResponse, TcDerivativeOrdersStreamCallbackV2, TcDerivativePosition, TcDerivativePositionsStreamCallbackV2, TcDerivativeTradeHistory, TcDerivativeTradesResponse, TcDerivativeTradesStreamCallbackV2, TcDerivativesOrdersHistoryResponse, TcDerivativesPositionsResponse, TcPositionDelta, TradingReward, TradingStrategy, Transaction, TransactionFromExplorerApiResponse, TransactionsStreamCallback, TransactionsStreamCallbackV2, TransferType, TransfersStreamCallback, TransfersStreamCallbackV2, TransportEventListener, TransportEventType, TransportEvents, TxMessage, ValidatorSlashingEvent, ValidatorUptime, ValidatorUptimeFromExplorerApiResponse, ValidatorUptimeStatus, VaultHolderSubscriptionStreamCallback, VaultHolderSubscriptionStreamCallbackV2, VaultStreamCallback, VaultStreamCallbackV2, VolLeaderboard, WasmCode, WasmCodeExplorerApiResponse, WsDisconnectReason, WsReconnectConfig, WsState, WsTransportConfig, createStreamSubscription, createStreamSubscriptionV2 };
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
require('../defineProperty-DAtJs5JQ.cjs');
|
|
2
2
|
require('../grpc-FG2z-ICE.cjs');
|
|
3
3
|
require('../BaseGrpcConsumer-B1hpRQJ-.cjs');
|
|
4
|
-
const require_TcAbacusGrpcApi = require('../TcAbacusGrpcApi-
|
|
4
|
+
const require_TcAbacusGrpcApi = require('../TcAbacusGrpcApi-BS--LQ5U.cjs');
|
|
5
5
|
|
|
6
6
|
exports.TcAbacusGrpcApi = require_TcAbacusGrpcApi.TcAbacusGrpcApi;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import "../tx_pb-BN7h9uqT.cjs";
|
|
2
2
|
import "../index-m48Rf9ow.cjs";
|
|
3
3
|
import "../BaseGrpcConsumer-Ba4uw4ZN.cjs";
|
|
4
|
-
import { a as HealthCheckResponse, c as
|
|
5
|
-
export { AccountInviteesResponse, AccountPointsResponse, AccountStatsResponse, CurrentEpochResponse, HealthCheckResponse, ListReferrerCodesResponse, ListReferrersResponse, Referrer, ReferrerCode, ReferrerEligibilityResponse, ReferrerInvitee, SnapshotPoints, TcAbacusGrpcApi };
|
|
4
|
+
import { a as HealthCheckResponse, c as ListReferrersResponse, d as ReferrerEligibilityResponse, f as ReferrerInvitee, i as CurrentEpochResponse, l as Referrer, m as TcAbacusGrpcApi, n as AccountPointsResponse, o as InviteeReferrer, p as SnapshotPoints, r as AccountStatsResponse, s as ListReferrerCodesResponse, t as AccountInviteesResponse, u as ReferrerCode } from "../index-Bl_Fyw1G.cjs";
|
|
5
|
+
export { AccountInviteesResponse, AccountPointsResponse, AccountStatsResponse, CurrentEpochResponse, HealthCheckResponse, InviteeReferrer, ListReferrerCodesResponse, ListReferrersResponse, Referrer, ReferrerCode, ReferrerEligibilityResponse, ReferrerInvitee, SnapshotPoints, TcAbacusGrpcApi };
|
|
@@ -5,6 +5,6 @@ import "../BaseGrpcConsumer-Ba4uw4ZN.cjs";
|
|
|
5
5
|
import "../index-CgHU4RQF.cjs";
|
|
6
6
|
import "../index-DfJ_98xz.cjs";
|
|
7
7
|
import "../index-BhsPcNn5.cjs";
|
|
8
|
-
import "../index-
|
|
8
|
+
import "../index-Bl_Fyw1G.cjs";
|
|
9
9
|
import "../index-4xdeGNK4.cjs";
|
|
10
10
|
export { Address, BaseAccount, PrivateKey, PublicKey };
|
|
@@ -5,6 +5,6 @@ import "../BaseGrpcConsumer-Ba4uw4ZN.cjs";
|
|
|
5
5
|
import "../index-CgHU4RQF.cjs";
|
|
6
6
|
import { $ as ExecArgInitiateTransfer, B as ExecArgCW20AdapterRedeemAndTransfer, G as ExitConfig, H as ExecPrivilegedArgVaultRedeem, I as ExecArgs, J as TrailingArithmetic, K as ExitType, L as ExecPrivilegedArgs, N as MsgExecuteContractCompat, Q as ExecArgUpdateGridConfig, R as ExecPrivilegedArgOffChainVaultSubscribe, U as ExecArgCreateSpotGridStrategy, V as ExecPrivilegedArgVaultSubscribe, W as ExecArgCreatePerpGridStrategy, X as ExecArgRemoveGridStrategy, Y as TrailingArithmeticLP, Z as ExecArgIncreaseAllowance, at as ExecArgCW20Transfer, ct as ExecArgCW20Send, et as ExecArgSwapExactOutput, it as ExecArgFundCampaign, nt as ExecArgSwapMinOutput, ot as ExecArgCreateRound, q as StrategyType, rt as ExecArgDepositTokens, st as ExecArgSubmitVaa, tt as ExecArgCreateCampaign, z as ExecPrivilegedArgOffChainVaultRedeem } from "../index-DfJ_98xz.cjs";
|
|
7
7
|
import "../index-BhsPcNn5.cjs";
|
|
8
|
-
import "../index-
|
|
8
|
+
import "../index-Bl_Fyw1G.cjs";
|
|
9
9
|
import "../index-4xdeGNK4.cjs";
|
|
10
10
|
export { AuctionMsgs, AuthzMsgs, BankMsgs, ContractExecutionAuthorization as ContractExecutionAuthz, ContractExecutionCompatAuthorization as ContractExecutionCompatAuthz, DistributionMsgs, Erc20Msgs, ExchangeMsgs, 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, FeegrantMsgs, GenericAuthorization as GenericAuthz, GovMsgs, GrantAuthorizationType, IbcMsgs, InsuranceMsgs, MsgAdminUpdateBinaryOptionsMarket, MsgAuthorizeStakeGrants, MsgExec as MsgAuthzExec, MsgBatchCancelBinaryOptionsOrders, MsgBatchCancelDerivativeOrders, MsgBatchCancelSpotOrders, MsgBatchUpdateOrders, MsgBeginRedelegate, MsgBid, MsgBurn, MsgCancelBinaryOptionsOrder, MsgCancelDerivativeOrder, MsgCancelPostOnlyModeV2, MsgCancelSpotOrder, MsgCancelUnbondingDelegation, MsgChangeAdmin, MsgClaimVoucher, MsgCreateBinaryOptionsLimitOrder, MsgCreateBinaryOptionsMarketOrder, MsgCreateDenom, MsgCreateDerivativeLimitOrder, MsgCreateDerivativeMarketOrder, MsgCreateInsuranceFund, MsgCreateNamespace, MsgCreateRateLimit, MsgCreateSpotLimitOrder, MsgCreateSpotMarketOrder, MsgCreateValidator, MsgDecreasePositionMargin, MsgDelegate, MsgDeposit, MsgEditValidator, MsgExecuteContract, MsgExecuteContractCompat, MsgExternalTransfer, MsgFundCommunityPool, MsgDeposit$1 as MsgGovDeposit, MsgGrant, MsgGrantAllowance, MsgGrantProviderPrivilegeProposal, MsgGrantWithAuthorization, MsgIncreasePositionMargin, MsgInstantBinaryOptionsMarketLaunch, MsgInstantSpotMarketLaunch, MsgInstantiateContract, MsgLiquidatePosition, MsgMigrateContract, MsgMint, MsgMultiSend, MsgPrivilegedExecuteContract, MsgReclaimLockedFunds, MsgRelayProviderPrices, MsgRemoveRateLimit, 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, MsgUpdateRateLimit, MsgUpdateSpotMarketV2, MsgVote, MsgWithdraw, MsgWithdrawDelegatorReward, MsgWithdrawValidatorCommission, Msgs, OracleMsgs, OrderHashManager, PeggyMsgs, ProposalDecomposer, StakingMsgs, StrategyType, TokenFactoryMsgs, TrailingArithmetic, TrailingArithmeticLP, WasmMsgs, getGenericAuthorizationFromMessageType, msgsOrMsgExecMsgs };
|
package/dist/cjs/core/tx.d.cts
CHANGED
|
@@ -5,6 +5,6 @@ import "../BaseGrpcConsumer-Ba4uw4ZN.cjs";
|
|
|
5
5
|
import "../index-CgHU4RQF.cjs";
|
|
6
6
|
import { St as TypedDataField, bt as Eip712ConvertTxArgs, xt as MapOfTypedDataField, yt as Eip712ConvertFeeArgs } from "../index-DfJ_98xz.cjs";
|
|
7
7
|
import "../index-BhsPcNn5.cjs";
|
|
8
|
-
import "../index-
|
|
8
|
+
import "../index-Bl_Fyw1G.cjs";
|
|
9
9
|
import "../index-4xdeGNK4.cjs";
|
|
10
10
|
export { BroadcastMode, BroadcastModeKeplr, tx_pb_d_exports as CosmosTxV1Beta1TxPb, CreateTransactionArgs, CreateTransactionResult, CreateTransactionWithSignersArgs, Eip712ConvertFeeArgs, Eip712ConvertTxArgs, MapOfTypedDataField, MsgArg, MsgBroadcasterWithPk, MsgDecoder, RestAuthInfo, RestSignerInfo, RestTx, RestTxBody, RestTxLog, SIGN_AMINO, SIGN_DIRECT, SIGN_EIP712, SIGN_EIP712_V2, SignerDetails, SimulationResponse, TxClient, TxClientBroadcastOptions, TxClientBroadcastResponse, TxClientMode, TxClientSimulateResponse, TxConcreteApi, TxGrpcApi, TxInfo, TxInfoResponse, TxResponse, TxRestApi, TxResult, TxResultResponse, TxSearchResult, TxSearchResultParams, TypedDataField, createAny, createAnyMessage, createAuthInfo, createBody, createFee, createNonCriticalExtensionFromObject, createSignDoc, createSignDocFromTransaction, createSignerInfo, createSigners, createTransaction, createTransactionAndCosmosSignDoc, createTransactionAndCosmosSignDocForAddressAndMsg, createTransactionForAddressAndMsg, createTransactionFromMsg, createTransactionWithSigners, createTxRawEIP712, createTxRawFromSigResponse, createWeb3Extension, errorToErrorMessage, generateArbitrarySignDoc, getAminoStdSignDoc, getDefaultEip712Types, getDefaultEip712TypesV2, getEip712Domain, getEip712DomainV2, getEip712Fee, getEip712FeeV2, getEip712TypedData, getEip712TypedDataV2, getEipTxContext, getEipTxDetails, getEthereumSignerAddress, getInjectiveSignerAddress, getObjectEip712PropertyType, getPublicKey, getTransactionPartsFromTxRaw, getTxRawFromTxRawOrDirectSignResponse, getTypesIncludingFeePayer, isTxNotFoundError, numberTypeToReflectionNumberType, objectKeysToEip712Types, protoTypeToAminoType, stringTypeToReflectionStringType, waitTxBroadcasted };
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { t as BaseGrpcConsumer } from "./BaseGrpcConsumer-Ba4uw4ZN.cjs";
|
|
2
2
|
|
|
3
|
-
//#region ../../node_modules/.pnpm/@injectivelabs+tc-abacus-proto-ts-v2@1.18.
|
|
3
|
+
//#region ../../node_modules/.pnpm/@injectivelabs+tc-abacus-proto-ts-v2@1.18.5/node_modules/@injectivelabs/tc-abacus-proto-ts-v2/generated/injective_tc_abacus_rpc_pb.d.ts
|
|
4
4
|
|
|
5
5
|
/**
|
|
6
6
|
* @generated from protobuf message injective_tc_abacus_rpc.CreateReferrerCodeResponse
|
|
@@ -24,6 +24,7 @@ declare class TcAbacusGrpcApi extends BaseGrpcConsumer {
|
|
|
24
24
|
fetchReferrerEligibility(address: string): Promise<ReferrerEligibilityResponse>;
|
|
25
25
|
createReferrerCode(address: string, code: string): Promise<CreateReferrerCodeResponse>;
|
|
26
26
|
fetchReferrerCodes(address: string, cursor?: string, limit?: number): Promise<ListReferrerCodesResponse>;
|
|
27
|
+
fetchInviteeReferrer(address: string): Promise<InviteeReferrer>;
|
|
27
28
|
}
|
|
28
29
|
//#endregion
|
|
29
30
|
//#region src/client/tcAbacus/types/tcAbacus.d.ts
|
|
@@ -54,6 +55,7 @@ interface AccountPointsResponse {
|
|
|
54
55
|
}
|
|
55
56
|
interface AccountStatsResponse {
|
|
56
57
|
cap: number;
|
|
58
|
+
code: string;
|
|
57
59
|
address: string;
|
|
58
60
|
last7DVolume: string;
|
|
59
61
|
inviteeCount: number;
|
|
@@ -75,6 +77,7 @@ interface ReferrerInvitee {
|
|
|
75
77
|
height: string;
|
|
76
78
|
address: string;
|
|
77
79
|
createdAt: string;
|
|
80
|
+
allTimeVolume: string;
|
|
78
81
|
referralPoints: string;
|
|
79
82
|
}
|
|
80
83
|
interface AccountInviteesResponse {
|
|
@@ -97,5 +100,12 @@ interface ListReferrerCodesResponse {
|
|
|
97
100
|
nextCursor?: string;
|
|
98
101
|
codes: ReferrerCode[];
|
|
99
102
|
}
|
|
103
|
+
interface InviteeReferrer {
|
|
104
|
+
code: string;
|
|
105
|
+
height: string;
|
|
106
|
+
address: string;
|
|
107
|
+
createdAt: string;
|
|
108
|
+
referrerAddress: string;
|
|
109
|
+
}
|
|
100
110
|
//#endregion
|
|
101
|
-
export { HealthCheckResponse as a,
|
|
111
|
+
export { HealthCheckResponse as a, ListReferrersResponse as c, ReferrerEligibilityResponse as d, ReferrerInvitee as f, CurrentEpochResponse as i, Referrer as l, TcAbacusGrpcApi as m, AccountPointsResponse as n, InviteeReferrer as o, SnapshotPoints as p, AccountStatsResponse as r, ListReferrerCodesResponse as s, AccountInviteesResponse as t, ReferrerCode as u };
|
package/dist/cjs/index.cjs
CHANGED
|
@@ -18,7 +18,7 @@ const require_AbacusGrpcApi = require('./AbacusGrpcApi-Da2mxc3z.cjs');
|
|
|
18
18
|
const require_IndexerGrpcWeb3GwApi = require('./IndexerGrpcWeb3GwApi-BjMwVPdm.cjs');
|
|
19
19
|
const require_StreamManagerV2 = require('./StreamManagerV2-Bp3B3Oi6.cjs');
|
|
20
20
|
const require_types = require('./types-BSrt7JzM.cjs');
|
|
21
|
-
const require_TcAbacusGrpcApi = require('./TcAbacusGrpcApi-
|
|
21
|
+
const require_TcAbacusGrpcApi = require('./TcAbacusGrpcApi-BS--LQ5U.cjs');
|
|
22
22
|
const require_tx = require('./tx-nmGfZyjO.cjs');
|
|
23
23
|
const require_service = require('./service-D7PCdXqp.cjs');
|
|
24
24
|
let __injectivelabs_core_proto_ts_v2_generated_injective_types_v1beta1_account_pb = require("@injectivelabs/core-proto-ts-v2/generated/injective/types/v1beta1/account_pb");
|
package/dist/cjs/index.d.cts
CHANGED
|
@@ -5,6 +5,6 @@ import "./BaseGrpcConsumer-Ba4uw4ZN.cjs";
|
|
|
5
5
|
import { n as PointsStatsRow, r as AbacusGrpcApi, t as PointsLatestResponse } from "./index-CgHU4RQF.cjs";
|
|
6
6
|
import { $ as ExecArgInitiateTransfer, A as QueryQuantityAndFeesResponse, B as ExecArgCW20AdapterRedeemAndTransfer, C as NEPTUNE_USDT_CW20_CONTRACT, D as QueryAllRoutes, E as QueryInputQuantity, G as ExitConfig, H as ExecPrivilegedArgVaultRedeem, I as ExecArgs, J as TrailingArithmetic, K as ExitType, L as ExecPrivilegedArgs, M as WasmContractQueryResponse, N as MsgExecuteContractCompat, O as QueryRoute, Q as ExecArgUpdateGridConfig, R as ExecPrivilegedArgOffChainVaultSubscribe, S as LendingRateResponse, St as TypedDataField, T as QueryOutputQuantity, U as ExecArgCreateSpotGridStrategy, V as ExecPrivilegedArgVaultSubscribe, W as ExecArgCreatePerpGridStrategy, X as ExecArgRemoveGridStrategy, Y as TrailingArithmeticLP, Z as ExecArgIncreaseAllowance, _ as QueryGetPrices, a as QueryInjectiveAddress, at as ExecArgCW20Transfer, b as AssetInfo, bt as Eip712ConvertTxArgs, c as InjNameServiceQueryTransformer, ct as ExecArgCW20Send, d as IncentivesQueryTransformer, et as ExecArgSwapExactOutput, g as QueryGetAllLendingRates, h as NEPTUNE_PRICE_CONTRACT, i as QueryTradingStrategyContractConfig, it as ExecArgFundCampaign, j as QueryRouteResponse, k as SwapQueryTransformer, l as QueryGetCampaigns, m as QueryRoundResponse, n as QueryTradingStrategyContractUserStrategies, nt as ExecArgSwapMinOutput, o as QueryResolverAddress, ot as ExecArgCreateRound, p as QueryCampaignResponse, q as StrategyType, r as QueryTradingStrategyContractAllStrategies, rt as ExecArgDepositTokens, s as QueryInjName, st as ExecArgSubmitVaa, t as QueryTradingStrategyContractTotalStrategies, tt as ExecArgCreateCampaign, u as QueryAllRounds, v as NeptuneQueryTransformer, w as PriceResponse, x as AssetInfoWithPrice, xt as MapOfTypedDataField, y as NeptuneService, yt as Eip712ConvertFeeArgs, z as ExecPrivilegedArgOffChainVaultRedeem } from "./index-DfJ_98xz.cjs";
|
|
7
7
|
import { A as Market, B as OLPGrpcApi, C as GrpcMarketRewards, D as GrpcTotalScore, E as GrpcRewardsEligibility, F as RewardsDistribution, I as RewardsEligibility, L as TotalScore, M as MarketRewards, N as MinMaxRewards, O as GrpcTotalScores, P as RewardDistribution, R as TotalScores, S as GrpcMarketReward, T as GrpcRewardsDistribution, _ as GrpcEpochScore, a as EligibleAddresses, b as GrpcEpochV2, c as EpochScores, d as EpochsV2, f as GrpcAccountVolume, g as GrpcEpochConfigV2, h as GrpcEligibleAddresses, i as EligibleAddress, j as MarketReward, k as GrpcTotalScoresHistory, l as EpochScoresHistory, m as GrpcEligibleAddress, n as AccountVolumes, o as EpochConfigV2, p as GrpcDmmPagination, r as DmmPagination, s as EpochScore, t as AccountVolume, u as EpochV2, v as GrpcEpochScores, w as GrpcRewardDistribution, x as GrpcEpochsV2, y as GrpcEpochScoresHistory, z as TotalScoresHistory } from "./index-BhsPcNn5.cjs";
|
|
8
|
-
import { a as HealthCheckResponse, c as
|
|
8
|
+
import { a as HealthCheckResponse, c as ListReferrersResponse, d as ReferrerEligibilityResponse, f as ReferrerInvitee, i as CurrentEpochResponse, l as Referrer, m as TcAbacusGrpcApi, n as AccountPointsResponse, o as InviteeReferrer, p as SnapshotPoints, r as AccountStatsResponse, s as ListReferrerCodesResponse, t as AccountInviteesResponse, u as ReferrerCode } from "./index-Bl_Fyw1G.cjs";
|
|
9
9
|
import { n as TokenFactoryStatic, r as TokenPrice, t as TokenStaticFactory } from "./index-4xdeGNK4.cjs";
|
|
10
|
-
export { AbacusGrpcApi, AbsoluteTxPosition, AccessType, AccessTypeCode, Account, AccountAuctionStatus, AccountAuctionV2, AccountInviteesResponse, AccountPointsResponse, AccountPortfolio, AccountPortfolioBalances, AccountPortfolioStreamCallback, AccountPortfolioStreamCallbackV2, AccountPortfolioV2, AccountResponse, AccountStats, AccountStatsResponse, AccountVolume, AccountVolumes, AccountsResponse, Address, AllChronosDerivativeMarketSummary, AllChronosMarketHistory, AllChronosSpotMarketSummary, AllDerivativeMarketSummaryResponse, AllSpotMarketSummaryResponse, 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, BalanceStreamCallbackV2, BalancesResponse, BankModuleParams, BankMsgSendTransaction, BankMsgs, BankTransfer, BankTransferFromExplorerApiResponse, BaseAccount, BaseAccountRestResponse, BaseDerivativeMarket, BatchCancelDerivativeOrdersAuthz, BatchCancelSpotOrdersAuthz, BatchCreateDerivativeLimitOrdersAuthz, BatchCreateSpotLimitOrdersAuthz, BatchDerivativeOrderCancelParams, BatchSpotOrderCancelParams, BidsStreamCallback, BidsStreamCallbackV2, BinaryOptionsMarket, Block, BlockFromExplorerApiResponse, BlockLatestRestResponse, BlockWithTxs, BlocksStreamCallback, BlocksStreamCallbackV2, BlocksWithTxsStreamCallback, BlocksWithTxsStreamCallbackV2, 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, 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, CurrentEpochResponse, DEFAULT_DERIVATION_PATH, Delegation, DenomBalance, DenomHolders, DenomOwnersResponse, DepositProposalParams, DerivativeLimitOrder, DerivativeLimitOrderParams, DerivativeMarket, DerivativeMarketStreamCallback, DerivativeMarketStreamCallbackV2, DerivativeMarketWithoutBinaryOptions, DerivativeOrderCancelParams, DerivativeOrderHistory, DerivativeOrderHistoryStreamCallback, DerivativeOrderHistoryStreamCallbackV2, DerivativeOrderbookUpdateStreamCallback, DerivativeOrderbookUpdateStreamCallbackV2, DerivativeOrderbookV2StreamCallback, DerivativeOrderbookV2StreamCallbackV2, DerivativeOrdersStreamCallback, DerivativeOrdersStreamCallbackV2, DerivativePositionsStreamCallback, DerivativePositionsStreamCallbackV2, DerivativePositionsV2StreamCallback, DerivativePositionsV2StreamCallbackV2, DerivativeTrade, DerivativeTradesStreamCallback, DerivativeTradesStreamCallbackV2, DirectSignResponse, DistributionModuleParams, DistributionMsgs, OLPGrpcApi as DmmGrpcApi, OLPGrpcApi, DmmPagination, Eip712ConvertFeeArgs, Eip712ConvertTxArgs, EligibleAddress, EligibleAddresses, EpochConfigV2, EpochScore, EpochScores, EpochScoresHistory, EpochV2, EpochsV2, Erc20Msgs, 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, GrantAuthorization, GrantAuthorizationType, GrantAuthorizationWithDecodedAuthorization, GrantWithDecodedAuthorization, GridStrategyStreamCallbackV2, 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, GrpcDecodeError, 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, GrpcFrame, 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, GrpcMegaVaultOperationStatusLogEntry, 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, ProposalStatus as GrpcProposalStatus, ProposalStatus, GrpcRFQConditionalOrder, GrpcRFQExpiry, GrpcRFQProcessedQuote, GrpcRFQQuote, GrpcRFQRequest, GrpcRFQSettlement, GrpcReDelegation, GrpcReDelegationEntryResponse, GrpcReDelegationResponse, GrpcRedemptionSchedule, GrpcRewardDistribution, GrpcRewardsDistribution, GrpcRewardsEligibility, GrpcSpotAverageEntry, GrpcSpotLimitOrder, GrpcSpotMarket, GrpcSpotMarketInfo, GrpcSpotMarketOrder, GrpcSpotOrder, GrpcSpotOrderHistory, GrpcSpotTrade, GrpcStakingParams, GrpcStatusCode, GrpcSubaccountBalance, GrpcSubaccountBalanceTransfer, GrpcSubaccountDeposit, GrpcSubaccountDepositV2, GrpcSubaccountPortfolio, GrpcSupply, GrpcTallyResult, GrpcTcDerivativeLimitOrder, GrpcTcDerivativeOrderHistory, GrpcTcDerivativeOrdersResponse, GrpcTcDerivativePosition, GrpcTcDerivativeTradeHistory, GrpcTcDerivativeTradesResponse, GrpcTcDerivativesOrdersHistoryResponse, GrpcTcDerivativesPositionsResponse, GrpcTcPositionDelta, GrpcTokenMeta, GrpcTokenPair, GrpcTotalScore, GrpcTotalScores, GrpcTotalScoresHistory, GrpcTradeRewardCampaign, GrpcTradingReward, GrpcTradingRewardCampaignBoostInfo, GrpcTradingRewardCampaignInfo, GrpcTxFeesEipBaseFee, GrpcTxFeesParams, GrpcUnbondingDelegation, GrpcUnbondingDelegationEntry, GrpcValidator, GrpcValidatorCommission, GrpcValidatorCommissionRates, GrpcValidatorDescription, GrpcValidatorSlashingEvent, GrpcValidatorUptime, GrpcVolLeaderboard, GrpcVote, GrpcWebFetchTransport, GrpcWebSocketCodec, GrpcWebSocketTransport, GrpcWebTransportAdditionalOptions, Guild, GuildCampaignSummary, GuildMember, HealthCheckResponse, HistoricalBalance, HistoricalRPNL, HistoricalStakingStreamCallback, HistoricalStakingStreamCallbackV2, HistoricalVolumes, Holder, IBCTransferTx, IbcMsgs, IncentivesCampaign, IncentivesQueryTransformer, IncentivesRound, IndexerAccountPortfolioStreamTransformer, IndexerAccountStreamTransformer, IndexerArchiverStreamTransformer, IndexerAuctionBid, IndexerAuctionStreamTransformer, IndexerCampaignTransformer, IndexerDerivativeStreamTransformer, IndexerGrpcAccountApi, IndexerGrpcAccountPortfolioApi, IndexerGrpcAccountPortfolioStream, IndexerGrpcAccountPortfolioStreamV2, IndexerGrpcAccountPortfolioTransformer, IndexerGrpcAccountStream, IndexerGrpcAccountStreamV2, IndexerGrpcAccountTransformer, IndexerGrpcArchiverApi, IndexerGrpcArchiverStream, IndexerGrpcArchiverStreamV2, IndexerGrpcArchiverTransformer, IndexerGrpcAuctionApi, IndexerGrpcAuctionStream, IndexerGrpcAuctionStreamV2, IndexerGrpcAuctionTransformer, IndexerGrpcCampaignApi, IndexerGrpcDerivativeTransformer, IndexerGrpcDerivativesApi, IndexerGrpcDerivativesStream, IndexerGrpcDerivativesStreamV2, IndexerGrpcExplorerApi, IndexerGrpcExplorerStream, IndexerGrpcExplorerStreamV2, IndexerGrpcExplorerTransformer, IndexerGrpcInsuranceFundApi, IndexerGrpcInsuranceFundTransformer, IndexerGrpcMegaVaultApi, IndexerGrpcMegaVaultTransformer, IndexerGrpcMetaApi, IndexerGrpcMitoApi, IndexerGrpcMitoStream, IndexerGrpcMitoStreamTransformer, IndexerGrpcMitoStreamV2, IndexerGrpcMitoTransformer, IndexerGrpcOracleApi, IndexerGrpcOracleStream, IndexerGrpcOracleStreamV2, IndexerGrpcOracleTransformer, IndexerGrpcRFQApi, IndexerGrpcReferralApi, IndexerGrpcReferralTransformer, IndexerGrpcRfqStreamV2, IndexerGrpcRfqTransformer, IndexerGrpcSpotApi, IndexerGrpcSpotStream, IndexerGrpcSpotStreamV2, IndexerGrpcSpotTransformer, IndexerGrpcTcDerivativesApi, IndexerGrpcTcDerivativesStreamV2, IndexerGrpcTcDerivativesTransformer, IndexerGrpcTradingApi, IndexerGrpcTradingStream, IndexerGrpcTradingStreamV2, IndexerGrpcTransactionApi, IndexerGrpcWeb3GwApi, IndexerInsuranceFund, IndexerModule, IndexerOracleStreamTransformer, IndexerRestDerivativesChronosApi, IndexerRestExplorerApi, IndexerRestExplorerTransformer, IndexerRestLeaderboardChronosApi, IndexerRestMarketChronosApi, IndexerRestSpotChronosApi, IndexerRfqStreamTransformer, IndexerSpotStreamTransformer, IndexerStreamTransaction, IndexerTcDerivativesStreamTransformer, IndexerTokenMeta, IndexerWsMakerStream, IndexerWsTakerStream, InjNameServiceQueryTransformer, InsuranceFund, InsuranceFundCreateParams, InsuranceModuleParams, InsuranceMsgs, IsOptedOutOfRewards, IsomorphicWebSocket, LeaderboardRow, LendingRateResponse, ListReferrerCodesResponse, ListReferrersResponse, ListTradingStrategiesResponse, MakerStreamConfig, MakerStreamEvents, 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, 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, MsgCreateRateLimit, MsgCreateSpotLimitOrder, MsgCreateSpotMarketOrder, MsgCreateValidator, MsgDecoder, MsgDecreasePositionMargin, MsgDelegate, MsgDeposit, MsgEditValidator, MsgExecuteContract, MsgExecuteContractCompat, MsgExternalTransfer, MsgFundCommunityPool, MsgDeposit$1 as MsgGovDeposit, MsgGrant, MsgGrantAllowance, MsgGrantProviderPrivilegeProposal, MsgGrantWithAuthorization, MsgIncreasePositionMargin, MsgInstantBinaryOptionsMarketLaunch, MsgInstantSpotMarketLaunch, MsgInstantiateContract, MsgLiquidatePosition, MsgMigrateContract, MsgMint, MsgMultiSend, MsgPrivilegedExecuteContract, MsgReclaimLockedFunds, MsgRelayProviderPrices, MsgRemoveRateLimit, 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, MsgUpdateRateLimit, MsgUpdateSpotMarketV2, MsgVote, MsgWithdraw, MsgWithdrawDelegatorReward, MsgWithdrawValidatorCommission, Msgs, NEPTUNE_PRICE_CONTRACT, NEPTUNE_USDT_CW20_CONTRACT, NeptuneQueryTransformer, NeptuneService, NodeInfoRestResponse, OperationStatusLogEntry, Oracle, OracleModuleParams, OracleMsgs, OraclePriceStreamCallback, OraclePriceStreamCallbackV2, OraclePricesByMarketsStreamCallback, OraclePricesByMarketsStreamCallbackV2, OracleType, OracleTypeMap, OrderHashManager, OrderMask, OrderMaskMap, OrderSide, OrderState, OrderType, OrderTypeMap, Orderbook, OrderbookWithSequence, PagePagination, Pagination, PaginationOption, Paging, 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, QuoteStreamCallbackV2, RFQConditionalOrder, RFQConditionalOrderInput, RFQConditionalOrdersResponse, RFQExpiryType, RFQMakerStreamAckData, RFQProcessedQuoteType, RFQQuoteType, RFQRequestInputType, RFQRequestType, RFQSettlementLimitActionType, RFQSettlementType, RFQSettlementUnfilledActionType, RFQStreamErrorData, RFQTakerStreamAckData, ReDelegation, Redemption, RedemptionStatus, ReferralDetails, Referrer, ReferrerCode, ReferrerEligibilityResponse, ReferrerInvitee, RequestStreamCallbackV2, ResolvedStreamManagerConfig, ResolvedWsTransportConfig, RestApiResponse, RestAuthInfo, RestSignerInfo, RestTx, RestTxBody, RestTxLog, RewardDistribution, RewardsDistribution, RewardsEligibility, Route, SIGN_AMINO, SIGN_DIRECT, SIGN_EIP712, SIGN_EIP712_V2, SendEnabled, SettlementStreamCallbackV2, SettlementsResponse, SignDoc, SignTypedDataVersionV4, Signature, SignerDetails, SimulationResponse, SnapshotPoints, SpotAverageEntriesStreamCallback, SpotAverageEntriesStreamCallbackV2, SpotAverageEntry, SpotLimitOrder, SpotLimitOrderParams, SpotMarket, SpotOrderCancelParams, SpotOrderHistory, SpotOrderHistoryStreamCallback, SpotOrderHistoryStreamCallbackV2, SpotOrderbookUpdateStreamCallback, SpotOrderbookUpdateStreamCallbackV2, SpotOrderbookV2StreamCallback, SpotOrdersStreamCallback, SpotOrdersStreamCallbackV2, SpotTrade, SpotTradesStreamCallback, SpotTradesStreamCallbackV2, StakingModuleParams, StakingMsgs, StakingRewardByAccountStreamCallback, StakingRewardByAccountStreamCallbackV2, StrategyType, StreamBidsResponse, StreamDisconnectReason, StreamError, StreamEvent, StreamManager, StreamManagerConfig, StreamManagerEvents, StreamManagerRetryConfig, StreamManagerV2, StreamOperation, StreamState, StreamStatusResponse, StreamSubscription, SubaccountBalance, SubaccountDeposit, SubaccountDepositV2, SubaccountPortfolio, SubaccountTransfer, SwapQueryTransformer, TakerStreamConfig, TakerStreamEvents, TallyResult, TcAbacusGrpcApi, TcDerivativeLimitOrder, TcDerivativeOrderHistory, TcDerivativeOrderHistoryStreamCallbackV2, TcDerivativeOrdersResponse, TcDerivativeOrdersStreamCallbackV2, TcDerivativePosition, TcDerivativePositionsStreamCallbackV2, TcDerivativeTradeHistory, TcDerivativeTradesResponse, TcDerivativeTradesStreamCallbackV2, TcDerivativesOrdersHistoryResponse, TcDerivativesPositionsResponse, TcPositionDelta, 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, TransactionsStreamCallbackV2, TransferType, TransfersStreamCallback, TransfersStreamCallbackV2, TransportEventListener, TransportEventType, TransportEvents, 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, VaultHolderSubscriptionStreamCallbackV2, VaultStreamCallback, VaultStreamCallbackV2, VolLeaderboard, Vote, VoteOption, VoteOptionMap, WasmCode, WasmCodeExplorerApiResponse, WasmContractQueryResponse, WasmMsgs, WeightedVoteOption, WsDisconnectReason, WsReconnectConfig, WsState, WsTransportConfig, accountEthParser, addHexPrefix, amountToCosmosSdkDecAmount, base64ToUint8Array, base64ToUtf8, bigIntReplacer, bigIntToNumber, bigIntToString, binaryToBase64, concatUint8Arrays, cosmosSdkDecToBigNumber, createAny, createAnyMessage, createAuthInfo, createBody, createFee, createNonCriticalExtensionFromObject, createSignDoc, createSignDocFromTransaction, createSignerInfo, createSigners, createStreamSubscription, createStreamSubscriptionV2, 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, ofacList, pageRequestToGrpcPageRequestV2, paginationRequestFromPagination, paginationUint8ArrayToString, parseCoins, privateKeyHashToPublicKey, privateKeyHashToPublicKeyBase64, privateKeyToPublicKey, privateKeyToPublicKeyBase64, protoObjectToJson, protoTypeToAminoType, protobufTimestampToDate, protobufTimestampToUnixMs, protobufTimestampToUnixSeconds, publicKeyToAddress, recoverTypedSignaturePubKey, removeHexPrefix, ripemd160, safeBigIntStringify, sanitizeTypedData, sha256, sortObjectByKeys, sortObjectByKeysWithReduce, spotPriceFromChainPrice, spotPriceFromChainPriceToFixed, spotPriceToChainPrice, spotPriceToChainPriceToFixed, spotQuantityFromChainQuantity, spotQuantityFromChainQuantityToFixed, spotQuantityToChainQuantity, spotQuantityToChainQuantityToFixed, stringToUint8Array, stringTypeToReflectionStringType, toBase64, toUtf8, uint8ArrayToBase64, uint8ArrayToHex, uint8ArrayToString, waitTxBroadcasted };
|
|
10
|
+
export { AbacusGrpcApi, AbsoluteTxPosition, AccessType, AccessTypeCode, Account, AccountAuctionStatus, AccountAuctionV2, AccountInviteesResponse, AccountPointsResponse, AccountPortfolio, AccountPortfolioBalances, AccountPortfolioStreamCallback, AccountPortfolioStreamCallbackV2, AccountPortfolioV2, AccountResponse, AccountStats, AccountStatsResponse, AccountVolume, AccountVolumes, AccountsResponse, Address, AllChronosDerivativeMarketSummary, AllChronosMarketHistory, AllChronosSpotMarketSummary, AllDerivativeMarketSummaryResponse, AllSpotMarketSummaryResponse, 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, BalanceStreamCallbackV2, BalancesResponse, BankModuleParams, BankMsgSendTransaction, BankMsgs, BankTransfer, BankTransferFromExplorerApiResponse, BaseAccount, BaseAccountRestResponse, BaseDerivativeMarket, BatchCancelDerivativeOrdersAuthz, BatchCancelSpotOrdersAuthz, BatchCreateDerivativeLimitOrdersAuthz, BatchCreateSpotLimitOrdersAuthz, BatchDerivativeOrderCancelParams, BatchSpotOrderCancelParams, BidsStreamCallback, BidsStreamCallbackV2, BinaryOptionsMarket, Block, BlockFromExplorerApiResponse, BlockLatestRestResponse, BlockWithTxs, BlocksStreamCallback, BlocksStreamCallbackV2, BlocksWithTxsStreamCallback, BlocksWithTxsStreamCallbackV2, 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, 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, CurrentEpochResponse, DEFAULT_DERIVATION_PATH, Delegation, DenomBalance, DenomHolders, DenomOwnersResponse, DepositProposalParams, DerivativeLimitOrder, DerivativeLimitOrderParams, DerivativeMarket, DerivativeMarketStreamCallback, DerivativeMarketStreamCallbackV2, DerivativeMarketWithoutBinaryOptions, DerivativeOrderCancelParams, DerivativeOrderHistory, DerivativeOrderHistoryStreamCallback, DerivativeOrderHistoryStreamCallbackV2, DerivativeOrderbookUpdateStreamCallback, DerivativeOrderbookUpdateStreamCallbackV2, DerivativeOrderbookV2StreamCallback, DerivativeOrderbookV2StreamCallbackV2, DerivativeOrdersStreamCallback, DerivativeOrdersStreamCallbackV2, DerivativePositionsStreamCallback, DerivativePositionsStreamCallbackV2, DerivativePositionsV2StreamCallback, DerivativePositionsV2StreamCallbackV2, DerivativeTrade, DerivativeTradesStreamCallback, DerivativeTradesStreamCallbackV2, DirectSignResponse, DistributionModuleParams, DistributionMsgs, OLPGrpcApi as DmmGrpcApi, OLPGrpcApi, DmmPagination, Eip712ConvertFeeArgs, Eip712ConvertTxArgs, EligibleAddress, EligibleAddresses, EpochConfigV2, EpochScore, EpochScores, EpochScoresHistory, EpochV2, EpochsV2, Erc20Msgs, 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, GrantAuthorization, GrantAuthorizationType, GrantAuthorizationWithDecodedAuthorization, GrantWithDecodedAuthorization, GridStrategyStreamCallbackV2, 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, GrpcDecodeError, 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, GrpcFrame, 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, GrpcMegaVaultOperationStatusLogEntry, 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, ProposalStatus as GrpcProposalStatus, ProposalStatus, GrpcRFQConditionalOrder, GrpcRFQExpiry, GrpcRFQProcessedQuote, GrpcRFQQuote, GrpcRFQRequest, GrpcRFQSettlement, GrpcReDelegation, GrpcReDelegationEntryResponse, GrpcReDelegationResponse, GrpcRedemptionSchedule, GrpcRewardDistribution, GrpcRewardsDistribution, GrpcRewardsEligibility, GrpcSpotAverageEntry, GrpcSpotLimitOrder, GrpcSpotMarket, GrpcSpotMarketInfo, GrpcSpotMarketOrder, GrpcSpotOrder, GrpcSpotOrderHistory, GrpcSpotTrade, GrpcStakingParams, GrpcStatusCode, GrpcSubaccountBalance, GrpcSubaccountBalanceTransfer, GrpcSubaccountDeposit, GrpcSubaccountDepositV2, GrpcSubaccountPortfolio, GrpcSupply, GrpcTallyResult, GrpcTcDerivativeLimitOrder, GrpcTcDerivativeOrderHistory, GrpcTcDerivativeOrdersResponse, GrpcTcDerivativePosition, GrpcTcDerivativeTradeHistory, GrpcTcDerivativeTradesResponse, GrpcTcDerivativesOrdersHistoryResponse, GrpcTcDerivativesPositionsResponse, GrpcTcPositionDelta, GrpcTokenMeta, GrpcTokenPair, GrpcTotalScore, GrpcTotalScores, GrpcTotalScoresHistory, GrpcTradeRewardCampaign, GrpcTradingReward, GrpcTradingRewardCampaignBoostInfo, GrpcTradingRewardCampaignInfo, GrpcTxFeesEipBaseFee, GrpcTxFeesParams, GrpcUnbondingDelegation, GrpcUnbondingDelegationEntry, GrpcValidator, GrpcValidatorCommission, GrpcValidatorCommissionRates, GrpcValidatorDescription, GrpcValidatorSlashingEvent, GrpcValidatorUptime, GrpcVolLeaderboard, GrpcVote, GrpcWebFetchTransport, GrpcWebSocketCodec, GrpcWebSocketTransport, GrpcWebTransportAdditionalOptions, Guild, GuildCampaignSummary, GuildMember, HealthCheckResponse, HistoricalBalance, HistoricalRPNL, HistoricalStakingStreamCallback, HistoricalStakingStreamCallbackV2, HistoricalVolumes, Holder, IBCTransferTx, IbcMsgs, IncentivesCampaign, IncentivesQueryTransformer, IncentivesRound, IndexerAccountPortfolioStreamTransformer, IndexerAccountStreamTransformer, IndexerArchiverStreamTransformer, IndexerAuctionBid, IndexerAuctionStreamTransformer, IndexerCampaignTransformer, IndexerDerivativeStreamTransformer, IndexerGrpcAccountApi, IndexerGrpcAccountPortfolioApi, IndexerGrpcAccountPortfolioStream, IndexerGrpcAccountPortfolioStreamV2, IndexerGrpcAccountPortfolioTransformer, IndexerGrpcAccountStream, IndexerGrpcAccountStreamV2, IndexerGrpcAccountTransformer, IndexerGrpcArchiverApi, IndexerGrpcArchiverStream, IndexerGrpcArchiverStreamV2, IndexerGrpcArchiverTransformer, IndexerGrpcAuctionApi, IndexerGrpcAuctionStream, IndexerGrpcAuctionStreamV2, IndexerGrpcAuctionTransformer, IndexerGrpcCampaignApi, IndexerGrpcDerivativeTransformer, IndexerGrpcDerivativesApi, IndexerGrpcDerivativesStream, IndexerGrpcDerivativesStreamV2, IndexerGrpcExplorerApi, IndexerGrpcExplorerStream, IndexerGrpcExplorerStreamV2, IndexerGrpcExplorerTransformer, IndexerGrpcInsuranceFundApi, IndexerGrpcInsuranceFundTransformer, IndexerGrpcMegaVaultApi, IndexerGrpcMegaVaultTransformer, IndexerGrpcMetaApi, IndexerGrpcMitoApi, IndexerGrpcMitoStream, IndexerGrpcMitoStreamTransformer, IndexerGrpcMitoStreamV2, IndexerGrpcMitoTransformer, IndexerGrpcOracleApi, IndexerGrpcOracleStream, IndexerGrpcOracleStreamV2, IndexerGrpcOracleTransformer, IndexerGrpcRFQApi, IndexerGrpcReferralApi, IndexerGrpcReferralTransformer, IndexerGrpcRfqStreamV2, IndexerGrpcRfqTransformer, IndexerGrpcSpotApi, IndexerGrpcSpotStream, IndexerGrpcSpotStreamV2, IndexerGrpcSpotTransformer, IndexerGrpcTcDerivativesApi, IndexerGrpcTcDerivativesStreamV2, IndexerGrpcTcDerivativesTransformer, IndexerGrpcTradingApi, IndexerGrpcTradingStream, IndexerGrpcTradingStreamV2, IndexerGrpcTransactionApi, IndexerGrpcWeb3GwApi, IndexerInsuranceFund, IndexerModule, IndexerOracleStreamTransformer, IndexerRestDerivativesChronosApi, IndexerRestExplorerApi, IndexerRestExplorerTransformer, IndexerRestLeaderboardChronosApi, IndexerRestMarketChronosApi, IndexerRestSpotChronosApi, IndexerRfqStreamTransformer, IndexerSpotStreamTransformer, IndexerStreamTransaction, IndexerTcDerivativesStreamTransformer, IndexerTokenMeta, IndexerWsMakerStream, IndexerWsTakerStream, InjNameServiceQueryTransformer, InsuranceFund, InsuranceFundCreateParams, InsuranceModuleParams, InsuranceMsgs, InviteeReferrer, IsOptedOutOfRewards, IsomorphicWebSocket, LeaderboardRow, LendingRateResponse, ListReferrerCodesResponse, ListReferrersResponse, ListTradingStrategiesResponse, MakerStreamConfig, MakerStreamEvents, 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, 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, MsgCreateRateLimit, MsgCreateSpotLimitOrder, MsgCreateSpotMarketOrder, MsgCreateValidator, MsgDecoder, MsgDecreasePositionMargin, MsgDelegate, MsgDeposit, MsgEditValidator, MsgExecuteContract, MsgExecuteContractCompat, MsgExternalTransfer, MsgFundCommunityPool, MsgDeposit$1 as MsgGovDeposit, MsgGrant, MsgGrantAllowance, MsgGrantProviderPrivilegeProposal, MsgGrantWithAuthorization, MsgIncreasePositionMargin, MsgInstantBinaryOptionsMarketLaunch, MsgInstantSpotMarketLaunch, MsgInstantiateContract, MsgLiquidatePosition, MsgMigrateContract, MsgMint, MsgMultiSend, MsgPrivilegedExecuteContract, MsgReclaimLockedFunds, MsgRelayProviderPrices, MsgRemoveRateLimit, 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, MsgUpdateRateLimit, MsgUpdateSpotMarketV2, MsgVote, MsgWithdraw, MsgWithdrawDelegatorReward, MsgWithdrawValidatorCommission, Msgs, NEPTUNE_PRICE_CONTRACT, NEPTUNE_USDT_CW20_CONTRACT, NeptuneQueryTransformer, NeptuneService, NodeInfoRestResponse, OperationStatusLogEntry, Oracle, OracleModuleParams, OracleMsgs, OraclePriceStreamCallback, OraclePriceStreamCallbackV2, OraclePricesByMarketsStreamCallback, OraclePricesByMarketsStreamCallbackV2, OracleType, OracleTypeMap, OrderHashManager, OrderMask, OrderMaskMap, OrderSide, OrderState, OrderType, OrderTypeMap, Orderbook, OrderbookWithSequence, PagePagination, Pagination, PaginationOption, Paging, 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, QuoteStreamCallbackV2, RFQConditionalOrder, RFQConditionalOrderInput, RFQConditionalOrdersResponse, RFQExpiryType, RFQMakerStreamAckData, RFQProcessedQuoteType, RFQQuoteType, RFQRequestInputType, RFQRequestType, RFQSettlementLimitActionType, RFQSettlementType, RFQSettlementUnfilledActionType, RFQStreamErrorData, RFQTakerStreamAckData, ReDelegation, Redemption, RedemptionStatus, ReferralDetails, Referrer, ReferrerCode, ReferrerEligibilityResponse, ReferrerInvitee, RequestStreamCallbackV2, ResolvedStreamManagerConfig, ResolvedWsTransportConfig, RestApiResponse, RestAuthInfo, RestSignerInfo, RestTx, RestTxBody, RestTxLog, RewardDistribution, RewardsDistribution, RewardsEligibility, Route, SIGN_AMINO, SIGN_DIRECT, SIGN_EIP712, SIGN_EIP712_V2, SendEnabled, SettlementStreamCallbackV2, SettlementsResponse, SignDoc, SignTypedDataVersionV4, Signature, SignerDetails, SimulationResponse, SnapshotPoints, SpotAverageEntriesStreamCallback, SpotAverageEntriesStreamCallbackV2, SpotAverageEntry, SpotLimitOrder, SpotLimitOrderParams, SpotMarket, SpotOrderCancelParams, SpotOrderHistory, SpotOrderHistoryStreamCallback, SpotOrderHistoryStreamCallbackV2, SpotOrderbookUpdateStreamCallback, SpotOrderbookUpdateStreamCallbackV2, SpotOrderbookV2StreamCallback, SpotOrdersStreamCallback, SpotOrdersStreamCallbackV2, SpotTrade, SpotTradesStreamCallback, SpotTradesStreamCallbackV2, StakingModuleParams, StakingMsgs, StakingRewardByAccountStreamCallback, StakingRewardByAccountStreamCallbackV2, StrategyType, StreamBidsResponse, StreamDisconnectReason, StreamError, StreamEvent, StreamManager, StreamManagerConfig, StreamManagerEvents, StreamManagerRetryConfig, StreamManagerV2, StreamOperation, StreamState, StreamStatusResponse, StreamSubscription, SubaccountBalance, SubaccountDeposit, SubaccountDepositV2, SubaccountPortfolio, SubaccountTransfer, SwapQueryTransformer, TakerStreamConfig, TakerStreamEvents, TallyResult, TcAbacusGrpcApi, TcDerivativeLimitOrder, TcDerivativeOrderHistory, TcDerivativeOrderHistoryStreamCallbackV2, TcDerivativeOrdersResponse, TcDerivativeOrdersStreamCallbackV2, TcDerivativePosition, TcDerivativePositionsStreamCallbackV2, TcDerivativeTradeHistory, TcDerivativeTradesResponse, TcDerivativeTradesStreamCallbackV2, TcDerivativesOrdersHistoryResponse, TcDerivativesPositionsResponse, TcPositionDelta, 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, TransactionsStreamCallbackV2, TransferType, TransfersStreamCallback, TransfersStreamCallbackV2, TransportEventListener, TransportEventType, TransportEvents, 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, VaultHolderSubscriptionStreamCallbackV2, VaultStreamCallback, VaultStreamCallbackV2, VolLeaderboard, Vote, VoteOption, VoteOptionMap, WasmCode, WasmCodeExplorerApiResponse, WasmContractQueryResponse, WasmMsgs, WeightedVoteOption, WsDisconnectReason, WsReconnectConfig, WsState, WsTransportConfig, accountEthParser, addHexPrefix, amountToCosmosSdkDecAmount, base64ToUint8Array, base64ToUtf8, bigIntReplacer, bigIntToNumber, bigIntToString, binaryToBase64, concatUint8Arrays, cosmosSdkDecToBigNumber, createAny, createAnyMessage, createAuthInfo, createBody, createFee, createNonCriticalExtensionFromObject, createSignDoc, createSignDocFromTransaction, createSignerInfo, createSigners, createStreamSubscription, createStreamSubscriptionV2, 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, ofacList, pageRequestToGrpcPageRequestV2, paginationRequestFromPagination, paginationUint8ArrayToString, parseCoins, privateKeyHashToPublicKey, privateKeyHashToPublicKeyBase64, privateKeyToPublicKey, privateKeyToPublicKeyBase64, protoObjectToJson, protoTypeToAminoType, protobufTimestampToDate, protobufTimestampToUnixMs, protobufTimestampToUnixSeconds, publicKeyToAddress, recoverTypedSignaturePubKey, removeHexPrefix, ripemd160, safeBigIntStringify, sanitizeTypedData, sha256, sortObjectByKeys, sortObjectByKeysWithReduce, spotPriceFromChainPrice, spotPriceFromChainPriceToFixed, spotPriceToChainPrice, spotPriceToChainPriceToFixed, spotQuantityFromChainQuantity, spotQuantityFromChainQuantityToFixed, spotQuantityToChainQuantity, spotQuantityToChainQuantityToFixed, stringToUint8Array, stringTypeToReflectionStringType, toBase64, toUtf8, uint8ArrayToBase64, uint8ArrayToHex, uint8ArrayToString, waitTxBroadcasted };
|
package/dist/cjs/utils.d.cts
CHANGED
|
@@ -5,6 +5,6 @@ import "./BaseGrpcConsumer-Ba4uw4ZN.cjs";
|
|
|
5
5
|
import "./index-CgHU4RQF.cjs";
|
|
6
6
|
import "./index-DfJ_98xz.cjs";
|
|
7
7
|
import "./index-BhsPcNn5.cjs";
|
|
8
|
-
import "./index-
|
|
8
|
+
import "./index-Bl_Fyw1G.cjs";
|
|
9
9
|
import "./index-4xdeGNK4.cjs";
|
|
10
10
|
export { BECH32_ADDR_ACC_PREFIX, BECH32_ADDR_CONS_PREFIX, BECH32_ADDR_VAL_PREFIX, BECH32_PUBKEY_ACC_PREFIX, BECH32_PUBKEY_CONS_PREFIX, BECH32_PUBKEY_VAL_PREFIX, DEFAULT_DERIVATION_PATH, GrpcWebFetchTransport, SignTypedDataVersionV4, TypedDataUtilsHashStruct, TypedDataUtilsSanitizeData, TypedMessageV4, addHexPrefix, amountToCosmosSdkDecAmount, base64ToUint8Array, base64ToUtf8, bigIntReplacer, bigIntToNumber, bigIntToString, binaryToBase64, concatUint8Arrays, cosmosSdkDecToBigNumber, decompressPubKey, denomAmountFromChainDenomAmount, denomAmountFromChainDenomAmountToFixed, denomAmountFromGrpcChainDenomAmount, denomAmountToChainDenomAmount, denomAmountToChainDenomAmountToFixed, denomAmountToGrpcChainDenomAmount, derivativeMarginFromChainMargin, derivativeMarginFromChainMarginToFixed, derivativeMarginToChainMargin, derivativeMarginToChainMarginToFixed, derivativePriceFromChainPrice, derivativePriceFromChainPriceToFixed, derivativePriceToChainPrice, derivativePriceToChainPriceToFixed, derivativeQuantityFromChainQuantity, derivativeQuantityFromChainQuantityToFixed, derivativeQuantityToChainQuantity, derivativeQuantityToChainQuantityToFixed, domainHash, fetchAllWithPagination, formatAmountToAllowableAmount, formatAmountToAllowableDecimals, formatNumberToAllowableDecimals, formatNumberToAllowableTensMultiplier, formatPriceToAllowableDecimals, formatPriceToAllowablePrice, fromBase64, fromUtf8, getAddressFromInjectiveAddress, getChecksumAddress, getDefaultSubaccountId, getDerivativeMarketDecimals, getDerivativeMarketTensMultiplier, getErrorMessage, getEthereumAddress, getExactDecimalsFromNumber, getGasPriceBasedOnMessage, getGrpcWebTransport, getInjectiveAddress, getInjectiveAddressFromSubaccountId, getSignificantDecimalsFromNumber, getSpotMarketDecimals, getSpotMarketTensMultiplier, getSubaccountId, getTensMultiplier, grpcCoinToUiCoin, grpcPaginationToPagination, grpcPagingToPaging, grpcPagingToPagingV2, hashToHex, hexToBase64, hexToBuff, hexToNumber, hexToUint8Array, isBrowser, isCw20ContractAddress, isJsonString, isNode, isNumber, isReactNative, isServerSide, makeTimeoutTimestamp, makeTimeoutTimestampInNs, messageHash, numberToCosmosSdkDecString, objectToJson, ofacList, pageRequestToGrpcPageRequestV2, paginationRequestFromPagination, paginationUint8ArrayToString, parseCoins, privateKeyHashToPublicKey, privateKeyHashToPublicKeyBase64, privateKeyToPublicKey, privateKeyToPublicKeyBase64, protoObjectToJson, protobufTimestampToDate, protobufTimestampToUnixMs, protobufTimestampToUnixSeconds, publicKeyToAddress, recoverTypedSignaturePubKey, removeHexPrefix, ripemd160, safeBigIntStringify, sanitizeTypedData, sha256, sortObjectByKeys, sortObjectByKeysWithReduce, spotPriceFromChainPrice, spotPriceFromChainPriceToFixed, spotPriceToChainPrice, spotPriceToChainPriceToFixed, spotQuantityFromChainQuantity, spotQuantityFromChainQuantityToFixed, spotQuantityToChainQuantity, spotQuantityToChainQuantityToFixed, stringToUint8Array, toBase64, toUtf8, uint8ArrayToBase64, uint8ArrayToHex, uint8ArrayToString };
|
|
@@ -42,6 +42,7 @@ var TcAbacusGrpcTransformer = class TcAbacusGrpcTransformer {
|
|
|
42
42
|
static grpcAccountStatsToAccountStats(response) {
|
|
43
43
|
return {
|
|
44
44
|
cap: response.cap,
|
|
45
|
+
code: response.code,
|
|
45
46
|
address: response.address,
|
|
46
47
|
last7DVolume: response.last7DVolume,
|
|
47
48
|
inviteeCount: response.inviteeCount,
|
|
@@ -69,6 +70,7 @@ var TcAbacusGrpcTransformer = class TcAbacusGrpcTransformer {
|
|
|
69
70
|
address: invitee.address,
|
|
70
71
|
createdAt: invitee.createdAt,
|
|
71
72
|
height: invitee.height.toString(),
|
|
73
|
+
allTimeVolume: invitee.allTimeVolume,
|
|
72
74
|
referralPoints: invitee.referralPoints
|
|
73
75
|
};
|
|
74
76
|
}
|
|
@@ -100,6 +102,15 @@ var TcAbacusGrpcTransformer = class TcAbacusGrpcTransformer {
|
|
|
100
102
|
codes: response.codes.map((code) => TcAbacusGrpcTransformer.grpcReferrerCodeToReferrerCode(code))
|
|
101
103
|
};
|
|
102
104
|
}
|
|
105
|
+
static grpcInviteeReferrerToInviteeReferrer(response) {
|
|
106
|
+
return {
|
|
107
|
+
code: response.code,
|
|
108
|
+
address: response.address,
|
|
109
|
+
createdAt: response.createdAt,
|
|
110
|
+
height: response.height.toString(),
|
|
111
|
+
referrerAddress: response.referrerAddress
|
|
112
|
+
};
|
|
113
|
+
}
|
|
103
114
|
};
|
|
104
115
|
|
|
105
116
|
//#endregion
|
|
@@ -174,6 +185,11 @@ var TcAbacusGrpcApi = class extends BaseGrpcConsumer {
|
|
|
174
185
|
const response = await this.executeGrpcCall(request, this.client.listReferrerCodes.bind(this.client));
|
|
175
186
|
return TcAbacusGrpcTransformer.grpcListReferrerCodesToListReferrerCodes(response);
|
|
176
187
|
}
|
|
188
|
+
async fetchInviteeReferrer(address) {
|
|
189
|
+
const request = TcAbacusPb.GetInviteeReferrerRequest.create({ address });
|
|
190
|
+
const response = await this.executeGrpcCall(request, this.client.getInviteeReferrer.bind(this.client));
|
|
191
|
+
return TcAbacusGrpcTransformer.grpcInviteeReferrerToInviteeReferrer(response);
|
|
192
|
+
}
|
|
177
193
|
};
|
|
178
194
|
|
|
179
195
|
//#endregion
|
|
@@ -5,6 +5,6 @@ import "../BaseGrpcConsumer-DEH9Rq7m.js";
|
|
|
5
5
|
import "../index-DKn53Idr.js";
|
|
6
6
|
import "../index-ECwAlIYI.js";
|
|
7
7
|
import "../index-DQnG0Shp.js";
|
|
8
|
-
import "../index-
|
|
8
|
+
import "../index-BkBHsdbJ.js";
|
|
9
9
|
import "../index-DhfsaTNU.js";
|
|
10
10
|
export { AbsoluteTxPosition, Account, AccountResponse, AccountsResponse, AuctionBid, AuctionCurrentBasket, AuctionEventAuctionResult, AuctionEventAuctionStart, AuctionEventBid, AuctionLastAuctionResult, AuctionModuleParams, AuctionModuleState, AuctionModuleStateParams, AuctionModuleStateResponse, AuctionParams, AuthBaseAccount, AuthModuleParams, AuthorityMetadata, BalancesResponse, BankModuleParams, BaseAccountRestResponse, BatchCancelDerivativeOrdersAuthz, BatchCancelSpotOrdersAuthz, BatchCreateDerivativeLimitOrdersAuthz, BatchCreateSpotLimitOrdersAuthz, BlockLatestRestResponse, BondStatus, CampaignRewardPool, 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, CodeInfoResponse, ContractAccountBalance, ContractAccountsBalanceWithPagination, ContractCodeHistoryEntry, ContractCodeHistoryOperationType, ContractCodeHistoryOperationTypeMap, ContractInfo, ContractStateWithPagination, CosmosAccountRestResponse, CreateDerivativeLimitOrderAuthz, CreateDerivativeMarketOrderAuthz, CreateSpotLimitOrderAuthz, CreateSpotMarketOrderAuthz, Delegation, DenomBalance, DenomOwnersResponse, DepositProposalParams, DistributionModuleParams, EthAccount, EvmBlobConfig, EvmBlobScheduleConfig, EvmChainConfig, EvmLog, EvmParams, ExchangeModuleParams, ExchangeParams, FactoryDenomWithMetadata, FeeDiscountAccountInfo, FeeDiscountSchedule, FeeDiscountTierInfo, FeeDiscountTierTTL, GenericAuthorization, GoogleProtoBufAny, GovModuleStateParams, Grant, GrantAuthorization, GrantAuthorizationWithDecodedAuthorization, GrantWithDecodedAuthorization, GrpcAbsoluteTxPosition, GrpcAuctionBid, GrpcAuctionEventAuctionResult, GrpcAuctionEventAuctionStart, GrpcAuctionEventBid, GrpcAuctionLastAuctionResult, GrpcAuctionParams, GrpcBankParams, GrpcCampaignRewardPool, GrpcChainDerivativeMarket, GrpcChainDerivativePosition, GrpcChainFullDerivativeMarket, GrpcChainFullSpotMarket, GrpcChainPosition, GrpcChainSpotMarket, GrpcCodeInfoResponse, GrpcContractCodeHistoryEntry, GrpcContractInfo, GrpcDecCoin, GrpcDelegation, GrpcDelegationDelegatorReward, GrpcDelegationResponse, GrpcDenomDecimals, GrpcDenomMinNotional, GrpcDistributionParams, GrpcEvmBlobConfig, GrpcEvmBlobScheduleConfig, GrpcEvmChainConfig, GrpcEvmLog, GrpcEvmParams, GrpcExchangeParams, GrpcFeeDiscountAccountInfo, GrpcFeeDiscountSchedule, GrpcFeeDiscountTierInfo, GrpcFeeDiscountTierTTL, GrpcGovernanceDepositParams, GrpcGovernanceTallyParams, GrpcGovernanceVotingParams, GrpcInsuranceFund, GrpcInsuranceParams, GrpcMarketStatus, GrpcMarketStatusMap, GrpcMintParams, GrpcOracleParams, GrpcOrderInfo, GrpcOrderType, GrpcOrderTypeMap, GrpcParams, GrpcPeggyParams, GrpcPermissionActorRoles, GrpcPermissionAddressVoucher, GrpcPermissionNamespace, GrpcPermissionPolicyStatus, GrpcPermissionPolicyStatusManagerCapability, GrpcPermissionRole, GrpcPermissionRoleActors, GrpcPermissionRoleIDs, GrpcPermissionRoleManager, GrpcPermissionsNamespace, GrpcPermissionsParams, GrpcPointsMultiplier, GrpcPool, GrpcProposal, GrpcProposalDeposit, ProposalStatus as GrpcProposalStatus, ProposalStatus, GrpcReDelegation, GrpcReDelegationEntryResponse, GrpcReDelegationResponse, GrpcRedemptionSchedule, GrpcSpotMarket, GrpcSpotMarketOrder, GrpcSpotOrder, GrpcStakingParams, GrpcSupply, GrpcTallyResult, GrpcTokenPair, GrpcTradeRewardCampaign, GrpcTradingRewardCampaignBoostInfo, GrpcTradingRewardCampaignInfo, GrpcTxFeesEipBaseFee, GrpcTxFeesParams, GrpcUnbondingDelegation, GrpcUnbondingDelegationEntry, GrpcValidator, GrpcValidatorCommission, GrpcValidatorCommissionRates, GrpcValidatorDescription, GrpcVote, InsuranceFund, InsuranceModuleParams, IsOptedOutOfRewards, MarketingInfo, Metadata, MinModuleParams, NodeInfoRestResponse, OracleModuleParams, OracleType, OracleTypeMap, OrderType, OrderTypeMap, Params, PeggyModuleParams, PermissionActionMap, PermissionActorRoles, PermissionAddressRoles, PermissionAddressVoucher, PermissionGenesisState, PermissionNamespace, PermissionParams, PermissionPolicyManagerCapability, PermissionPolicyStatus, PermissionRole, PermissionRoleActors, PermissionRoleIDs, PermissionRoleManager, PermissionVoucher, PermissionsModuleParams, PointsMultiplier, Pool, Proposal, ProposalDeposit, ProposalStatusMap, PubKey, ReDelegation, RestApiResponse, SendEnabled, StakingModuleParams, TallyResult, TokenFactoryModuleParams, TokenFactoryModuleState, TokenInfo, TokenPair, TotalSupply, TradeRewardCampaign, TradingRewardCampaignBoostInfo, TradingRewardCampaignInfo, TxFeesEipBaseFee, TxFeesModuleStateParams, UnBondingDelegation, Validator, ValidatorCommission, ValidatorDescription, ValidatorRewards, Vote, VoteOption, VoteOptionMap, WeightedVoteOption, grpcContractInfo };
|
|
@@ -5,6 +5,6 @@ import "../BaseGrpcConsumer-DEH9Rq7m.js";
|
|
|
5
5
|
import "../index-DKn53Idr.js";
|
|
6
6
|
import "../index-ECwAlIYI.js";
|
|
7
7
|
import "../index-DQnG0Shp.js";
|
|
8
|
-
import "../index-
|
|
8
|
+
import "../index-BkBHsdbJ.js";
|
|
9
9
|
import "../index-DhfsaTNU.js";
|
|
10
10
|
export { AccessType, AccessTypeCode, AccountAuctionStatus, AccountAuctionV2, AccountPortfolio, AccountPortfolioBalances, AccountPortfolioStreamCallback, AccountPortfolioStreamCallbackV2, AccountPortfolioV2, AccountStats, AllChronosDerivativeMarketSummary, AllChronosMarketHistory, AllChronosSpotMarketSummary, AllDerivativeMarketSummaryResponse, AllSpotMarketSummaryResponse, AtomicSwap, Auction, AuctionCoin, AuctionCoinPrices, AuctionContract, AuctionV2, AuctionsStats, BalanceStreamCallback, BalanceStreamCallbackV2, BankMsgSendTransaction, BankTransfer, BankTransferFromExplorerApiResponse, BaseDerivativeMarket, BatchDerivativeOrderCancelParams, BatchSpotOrderCancelParams, BidsStreamCallback, BidsStreamCallbackV2, BinaryOptionsMarket, Block, BlockFromExplorerApiResponse, BlockWithTxs, BlocksStreamCallback, BlocksStreamCallbackV2, BlocksWithTxsStreamCallback, BlocksWithTxsStreamCallbackV2, CW20BalanceExplorerApiResponse, CW20Message, Campaign, CampaignUser, CampaignV2, ChronosDerivativeMarketSummary, ChronosDerivativeMarketSummaryResponse, ChronosLeaderboard, ChronosLeaderboardEntry, ChronosLeaderboardResponse, ChronosMarketHistoryResponse, ChronosSpotMarketSummary, ChronosSpotMarketSummaryResponse, Contract, ContractExplorerApiResponse, ContractTransaction, ContractTransactionExplorerApiResponse, ContractTransactionWithMessages, CosmWasmChecksum, CosmWasmPermission, DenomHolders, DerivativeLimitOrder, DerivativeLimitOrderParams, DerivativeMarket, DerivativeMarketStreamCallback, DerivativeMarketStreamCallbackV2, DerivativeMarketWithoutBinaryOptions, DerivativeOrderCancelParams, DerivativeOrderHistory, DerivativeOrderHistoryStreamCallback, DerivativeOrderHistoryStreamCallbackV2, DerivativeOrderbookUpdateStreamCallback, DerivativeOrderbookUpdateStreamCallbackV2, DerivativeOrderbookV2StreamCallback, DerivativeOrderbookV2StreamCallbackV2, DerivativeOrdersStreamCallback, DerivativeOrdersStreamCallbackV2, DerivativePositionsStreamCallback, DerivativePositionsStreamCallbackV2, DerivativePositionsV2StreamCallback, DerivativePositionsV2StreamCallbackV2, DerivativeTrade, DerivativeTradesStreamCallback, DerivativeTradesStreamCallbackV2, EventLog, EventLogEvent, ExpiryFuturesMarket, ExpiryFuturesMarketInfo, ExplorerApiResponse, ExplorerApiResponseWithPagination, ExplorerBlockApiResponse, ExplorerBlockWithTxs, ExplorerCW20BalanceWithToken, ExplorerStats, ExplorerStreamTransformer, ExplorerTransaction, ExplorerTransactionApiResponse, ExplorerTransactionV2, ExplorerTxsV2Response, ExplorerValidator, ExplorerValidatorDescription, ExplorerValidatorUptime, FundingPayment, FundingRate, GasFee, GridStrategyStreamCallbackV2, GridStrategyStreamResponse, GridStrategyType, GrpcAccountAuctionV2, GrpcAccountPortfolio, GrpcAccountPortfolioV2, GrpcAtomicSwap, GrpcAuction, GrpcAuctionCoin, GrpcAuctionCoinPrices, GrpcAuctionContract, GrpcAuctionV2, GrpcBankMsgSendMessage, GrpcBinaryOptionsMarketInfo, GrpcCampaign, GrpcCampaignUser, GrpcCampaignV2, GrpcDecodeError, GrpcDenomHolders, GrpcDerivativeLimitOrder, GrpcDerivativeMarketInfo, GrpcDerivativeOrderHistory, GrpcDerivativePosition, GrpcDerivativePositionV2, GrpcDerivativeTrade, GrpcExpiryFuturesMarketInfo, GrpcExplorerStats, GrpcFrame, GrpcFundingPayment, GrpcFundingRate, GrpcGasFee, GrpcGuild, GrpcGuildMember, GrpcHistoricalBalance, GrpcHistoricalRPNL, GrpcHistoricalVolumes, GrpcIBCTransferTx, GrpcIndexerAuctionBid, GrpcIndexerInsuranceFund, GrpcIndexerRedemptionSchedule, GrpcIndexerValidatorDescription, GrpcLeaderboardRow, GrpcMegaVaultApr, GrpcMegaVaultAprStats, GrpcMegaVaultHistoricalPnL, GrpcMegaVaultHistoricalTVL, GrpcMegaVaultIncentives, GrpcMegaVaultMaxDrawdown, GrpcMegaVaultOperationStatusLogEntry, GrpcMegaVaultOperator, GrpcMegaVaultOperatorRedemptionBucket, GrpcMegaVaultPnl, GrpcMegaVaultPnlStats, GrpcMegaVaultRedemption, GrpcMegaVaultSubscription, GrpcMegaVaultTargetApr, GrpcMegaVaultUnrealizedPnl, GrpcMegaVaultUserStats, GrpcMegaVaultVaultStats, GrpcMegaVaultVolatility, GrpcMegaVaultVolatilityStats, 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, GrpcPeggyDepositTx, GrpcPeggyWithdrawalTx, GrpcPerpetualMarketFunding, GrpcPerpetualMarketInfo, GrpcPnlLeaderboard, GrpcPortfolioSubaccountBalanceV2, GrpcPositionDelta, GrpcPositionV2, GrpcPositionsWithUPNL, GrpcPriceLevel, GrpcRFQConditionalOrder, GrpcRFQExpiry, GrpcRFQProcessedQuote, GrpcRFQQuote, GrpcRFQRequest, GrpcRFQSettlement, GrpcSpotAverageEntry, GrpcSpotLimitOrder, GrpcSpotMarketInfo, GrpcSpotOrderHistory, GrpcSpotTrade, GrpcSubaccountBalance, GrpcSubaccountBalanceTransfer, GrpcSubaccountDeposit, GrpcSubaccountDepositV2, GrpcSubaccountPortfolio, GrpcTcDerivativeLimitOrder, GrpcTcDerivativeOrderHistory, GrpcTcDerivativeOrdersResponse, GrpcTcDerivativePosition, GrpcTcDerivativeTradeHistory, GrpcTcDerivativeTradesResponse, GrpcTcDerivativesOrdersHistoryResponse, GrpcTcDerivativesPositionsResponse, GrpcTcPositionDelta, GrpcTokenMeta, GrpcTradingReward, GrpcValidatorSlashingEvent, GrpcValidatorUptime, GrpcVolLeaderboard, GrpcWebSocketCodec, GrpcWebSocketTransport, Guild, GuildCampaignSummary, GuildMember, HistoricalBalance, HistoricalRPNL, HistoricalStakingStreamCallback, HistoricalStakingStreamCallbackV2, HistoricalVolumes, Holder, IBCTransferTx, IncentivesCampaign, IncentivesRound, IndexerAccountPortfolioStreamTransformer, IndexerAccountStreamTransformer, IndexerArchiverStreamTransformer, IndexerAuctionBid, IndexerAuctionStreamTransformer, IndexerCampaignTransformer, IndexerDerivativeStreamTransformer, IndexerGrpcAccountApi, IndexerGrpcAccountPortfolioApi, IndexerGrpcAccountPortfolioStream, IndexerGrpcAccountPortfolioStreamV2, IndexerGrpcAccountPortfolioTransformer, IndexerGrpcAccountStream, IndexerGrpcAccountStreamV2, IndexerGrpcAccountTransformer, IndexerGrpcArchiverApi, IndexerGrpcArchiverStream, IndexerGrpcArchiverStreamV2, IndexerGrpcArchiverTransformer, IndexerGrpcAuctionApi, IndexerGrpcAuctionStream, IndexerGrpcAuctionStreamV2, IndexerGrpcAuctionTransformer, IndexerGrpcCampaignApi, IndexerGrpcDerivativeTransformer, IndexerGrpcDerivativesApi, IndexerGrpcDerivativesStream, IndexerGrpcDerivativesStreamV2, IndexerGrpcExplorerApi, IndexerGrpcExplorerStream, IndexerGrpcExplorerStreamV2, IndexerGrpcExplorerTransformer, IndexerGrpcInsuranceFundApi, IndexerGrpcInsuranceFundTransformer, IndexerGrpcMegaVaultApi, IndexerGrpcMegaVaultTransformer, IndexerGrpcMetaApi, IndexerGrpcMitoApi, IndexerGrpcMitoStream, IndexerGrpcMitoStreamTransformer, IndexerGrpcMitoStreamV2, IndexerGrpcMitoTransformer, IndexerGrpcOracleApi, IndexerGrpcOracleStream, IndexerGrpcOracleStreamV2, IndexerGrpcOracleTransformer, IndexerGrpcRFQApi, IndexerGrpcReferralApi, IndexerGrpcReferralTransformer, IndexerGrpcRfqStreamV2, IndexerGrpcRfqTransformer, IndexerGrpcSpotApi, IndexerGrpcSpotStream, IndexerGrpcSpotStreamV2, IndexerGrpcSpotTransformer, IndexerGrpcTcDerivativesApi, IndexerGrpcTcDerivativesStreamV2, IndexerGrpcTcDerivativesTransformer, IndexerGrpcTradingApi, IndexerGrpcTradingStream, IndexerGrpcTradingStreamV2, IndexerGrpcTransactionApi, IndexerGrpcWeb3GwApi, IndexerInsuranceFund, IndexerModule, IndexerOracleStreamTransformer, IndexerRestDerivativesChronosApi, IndexerRestExplorerApi, IndexerRestExplorerTransformer, IndexerRestLeaderboardChronosApi, IndexerRestMarketChronosApi, IndexerRestSpotChronosApi, IndexerRfqStreamTransformer, IndexerSpotStreamTransformer, IndexerStreamTransaction, IndexerTcDerivativesStreamTransformer, IndexerTokenMeta, IndexerWsMakerStream, IndexerWsTakerStream, InsuranceFundCreateParams, IsomorphicWebSocket, LeaderboardRow, ListTradingStrategiesResponse, MakerStreamConfig, MakerStreamEvents, MarketType, MarketsStreamCallback, MegaVault, MegaVaultApr, MegaVaultAprStats, MegaVaultHistoricalPnL, MegaVaultHistoricalTVL, MegaVaultIncentives, MegaVaultMaxDrawdown, MegaVaultOperator, MegaVaultOperatorRedemptionBucket, MegaVaultPnl, MegaVaultPnlStats, MegaVaultRedemption, MegaVaultRedemptionStatus, MegaVaultStats, MegaVaultSubscription, MegaVaultSubscriptionStatus, MegaVaultTargetApr, MegaVaultUnrealizedPnl, MegaVaultUser, MegaVaultUserStats, MegaVaultVolatility, MegaVaultVolatilityStats, Message, 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, OperationStatusLogEntry, Oracle, OraclePriceStreamCallback, OraclePriceStreamCallbackV2, OraclePricesByMarketsStreamCallback, OraclePricesByMarketsStreamCallbackV2, Orderbook, OrderbookWithSequence, Paging, PeggyDepositTx, PeggyWithdrawalTx, PerpetualMarket, PerpetualMarketFunding, PerpetualMarketInfo, PnlLeaderboard, PortfolioSubaccountBalanceV2, Position, PositionDelta, PositionV2, PositionsWithUPNL, PriceLevel, QuantityAndFees, QuoteStreamCallbackV2, RFQConditionalOrder, RFQConditionalOrderInput, RFQConditionalOrdersResponse, RFQExpiryType, RFQMakerStreamAckData, RFQProcessedQuoteType, RFQQuoteType, RFQRequestInputType, RFQRequestType, RFQSettlementLimitActionType, RFQSettlementType, RFQSettlementUnfilledActionType, RFQStreamErrorData, RFQTakerStreamAckData, Redemption, RedemptionStatus, ReferralDetails, RequestStreamCallbackV2, ResolvedWsTransportConfig, Route, SettlementStreamCallbackV2, SettlementsResponse, Signature, SpotAverageEntriesStreamCallback, SpotAverageEntriesStreamCallbackV2, SpotAverageEntry, SpotLimitOrder, SpotLimitOrderParams, SpotMarket, SpotOrderCancelParams, SpotOrderHistory, SpotOrderHistoryStreamCallback, SpotOrderHistoryStreamCallbackV2, SpotOrderbookUpdateStreamCallback, SpotOrderbookUpdateStreamCallbackV2, SpotOrderbookV2StreamCallback, SpotOrdersStreamCallback, SpotOrdersStreamCallbackV2, SpotTrade, SpotTradesStreamCallback, SpotTradesStreamCallbackV2, StakingRewardByAccountStreamCallback, StakingRewardByAccountStreamCallbackV2, StreamBidsResponse, StreamManager, StreamManagerV2, StreamStatusResponse, SubaccountBalance, SubaccountDeposit, SubaccountDepositV2, SubaccountPortfolio, SubaccountTransfer, TakerStreamConfig, TakerStreamEvents, TcDerivativeLimitOrder, TcDerivativeOrderHistory, TcDerivativeOrderHistoryStreamCallbackV2, TcDerivativeOrdersResponse, TcDerivativeOrdersStreamCallbackV2, TcDerivativePosition, TcDerivativePositionsStreamCallbackV2, TcDerivativeTradeHistory, TcDerivativeTradesResponse, TcDerivativeTradesStreamCallbackV2, TcDerivativesOrdersHistoryResponse, TcDerivativesPositionsResponse, TcPositionDelta, TradingReward, TradingStrategy, Transaction, TransactionFromExplorerApiResponse, TransactionsStreamCallback, TransactionsStreamCallbackV2, TransferType, TransfersStreamCallback, TransfersStreamCallbackV2, TransportEventListener, TransportEventType, TransportEvents, TxMessage, ValidatorSlashingEvent, ValidatorUptime, ValidatorUptimeFromExplorerApiResponse, ValidatorUptimeStatus, VaultHolderSubscriptionStreamCallback, VaultHolderSubscriptionStreamCallbackV2, VaultStreamCallback, VaultStreamCallbackV2, VolLeaderboard, WasmCode, WasmCodeExplorerApiResponse, WsDisconnectReason, WsReconnectConfig, WsState, WsTransportConfig, createStreamSubscription, createStreamSubscriptionV2 };
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import "../tx_pb-B9KzLX7v.js";
|
|
2
2
|
import "../index-C8crIAg1.js";
|
|
3
3
|
import "../BaseGrpcConsumer-DEH9Rq7m.js";
|
|
4
|
-
import { a as HealthCheckResponse, c as
|
|
5
|
-
export { AccountInviteesResponse, AccountPointsResponse, AccountStatsResponse, CurrentEpochResponse, HealthCheckResponse, ListReferrerCodesResponse, ListReferrersResponse, Referrer, ReferrerCode, ReferrerEligibilityResponse, ReferrerInvitee, SnapshotPoints, TcAbacusGrpcApi };
|
|
4
|
+
import { a as HealthCheckResponse, c as ListReferrersResponse, d as ReferrerEligibilityResponse, f as ReferrerInvitee, i as CurrentEpochResponse, l as Referrer, m as TcAbacusGrpcApi, n as AccountPointsResponse, o as InviteeReferrer, p as SnapshotPoints, r as AccountStatsResponse, s as ListReferrerCodesResponse, t as AccountInviteesResponse, u as ReferrerCode } from "../index-BkBHsdbJ.js";
|
|
5
|
+
export { AccountInviteesResponse, AccountPointsResponse, AccountStatsResponse, CurrentEpochResponse, HealthCheckResponse, InviteeReferrer, ListReferrerCodesResponse, ListReferrersResponse, Referrer, ReferrerCode, ReferrerEligibilityResponse, ReferrerInvitee, SnapshotPoints, TcAbacusGrpcApi };
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import "../defineProperty-HO0rQlTT.js";
|
|
2
2
|
import "../grpc-BJmNoike.js";
|
|
3
3
|
import "../BaseGrpcConsumer-CsJHyzUs.js";
|
|
4
|
-
import { t as TcAbacusGrpcApi } from "../TcAbacusGrpcApi-
|
|
4
|
+
import { t as TcAbacusGrpcApi } from "../TcAbacusGrpcApi-5GsBEo3k.js";
|
|
5
5
|
|
|
6
6
|
export { TcAbacusGrpcApi };
|
|
@@ -5,6 +5,6 @@ import "../BaseGrpcConsumer-DEH9Rq7m.js";
|
|
|
5
5
|
import "../index-DKn53Idr.js";
|
|
6
6
|
import "../index-ECwAlIYI.js";
|
|
7
7
|
import "../index-DQnG0Shp.js";
|
|
8
|
-
import "../index-
|
|
8
|
+
import "../index-BkBHsdbJ.js";
|
|
9
9
|
import "../index-DhfsaTNU.js";
|
|
10
10
|
export { Address, BaseAccount, PrivateKey, PublicKey };
|
|
@@ -5,6 +5,6 @@ import "../BaseGrpcConsumer-DEH9Rq7m.js";
|
|
|
5
5
|
import "../index-DKn53Idr.js";
|
|
6
6
|
import { $ as ExecArgInitiateTransfer, B as ExecArgCW20AdapterRedeemAndTransfer, G as ExitConfig, H as ExecPrivilegedArgVaultRedeem, I as ExecArgs, J as TrailingArithmetic, K as ExitType, L as ExecPrivilegedArgs, N as MsgExecuteContractCompat, Q as ExecArgUpdateGridConfig, R as ExecPrivilegedArgOffChainVaultSubscribe, U as ExecArgCreateSpotGridStrategy, V as ExecPrivilegedArgVaultSubscribe, W as ExecArgCreatePerpGridStrategy, X as ExecArgRemoveGridStrategy, Y as TrailingArithmeticLP, Z as ExecArgIncreaseAllowance, at as ExecArgCW20Transfer, ct as ExecArgCW20Send, et as ExecArgSwapExactOutput, it as ExecArgFundCampaign, nt as ExecArgSwapMinOutput, ot as ExecArgCreateRound, q as StrategyType, rt as ExecArgDepositTokens, st as ExecArgSubmitVaa, tt as ExecArgCreateCampaign, z as ExecPrivilegedArgOffChainVaultRedeem } from "../index-ECwAlIYI.js";
|
|
7
7
|
import "../index-DQnG0Shp.js";
|
|
8
|
-
import "../index-
|
|
8
|
+
import "../index-BkBHsdbJ.js";
|
|
9
9
|
import "../index-DhfsaTNU.js";
|
|
10
10
|
export { AuctionMsgs, AuthzMsgs, BankMsgs, ContractExecutionAuthorization as ContractExecutionAuthz, ContractExecutionCompatAuthorization as ContractExecutionCompatAuthz, DistributionMsgs, Erc20Msgs, ExchangeMsgs, 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, FeegrantMsgs, GenericAuthorization as GenericAuthz, GovMsgs, GrantAuthorizationType, IbcMsgs, InsuranceMsgs, MsgAdminUpdateBinaryOptionsMarket, MsgAuthorizeStakeGrants, MsgExec as MsgAuthzExec, MsgBatchCancelBinaryOptionsOrders, MsgBatchCancelDerivativeOrders, MsgBatchCancelSpotOrders, MsgBatchUpdateOrders, MsgBeginRedelegate, MsgBid, MsgBurn, MsgCancelBinaryOptionsOrder, MsgCancelDerivativeOrder, MsgCancelPostOnlyModeV2, MsgCancelSpotOrder, MsgCancelUnbondingDelegation, MsgChangeAdmin, MsgClaimVoucher, MsgCreateBinaryOptionsLimitOrder, MsgCreateBinaryOptionsMarketOrder, MsgCreateDenom, MsgCreateDerivativeLimitOrder, MsgCreateDerivativeMarketOrder, MsgCreateInsuranceFund, MsgCreateNamespace, MsgCreateRateLimit, MsgCreateSpotLimitOrder, MsgCreateSpotMarketOrder, MsgCreateValidator, MsgDecreasePositionMargin, MsgDelegate, MsgDeposit, MsgEditValidator, MsgExecuteContract, MsgExecuteContractCompat, MsgExternalTransfer, MsgFundCommunityPool, MsgDeposit$1 as MsgGovDeposit, MsgGrant, MsgGrantAllowance, MsgGrantProviderPrivilegeProposal, MsgGrantWithAuthorization, MsgIncreasePositionMargin, MsgInstantBinaryOptionsMarketLaunch, MsgInstantSpotMarketLaunch, MsgInstantiateContract, MsgLiquidatePosition, MsgMigrateContract, MsgMint, MsgMultiSend, MsgPrivilegedExecuteContract, MsgReclaimLockedFunds, MsgRelayProviderPrices, MsgRemoveRateLimit, 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, MsgUpdateRateLimit, MsgUpdateSpotMarketV2, MsgVote, MsgWithdraw, MsgWithdrawDelegatorReward, MsgWithdrawValidatorCommission, Msgs, OracleMsgs, OrderHashManager, PeggyMsgs, ProposalDecomposer, StakingMsgs, StrategyType, TokenFactoryMsgs, TrailingArithmetic, TrailingArithmeticLP, WasmMsgs, getGenericAuthorizationFromMessageType, msgsOrMsgExecMsgs };
|
package/dist/esm/core/tx.d.ts
CHANGED
|
@@ -5,6 +5,6 @@ import "../BaseGrpcConsumer-DEH9Rq7m.js";
|
|
|
5
5
|
import "../index-DKn53Idr.js";
|
|
6
6
|
import { St as TypedDataField, bt as Eip712ConvertTxArgs, xt as MapOfTypedDataField, yt as Eip712ConvertFeeArgs } from "../index-ECwAlIYI.js";
|
|
7
7
|
import "../index-DQnG0Shp.js";
|
|
8
|
-
import "../index-
|
|
8
|
+
import "../index-BkBHsdbJ.js";
|
|
9
9
|
import "../index-DhfsaTNU.js";
|
|
10
10
|
export { BroadcastMode, BroadcastModeKeplr, tx_pb_d_exports as CosmosTxV1Beta1TxPb, CreateTransactionArgs, CreateTransactionResult, CreateTransactionWithSignersArgs, Eip712ConvertFeeArgs, Eip712ConvertTxArgs, MapOfTypedDataField, MsgArg, MsgBroadcasterWithPk, MsgDecoder, RestAuthInfo, RestSignerInfo, RestTx, RestTxBody, RestTxLog, SIGN_AMINO, SIGN_DIRECT, SIGN_EIP712, SIGN_EIP712_V2, SignerDetails, SimulationResponse, TxClient, TxClientBroadcastOptions, TxClientBroadcastResponse, TxClientMode, TxClientSimulateResponse, TxConcreteApi, TxGrpcApi, TxInfo, TxInfoResponse, TxResponse, TxRestApi, TxResult, TxResultResponse, TxSearchResult, TxSearchResultParams, TypedDataField, createAny, createAnyMessage, createAuthInfo, createBody, createFee, createNonCriticalExtensionFromObject, createSignDoc, createSignDocFromTransaction, createSignerInfo, createSigners, createTransaction, createTransactionAndCosmosSignDoc, createTransactionAndCosmosSignDocForAddressAndMsg, createTransactionForAddressAndMsg, createTransactionFromMsg, createTransactionWithSigners, createTxRawEIP712, createTxRawFromSigResponse, createWeb3Extension, errorToErrorMessage, generateArbitrarySignDoc, getAminoStdSignDoc, getDefaultEip712Types, getDefaultEip712TypesV2, getEip712Domain, getEip712DomainV2, getEip712Fee, getEip712FeeV2, getEip712TypedData, getEip712TypedDataV2, getEipTxContext, getEipTxDetails, getEthereumSignerAddress, getInjectiveSignerAddress, getObjectEip712PropertyType, getPublicKey, getTransactionPartsFromTxRaw, getTxRawFromTxRawOrDirectSignResponse, getTypesIncludingFeePayer, isTxNotFoundError, numberTypeToReflectionNumberType, objectKeysToEip712Types, protoTypeToAminoType, stringTypeToReflectionStringType, waitTxBroadcasted };
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { t as BaseGrpcConsumer } from "./BaseGrpcConsumer-DEH9Rq7m.js";
|
|
2
2
|
|
|
3
|
-
//#region ../../node_modules/.pnpm/@injectivelabs+tc-abacus-proto-ts-v2@1.18.
|
|
3
|
+
//#region ../../node_modules/.pnpm/@injectivelabs+tc-abacus-proto-ts-v2@1.18.5/node_modules/@injectivelabs/tc-abacus-proto-ts-v2/generated/injective_tc_abacus_rpc_pb.d.ts
|
|
4
4
|
|
|
5
5
|
/**
|
|
6
6
|
* @generated from protobuf message injective_tc_abacus_rpc.CreateReferrerCodeResponse
|
|
@@ -24,6 +24,7 @@ declare class TcAbacusGrpcApi extends BaseGrpcConsumer {
|
|
|
24
24
|
fetchReferrerEligibility(address: string): Promise<ReferrerEligibilityResponse>;
|
|
25
25
|
createReferrerCode(address: string, code: string): Promise<CreateReferrerCodeResponse>;
|
|
26
26
|
fetchReferrerCodes(address: string, cursor?: string, limit?: number): Promise<ListReferrerCodesResponse>;
|
|
27
|
+
fetchInviteeReferrer(address: string): Promise<InviteeReferrer>;
|
|
27
28
|
}
|
|
28
29
|
//#endregion
|
|
29
30
|
//#region src/client/tcAbacus/types/tcAbacus.d.ts
|
|
@@ -54,6 +55,7 @@ interface AccountPointsResponse {
|
|
|
54
55
|
}
|
|
55
56
|
interface AccountStatsResponse {
|
|
56
57
|
cap: number;
|
|
58
|
+
code: string;
|
|
57
59
|
address: string;
|
|
58
60
|
last7DVolume: string;
|
|
59
61
|
inviteeCount: number;
|
|
@@ -75,6 +77,7 @@ interface ReferrerInvitee {
|
|
|
75
77
|
height: string;
|
|
76
78
|
address: string;
|
|
77
79
|
createdAt: string;
|
|
80
|
+
allTimeVolume: string;
|
|
78
81
|
referralPoints: string;
|
|
79
82
|
}
|
|
80
83
|
interface AccountInviteesResponse {
|
|
@@ -97,5 +100,12 @@ interface ListReferrerCodesResponse {
|
|
|
97
100
|
nextCursor?: string;
|
|
98
101
|
codes: ReferrerCode[];
|
|
99
102
|
}
|
|
103
|
+
interface InviteeReferrer {
|
|
104
|
+
code: string;
|
|
105
|
+
height: string;
|
|
106
|
+
address: string;
|
|
107
|
+
createdAt: string;
|
|
108
|
+
referrerAddress: string;
|
|
109
|
+
}
|
|
100
110
|
//#endregion
|
|
101
|
-
export { HealthCheckResponse as a,
|
|
111
|
+
export { HealthCheckResponse as a, ListReferrersResponse as c, ReferrerEligibilityResponse as d, ReferrerInvitee as f, CurrentEpochResponse as i, Referrer as l, TcAbacusGrpcApi as m, AccountPointsResponse as n, InviteeReferrer as o, SnapshotPoints as p, AccountStatsResponse as r, ListReferrerCodesResponse as s, AccountInviteesResponse as t, ReferrerCode as u };
|
package/dist/esm/index.d.ts
CHANGED
|
@@ -5,6 +5,6 @@ import "./BaseGrpcConsumer-DEH9Rq7m.js";
|
|
|
5
5
|
import { n as PointsStatsRow, r as AbacusGrpcApi, t as PointsLatestResponse } from "./index-DKn53Idr.js";
|
|
6
6
|
import { $ as ExecArgInitiateTransfer, A as QueryQuantityAndFeesResponse, B as ExecArgCW20AdapterRedeemAndTransfer, C as NEPTUNE_USDT_CW20_CONTRACT, D as QueryAllRoutes, E as QueryInputQuantity, G as ExitConfig, H as ExecPrivilegedArgVaultRedeem, I as ExecArgs, J as TrailingArithmetic, K as ExitType, L as ExecPrivilegedArgs, M as WasmContractQueryResponse, N as MsgExecuteContractCompat, O as QueryRoute, Q as ExecArgUpdateGridConfig, R as ExecPrivilegedArgOffChainVaultSubscribe, S as LendingRateResponse, St as TypedDataField, T as QueryOutputQuantity, U as ExecArgCreateSpotGridStrategy, V as ExecPrivilegedArgVaultSubscribe, W as ExecArgCreatePerpGridStrategy, X as ExecArgRemoveGridStrategy, Y as TrailingArithmeticLP, Z as ExecArgIncreaseAllowance, _ as QueryGetPrices, a as QueryInjectiveAddress, at as ExecArgCW20Transfer, b as AssetInfo, bt as Eip712ConvertTxArgs, c as InjNameServiceQueryTransformer, ct as ExecArgCW20Send, d as IncentivesQueryTransformer, et as ExecArgSwapExactOutput, g as QueryGetAllLendingRates, h as NEPTUNE_PRICE_CONTRACT, i as QueryTradingStrategyContractConfig, it as ExecArgFundCampaign, j as QueryRouteResponse, k as SwapQueryTransformer, l as QueryGetCampaigns, m as QueryRoundResponse, n as QueryTradingStrategyContractUserStrategies, nt as ExecArgSwapMinOutput, o as QueryResolverAddress, ot as ExecArgCreateRound, p as QueryCampaignResponse, q as StrategyType, r as QueryTradingStrategyContractAllStrategies, rt as ExecArgDepositTokens, s as QueryInjName, st as ExecArgSubmitVaa, t as QueryTradingStrategyContractTotalStrategies, tt as ExecArgCreateCampaign, u as QueryAllRounds, v as NeptuneQueryTransformer, w as PriceResponse, x as AssetInfoWithPrice, xt as MapOfTypedDataField, y as NeptuneService, yt as Eip712ConvertFeeArgs, z as ExecPrivilegedArgOffChainVaultRedeem } from "./index-ECwAlIYI.js";
|
|
7
7
|
import { A as Market, B as OLPGrpcApi, C as GrpcMarketRewards, D as GrpcTotalScore, E as GrpcRewardsEligibility, F as RewardsDistribution, I as RewardsEligibility, L as TotalScore, M as MarketRewards, N as MinMaxRewards, O as GrpcTotalScores, P as RewardDistribution, R as TotalScores, S as GrpcMarketReward, T as GrpcRewardsDistribution, _ as GrpcEpochScore, a as EligibleAddresses, b as GrpcEpochV2, c as EpochScores, d as EpochsV2, f as GrpcAccountVolume, g as GrpcEpochConfigV2, h as GrpcEligibleAddresses, i as EligibleAddress, j as MarketReward, k as GrpcTotalScoresHistory, l as EpochScoresHistory, m as GrpcEligibleAddress, n as AccountVolumes, o as EpochConfigV2, p as GrpcDmmPagination, r as DmmPagination, s as EpochScore, t as AccountVolume, u as EpochV2, v as GrpcEpochScores, w as GrpcRewardDistribution, x as GrpcEpochsV2, y as GrpcEpochScoresHistory, z as TotalScoresHistory } from "./index-DQnG0Shp.js";
|
|
8
|
-
import { a as HealthCheckResponse, c as
|
|
8
|
+
import { a as HealthCheckResponse, c as ListReferrersResponse, d as ReferrerEligibilityResponse, f as ReferrerInvitee, i as CurrentEpochResponse, l as Referrer, m as TcAbacusGrpcApi, n as AccountPointsResponse, o as InviteeReferrer, p as SnapshotPoints, r as AccountStatsResponse, s as ListReferrerCodesResponse, t as AccountInviteesResponse, u as ReferrerCode } from "./index-BkBHsdbJ.js";
|
|
9
9
|
import { n as TokenFactoryStatic, r as TokenPrice, t as TokenStaticFactory } from "./index-DhfsaTNU.js";
|
|
10
|
-
export { AbacusGrpcApi, AbsoluteTxPosition, AccessType, AccessTypeCode, Account, AccountAuctionStatus, AccountAuctionV2, AccountInviteesResponse, AccountPointsResponse, AccountPortfolio, AccountPortfolioBalances, AccountPortfolioStreamCallback, AccountPortfolioStreamCallbackV2, AccountPortfolioV2, AccountResponse, AccountStats, AccountStatsResponse, AccountVolume, AccountVolumes, AccountsResponse, Address, AllChronosDerivativeMarketSummary, AllChronosMarketHistory, AllChronosSpotMarketSummary, AllDerivativeMarketSummaryResponse, AllSpotMarketSummaryResponse, 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, BalanceStreamCallbackV2, BalancesResponse, BankModuleParams, BankMsgSendTransaction, BankMsgs, BankTransfer, BankTransferFromExplorerApiResponse, BaseAccount, BaseAccountRestResponse, BaseDerivativeMarket, BatchCancelDerivativeOrdersAuthz, BatchCancelSpotOrdersAuthz, BatchCreateDerivativeLimitOrdersAuthz, BatchCreateSpotLimitOrdersAuthz, BatchDerivativeOrderCancelParams, BatchSpotOrderCancelParams, BidsStreamCallback, BidsStreamCallbackV2, BinaryOptionsMarket, Block, BlockFromExplorerApiResponse, BlockLatestRestResponse, BlockWithTxs, BlocksStreamCallback, BlocksStreamCallbackV2, BlocksWithTxsStreamCallback, BlocksWithTxsStreamCallbackV2, 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, 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, CurrentEpochResponse, DEFAULT_DERIVATION_PATH, Delegation, DenomBalance, DenomHolders, DenomOwnersResponse, DepositProposalParams, DerivativeLimitOrder, DerivativeLimitOrderParams, DerivativeMarket, DerivativeMarketStreamCallback, DerivativeMarketStreamCallbackV2, DerivativeMarketWithoutBinaryOptions, DerivativeOrderCancelParams, DerivativeOrderHistory, DerivativeOrderHistoryStreamCallback, DerivativeOrderHistoryStreamCallbackV2, DerivativeOrderbookUpdateStreamCallback, DerivativeOrderbookUpdateStreamCallbackV2, DerivativeOrderbookV2StreamCallback, DerivativeOrderbookV2StreamCallbackV2, DerivativeOrdersStreamCallback, DerivativeOrdersStreamCallbackV2, DerivativePositionsStreamCallback, DerivativePositionsStreamCallbackV2, DerivativePositionsV2StreamCallback, DerivativePositionsV2StreamCallbackV2, DerivativeTrade, DerivativeTradesStreamCallback, DerivativeTradesStreamCallbackV2, DirectSignResponse, DistributionModuleParams, DistributionMsgs, OLPGrpcApi as DmmGrpcApi, OLPGrpcApi, DmmPagination, Eip712ConvertFeeArgs, Eip712ConvertTxArgs, EligibleAddress, EligibleAddresses, EpochConfigV2, EpochScore, EpochScores, EpochScoresHistory, EpochV2, EpochsV2, Erc20Msgs, 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, GrantAuthorization, GrantAuthorizationType, GrantAuthorizationWithDecodedAuthorization, GrantWithDecodedAuthorization, GridStrategyStreamCallbackV2, 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, GrpcDecodeError, 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, GrpcFrame, 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, GrpcMegaVaultOperationStatusLogEntry, 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, ProposalStatus as GrpcProposalStatus, ProposalStatus, GrpcRFQConditionalOrder, GrpcRFQExpiry, GrpcRFQProcessedQuote, GrpcRFQQuote, GrpcRFQRequest, GrpcRFQSettlement, GrpcReDelegation, GrpcReDelegationEntryResponse, GrpcReDelegationResponse, GrpcRedemptionSchedule, GrpcRewardDistribution, GrpcRewardsDistribution, GrpcRewardsEligibility, GrpcSpotAverageEntry, GrpcSpotLimitOrder, GrpcSpotMarket, GrpcSpotMarketInfo, GrpcSpotMarketOrder, GrpcSpotOrder, GrpcSpotOrderHistory, GrpcSpotTrade, GrpcStakingParams, GrpcStatusCode, GrpcSubaccountBalance, GrpcSubaccountBalanceTransfer, GrpcSubaccountDeposit, GrpcSubaccountDepositV2, GrpcSubaccountPortfolio, GrpcSupply, GrpcTallyResult, GrpcTcDerivativeLimitOrder, GrpcTcDerivativeOrderHistory, GrpcTcDerivativeOrdersResponse, GrpcTcDerivativePosition, GrpcTcDerivativeTradeHistory, GrpcTcDerivativeTradesResponse, GrpcTcDerivativesOrdersHistoryResponse, GrpcTcDerivativesPositionsResponse, GrpcTcPositionDelta, GrpcTokenMeta, GrpcTokenPair, GrpcTotalScore, GrpcTotalScores, GrpcTotalScoresHistory, GrpcTradeRewardCampaign, GrpcTradingReward, GrpcTradingRewardCampaignBoostInfo, GrpcTradingRewardCampaignInfo, GrpcTxFeesEipBaseFee, GrpcTxFeesParams, GrpcUnbondingDelegation, GrpcUnbondingDelegationEntry, GrpcValidator, GrpcValidatorCommission, GrpcValidatorCommissionRates, GrpcValidatorDescription, GrpcValidatorSlashingEvent, GrpcValidatorUptime, GrpcVolLeaderboard, GrpcVote, GrpcWebFetchTransport, GrpcWebSocketCodec, GrpcWebSocketTransport, GrpcWebTransportAdditionalOptions, Guild, GuildCampaignSummary, GuildMember, HealthCheckResponse, HistoricalBalance, HistoricalRPNL, HistoricalStakingStreamCallback, HistoricalStakingStreamCallbackV2, HistoricalVolumes, Holder, IBCTransferTx, IbcMsgs, IncentivesCampaign, IncentivesQueryTransformer, IncentivesRound, IndexerAccountPortfolioStreamTransformer, IndexerAccountStreamTransformer, IndexerArchiverStreamTransformer, IndexerAuctionBid, IndexerAuctionStreamTransformer, IndexerCampaignTransformer, IndexerDerivativeStreamTransformer, IndexerGrpcAccountApi, IndexerGrpcAccountPortfolioApi, IndexerGrpcAccountPortfolioStream, IndexerGrpcAccountPortfolioStreamV2, IndexerGrpcAccountPortfolioTransformer, IndexerGrpcAccountStream, IndexerGrpcAccountStreamV2, IndexerGrpcAccountTransformer, IndexerGrpcArchiverApi, IndexerGrpcArchiverStream, IndexerGrpcArchiverStreamV2, IndexerGrpcArchiverTransformer, IndexerGrpcAuctionApi, IndexerGrpcAuctionStream, IndexerGrpcAuctionStreamV2, IndexerGrpcAuctionTransformer, IndexerGrpcCampaignApi, IndexerGrpcDerivativeTransformer, IndexerGrpcDerivativesApi, IndexerGrpcDerivativesStream, IndexerGrpcDerivativesStreamV2, IndexerGrpcExplorerApi, IndexerGrpcExplorerStream, IndexerGrpcExplorerStreamV2, IndexerGrpcExplorerTransformer, IndexerGrpcInsuranceFundApi, IndexerGrpcInsuranceFundTransformer, IndexerGrpcMegaVaultApi, IndexerGrpcMegaVaultTransformer, IndexerGrpcMetaApi, IndexerGrpcMitoApi, IndexerGrpcMitoStream, IndexerGrpcMitoStreamTransformer, IndexerGrpcMitoStreamV2, IndexerGrpcMitoTransformer, IndexerGrpcOracleApi, IndexerGrpcOracleStream, IndexerGrpcOracleStreamV2, IndexerGrpcOracleTransformer, IndexerGrpcRFQApi, IndexerGrpcReferralApi, IndexerGrpcReferralTransformer, IndexerGrpcRfqStreamV2, IndexerGrpcRfqTransformer, IndexerGrpcSpotApi, IndexerGrpcSpotStream, IndexerGrpcSpotStreamV2, IndexerGrpcSpotTransformer, IndexerGrpcTcDerivativesApi, IndexerGrpcTcDerivativesStreamV2, IndexerGrpcTcDerivativesTransformer, IndexerGrpcTradingApi, IndexerGrpcTradingStream, IndexerGrpcTradingStreamV2, IndexerGrpcTransactionApi, IndexerGrpcWeb3GwApi, IndexerInsuranceFund, IndexerModule, IndexerOracleStreamTransformer, IndexerRestDerivativesChronosApi, IndexerRestExplorerApi, IndexerRestExplorerTransformer, IndexerRestLeaderboardChronosApi, IndexerRestMarketChronosApi, IndexerRestSpotChronosApi, IndexerRfqStreamTransformer, IndexerSpotStreamTransformer, IndexerStreamTransaction, IndexerTcDerivativesStreamTransformer, IndexerTokenMeta, IndexerWsMakerStream, IndexerWsTakerStream, InjNameServiceQueryTransformer, InsuranceFund, InsuranceFundCreateParams, InsuranceModuleParams, InsuranceMsgs, IsOptedOutOfRewards, IsomorphicWebSocket, LeaderboardRow, LendingRateResponse, ListReferrerCodesResponse, ListReferrersResponse, ListTradingStrategiesResponse, MakerStreamConfig, MakerStreamEvents, 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, 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, MsgCreateRateLimit, MsgCreateSpotLimitOrder, MsgCreateSpotMarketOrder, MsgCreateValidator, MsgDecoder, MsgDecreasePositionMargin, MsgDelegate, MsgDeposit, MsgEditValidator, MsgExecuteContract, MsgExecuteContractCompat, MsgExternalTransfer, MsgFundCommunityPool, MsgDeposit$1 as MsgGovDeposit, MsgGrant, MsgGrantAllowance, MsgGrantProviderPrivilegeProposal, MsgGrantWithAuthorization, MsgIncreasePositionMargin, MsgInstantBinaryOptionsMarketLaunch, MsgInstantSpotMarketLaunch, MsgInstantiateContract, MsgLiquidatePosition, MsgMigrateContract, MsgMint, MsgMultiSend, MsgPrivilegedExecuteContract, MsgReclaimLockedFunds, MsgRelayProviderPrices, MsgRemoveRateLimit, 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, MsgUpdateRateLimit, MsgUpdateSpotMarketV2, MsgVote, MsgWithdraw, MsgWithdrawDelegatorReward, MsgWithdrawValidatorCommission, Msgs, NEPTUNE_PRICE_CONTRACT, NEPTUNE_USDT_CW20_CONTRACT, NeptuneQueryTransformer, NeptuneService, NodeInfoRestResponse, OperationStatusLogEntry, Oracle, OracleModuleParams, OracleMsgs, OraclePriceStreamCallback, OraclePriceStreamCallbackV2, OraclePricesByMarketsStreamCallback, OraclePricesByMarketsStreamCallbackV2, OracleType, OracleTypeMap, OrderHashManager, OrderMask, OrderMaskMap, OrderSide, OrderState, OrderType, OrderTypeMap, Orderbook, OrderbookWithSequence, PagePagination, Pagination, PaginationOption, Paging, 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, QuoteStreamCallbackV2, RFQConditionalOrder, RFQConditionalOrderInput, RFQConditionalOrdersResponse, RFQExpiryType, RFQMakerStreamAckData, RFQProcessedQuoteType, RFQQuoteType, RFQRequestInputType, RFQRequestType, RFQSettlementLimitActionType, RFQSettlementType, RFQSettlementUnfilledActionType, RFQStreamErrorData, RFQTakerStreamAckData, ReDelegation, Redemption, RedemptionStatus, ReferralDetails, Referrer, ReferrerCode, ReferrerEligibilityResponse, ReferrerInvitee, RequestStreamCallbackV2, ResolvedStreamManagerConfig, ResolvedWsTransportConfig, RestApiResponse, RestAuthInfo, RestSignerInfo, RestTx, RestTxBody, RestTxLog, RewardDistribution, RewardsDistribution, RewardsEligibility, Route, SIGN_AMINO, SIGN_DIRECT, SIGN_EIP712, SIGN_EIP712_V2, SendEnabled, SettlementStreamCallbackV2, SettlementsResponse, SignDoc, SignTypedDataVersionV4, Signature, SignerDetails, SimulationResponse, SnapshotPoints, SpotAverageEntriesStreamCallback, SpotAverageEntriesStreamCallbackV2, SpotAverageEntry, SpotLimitOrder, SpotLimitOrderParams, SpotMarket, SpotOrderCancelParams, SpotOrderHistory, SpotOrderHistoryStreamCallback, SpotOrderHistoryStreamCallbackV2, SpotOrderbookUpdateStreamCallback, SpotOrderbookUpdateStreamCallbackV2, SpotOrderbookV2StreamCallback, SpotOrdersStreamCallback, SpotOrdersStreamCallbackV2, SpotTrade, SpotTradesStreamCallback, SpotTradesStreamCallbackV2, StakingModuleParams, StakingMsgs, StakingRewardByAccountStreamCallback, StakingRewardByAccountStreamCallbackV2, StrategyType, StreamBidsResponse, StreamDisconnectReason, StreamError, StreamEvent, StreamManager, StreamManagerConfig, StreamManagerEvents, StreamManagerRetryConfig, StreamManagerV2, StreamOperation, StreamState, StreamStatusResponse, StreamSubscription, SubaccountBalance, SubaccountDeposit, SubaccountDepositV2, SubaccountPortfolio, SubaccountTransfer, SwapQueryTransformer, TakerStreamConfig, TakerStreamEvents, TallyResult, TcAbacusGrpcApi, TcDerivativeLimitOrder, TcDerivativeOrderHistory, TcDerivativeOrderHistoryStreamCallbackV2, TcDerivativeOrdersResponse, TcDerivativeOrdersStreamCallbackV2, TcDerivativePosition, TcDerivativePositionsStreamCallbackV2, TcDerivativeTradeHistory, TcDerivativeTradesResponse, TcDerivativeTradesStreamCallbackV2, TcDerivativesOrdersHistoryResponse, TcDerivativesPositionsResponse, TcPositionDelta, 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, TransactionsStreamCallbackV2, TransferType, TransfersStreamCallback, TransfersStreamCallbackV2, TransportEventListener, TransportEventType, TransportEvents, 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, VaultHolderSubscriptionStreamCallbackV2, VaultStreamCallback, VaultStreamCallbackV2, VolLeaderboard, Vote, VoteOption, VoteOptionMap, WasmCode, WasmCodeExplorerApiResponse, WasmContractQueryResponse, WasmMsgs, WeightedVoteOption, WsDisconnectReason, WsReconnectConfig, WsState, WsTransportConfig, accountEthParser, addHexPrefix, amountToCosmosSdkDecAmount, base64ToUint8Array, base64ToUtf8, bigIntReplacer, bigIntToNumber, bigIntToString, binaryToBase64, concatUint8Arrays, cosmosSdkDecToBigNumber, createAny, createAnyMessage, createAuthInfo, createBody, createFee, createNonCriticalExtensionFromObject, createSignDoc, createSignDocFromTransaction, createSignerInfo, createSigners, createStreamSubscription, createStreamSubscriptionV2, 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, ofacList, pageRequestToGrpcPageRequestV2, paginationRequestFromPagination, paginationUint8ArrayToString, parseCoins, privateKeyHashToPublicKey, privateKeyHashToPublicKeyBase64, privateKeyToPublicKey, privateKeyToPublicKeyBase64, protoObjectToJson, protoTypeToAminoType, protobufTimestampToDate, protobufTimestampToUnixMs, protobufTimestampToUnixSeconds, publicKeyToAddress, recoverTypedSignaturePubKey, removeHexPrefix, ripemd160, safeBigIntStringify, sanitizeTypedData, sha256, sortObjectByKeys, sortObjectByKeysWithReduce, spotPriceFromChainPrice, spotPriceFromChainPriceToFixed, spotPriceToChainPrice, spotPriceToChainPriceToFixed, spotQuantityFromChainQuantity, spotQuantityFromChainQuantityToFixed, spotQuantityToChainQuantity, spotQuantityToChainQuantityToFixed, stringToUint8Array, stringTypeToReflectionStringType, toBase64, toUtf8, uint8ArrayToBase64, uint8ArrayToHex, uint8ArrayToString, waitTxBroadcasted };
|
|
10
|
+
export { AbacusGrpcApi, AbsoluteTxPosition, AccessType, AccessTypeCode, Account, AccountAuctionStatus, AccountAuctionV2, AccountInviteesResponse, AccountPointsResponse, AccountPortfolio, AccountPortfolioBalances, AccountPortfolioStreamCallback, AccountPortfolioStreamCallbackV2, AccountPortfolioV2, AccountResponse, AccountStats, AccountStatsResponse, AccountVolume, AccountVolumes, AccountsResponse, Address, AllChronosDerivativeMarketSummary, AllChronosMarketHistory, AllChronosSpotMarketSummary, AllDerivativeMarketSummaryResponse, AllSpotMarketSummaryResponse, 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, BalanceStreamCallbackV2, BalancesResponse, BankModuleParams, BankMsgSendTransaction, BankMsgs, BankTransfer, BankTransferFromExplorerApiResponse, BaseAccount, BaseAccountRestResponse, BaseDerivativeMarket, BatchCancelDerivativeOrdersAuthz, BatchCancelSpotOrdersAuthz, BatchCreateDerivativeLimitOrdersAuthz, BatchCreateSpotLimitOrdersAuthz, BatchDerivativeOrderCancelParams, BatchSpotOrderCancelParams, BidsStreamCallback, BidsStreamCallbackV2, BinaryOptionsMarket, Block, BlockFromExplorerApiResponse, BlockLatestRestResponse, BlockWithTxs, BlocksStreamCallback, BlocksStreamCallbackV2, BlocksWithTxsStreamCallback, BlocksWithTxsStreamCallbackV2, 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, 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, CurrentEpochResponse, DEFAULT_DERIVATION_PATH, Delegation, DenomBalance, DenomHolders, DenomOwnersResponse, DepositProposalParams, DerivativeLimitOrder, DerivativeLimitOrderParams, DerivativeMarket, DerivativeMarketStreamCallback, DerivativeMarketStreamCallbackV2, DerivativeMarketWithoutBinaryOptions, DerivativeOrderCancelParams, DerivativeOrderHistory, DerivativeOrderHistoryStreamCallback, DerivativeOrderHistoryStreamCallbackV2, DerivativeOrderbookUpdateStreamCallback, DerivativeOrderbookUpdateStreamCallbackV2, DerivativeOrderbookV2StreamCallback, DerivativeOrderbookV2StreamCallbackV2, DerivativeOrdersStreamCallback, DerivativeOrdersStreamCallbackV2, DerivativePositionsStreamCallback, DerivativePositionsStreamCallbackV2, DerivativePositionsV2StreamCallback, DerivativePositionsV2StreamCallbackV2, DerivativeTrade, DerivativeTradesStreamCallback, DerivativeTradesStreamCallbackV2, DirectSignResponse, DistributionModuleParams, DistributionMsgs, OLPGrpcApi as DmmGrpcApi, OLPGrpcApi, DmmPagination, Eip712ConvertFeeArgs, Eip712ConvertTxArgs, EligibleAddress, EligibleAddresses, EpochConfigV2, EpochScore, EpochScores, EpochScoresHistory, EpochV2, EpochsV2, Erc20Msgs, 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, GrantAuthorization, GrantAuthorizationType, GrantAuthorizationWithDecodedAuthorization, GrantWithDecodedAuthorization, GridStrategyStreamCallbackV2, 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, GrpcDecodeError, 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, GrpcFrame, 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, GrpcMegaVaultOperationStatusLogEntry, 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, ProposalStatus as GrpcProposalStatus, ProposalStatus, GrpcRFQConditionalOrder, GrpcRFQExpiry, GrpcRFQProcessedQuote, GrpcRFQQuote, GrpcRFQRequest, GrpcRFQSettlement, GrpcReDelegation, GrpcReDelegationEntryResponse, GrpcReDelegationResponse, GrpcRedemptionSchedule, GrpcRewardDistribution, GrpcRewardsDistribution, GrpcRewardsEligibility, GrpcSpotAverageEntry, GrpcSpotLimitOrder, GrpcSpotMarket, GrpcSpotMarketInfo, GrpcSpotMarketOrder, GrpcSpotOrder, GrpcSpotOrderHistory, GrpcSpotTrade, GrpcStakingParams, GrpcStatusCode, GrpcSubaccountBalance, GrpcSubaccountBalanceTransfer, GrpcSubaccountDeposit, GrpcSubaccountDepositV2, GrpcSubaccountPortfolio, GrpcSupply, GrpcTallyResult, GrpcTcDerivativeLimitOrder, GrpcTcDerivativeOrderHistory, GrpcTcDerivativeOrdersResponse, GrpcTcDerivativePosition, GrpcTcDerivativeTradeHistory, GrpcTcDerivativeTradesResponse, GrpcTcDerivativesOrdersHistoryResponse, GrpcTcDerivativesPositionsResponse, GrpcTcPositionDelta, GrpcTokenMeta, GrpcTokenPair, GrpcTotalScore, GrpcTotalScores, GrpcTotalScoresHistory, GrpcTradeRewardCampaign, GrpcTradingReward, GrpcTradingRewardCampaignBoostInfo, GrpcTradingRewardCampaignInfo, GrpcTxFeesEipBaseFee, GrpcTxFeesParams, GrpcUnbondingDelegation, GrpcUnbondingDelegationEntry, GrpcValidator, GrpcValidatorCommission, GrpcValidatorCommissionRates, GrpcValidatorDescription, GrpcValidatorSlashingEvent, GrpcValidatorUptime, GrpcVolLeaderboard, GrpcVote, GrpcWebFetchTransport, GrpcWebSocketCodec, GrpcWebSocketTransport, GrpcWebTransportAdditionalOptions, Guild, GuildCampaignSummary, GuildMember, HealthCheckResponse, HistoricalBalance, HistoricalRPNL, HistoricalStakingStreamCallback, HistoricalStakingStreamCallbackV2, HistoricalVolumes, Holder, IBCTransferTx, IbcMsgs, IncentivesCampaign, IncentivesQueryTransformer, IncentivesRound, IndexerAccountPortfolioStreamTransformer, IndexerAccountStreamTransformer, IndexerArchiverStreamTransformer, IndexerAuctionBid, IndexerAuctionStreamTransformer, IndexerCampaignTransformer, IndexerDerivativeStreamTransformer, IndexerGrpcAccountApi, IndexerGrpcAccountPortfolioApi, IndexerGrpcAccountPortfolioStream, IndexerGrpcAccountPortfolioStreamV2, IndexerGrpcAccountPortfolioTransformer, IndexerGrpcAccountStream, IndexerGrpcAccountStreamV2, IndexerGrpcAccountTransformer, IndexerGrpcArchiverApi, IndexerGrpcArchiverStream, IndexerGrpcArchiverStreamV2, IndexerGrpcArchiverTransformer, IndexerGrpcAuctionApi, IndexerGrpcAuctionStream, IndexerGrpcAuctionStreamV2, IndexerGrpcAuctionTransformer, IndexerGrpcCampaignApi, IndexerGrpcDerivativeTransformer, IndexerGrpcDerivativesApi, IndexerGrpcDerivativesStream, IndexerGrpcDerivativesStreamV2, IndexerGrpcExplorerApi, IndexerGrpcExplorerStream, IndexerGrpcExplorerStreamV2, IndexerGrpcExplorerTransformer, IndexerGrpcInsuranceFundApi, IndexerGrpcInsuranceFundTransformer, IndexerGrpcMegaVaultApi, IndexerGrpcMegaVaultTransformer, IndexerGrpcMetaApi, IndexerGrpcMitoApi, IndexerGrpcMitoStream, IndexerGrpcMitoStreamTransformer, IndexerGrpcMitoStreamV2, IndexerGrpcMitoTransformer, IndexerGrpcOracleApi, IndexerGrpcOracleStream, IndexerGrpcOracleStreamV2, IndexerGrpcOracleTransformer, IndexerGrpcRFQApi, IndexerGrpcReferralApi, IndexerGrpcReferralTransformer, IndexerGrpcRfqStreamV2, IndexerGrpcRfqTransformer, IndexerGrpcSpotApi, IndexerGrpcSpotStream, IndexerGrpcSpotStreamV2, IndexerGrpcSpotTransformer, IndexerGrpcTcDerivativesApi, IndexerGrpcTcDerivativesStreamV2, IndexerGrpcTcDerivativesTransformer, IndexerGrpcTradingApi, IndexerGrpcTradingStream, IndexerGrpcTradingStreamV2, IndexerGrpcTransactionApi, IndexerGrpcWeb3GwApi, IndexerInsuranceFund, IndexerModule, IndexerOracleStreamTransformer, IndexerRestDerivativesChronosApi, IndexerRestExplorerApi, IndexerRestExplorerTransformer, IndexerRestLeaderboardChronosApi, IndexerRestMarketChronosApi, IndexerRestSpotChronosApi, IndexerRfqStreamTransformer, IndexerSpotStreamTransformer, IndexerStreamTransaction, IndexerTcDerivativesStreamTransformer, IndexerTokenMeta, IndexerWsMakerStream, IndexerWsTakerStream, InjNameServiceQueryTransformer, InsuranceFund, InsuranceFundCreateParams, InsuranceModuleParams, InsuranceMsgs, InviteeReferrer, IsOptedOutOfRewards, IsomorphicWebSocket, LeaderboardRow, LendingRateResponse, ListReferrerCodesResponse, ListReferrersResponse, ListTradingStrategiesResponse, MakerStreamConfig, MakerStreamEvents, 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, 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, MsgCreateRateLimit, MsgCreateSpotLimitOrder, MsgCreateSpotMarketOrder, MsgCreateValidator, MsgDecoder, MsgDecreasePositionMargin, MsgDelegate, MsgDeposit, MsgEditValidator, MsgExecuteContract, MsgExecuteContractCompat, MsgExternalTransfer, MsgFundCommunityPool, MsgDeposit$1 as MsgGovDeposit, MsgGrant, MsgGrantAllowance, MsgGrantProviderPrivilegeProposal, MsgGrantWithAuthorization, MsgIncreasePositionMargin, MsgInstantBinaryOptionsMarketLaunch, MsgInstantSpotMarketLaunch, MsgInstantiateContract, MsgLiquidatePosition, MsgMigrateContract, MsgMint, MsgMultiSend, MsgPrivilegedExecuteContract, MsgReclaimLockedFunds, MsgRelayProviderPrices, MsgRemoveRateLimit, 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, MsgUpdateRateLimit, MsgUpdateSpotMarketV2, MsgVote, MsgWithdraw, MsgWithdrawDelegatorReward, MsgWithdrawValidatorCommission, Msgs, NEPTUNE_PRICE_CONTRACT, NEPTUNE_USDT_CW20_CONTRACT, NeptuneQueryTransformer, NeptuneService, NodeInfoRestResponse, OperationStatusLogEntry, Oracle, OracleModuleParams, OracleMsgs, OraclePriceStreamCallback, OraclePriceStreamCallbackV2, OraclePricesByMarketsStreamCallback, OraclePricesByMarketsStreamCallbackV2, OracleType, OracleTypeMap, OrderHashManager, OrderMask, OrderMaskMap, OrderSide, OrderState, OrderType, OrderTypeMap, Orderbook, OrderbookWithSequence, PagePagination, Pagination, PaginationOption, Paging, 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, QuoteStreamCallbackV2, RFQConditionalOrder, RFQConditionalOrderInput, RFQConditionalOrdersResponse, RFQExpiryType, RFQMakerStreamAckData, RFQProcessedQuoteType, RFQQuoteType, RFQRequestInputType, RFQRequestType, RFQSettlementLimitActionType, RFQSettlementType, RFQSettlementUnfilledActionType, RFQStreamErrorData, RFQTakerStreamAckData, ReDelegation, Redemption, RedemptionStatus, ReferralDetails, Referrer, ReferrerCode, ReferrerEligibilityResponse, ReferrerInvitee, RequestStreamCallbackV2, ResolvedStreamManagerConfig, ResolvedWsTransportConfig, RestApiResponse, RestAuthInfo, RestSignerInfo, RestTx, RestTxBody, RestTxLog, RewardDistribution, RewardsDistribution, RewardsEligibility, Route, SIGN_AMINO, SIGN_DIRECT, SIGN_EIP712, SIGN_EIP712_V2, SendEnabled, SettlementStreamCallbackV2, SettlementsResponse, SignDoc, SignTypedDataVersionV4, Signature, SignerDetails, SimulationResponse, SnapshotPoints, SpotAverageEntriesStreamCallback, SpotAverageEntriesStreamCallbackV2, SpotAverageEntry, SpotLimitOrder, SpotLimitOrderParams, SpotMarket, SpotOrderCancelParams, SpotOrderHistory, SpotOrderHistoryStreamCallback, SpotOrderHistoryStreamCallbackV2, SpotOrderbookUpdateStreamCallback, SpotOrderbookUpdateStreamCallbackV2, SpotOrderbookV2StreamCallback, SpotOrdersStreamCallback, SpotOrdersStreamCallbackV2, SpotTrade, SpotTradesStreamCallback, SpotTradesStreamCallbackV2, StakingModuleParams, StakingMsgs, StakingRewardByAccountStreamCallback, StakingRewardByAccountStreamCallbackV2, StrategyType, StreamBidsResponse, StreamDisconnectReason, StreamError, StreamEvent, StreamManager, StreamManagerConfig, StreamManagerEvents, StreamManagerRetryConfig, StreamManagerV2, StreamOperation, StreamState, StreamStatusResponse, StreamSubscription, SubaccountBalance, SubaccountDeposit, SubaccountDepositV2, SubaccountPortfolio, SubaccountTransfer, SwapQueryTransformer, TakerStreamConfig, TakerStreamEvents, TallyResult, TcAbacusGrpcApi, TcDerivativeLimitOrder, TcDerivativeOrderHistory, TcDerivativeOrderHistoryStreamCallbackV2, TcDerivativeOrdersResponse, TcDerivativeOrdersStreamCallbackV2, TcDerivativePosition, TcDerivativePositionsStreamCallbackV2, TcDerivativeTradeHistory, TcDerivativeTradesResponse, TcDerivativeTradesStreamCallbackV2, TcDerivativesOrdersHistoryResponse, TcDerivativesPositionsResponse, TcPositionDelta, 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, TransactionsStreamCallbackV2, TransferType, TransfersStreamCallback, TransfersStreamCallbackV2, TransportEventListener, TransportEventType, TransportEvents, 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, VaultHolderSubscriptionStreamCallbackV2, VaultStreamCallback, VaultStreamCallbackV2, VolLeaderboard, Vote, VoteOption, VoteOptionMap, WasmCode, WasmCodeExplorerApiResponse, WasmContractQueryResponse, WasmMsgs, WeightedVoteOption, WsDisconnectReason, WsReconnectConfig, WsState, WsTransportConfig, accountEthParser, addHexPrefix, amountToCosmosSdkDecAmount, base64ToUint8Array, base64ToUtf8, bigIntReplacer, bigIntToNumber, bigIntToString, binaryToBase64, concatUint8Arrays, cosmosSdkDecToBigNumber, createAny, createAnyMessage, createAuthInfo, createBody, createFee, createNonCriticalExtensionFromObject, createSignDoc, createSignDocFromTransaction, createSignerInfo, createSigners, createStreamSubscription, createStreamSubscriptionV2, 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, ofacList, pageRequestToGrpcPageRequestV2, paginationRequestFromPagination, paginationUint8ArrayToString, parseCoins, privateKeyHashToPublicKey, privateKeyHashToPublicKeyBase64, privateKeyToPublicKey, privateKeyToPublicKeyBase64, protoObjectToJson, protoTypeToAminoType, protobufTimestampToDate, protobufTimestampToUnixMs, protobufTimestampToUnixSeconds, publicKeyToAddress, recoverTypedSignaturePubKey, removeHexPrefix, ripemd160, safeBigIntStringify, 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
|
@@ -17,7 +17,7 @@ import { t as AbacusGrpcApi } from "./AbacusGrpcApi-Dh2A_RaD.js";
|
|
|
17
17
|
import { a as AccessType, c as GridStrategyType, d as MitoGaugeStatus, f as GrpcDecodeError, i as RedemptionStatus, l as MarketType, m as WsState, n as IndexerGrpcTransactionApi, o as AccessTypeCode, p as WsDisconnectReason, r as IndexerModule, s as ValidatorUptimeStatus, t as IndexerGrpcWeb3GwApi, u as TransferType } from "./IndexerGrpcWeb3GwApi-wVedW8ol.js";
|
|
18
18
|
import { $ as IndexerDerivativeStreamTransformer, A as IndexerRestSpotChronosApi, B as IndexerGrpcExplorerApi, C as IndexerGrpcOracleStream, Ct as IndexerGrpcRfqTransformer, D as IndexerRestLeaderboardChronosApi, E as createStreamSubscription, F as IndexerGrpcDerivativesApi, G as IndexerGrpcSpotApi, H as IndexerGrpcAuctionApi, I as IndexerGrpcMegaVaultApi, J as IndexerGrpcRFQApi, K as IndexerGrpcMetaApi, L as IndexerGrpcReferralApi, M as IndexerGrpcInsuranceFundApi, N as IndexerGrpcTcDerivativesApi, O as IndexerRestDerivativesChronosApi, P as IndexerGrpcAccountPortfolioApi, Q as IndexerGrpcInsuranceFundTransformer, R as IndexerGrpcArchiverApi, S as IndexerGrpcAccountStream, St as IndexerWsTakerStream, T as IndexerGrpcSpotStream, Tt as GrpcWebSocketCodec, U as IndexerGrpcAccountApi, V as IndexerGrpcTradingApi, W as IndexerGrpcOracleApi, X as IndexerTcDerivativesStreamTransformer, Y as IndexerAccountPortfolioStreamTransformer, Z as IndexerGrpcTcDerivativesTransformer, _ as IndexerGrpcDerivativesStream, _t as IndexerRfqStreamTransformer, a as IndexerGrpcExplorerStreamV2, at as IndexerGrpcMegaVaultTransformer, b as IndexerGrpcTradingStream, bt as IndexerGrpcMitoTransformer, c as IndexerGrpcAuctionStreamV2, ct as IndexerRestExplorerTransformer, d as IndexerGrpcMitoStreamV2, dt as IndexerGrpcExplorerTransformer, et as IndexerGrpcAccountPortfolioTransformer, f as IndexerGrpcSpotStreamV2, ft as IndexerGrpcArchiverTransformer, g as IndexerGrpcAccountPortfolioStream, gt as IndexerGrpcOracleTransformer, h as StreamManager, ht as IndexerSpotStreamTransformer, i as IndexerGrpcDerivativesStreamV2, it as IndexerArchiverStreamTransformer, j as IndexerRestExplorerApi, k as IndexerRestMarketChronosApi, l as IndexerGrpcAccountStreamV2, lt as IndexerOracleStreamTransformer, m as createStreamSubscriptionV2, mt as IndexerGrpcAccountTransformer, n as IndexerGrpcAccountPortfolioStreamV2, nt as IndexerGrpcDerivativeTransformer, o as IndexerGrpcArchiverStreamV2, ot as IndexerAuctionStreamTransformer, p as IndexerGrpcRfqStreamV2, pt as IndexerGrpcAuctionTransformer, q as IndexerGrpcMitoApi, r as IndexerGrpcTcDerivativesStreamV2, rt as ExplorerStreamTransformer, s as IndexerGrpcTradingStreamV2, st as IndexerAccountStreamTransformer, t as StreamManagerV2, tt as IndexerGrpcMitoStreamTransformer, u as IndexerGrpcOracleStreamV2, ut as IndexerGrpcReferralTransformer, v as IndexerGrpcExplorerStream, vt as IndexerCampaignTransformer, w as IndexerGrpcMitoStream, wt as GrpcWebSocketTransport, x as IndexerGrpcAuctionStream, xt as IndexerWsMakerStream, y as IndexerGrpcArchiverStream, yt as IndexerGrpcSpotTransformer, z as IndexerGrpcCampaignApi } from "./StreamManagerV2-CgXR0Fbk.js";
|
|
19
19
|
import { a as TradeDirection, c as GrpcStatusCode, d as StreamState, f as TokenSource, i as OrderState, l as StreamDisconnectReason, m as TokenVerification, n as OrderMaskMap, o as TradeExecutionSide, p as TokenType, r as OrderSide, s as TradeExecutionType, t as StreamOperation, u as StreamEvent } from "./types-WE16qNvL.js";
|
|
20
|
-
import { t as TcAbacusGrpcApi } from "./TcAbacusGrpcApi-
|
|
20
|
+
import { t as TcAbacusGrpcApi } from "./TcAbacusGrpcApi-5GsBEo3k.js";
|
|
21
21
|
import { C as errorToErrorMessage, S as SIGN_EIP712_V2, _ as CosmosTxV1Beta1TxPb, a as TxRestApi, b as SIGN_DIRECT, c as TxGrpcApi, d as createTransactionAndCosmosSignDocForAddressAndMsg, f as createTransactionForAddressAndMsg, g as getTxRawFromTxRawOrDirectSignResponse, h as createTxRawFromSigResponse, i as waitTxBroadcasted, l as createTransaction, m as createTransactionWithSigners, n as TxClientMode, o as BroadcastMode, p as createTransactionFromMsg, r as generateArbitrarySignDoc, s as BroadcastModeKeplr, t as MsgBroadcasterWithPk, u as createTransactionAndCosmosSignDoc, v as TxClient, w as isTxNotFoundError, x as SIGN_EIP712, y as SIGN_AMINO } from "./tx-DoYtugK4.js";
|
|
22
22
|
import { n as TokenFactoryStatic, r as TokenPrice, t as TokenStaticFactory } from "./service-CuS3psRy.js";
|
|
23
23
|
import * as InjectiveTypesV1Beta1AccountPb from "@injectivelabs/core-proto-ts-v2/generated/injective/types/v1beta1/account_pb";
|
package/dist/esm/utils.d.ts
CHANGED
|
@@ -5,6 +5,6 @@ import "./BaseGrpcConsumer-DEH9Rq7m.js";
|
|
|
5
5
|
import "./index-DKn53Idr.js";
|
|
6
6
|
import "./index-ECwAlIYI.js";
|
|
7
7
|
import "./index-DQnG0Shp.js";
|
|
8
|
-
import "./index-
|
|
8
|
+
import "./index-BkBHsdbJ.js";
|
|
9
9
|
import "./index-DhfsaTNU.js";
|
|
10
10
|
export { BECH32_ADDR_ACC_PREFIX, BECH32_ADDR_CONS_PREFIX, BECH32_ADDR_VAL_PREFIX, BECH32_PUBKEY_ACC_PREFIX, BECH32_PUBKEY_CONS_PREFIX, BECH32_PUBKEY_VAL_PREFIX, DEFAULT_DERIVATION_PATH, GrpcWebFetchTransport, SignTypedDataVersionV4, TypedDataUtilsHashStruct, TypedDataUtilsSanitizeData, TypedMessageV4, addHexPrefix, amountToCosmosSdkDecAmount, base64ToUint8Array, base64ToUtf8, bigIntReplacer, bigIntToNumber, bigIntToString, binaryToBase64, concatUint8Arrays, cosmosSdkDecToBigNumber, decompressPubKey, denomAmountFromChainDenomAmount, denomAmountFromChainDenomAmountToFixed, denomAmountFromGrpcChainDenomAmount, denomAmountToChainDenomAmount, denomAmountToChainDenomAmountToFixed, denomAmountToGrpcChainDenomAmount, derivativeMarginFromChainMargin, derivativeMarginFromChainMarginToFixed, derivativeMarginToChainMargin, derivativeMarginToChainMarginToFixed, derivativePriceFromChainPrice, derivativePriceFromChainPriceToFixed, derivativePriceToChainPrice, derivativePriceToChainPriceToFixed, derivativeQuantityFromChainQuantity, derivativeQuantityFromChainQuantityToFixed, derivativeQuantityToChainQuantity, derivativeQuantityToChainQuantityToFixed, domainHash, fetchAllWithPagination, formatAmountToAllowableAmount, formatAmountToAllowableDecimals, formatNumberToAllowableDecimals, formatNumberToAllowableTensMultiplier, formatPriceToAllowableDecimals, formatPriceToAllowablePrice, fromBase64, fromUtf8, getAddressFromInjectiveAddress, getChecksumAddress, getDefaultSubaccountId, getDerivativeMarketDecimals, getDerivativeMarketTensMultiplier, getErrorMessage, getEthereumAddress, getExactDecimalsFromNumber, getGasPriceBasedOnMessage, getGrpcWebTransport, getInjectiveAddress, getInjectiveAddressFromSubaccountId, getSignificantDecimalsFromNumber, getSpotMarketDecimals, getSpotMarketTensMultiplier, getSubaccountId, getTensMultiplier, grpcCoinToUiCoin, grpcPaginationToPagination, grpcPagingToPaging, grpcPagingToPagingV2, hashToHex, hexToBase64, hexToBuff, hexToNumber, hexToUint8Array, isBrowser, isCw20ContractAddress, isJsonString, isNode, isNumber, isReactNative, isServerSide, makeTimeoutTimestamp, makeTimeoutTimestampInNs, messageHash, numberToCosmosSdkDecString, objectToJson, ofacList, pageRequestToGrpcPageRequestV2, paginationRequestFromPagination, paginationUint8ArrayToString, parseCoins, privateKeyHashToPublicKey, privateKeyHashToPublicKeyBase64, privateKeyToPublicKey, privateKeyToPublicKeyBase64, protoObjectToJson, protobufTimestampToDate, protobufTimestampToUnixMs, protobufTimestampToUnixSeconds, publicKeyToAddress, recoverTypedSignaturePubKey, removeHexPrefix, ripemd160, safeBigIntStringify, sanitizeTypedData, sha256, sortObjectByKeys, sortObjectByKeysWithReduce, spotPriceFromChainPrice, spotPriceFromChainPriceToFixed, spotPriceToChainPrice, spotPriceToChainPriceToFixed, spotQuantityFromChainQuantity, spotQuantityFromChainQuantityToFixed, spotQuantityToChainQuantity, spotQuantityToChainQuantityToFixed, stringToUint8Array, toBase64, toUtf8, uint8ArrayToBase64, uint8ArrayToHex, uint8ArrayToString };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@injectivelabs/sdk-ts",
|
|
3
|
-
"version": "1.18.
|
|
3
|
+
"version": "1.18.19",
|
|
4
4
|
"description": "SDK in TypeScript for building Injective applications in a browser, node, and react native environment.",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"author": {
|
|
@@ -334,7 +334,7 @@
|
|
|
334
334
|
"@injectivelabs/indexer-proto-ts-v2": "1.18.11",
|
|
335
335
|
"@injectivelabs/mito-proto-ts-v2": "1.17.3",
|
|
336
336
|
"@injectivelabs/olp-proto-ts-v2": "1.17.6",
|
|
337
|
-
"@injectivelabs/tc-abacus-proto-ts-v2": "1.18.
|
|
337
|
+
"@injectivelabs/tc-abacus-proto-ts-v2": "1.18.5",
|
|
338
338
|
"@noble/curves": "^1.9.0",
|
|
339
339
|
"@noble/hashes": "^1.8.0",
|
|
340
340
|
"@protobuf-ts/grpcweb-transport": "^2.11.1",
|
|
@@ -350,10 +350,10 @@
|
|
|
350
350
|
"rxjs": "7.8.2",
|
|
351
351
|
"snakecase-keys": "^5.4.1",
|
|
352
352
|
"viem": "^2.41.2",
|
|
353
|
-
"@injectivelabs/
|
|
354
|
-
"@injectivelabs/
|
|
355
|
-
"@injectivelabs/utils": "1.18.
|
|
356
|
-
"@injectivelabs/
|
|
353
|
+
"@injectivelabs/networks": "1.18.19",
|
|
354
|
+
"@injectivelabs/ts-types": "1.18.19",
|
|
355
|
+
"@injectivelabs/utils": "1.18.19",
|
|
356
|
+
"@injectivelabs/exceptions": "1.18.19"
|
|
357
357
|
},
|
|
358
358
|
"publishConfig": {
|
|
359
359
|
"access": "public"
|