@injectivelabs/sdk-ts 1.18.12 → 1.18.13
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/{StreamManagerV2-1jd7dBnT.cjs → StreamManagerV2-ClyLDWzY.cjs} +18 -7
- package/dist/cjs/client/chain.d.cts +1 -1
- package/dist/cjs/client/indexer.cjs +1 -1
- package/dist/cjs/client/indexer.d.cts +1 -1
- 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-CZe2JEgA.d.cts → index-C3CJY1Ry.d.cts} +69 -31
- package/dist/cjs/index.cjs +1 -1
- package/dist/cjs/index.d.cts +1 -1
- package/dist/cjs/utils.d.cts +1 -1
- package/dist/esm/{StreamManagerV2-Cs0POrRU.js → StreamManagerV2-DYtkIwvV.js} +18 -7
- package/dist/esm/client/chain.d.ts +1 -1
- package/dist/esm/client/indexer.d.ts +1 -1
- package/dist/esm/client/indexer.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-CGG-G81R.d.ts → index-YpM1YfvK.d.ts} +69 -31
- package/dist/esm/index.d.ts +1 -1
- package/dist/esm/index.js +1 -1
- package/dist/esm/utils.d.ts +1 -1
- package/package.json +6 -6
|
@@ -508,7 +508,9 @@ var IndexerGrpcRfqTransformer = class IndexerGrpcRfqTransformer {
|
|
|
508
508
|
eventTime: Number(grpcQuote.eventTime),
|
|
509
509
|
takerDirection: grpcQuote.takerDirection,
|
|
510
510
|
contractAddress: grpcQuote.contractAddress,
|
|
511
|
+
minFillQuantity: grpcQuote.minFillQuantity,
|
|
511
512
|
transactionTime: Number(grpcQuote.transactionTime),
|
|
513
|
+
makerSubaccountNonce: Number(grpcQuote.makerSubaccountNonce),
|
|
512
514
|
expiry: {
|
|
513
515
|
...((_grpcQuote$expiry = grpcQuote.expiry) === null || _grpcQuote$expiry === void 0 ? void 0 : _grpcQuote$expiry.height) && { height: Number(grpcQuote.expiry.height) },
|
|
514
516
|
...((_grpcQuote$expiry2 = grpcQuote.expiry) === null || _grpcQuote$expiry2 === void 0 ? void 0 : _grpcQuote$expiry2.timestamp) && { timestamp: Number(grpcQuote.expiry.timestamp) }
|
|
@@ -558,8 +560,10 @@ var IndexerGrpcRfqTransformer = class IndexerGrpcRfqTransformer {
|
|
|
558
560
|
executedMargin: grpcProcessedQuote.executedMargin,
|
|
559
561
|
takerDirection: grpcProcessedQuote.takerDirection,
|
|
560
562
|
contractAddress: grpcProcessedQuote.contractAddress,
|
|
561
|
-
|
|
563
|
+
minFillQuantity: grpcProcessedQuote.minFillQuantity,
|
|
562
564
|
executedQuantity: grpcProcessedQuote.executedQuantity,
|
|
565
|
+
transactionTime: Number(grpcProcessedQuote.transactionTime),
|
|
566
|
+
makerSubaccountNonce: Number(grpcProcessedQuote.makerSubaccountNonce),
|
|
563
567
|
expiry: grpcProcessedQuote.expiry ? {
|
|
564
568
|
...grpcProcessedQuote.expiry.height && { height: Number(grpcProcessedQuote.expiry.height) },
|
|
565
569
|
...grpcProcessedQuote.expiry.timestamp && { timestamp: Number(grpcProcessedQuote.expiry.timestamp) }
|
|
@@ -3790,6 +3794,7 @@ var IndexerGrpcTcDerivativesTransformer = class IndexerGrpcTcDerivativesTransfor
|
|
|
3790
3794
|
}
|
|
3791
3795
|
static grpcDerivativeLimitOrderToDerivativeLimitOrder(order) {
|
|
3792
3796
|
return {
|
|
3797
|
+
cid: order.cid,
|
|
3793
3798
|
price: order.price,
|
|
3794
3799
|
state: order.state,
|
|
3795
3800
|
margin: order.margin,
|
|
@@ -5237,20 +5242,22 @@ var IndexerGrpcTcDerivativesApi = class extends require_BaseIndexerGrpcConsumer.
|
|
|
5237
5242
|
return this.initClient(__injectivelabs_indexer_proto_ts_v2_generated_injective_tc_derivatives_rpc_pb_client.InjectiveTCDerivativesRPCClient);
|
|
5238
5243
|
}
|
|
5239
5244
|
async fetchOrdersHistory(params) {
|
|
5240
|
-
const { marketId, direction, perPage, token } = params || {};
|
|
5245
|
+
const { marketId, direction, perPage, token, accountAddress } = params || {};
|
|
5241
5246
|
const request = __injectivelabs_indexer_proto_ts_v2_generated_injective_tc_derivatives_rpc_pb.OrdersHistoryRequest.create();
|
|
5242
5247
|
if (marketId) request.marketIds = [marketId];
|
|
5243
5248
|
if (direction) request.direction = direction;
|
|
5249
|
+
if (accountAddress) request.accountAddress = accountAddress;
|
|
5244
5250
|
if (perPage) request.perPage = perPage;
|
|
5245
5251
|
if (token) request.token = token;
|
|
5246
5252
|
const response = await this.executeGrpcCall(request, this.client.ordersHistory.bind(this.client));
|
|
5247
5253
|
return IndexerGrpcTcDerivativesTransformer.ordersHistoryResponseToOrdersHistory(response);
|
|
5248
5254
|
}
|
|
5249
5255
|
async fetchTradesHistory(params) {
|
|
5250
|
-
const { marketId, direction, perPage, token } = params || {};
|
|
5256
|
+
const { marketId, direction, perPage, token, accountAddress } = params || {};
|
|
5251
5257
|
const request = __injectivelabs_indexer_proto_ts_v2_generated_injective_tc_derivatives_rpc_pb.TradesRequest.create();
|
|
5252
5258
|
if (marketId) request.marketIds = [marketId];
|
|
5253
5259
|
if (direction) request.direction = direction;
|
|
5260
|
+
if (accountAddress) request.accountAddress = accountAddress;
|
|
5254
5261
|
if (perPage) request.perPage = perPage;
|
|
5255
5262
|
if (token) request.token = token;
|
|
5256
5263
|
const response = await this.executeGrpcCall(request, this.client.trades.bind(this.client));
|
|
@@ -5269,10 +5276,11 @@ var IndexerGrpcTcDerivativesApi = class extends require_BaseIndexerGrpcConsumer.
|
|
|
5269
5276
|
return IndexerGrpcTcDerivativesTransformer.positionsResponseToPositions(response);
|
|
5270
5277
|
}
|
|
5271
5278
|
async fetchOrders(params) {
|
|
5272
|
-
const { marketId, direction, perPage, token } = params || {};
|
|
5279
|
+
const { marketId, direction, perPage, token, accountAddress } = params || {};
|
|
5273
5280
|
const request = __injectivelabs_indexer_proto_ts_v2_generated_injective_tc_derivatives_rpc_pb.OrdersRequest.create();
|
|
5274
5281
|
if (marketId) request.marketIds = [marketId];
|
|
5275
5282
|
if (direction) request.direction = direction;
|
|
5283
|
+
if (accountAddress) request.accountAddress = accountAddress;
|
|
5276
5284
|
if (perPage) request.perPage = perPage;
|
|
5277
5285
|
if (token) request.token = token;
|
|
5278
5286
|
const response = await this.executeGrpcCall(request, this.client.orders.bind(this.client));
|
|
@@ -7301,18 +7309,20 @@ var IndexerGrpcTcDerivativesStreamV2 = class {
|
|
|
7301
7309
|
this.transport = new require_BaseGrpcConsumer.GrpcWebRpcTransport(endpoint, metadata);
|
|
7302
7310
|
this.client = new __injectivelabs_indexer_proto_ts_v2_generated_injective_tc_derivatives_rpc_pb_client.InjectiveTCDerivativesRPCClient(this.transport);
|
|
7303
7311
|
}
|
|
7304
|
-
streamOrdersHistory({ marketId, callback }) {
|
|
7312
|
+
streamOrdersHistory({ marketId, accountAddress, callback }) {
|
|
7305
7313
|
if (typeof callback !== "function") throw new Error("callback must be a function");
|
|
7306
7314
|
const request = __injectivelabs_indexer_proto_ts_v2_generated_injective_tc_derivatives_rpc_pb.StreamOrdersHistoryRequest.create();
|
|
7307
7315
|
if (marketId) request.marketIds = [marketId];
|
|
7316
|
+
if (accountAddress) request.accountAddress = accountAddress;
|
|
7308
7317
|
return createStreamSubscriptionV2(this.client.streamOrdersHistory(request), (response) => {
|
|
7309
7318
|
callback(IndexerTcDerivativesStreamTransformer.orderHistoryStreamCallback(response));
|
|
7310
7319
|
});
|
|
7311
7320
|
}
|
|
7312
|
-
streamTrades({ marketId, callback }) {
|
|
7321
|
+
streamTrades({ marketId, accountAddress, callback }) {
|
|
7313
7322
|
if (typeof callback !== "function") throw new Error("callback must be a function");
|
|
7314
7323
|
const request = __injectivelabs_indexer_proto_ts_v2_generated_injective_tc_derivatives_rpc_pb.StreamTradesRequest.create();
|
|
7315
7324
|
if (marketId) request.marketIds = [marketId];
|
|
7325
|
+
if (accountAddress) request.accountAddress = accountAddress;
|
|
7316
7326
|
return createStreamSubscriptionV2(this.client.streamTrades(request), (response) => {
|
|
7317
7327
|
callback(IndexerTcDerivativesStreamTransformer.tradesStreamCallback(response));
|
|
7318
7328
|
});
|
|
@@ -7326,10 +7336,11 @@ var IndexerGrpcTcDerivativesStreamV2 = class {
|
|
|
7326
7336
|
callback(IndexerTcDerivativesStreamTransformer.positionsStreamCallback(response));
|
|
7327
7337
|
});
|
|
7328
7338
|
}
|
|
7329
|
-
streamOrders({ marketId, callback }) {
|
|
7339
|
+
streamOrders({ marketId, accountAddress, callback }) {
|
|
7330
7340
|
if (typeof callback !== "function") throw new Error("callback must be a function");
|
|
7331
7341
|
const request = __injectivelabs_indexer_proto_ts_v2_generated_injective_tc_derivatives_rpc_pb.StreamOrdersRequest.create();
|
|
7332
7342
|
if (marketId) request.marketIds = [marketId];
|
|
7343
|
+
if (accountAddress) request.accountAddress = accountAddress;
|
|
7333
7344
|
return createStreamSubscriptionV2(this.client.streamOrders(request), (response) => {
|
|
7334
7345
|
callback(IndexerTcDerivativesStreamTransformer.ordersStreamCallback(response));
|
|
7335
7346
|
});
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import "../tx_pb-BN7h9uqT.cjs";
|
|
2
2
|
import { st as OracleType } from "../index-m48Rf9ow.cjs";
|
|
3
|
-
import { $_ as GrpcValidatorCommission, $g as ChainDerivativePosition, $h as TxFeesModuleStateParams, $m as DenomBalance, A as ChainGrpcAuctionApi, A_ as GrpcSpotOrder, Ag as GrpcBankParams, Ah as GrpcPermissionRoleManager, Av as GrpcProposal, B as ChainGrpcAuthApi, B_ as TradingRewardCampaignInfo, Bg as EvmBlobConfig, Bh as PermissionPolicyManagerCapability, Bm as RestApiResponse, Bv as VoteOption, C as ChainGrpcInsuranceFundApi, C_ as GrpcMarketStatusMap, Cg as GrpcRedemptionSchedule, Ch as GrpcPermissionAddressVoucher, Cv as MarketingInfo, D as ChainGrpcTendermintApi, D_ as GrpcPointsMultiplier, Dg as GrpcMintParams, Dh as GrpcPermissionRole, Dv as GrpcGovernanceDepositParams, E as ChainGrpcPermissionsApi, E_ as GrpcOrderTypeMap, Eg as OracleTypeMap, Eh as GrpcPermissionPolicyStatusManagerCapability, Ev as GovModuleStateParams, F as ChainGrpcPeggyApi, F_ as OrderType, Fg as Account, Fh as PermissionAddressRoles, Fv as ProposalDeposit, G_ as GrpcPool, Gg as GrpcEvmBlobConfig, Gh as PermissionRoleManager, Gm as TokenFactoryModuleParams, H as ChainGrpcIbcApi, H_ as Delegation, Hg as EvmChainConfig, Hh as PermissionRole, Hm as NodeInfoRestResponse, Hv as WeightedVoteOption, I as ChainGrpcAuthZApi, I_ as OrderTypeMap, Ig as AuthBaseAccount, Ih as PermissionAddressVoucher, Iv as ProposalStatus, J_ as GrpcReDelegationResponse, Jg as GrpcEvmLog, Jh as GrpcOracleParams, Jm as GrpcDecCoin, K_ as GrpcReDelegation, Kg as GrpcEvmBlobScheduleConfig, Kh as PermissionVoucher, Km as TokenFactoryModuleState, L as ChainGrpcWasmApi, L_ as PointsMultiplier, Lg as AuthModuleParams, Lh as PermissionGenesisState, Lv as ProposalStatusMap, M as ChainGrpcOracleApi, M_ as GrpcTradingRewardCampaignBoostInfo, Mg as Metadata, Mh as GrpcPermissionsParams, Mv as GrpcTallyResult, N as ChainGrpcErc20Api, N_ as GrpcTradingRewardCampaignInfo, Ng as SendEnabled, Nh as PermissionActionMap, Nv as GrpcVote, O as ChainGrpcExchangeApi, O_ as GrpcSpotMarket, Og as MinModuleParams, Oh as GrpcPermissionRoleActors, Ov as GrpcGovernanceTallyParams, P as ChainGrpcWasmXApi, P_ as IsOptedOutOfRewards, Pg as TotalSupply, Ph as PermissionActorRoles, Pv as Proposal, Q_ as GrpcValidator, Qg as ChainDenomMinNotional, Qh as TxFeesEipBaseFee, Qm as BalancesResponse, R as ChainGrpcMintApi, R_ as TradeRewardCampaign, Rg as EthAccount, Rh as PermissionNamespace, Rv as TallyResult, S as ChainRestBankApi, S_ as GrpcMarketStatus, Sg as GrpcInsuranceParams, Sh as GrpcPermissionActorRoles, Sv as GrpcContractInfo, T as ChainGrpcDistributionApi, T_ as GrpcOrderType, Tg as InsuranceModuleParams, Th as GrpcPermissionPolicyStatus, Tv as grpcContractInfo, U as ChainGrpcGovApi, U_ as GrpcDelegation, Ug as EvmLog, Uh as PermissionRoleActors, Um as AuthorityMetadata, V as ChainGrpcEvmApi, V_ as BondStatus, Vg as EvmBlobScheduleConfig, Vh as PermissionPolicyStatus, Vm as BlockLatestRestResponse, Vv as VoteOptionMap, W_ as GrpcDelegationResponse, Wg as EvmParams, Wh as PermissionRoleIDs, Wm as FactoryDenomWithMetadata, X_ as GrpcUnbondingDelegation, Xg as CampaignRewardPool, Xh as GrpcTxFeesEipBaseFee, Xm as GrpcDistributionParams, Y_ as GrpcStakingParams, Yg as GrpcEvmParams, Yh as OracleModuleParams, Ym as GrpcDelegationDelegatorReward, Z_ as GrpcUnbondingDelegationEntry, Zg as ChainDenomDecimal, Zh as GrpcTxFeesParams, Zm as ValidatorRewards, _ as ChainGrpcEvmTransformer, __ as GrpcExchangeParams, _g as Grant, _h as GrpcAuctionEventAuctionResult, _v as ContractStateWithPagination, a as ChainGrpcExchangeTransformer, a_ as FeeDiscountSchedule, ag as PeggyModuleParams, ah as AuctionBid, av as UnBondingDelegation, b as ChainRestWasmApi, b_ as GrpcFeeDiscountTierInfo, bg as GrantWithDecodedAuthorization, bh as GrpcAuctionLastAuctionResult, bv as GrpcCodeInfoResponse, c as ChainGrpcCommonTransformer, c_ as GrpcCampaignRewardPool, cg as BatchCreateDerivativeLimitOrdersAuthz, ch as AuctionEventAuctionStart, cv as ValidatorDescription, d as ChainGrpcPeggyTransformer, d_ as GrpcChainFullDerivativeMarket, dg as CancelSpotOrderAuthz, dh as AuctionModuleParams, dv as ContractAccountBalance, e_ as ChainPosition, eg as GrpcParams, eh as DenomOwnersResponse, ev as GrpcValidatorCommissionRates, f as ChainGrpcAuthZTransformer, f_ as GrpcChainFullSpotMarket, fg as CreateDerivativeLimitOrderAuthz, fh as AuctionModuleState, fv as ContractAccountsBalanceWithPagination, g as ChainGrpcAuthTransformer, g_ as GrpcDenomMinNotional, gg as GenericAuthorization, gh as GrpcAuctionBid, gv as ContractInfo, h as ChainGrpcBankTransformer, h_ as GrpcDenomDecimals, hg as CreateSpotMarketOrderAuthz, hh as AuctionParams, hv as ContractCodeHistoryOperationTypeMap, i as ChainGrpcPermissionsTransformer, i_ as FeeDiscountAccountInfo, ig as GrpcPeggyParams, ih as CosmosAccountRestResponse, iv as StakingModuleParams, j as ChainGrpcTxFeesApi, j_ as GrpcTradeRewardCampaign, jg as GrpcSupply, jh as GrpcPermissionsNamespace, jv as GrpcProposalDeposit, k as ChainGrpcStakingApi, k_ as GrpcSpotMarketOrder, kg as BankModuleParams, kh as GrpcPermissionRoleIDs, kv as GrpcGovernanceVotingParams, l as ChainGrpcTxFeesTransformer, l_ as GrpcChainDerivativeMarket, lg as BatchCreateSpotLimitOrdersAuthz, lh as AuctionEventBid, lv as AbsoluteTxPosition, m as ChainGrpcMintTransformer, m_ as GrpcChainSpotMarket, mg as CreateSpotLimitOrderAuthz, mh as AuctionModuleStateResponse, mv as ContractCodeHistoryOperationType, n as ChainGrpcTokenFactoryTransformer, n_ as ExchangeModuleParams, ng as Params, nh as AccountsResponse, nv as Pool, o as ChainGrpcStakingTransformer, o_ as FeeDiscountTierInfo, og as BatchCancelDerivativeOrdersAuthz, oh as AuctionCurrentBasket, ov as Validator, p as ChainGrpcWasmTransformer, p_ as GrpcChainPosition, pg as CreateDerivativeMarketOrderAuthz, ph as AuctionModuleStateParams, pv as ContractCodeHistoryEntry, q_ as GrpcReDelegationEntryResponse, qg as GrpcEvmChainConfig, qh as PermissionsModuleParams, qm as DistributionModuleParams, r as ChainGrpcDistributionTransformer, r_ as ExchangeParams, rg as TokenPair, rh as BaseAccountRestResponse, rv as ReDelegation, s as ChainGrpcAuctionTransformer, s_ as FeeDiscountTierTTL, sg as BatchCancelSpotOrdersAuthz, sh as AuctionEventAuctionResult, sv as ValidatorCommission, t as ChainGrpcInsuranceFundTransformer, t_ as DepositProposalParams, tg as GrpcTokenPair, th as AccountResponse, tv as GrpcValidatorDescription, u as ChainGrpcErc20Transformer, u_ as GrpcChainDerivativePosition, ug as CancelDerivativeOrderAuthz, uh as AuctionLastAuctionResult, uv as CodeInfoResponse, v as ChainGrpcGovTransformer, v_ as GrpcFeeDiscountAccountInfo, vg as GrantAuthorization, vh as GrpcAuctionEventAuctionStart, vv as GoogleProtoBufAny, w as ChainGrpcTokenFactoryApi, w_ as GrpcOrderInfo, wg as InsuranceFund, wh as GrpcPermissionNamespace, wv as TokenInfo, x as ChainRestAuthApi, x_ as GrpcFeeDiscountTierTTL, xg as GrpcInsuranceFund, xh as GrpcAuctionParams, xv as GrpcContractCodeHistoryEntry, y as ChainRestTendermintApi, y_ as GrpcFeeDiscountSchedule, yg as GrantAuthorizationWithDecodedAuthorization, yh as GrpcAuctionEventBid, yv as GrpcAbsoluteTxPosition, z as ChainGrpcBankApi, z_ as TradingRewardCampaignBoostInfo, zg as PubKey, zh as PermissionParams, zm as ChainModule, zv as Vote } from "../index-
|
|
3
|
+
import { $_ as GrpcValidatorCommission, $g as ChainDerivativePosition, $h as TxFeesModuleStateParams, $m as DenomBalance, A as ChainGrpcAuctionApi, A_ as GrpcSpotOrder, Ag as GrpcBankParams, Ah as GrpcPermissionRoleManager, Av as GrpcProposal, B as ChainGrpcAuthApi, B_ as TradingRewardCampaignInfo, Bg as EvmBlobConfig, Bh as PermissionPolicyManagerCapability, Bm as RestApiResponse, Bv as VoteOption, C as ChainGrpcInsuranceFundApi, C_ as GrpcMarketStatusMap, Cg as GrpcRedemptionSchedule, Ch as GrpcPermissionAddressVoucher, Cv as MarketingInfo, D as ChainGrpcTendermintApi, D_ as GrpcPointsMultiplier, Dg as GrpcMintParams, Dh as GrpcPermissionRole, Dv as GrpcGovernanceDepositParams, E as ChainGrpcPermissionsApi, E_ as GrpcOrderTypeMap, Eg as OracleTypeMap, Eh as GrpcPermissionPolicyStatusManagerCapability, Ev as GovModuleStateParams, F as ChainGrpcPeggyApi, F_ as OrderType, Fg as Account, Fh as PermissionAddressRoles, Fv as ProposalDeposit, G_ as GrpcPool, Gg as GrpcEvmBlobConfig, Gh as PermissionRoleManager, Gm as TokenFactoryModuleParams, H as ChainGrpcIbcApi, H_ as Delegation, Hg as EvmChainConfig, Hh as PermissionRole, Hm as NodeInfoRestResponse, Hv as WeightedVoteOption, I as ChainGrpcAuthZApi, I_ as OrderTypeMap, Ig as AuthBaseAccount, Ih as PermissionAddressVoucher, Iv as ProposalStatus, J_ as GrpcReDelegationResponse, Jg as GrpcEvmLog, Jh as GrpcOracleParams, Jm as GrpcDecCoin, K_ as GrpcReDelegation, Kg as GrpcEvmBlobScheduleConfig, Kh as PermissionVoucher, Km as TokenFactoryModuleState, L as ChainGrpcWasmApi, L_ as PointsMultiplier, Lg as AuthModuleParams, Lh as PermissionGenesisState, Lv as ProposalStatusMap, M as ChainGrpcOracleApi, M_ as GrpcTradingRewardCampaignBoostInfo, Mg as Metadata, Mh as GrpcPermissionsParams, Mv as GrpcTallyResult, N as ChainGrpcErc20Api, N_ as GrpcTradingRewardCampaignInfo, Ng as SendEnabled, Nh as PermissionActionMap, Nv as GrpcVote, O as ChainGrpcExchangeApi, O_ as GrpcSpotMarket, Og as MinModuleParams, Oh as GrpcPermissionRoleActors, Ov as GrpcGovernanceTallyParams, P as ChainGrpcWasmXApi, P_ as IsOptedOutOfRewards, Pg as TotalSupply, Ph as PermissionActorRoles, Pv as Proposal, Q_ as GrpcValidator, Qg as ChainDenomMinNotional, Qh as TxFeesEipBaseFee, Qm as BalancesResponse, R as ChainGrpcMintApi, R_ as TradeRewardCampaign, Rg as EthAccount, Rh as PermissionNamespace, Rv as TallyResult, S as ChainRestBankApi, S_ as GrpcMarketStatus, Sg as GrpcInsuranceParams, Sh as GrpcPermissionActorRoles, Sv as GrpcContractInfo, T as ChainGrpcDistributionApi, T_ as GrpcOrderType, Tg as InsuranceModuleParams, Th as GrpcPermissionPolicyStatus, Tv as grpcContractInfo, U as ChainGrpcGovApi, U_ as GrpcDelegation, Ug as EvmLog, Uh as PermissionRoleActors, Um as AuthorityMetadata, V as ChainGrpcEvmApi, V_ as BondStatus, Vg as EvmBlobScheduleConfig, Vh as PermissionPolicyStatus, Vm as BlockLatestRestResponse, Vv as VoteOptionMap, W_ as GrpcDelegationResponse, Wg as EvmParams, Wh as PermissionRoleIDs, Wm as FactoryDenomWithMetadata, X_ as GrpcUnbondingDelegation, Xg as CampaignRewardPool, Xh as GrpcTxFeesEipBaseFee, Xm as GrpcDistributionParams, Y_ as GrpcStakingParams, Yg as GrpcEvmParams, Yh as OracleModuleParams, Ym as GrpcDelegationDelegatorReward, Z_ as GrpcUnbondingDelegationEntry, Zg as ChainDenomDecimal, Zh as GrpcTxFeesParams, Zm as ValidatorRewards, _ as ChainGrpcEvmTransformer, __ as GrpcExchangeParams, _g as Grant, _h as GrpcAuctionEventAuctionResult, _v as ContractStateWithPagination, a as ChainGrpcExchangeTransformer, a_ as FeeDiscountSchedule, ag as PeggyModuleParams, ah as AuctionBid, av as UnBondingDelegation, b as ChainRestWasmApi, b_ as GrpcFeeDiscountTierInfo, bg as GrantWithDecodedAuthorization, bh as GrpcAuctionLastAuctionResult, bv as GrpcCodeInfoResponse, c as ChainGrpcCommonTransformer, c_ as GrpcCampaignRewardPool, cg as BatchCreateDerivativeLimitOrdersAuthz, ch as AuctionEventAuctionStart, cv as ValidatorDescription, d as ChainGrpcPeggyTransformer, d_ as GrpcChainFullDerivativeMarket, dg as CancelSpotOrderAuthz, dh as AuctionModuleParams, dv as ContractAccountBalance, e_ as ChainPosition, eg as GrpcParams, eh as DenomOwnersResponse, ev as GrpcValidatorCommissionRates, f as ChainGrpcAuthZTransformer, f_ as GrpcChainFullSpotMarket, fg as CreateDerivativeLimitOrderAuthz, fh as AuctionModuleState, fv as ContractAccountsBalanceWithPagination, g as ChainGrpcAuthTransformer, g_ as GrpcDenomMinNotional, gg as GenericAuthorization, gh as GrpcAuctionBid, gv as ContractInfo, h as ChainGrpcBankTransformer, h_ as GrpcDenomDecimals, hg as CreateSpotMarketOrderAuthz, hh as AuctionParams, hv as ContractCodeHistoryOperationTypeMap, i as ChainGrpcPermissionsTransformer, i_ as FeeDiscountAccountInfo, ig as GrpcPeggyParams, ih as CosmosAccountRestResponse, iv as StakingModuleParams, j as ChainGrpcTxFeesApi, j_ as GrpcTradeRewardCampaign, jg as GrpcSupply, jh as GrpcPermissionsNamespace, jv as GrpcProposalDeposit, k as ChainGrpcStakingApi, k_ as GrpcSpotMarketOrder, kg as BankModuleParams, kh as GrpcPermissionRoleIDs, kv as GrpcGovernanceVotingParams, l as ChainGrpcTxFeesTransformer, l_ as GrpcChainDerivativeMarket, lg as BatchCreateSpotLimitOrdersAuthz, lh as AuctionEventBid, lv as AbsoluteTxPosition, m as ChainGrpcMintTransformer, m_ as GrpcChainSpotMarket, mg as CreateSpotLimitOrderAuthz, mh as AuctionModuleStateResponse, mv as ContractCodeHistoryOperationType, n as ChainGrpcTokenFactoryTransformer, n_ as ExchangeModuleParams, ng as Params, nh as AccountsResponse, nv as Pool, o as ChainGrpcStakingTransformer, o_ as FeeDiscountTierInfo, og as BatchCancelDerivativeOrdersAuthz, oh as AuctionCurrentBasket, ov as Validator, p as ChainGrpcWasmTransformer, p_ as GrpcChainPosition, pg as CreateDerivativeMarketOrderAuthz, ph as AuctionModuleStateParams, pv as ContractCodeHistoryEntry, q_ as GrpcReDelegationEntryResponse, qg as GrpcEvmChainConfig, qh as PermissionsModuleParams, qm as DistributionModuleParams, r as ChainGrpcDistributionTransformer, r_ as ExchangeParams, rg as TokenPair, rh as BaseAccountRestResponse, rv as ReDelegation, s as ChainGrpcAuctionTransformer, s_ as FeeDiscountTierTTL, sg as BatchCancelSpotOrdersAuthz, sh as AuctionEventAuctionResult, sv as ValidatorCommission, t as ChainGrpcInsuranceFundTransformer, t_ as DepositProposalParams, tg as GrpcTokenPair, th as AccountResponse, tv as GrpcValidatorDescription, u as ChainGrpcErc20Transformer, u_ as GrpcChainDerivativePosition, ug as CancelDerivativeOrderAuthz, uh as AuctionLastAuctionResult, uv as CodeInfoResponse, v as ChainGrpcGovTransformer, v_ as GrpcFeeDiscountAccountInfo, vg as GrantAuthorization, vh as GrpcAuctionEventAuctionStart, vv as GoogleProtoBufAny, w as ChainGrpcTokenFactoryApi, w_ as GrpcOrderInfo, wg as InsuranceFund, wh as GrpcPermissionNamespace, wv as TokenInfo, x as ChainRestAuthApi, x_ as GrpcFeeDiscountTierTTL, xg as GrpcInsuranceFund, xh as GrpcAuctionParams, xv as GrpcContractCodeHistoryEntry, y as ChainRestTendermintApi, y_ as GrpcFeeDiscountSchedule, yg as GrantAuthorizationWithDecodedAuthorization, yh as GrpcAuctionEventBid, yv as GrpcAbsoluteTxPosition, z as ChainGrpcBankApi, z_ as TradingRewardCampaignBoostInfo, zg as PubKey, zh as PermissionParams, zm as ChainModule, zv as Vote } from "../index-C3CJY1Ry.cjs";
|
|
4
4
|
import "../BaseGrpcConsumer-Ba4uw4ZN.cjs";
|
|
5
5
|
import "../index-CgHU4RQF.cjs";
|
|
6
6
|
import "../index-DfJ_98xz.cjs";
|
|
@@ -5,7 +5,7 @@ require('../BaseGrpcConsumer-B1hpRQJ-.cjs');
|
|
|
5
5
|
require('../BaseIndexerGrpcConsumer-rRYRp48i.cjs');
|
|
6
6
|
require('../BaseRestConsumer-CRkyjiSo.cjs');
|
|
7
7
|
const require_IndexerGrpcWeb3GwApi = require('../IndexerGrpcWeb3GwApi-BjMwVPdm.cjs');
|
|
8
|
-
const require_StreamManagerV2 = require('../StreamManagerV2-
|
|
8
|
+
const require_StreamManagerV2 = require('../StreamManagerV2-ClyLDWzY.cjs');
|
|
9
9
|
require('../types-BSrt7JzM.cjs');
|
|
10
10
|
|
|
11
11
|
exports.AccessType = require_IndexerGrpcWeb3GwApi.AccessType;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import "../tx_pb-BN7h9uqT.cjs";
|
|
2
2
|
import "../index-m48Rf9ow.cjs";
|
|
3
|
-
import { $ as TcDerivativeTradesStreamCallbackV2, $a as AllSpotMarketSummaryResponse, $c as GrpcMitoIDO, $i as Position, $l as MitoWhitelistAccount, $n as IndexerRestDerivativesChronosApi, $o as GrpcAtomicSwap, $r as GrpcTcDerivativesOrdersHistoryResponse, $s as ExplorerBlockWithTxs, $t as BlocksWithTxsStreamCallback, Aa as MegaVaultApr, Ac as WasmCode, Ai as DerivativeOrderCancelParams, Al as MitoIDOSubscriber, An as IndexerGrpcAccountPortfolioTransformer, Ao as SpotAverageEntry, Ar as AccountPortfolioBalances, As as RFQRequestType, At as IndexerGrpcSpotStreamV2, Ba as MegaVaultRedemption, Bc as GrpcSubaccountDeposit, Bi as GrpcDerivativeOrderHistory, Bl as MitoPortfolio, Bn as IndexerGrpcReferralTransformer, Bo as GrpcAccountAuctionV2, Br as ChronosLeaderboard, Bs as AccessTypeCode, Bt as createStreamSubscription, Ca as GrpcMegaVaultTargetApr, Cc as PeggyWithdrawalTx, Ci as BaseDerivativeMarket, Cl as MitoGauge, Cn as SpotOrdersStreamCallback, Co as GrpcVolLeaderboard, Cr as IndexerWsTakerStream, Cs as MakerStreamConfig, Ct as OraclePricesByMarketsStreamCallbackV2, Da as GrpcMegaVaultVolatility, Dc as ValidatorSlashingEvent, Di as DerivativeLimitOrderParams, Dl as MitoIDOClaimedCoins, Dn as IndexerGrpcTcDerivativesTransformer, Do as Holder, Dr as StreamStatusResponse, Ds as RFQProcessedQuoteType, Dt as TransfersStreamCallbackV2, Ea as GrpcMegaVaultVaultStats, Ec as TxMessage, Ei as DerivativeLimitOrder, El as MitoIDO, En as IndexerTcDerivativesStreamTransformer, Eo as HistoricalVolumes, Er as IndexerModule, Es as RFQMakerStreamAckData, Et as StakingRewardByAccountStreamCallbackV2, Fa as MegaVaultMaxDrawdown, Fc as TradingStrategy, Fi as FundingPayment, Fl as MitoLeaderboardEpoch, Fn as IndexerGrpcMegaVaultTransformer, Fo as AuctionCoin, Fr as GrpcPositionsWithUPNL, Fs as RFQTakerStreamAckData, Ft as IndexerGrpcRfqStreamV2, G as createStreamSubscriptionV2, Ga as MegaVaultTargetApr, Gc as SubaccountPortfolio, Gi as GrpcFundingPayment, Gl as MitoStakingReward, Gn as IndexerSpotStreamTransformer, Go as GrpcAuctionV2, Gr as ChronosDerivativeMarketSummary, Gs as CW20Message, Gt as DerivativeOrderbookUpdateStreamCallback, Ha as MegaVaultStats, Hc as GrpcTradingReward, Hi as GrpcDerivativePositionV2, Hl as MitoStakeToSubscription, Hn as IndexerGrpcArchiverTransformer, Ho as GrpcAuctionCoin, Hr as ChronosLeaderboardResponse, Hs as BankTransfer, Ht as IndexerGrpcAccountPortfolioStream, Ia as MegaVaultOperator, Ic as AccountPortfolio, Ii as FundingRate, Il as MitoMission, In as IndexerAuctionStreamTransformer, Io as AuctionCoinPrices, Ir as GrpcSubaccountDepositV2, Is as SettlementsResponse, It as QuoteStreamCallbackV2, J as IndexerGrpcAccountPortfolioStreamV2, Ja as MegaVaultUserStats, Jc as TransferType, Ji as GrpcPerpetualMarketInfo, Jl as MitoTokenInfo, Jn as IndexerCampaignTransformer, Jo as StreamBidsResponse, Jr as GrpcTcDerivativeOrderHistory, Js as ContractTransactionWithMessages, Jt as DerivativePositionsStreamCallback, K as StreamManagerV2, Ka as MegaVaultUnrealizedPnl, Kc as SubaccountTransfer, Ki as GrpcFundingRate, Kl as MitoSubaccountBalance, Kn as IndexerGrpcOracleTransformer, Ko as GrpcIndexerAuctionBid, Kr as ChronosDerivativeMarketSummaryResponse, Ks as Contract, Kt as DerivativeOrderbookV2StreamCallback, La as MegaVaultOperatorRedemptionBucket, Lc as GrpcAccountPortfolio, Li as GrpcBinaryOptionsMarketInfo, Ll as MitoMissionLeaderboard, Ln as IndexerAccountStreamTransformer, Lo as AuctionContract, Lr as PortfolioSubaccountBalanceV2, Ls as TakerStreamConfig, Lt as RequestStreamCallbackV2, Ma as MegaVaultHistoricalPnL, Mc as GridStrategyType, Mi as DerivativeTrade, Ml as MitoIDOSubscriptionActivity, Mn as IndexerGrpcDerivativeTransformer, Mo as AccountAuctionStatus, Mr as GrpcAccountPortfolioV2, Ms as RFQSettlementType, Mt as SpotOrderbookUpdateStreamCallbackV2, Na as MegaVaultHistoricalTVL, Nc as ListTradingStrategiesResponse, Ni as ExpiryFuturesMarket, Nl as MitoLeaderboard, Nn as ExplorerStreamTransformer, No as AccountAuctionV2, Nr as GrpcPortfolioSubaccountBalanceV2, Ns as RFQSettlementUnfilledActionType, Nt as SpotOrdersStreamCallbackV2, Oa as GrpcMegaVaultVolatilityStats, Oc as ValidatorUptime, Oi as DerivativeMarket, Ol as MitoIDOInitParams, On as IndexerGrpcInsuranceFundTransformer, Oo as LeaderboardRow, Or as AllChronosMarketHistory, Os as RFQQuoteType, Ot as VaultHolderSubscriptionStreamCallbackV2, Pa as MegaVaultIncentives, Pc as MarketType, Pi as ExpiryFuturesMarketInfo, Pl as MitoLeaderboardEntry, Pn as IndexerArchiverStreamTransformer, Po as Auction, Pr as GrpcPositionV2, Ps as RFQStreamErrorData, Pt as SpotTradesStreamCallbackV2, Q as TcDerivativePositionsStreamCallbackV2, Qa as AllChronosSpotMarketSummary, Qc as GrpcMitoHolders, Qi as PerpetualMarketInfo, Ql as MitoVestingConfigMap, Qn as IndexerRestLeaderboardChronosApi, Qo as BatchSpotOrderCancelParams, Qr as GrpcTcDerivativeTradesResponse, Qs as EventLogEvent, Qt as BlocksStreamCallback, Ra as MegaVaultPnl, Rc as GrpcSubaccountBalance, Ri as GrpcDerivativeLimitOrder, Rl as MitoMissionLeaderboardEntry, Rn as IndexerRestExplorerTransformer, Ro as AuctionV2, Rr as PositionsWithUPNL, Rs as TakerStreamEvents, Rt as SettlementStreamCallbackV2, Sa as GrpcMegaVaultSubscription, Sc as PeggyDepositTx, Si as WasmCodeExplorerApiResponse, Sl as MitoDenomBalance, Sn as SpotOrderbookV2StreamCallback, So as GrpcSpotAverageEntry, Sr as IndexerWsMakerStream, Ss as GrpcRFQSettlement, St as OraclePriceStreamCallbackV2, Ta as GrpcMegaVaultUserStats, Tc as Transaction, Ti as BinaryOptionsMarket, Tl as MitoHolders, Tn as IndexerAccountPortfolioStreamTransformer, To as HistoricalRPNL, Tr as GrpcWebSocketCodec, Ts as RFQExpiryType, Tt as IndexerGrpcMitoStreamV2, Ua as MegaVaultSubscription, Uc as SubaccountBalance, Ui as GrpcDerivativeTrade, Ul as MitoStakingActivity, Un as IndexerGrpcAuctionTransformer, Uo as GrpcAuctionCoinPrices, Ur as AllChronosDerivativeMarketSummary, Us as Block, Ut as DerivativeMarketStreamCallback, Va as MegaVaultRedemptionStatus, Vc as GrpcSubaccountPortfolio, Vi as GrpcDerivativePosition, Vl as MitoPriceSnapshot, Vn as IndexerGrpcExplorerTransformer, Vo as GrpcAuction, Vr as ChronosLeaderboardEntry, Vs as BankMsgSendTransaction, Vt as AccountPortfolioStreamCallback, Wa as MegaVaultSubscriptionStatus, Wc as SubaccountDeposit, Wi as GrpcExpiryFuturesMarketInfo, Wl as MitoStakingPool, Wn as IndexerGrpcAccountTransformer, Wo as GrpcAuctionContract, Wr as AllDerivativeMarketSummaryResponse, Ws as BlockWithTxs, Wt as DerivativeOrderHistoryStreamCallback, X as TcDerivativeOrderHistoryStreamCallbackV2, Xa as MegaVaultVolatilityStats, Xc as GrpcMitoClaimReference, Xi as PerpetualMarket, Xl as MitoVault, Xn as IndexerGrpcMitoTransformer, Xo as Oracle, Xr as GrpcTcDerivativePosition, Xs as CosmWasmPermission, Xt as DerivativeTradesStreamCallback, Y as IndexerGrpcTcDerivativesStreamV2, Ya as MegaVaultVolatility, Yc as GrpcMitoChanges, Yi as GrpcPositionDelta, Yl as MitoTransfer, Yn as IndexerGrpcSpotTransformer, Yo as GrpcOracle, Yr as GrpcTcDerivativeOrdersResponse, Ys as CosmWasmChecksum, Yt as DerivativePositionsV2StreamCallback, Z as TcDerivativeOrdersStreamCallbackV2, Za as OperationStatusLogEntry, Zc as GrpcMitoDenomBalance, Zi as PerpetualMarketFunding, Zl as MitoVestingConfig, Zn as IndexerGrpcRfqTransformer, Zo as AtomicSwap, Zr as GrpcTcDerivativeTradeHistory, Zs as EventLog, Zt as IndexerGrpcDerivativesStream, _a as GrpcMegaVaultOperator, _c as GrpcValidatorUptime, _i as ExplorerApiResponseWithPagination, _l as GrpcMitoTokenInfo, _n as VaultStreamCallback, _o as GrpcHistoricalBalance, _r as IndexerGrpcOracleApi, _s as Route, _t as BidsStreamCallbackV2, aa as InsuranceFundCreateParams, ac as ExplorerValidator, ai as TcDerivativePosition, al as GrpcMitoLeaderboardEntry, an as BidsStreamCallback, ao as GrpcCampaign, ar as IndexerGrpcAccountPortfolioApi, as as SpotLimitOrderParams, at as DerivativePositionsStreamCallbackV2, au as TransportEventType, ba as GrpcMegaVaultPnlStats, bc as Message, bi as TransactionFromExplorerApiResponse, bl as MitoChanges, bn as SpotOrderHistoryStreamCallback, bo as GrpcLeaderboardRow, br as IndexerGrpcMitoApi, bs as GrpcRFQQuote, bt as IndexerGrpcAccountStreamV2, ca as IncentivesCampaign, cc as GasFee, ci as TcDerivativesOrdersHistoryResponse, cl as GrpcMitoMissionLeaderboardEntry, cn as IndexerGrpcAccountStream, co as GrpcGuild, cr as IndexerGrpcReferralApi, cs as SpotOrderHistory, ct as IndexerGrpcDerivativesStreamV2, cu as WsReconnectConfig, da as GrpcMegaVaultAprStats, dc as GrpcGasFee, di as BankTransferFromExplorerApiResponse, dl as GrpcMitoStakingGauge, dn as OraclePricesByMarketsStreamCallback, do as GuildCampaignSummary, dr as IndexerGrpcExplorerApi, ds as GrpcTokenMeta, dt as IndexerGrpcExplorerStreamV2, ea as PositionDelta, ec as ExplorerCW20BalanceWithToken, ei as GrpcTcDerivativesPositionsResponse, el as GrpcMitoIDOClaimedCoins, en as IndexerGrpcExplorerStream, eo as ChronosSpotMarketSummary, er as IndexerRestMarketChronosApi, es as GrpcSpotLimitOrder, et as DerivativeMarketStreamCallbackV2, eu as GrpcDecodeError, fa as GrpcMegaVaultHistoricalPnL, fc as GrpcIBCTransferTx, fi as BlockFromExplorerApiResponse, fl as GrpcMitoStakingPool, fn as HistoricalStakingStreamCallback, fo as GuildMember, fr as IndexerGrpcTradingApi, fs as IndexerTokenMeta, ft as TransactionsStreamCallbackV2, ga as GrpcMegaVaultOperationStatusLogEntry, gc as GrpcValidatorSlashingEvent, gi as ExplorerApiResponse, gl as GrpcMitoSubscription, gn as VaultHolderSubscriptionStreamCallback, go as GrpcDenomHolders, gr as IndexerGrpcTransactionApi, gs as QuantityAndFees, gt as IndexerGrpcTradingStreamV2, ha as GrpcMegaVaultMaxDrawdown, hc as GrpcPeggyWithdrawalTx, hi as ContractTransactionExplorerApiResponse, hl as GrpcMitoSubaccountBalance, hn as TransfersStreamCallback, ho as DenomHolders, hr as IndexerGrpcWeb3GwApi, hs as PriceLevel, ht as GridStrategyStreamCallbackV2, ia as IndexerInsuranceFund, ic as ExplorerTxsV2Response, ii as TcDerivativeOrdersResponse, il as GrpcMitoIDOSubscriptionActivity, in as IndexerGrpcTradingStream, io as CampaignV2, ir as IndexerGrpcTcDerivativesApi, is as SpotLimitOrder, it as DerivativeOrdersStreamCallbackV2, iu as TransportEventListener, ja as MegaVaultAprStats, jc as GridStrategyStreamResponse, ji as DerivativeOrderHistory, jl as MitoIDOSubscription, jn as IndexerGrpcMitoStreamTransformer, jo as VolLeaderboard, jr as AccountPortfolioV2, js as RFQSettlementLimitActionType, jt as SpotOrderHistoryStreamCallbackV2, ka as MegaVault, kc as ValidatorUptimeStatus, ki as DerivativeMarketWithoutBinaryOptions, kl as MitoIDOProgress, kn as IndexerDerivativeStreamTransformer, ko as PnlLeaderboard, kr as ChronosMarketHistoryResponse, ks as RFQRequestInputType, kt as VaultStreamCallbackV2, la as IncentivesRound, lc as GrpcBankMsgSendMessage, li as TcDerivativesPositionsResponse, ll as GrpcMitoPagination, ln as IndexerGrpcOracleStream, lo as GrpcGuildMember, lr as IndexerGrpcArchiverApi, ls as SpotTrade, lt as BlocksStreamCallbackV2, lu as WsState, ma as GrpcMegaVaultIncentives, mc as GrpcPeggyDepositTx, mi as ContractExplorerApiResponse, ml as GrpcMitoStakingStakingReward, mn as StakingRewardByAccountStreamCallback, mo as AccountStats, mr as IndexerGrpcAccountApi, ms as OrderbookWithSequence, mt as SpotAverageEntriesStreamCallbackV2, na as GrpcIndexerInsuranceFund, nc as ExplorerTransaction, ni as TcDerivativeLimitOrder, nl as GrpcMitoIDOSubscriber, nn as IndexerGrpcArchiverStream, no as Campaign, nr as IndexerRestExplorerApi, ns as GrpcSpotOrderHistory, nt as DerivativeOrderbookUpdateStreamCallbackV2, nu as IsomorphicWebSocket, oa as Redemption, oc as ExplorerValidatorDescription, oi as TcDerivativeTradeHistory, ol as GrpcMitoLeaderboardEpoch, on as IndexerGrpcAuctionStream, oo as GrpcCampaignUser, or as IndexerGrpcDerivativesApi, os as SpotMarket, ot as DerivativePositionsV2StreamCallbackV2, ou as TransportEvents, pa as GrpcMegaVaultHistoricalTVL, pc as GrpcIndexerValidatorDescription, pi as CW20BalanceExplorerApiResponse, pl as GrpcMitoStakingStakingActivity, pn as IndexerGrpcMitoStream, po as ReferralDetails, pr as IndexerGrpcAuctionApi, ps as Orderbook, pt as IndexerGrpcArchiverStreamV2, q as AccountPortfolioStreamCallbackV2, qa as MegaVaultUser, qc as TradingReward, qi as GrpcPerpetualMarketFunding, ql as MitoSubscription, qn as IndexerRfqStreamTransformer, qo as IndexerAuctionBid, qr as GrpcTcDerivativeLimitOrder, qs as ContractTransaction, qt as DerivativeOrdersStreamCallback, ra as GrpcIndexerRedemptionSchedule, rc as ExplorerTransactionV2, ri as TcDerivativeOrderHistory, rl as GrpcMitoIDOSubscription, rn as SpotAverageEntriesStreamCallback, ro as CampaignUser, rr as IndexerGrpcInsuranceFundApi, rs as GrpcSpotTrade, rt as DerivativeOrderbookV2StreamCallbackV2, ru as ResolvedWsTransportConfig, sa as RedemptionStatus, sc as ExplorerValidatorUptime, si as TcDerivativeTradesResponse, sl as GrpcMitoMission, sn as BalanceStreamCallback, so as GrpcCampaignV2, sr as IndexerGrpcMegaVaultApi, ss as SpotOrderCancelParams, st as DerivativeTradesStreamCallbackV2, su as WsDisconnectReason, ta as PositionV2, tc as ExplorerStats, ti as GrpcTcPositionDelta, tl as GrpcMitoIDOProgress, tn as TransactionsStreamCallback, to as ChronosSpotMarketSummaryResponse, tr as IndexerRestSpotChronosApi, ts as GrpcSpotMarketInfo, tt as DerivativeOrderHistoryStreamCallbackV2, tu as GrpcFrame, ua as GrpcMegaVaultApr, uc as GrpcExplorerStats, ui as TcPositionDelta, ul as GrpcMitoPriceSnapshot, un as OraclePriceStreamCallback, uo as Guild, ur as IndexerGrpcCampaignApi, us as GrpcPriceLevel, ut as BlocksWithTxsStreamCallbackV2, uu as WsTransportConfig, va as GrpcMegaVaultOperatorRedemptionBucket, vc as IBCTransferTx, vi as ExplorerBlockApiResponse, vl as GrpcMitoVault, vn as IndexerGrpcSpotStream, vo as GrpcHistoricalRPNL, vr as IndexerGrpcSpotApi, vs as GrpcRFQExpiry, vt as IndexerGrpcAuctionStreamV2, wa as GrpcMegaVaultUnrealizedPnl, wc as Signature, wi as BatchDerivativeOrderCancelParams, wl as MitoGaugeStatus, wn as SpotTradesStreamCallback, wo as HistoricalBalance, wr as GrpcWebSocketTransport, ws as MakerStreamEvents, wt as HistoricalStakingStreamCallbackV2, xa as GrpcMegaVaultRedemption, xc as Paging, xi as ValidatorUptimeFromExplorerApiResponse, xl as MitoClaimReference, xn as SpotOrderbookUpdateStreamCallback, xo as GrpcPnlLeaderboard, xr as IndexerGrpcRFQApi, xs as GrpcRFQRequest, xt as IndexerGrpcOracleStreamV2, ya as GrpcMegaVaultPnl, yc as IndexerStreamTransaction, yi as ExplorerTransactionApiResponse, yl as GrpcMitoWhitelistAccount, yn as MarketsStreamCallback, yo as GrpcHistoricalVolumes, yr as IndexerGrpcMetaApi, ys as GrpcRFQProcessedQuote, yt as BalanceStreamCallbackV2, za as MegaVaultPnlStats, zc as GrpcSubaccountBalanceTransfer, zi as GrpcDerivativeMarketInfo, zl as MitoPagination, zn as IndexerOracleStreamTransformer, zo as AuctionsStats, zr as SubaccountDepositV2, zs as AccessType, zt as StreamManager } from "../index-CZe2JEgA.cjs";
|
|
3
|
+
import { $ as TcDerivativeTradesStreamCallbackV2, $a as AllSpotMarketSummaryResponse, $c as GrpcMitoIDO, $i as Position, $l as MitoWhitelistAccount, $n as IndexerRestDerivativesChronosApi, $o as GrpcAtomicSwap, $r as GrpcTcDerivativesOrdersHistoryResponse, $s as ExplorerBlockWithTxs, $t as BlocksWithTxsStreamCallback, Aa as MegaVaultApr, Ac as WasmCode, Ai as DerivativeOrderCancelParams, Al as MitoIDOSubscriber, An as IndexerGrpcAccountPortfolioTransformer, Ao as SpotAverageEntry, Ar as AccountPortfolioBalances, As as RFQRequestType, At as IndexerGrpcSpotStreamV2, Ba as MegaVaultRedemption, Bc as GrpcSubaccountDeposit, Bi as GrpcDerivativeOrderHistory, Bl as MitoPortfolio, Bn as IndexerGrpcReferralTransformer, Bo as GrpcAccountAuctionV2, Br as ChronosLeaderboard, Bs as AccessTypeCode, Bt as createStreamSubscription, Ca as GrpcMegaVaultTargetApr, Cc as PeggyWithdrawalTx, Ci as BaseDerivativeMarket, Cl as MitoGauge, Cn as SpotOrdersStreamCallback, Co as GrpcVolLeaderboard, Cr as IndexerWsTakerStream, Cs as MakerStreamConfig, Ct as OraclePricesByMarketsStreamCallbackV2, Da as GrpcMegaVaultVolatility, Dc as ValidatorSlashingEvent, Di as DerivativeLimitOrderParams, Dl as MitoIDOClaimedCoins, Dn as IndexerGrpcTcDerivativesTransformer, Do as Holder, Dr as StreamStatusResponse, Ds as RFQProcessedQuoteType, Dt as TransfersStreamCallbackV2, Ea as GrpcMegaVaultVaultStats, Ec as TxMessage, Ei as DerivativeLimitOrder, El as MitoIDO, En as IndexerTcDerivativesStreamTransformer, Eo as HistoricalVolumes, Er as IndexerModule, Es as RFQMakerStreamAckData, Et as StakingRewardByAccountStreamCallbackV2, Fa as MegaVaultMaxDrawdown, Fc as TradingStrategy, Fi as FundingPayment, Fl as MitoLeaderboardEpoch, Fn as IndexerGrpcMegaVaultTransformer, Fo as AuctionCoin, Fr as GrpcPositionsWithUPNL, Fs as RFQTakerStreamAckData, Ft as IndexerGrpcRfqStreamV2, G as createStreamSubscriptionV2, Ga as MegaVaultTargetApr, Gc as SubaccountPortfolio, Gi as GrpcFundingPayment, Gl as MitoStakingReward, Gn as IndexerSpotStreamTransformer, Go as GrpcAuctionV2, Gr as ChronosDerivativeMarketSummary, Gs as CW20Message, Gt as DerivativeOrderbookUpdateStreamCallback, Ha as MegaVaultStats, Hc as GrpcTradingReward, Hi as GrpcDerivativePositionV2, Hl as MitoStakeToSubscription, Hn as IndexerGrpcArchiverTransformer, Ho as GrpcAuctionCoin, Hr as ChronosLeaderboardResponse, Hs as BankTransfer, Ht as IndexerGrpcAccountPortfolioStream, Ia as MegaVaultOperator, Ic as AccountPortfolio, Ii as FundingRate, Il as MitoMission, In as IndexerAuctionStreamTransformer, Io as AuctionCoinPrices, Ir as GrpcSubaccountDepositV2, Is as SettlementsResponse, It as QuoteStreamCallbackV2, J as IndexerGrpcAccountPortfolioStreamV2, Ja as MegaVaultUserStats, Jc as TransferType, Ji as GrpcPerpetualMarketInfo, Jl as MitoTokenInfo, Jn as IndexerCampaignTransformer, Jo as StreamBidsResponse, Jr as GrpcTcDerivativeOrderHistory, Js as ContractTransactionWithMessages, Jt as DerivativePositionsStreamCallback, K as StreamManagerV2, Ka as MegaVaultUnrealizedPnl, Kc as SubaccountTransfer, Ki as GrpcFundingRate, Kl as MitoSubaccountBalance, Kn as IndexerGrpcOracleTransformer, Ko as GrpcIndexerAuctionBid, Kr as ChronosDerivativeMarketSummaryResponse, Ks as Contract, Kt as DerivativeOrderbookV2StreamCallback, La as MegaVaultOperatorRedemptionBucket, Lc as GrpcAccountPortfolio, Li as GrpcBinaryOptionsMarketInfo, Ll as MitoMissionLeaderboard, Ln as IndexerAccountStreamTransformer, Lo as AuctionContract, Lr as PortfolioSubaccountBalanceV2, Ls as TakerStreamConfig, Lt as RequestStreamCallbackV2, Ma as MegaVaultHistoricalPnL, Mc as GridStrategyType, Mi as DerivativeTrade, Ml as MitoIDOSubscriptionActivity, Mn as IndexerGrpcDerivativeTransformer, Mo as AccountAuctionStatus, Mr as GrpcAccountPortfolioV2, Ms as RFQSettlementType, Mt as SpotOrderbookUpdateStreamCallbackV2, Na as MegaVaultHistoricalTVL, Nc as ListTradingStrategiesResponse, Ni as ExpiryFuturesMarket, Nl as MitoLeaderboard, Nn as ExplorerStreamTransformer, No as AccountAuctionV2, Nr as GrpcPortfolioSubaccountBalanceV2, Ns as RFQSettlementUnfilledActionType, Nt as SpotOrdersStreamCallbackV2, Oa as GrpcMegaVaultVolatilityStats, Oc as ValidatorUptime, Oi as DerivativeMarket, Ol as MitoIDOInitParams, On as IndexerGrpcInsuranceFundTransformer, Oo as LeaderboardRow, Or as AllChronosMarketHistory, Os as RFQQuoteType, Ot as VaultHolderSubscriptionStreamCallbackV2, Pa as MegaVaultIncentives, Pc as MarketType, Pi as ExpiryFuturesMarketInfo, Pl as MitoLeaderboardEntry, Pn as IndexerArchiverStreamTransformer, Po as Auction, Pr as GrpcPositionV2, Ps as RFQStreamErrorData, Pt as SpotTradesStreamCallbackV2, Q as TcDerivativePositionsStreamCallbackV2, Qa as AllChronosSpotMarketSummary, Qc as GrpcMitoHolders, Qi as PerpetualMarketInfo, Ql as MitoVestingConfigMap, Qn as IndexerRestLeaderboardChronosApi, Qo as BatchSpotOrderCancelParams, Qr as GrpcTcDerivativeTradesResponse, Qs as EventLogEvent, Qt as BlocksStreamCallback, Ra as MegaVaultPnl, Rc as GrpcSubaccountBalance, Ri as GrpcDerivativeLimitOrder, Rl as MitoMissionLeaderboardEntry, Rn as IndexerRestExplorerTransformer, Ro as AuctionV2, Rr as PositionsWithUPNL, Rs as TakerStreamEvents, Rt as SettlementStreamCallbackV2, Sa as GrpcMegaVaultSubscription, Sc as PeggyDepositTx, Si as WasmCodeExplorerApiResponse, Sl as MitoDenomBalance, Sn as SpotOrderbookV2StreamCallback, So as GrpcSpotAverageEntry, Sr as IndexerWsMakerStream, Ss as GrpcRFQSettlement, St as OraclePriceStreamCallbackV2, Ta as GrpcMegaVaultUserStats, Tc as Transaction, Ti as BinaryOptionsMarket, Tl as MitoHolders, Tn as IndexerAccountPortfolioStreamTransformer, To as HistoricalRPNL, Tr as GrpcWebSocketCodec, Ts as RFQExpiryType, Tt as IndexerGrpcMitoStreamV2, Ua as MegaVaultSubscription, Uc as SubaccountBalance, Ui as GrpcDerivativeTrade, Ul as MitoStakingActivity, Un as IndexerGrpcAuctionTransformer, Uo as GrpcAuctionCoinPrices, Ur as AllChronosDerivativeMarketSummary, Us as Block, Ut as DerivativeMarketStreamCallback, Va as MegaVaultRedemptionStatus, Vc as GrpcSubaccountPortfolio, Vi as GrpcDerivativePosition, Vl as MitoPriceSnapshot, Vn as IndexerGrpcExplorerTransformer, Vo as GrpcAuction, Vr as ChronosLeaderboardEntry, Vs as BankMsgSendTransaction, Vt as AccountPortfolioStreamCallback, Wa as MegaVaultSubscriptionStatus, Wc as SubaccountDeposit, Wi as GrpcExpiryFuturesMarketInfo, Wl as MitoStakingPool, Wn as IndexerGrpcAccountTransformer, Wo as GrpcAuctionContract, Wr as AllDerivativeMarketSummaryResponse, Ws as BlockWithTxs, Wt as DerivativeOrderHistoryStreamCallback, X as TcDerivativeOrderHistoryStreamCallbackV2, Xa as MegaVaultVolatilityStats, Xc as GrpcMitoClaimReference, Xi as PerpetualMarket, Xl as MitoVault, Xn as IndexerGrpcMitoTransformer, Xo as Oracle, Xr as GrpcTcDerivativePosition, Xs as CosmWasmPermission, Xt as DerivativeTradesStreamCallback, Y as IndexerGrpcTcDerivativesStreamV2, Ya as MegaVaultVolatility, Yc as GrpcMitoChanges, Yi as GrpcPositionDelta, Yl as MitoTransfer, Yn as IndexerGrpcSpotTransformer, Yo as GrpcOracle, Yr as GrpcTcDerivativeOrdersResponse, Ys as CosmWasmChecksum, Yt as DerivativePositionsV2StreamCallback, Z as TcDerivativeOrdersStreamCallbackV2, Za as OperationStatusLogEntry, Zc as GrpcMitoDenomBalance, Zi as PerpetualMarketFunding, Zl as MitoVestingConfig, Zn as IndexerGrpcRfqTransformer, Zo as AtomicSwap, Zr as GrpcTcDerivativeTradeHistory, Zs as EventLog, Zt as IndexerGrpcDerivativesStream, _a as GrpcMegaVaultOperator, _c as GrpcValidatorUptime, _i as ExplorerApiResponseWithPagination, _l as GrpcMitoTokenInfo, _n as VaultStreamCallback, _o as GrpcHistoricalBalance, _r as IndexerGrpcOracleApi, _s as Route, _t as BidsStreamCallbackV2, aa as InsuranceFundCreateParams, ac as ExplorerValidator, ai as TcDerivativePosition, al as GrpcMitoLeaderboardEntry, an as BidsStreamCallback, ao as GrpcCampaign, ar as IndexerGrpcAccountPortfolioApi, as as SpotLimitOrderParams, at as DerivativePositionsStreamCallbackV2, au as TransportEventType, ba as GrpcMegaVaultPnlStats, bc as Message, bi as TransactionFromExplorerApiResponse, bl as MitoChanges, bn as SpotOrderHistoryStreamCallback, bo as GrpcLeaderboardRow, br as IndexerGrpcMitoApi, bs as GrpcRFQQuote, bt as IndexerGrpcAccountStreamV2, ca as IncentivesCampaign, cc as GasFee, ci as TcDerivativesOrdersHistoryResponse, cl as GrpcMitoMissionLeaderboardEntry, cn as IndexerGrpcAccountStream, co as GrpcGuild, cr as IndexerGrpcReferralApi, cs as SpotOrderHistory, ct as IndexerGrpcDerivativesStreamV2, cu as WsReconnectConfig, da as GrpcMegaVaultAprStats, dc as GrpcGasFee, di as BankTransferFromExplorerApiResponse, dl as GrpcMitoStakingGauge, dn as OraclePricesByMarketsStreamCallback, do as GuildCampaignSummary, dr as IndexerGrpcExplorerApi, ds as GrpcTokenMeta, dt as IndexerGrpcExplorerStreamV2, ea as PositionDelta, ec as ExplorerCW20BalanceWithToken, ei as GrpcTcDerivativesPositionsResponse, el as GrpcMitoIDOClaimedCoins, en as IndexerGrpcExplorerStream, eo as ChronosSpotMarketSummary, er as IndexerRestMarketChronosApi, es as GrpcSpotLimitOrder, et as DerivativeMarketStreamCallbackV2, eu as GrpcDecodeError, fa as GrpcMegaVaultHistoricalPnL, fc as GrpcIBCTransferTx, fi as BlockFromExplorerApiResponse, fl as GrpcMitoStakingPool, fn as HistoricalStakingStreamCallback, fo as GuildMember, fr as IndexerGrpcTradingApi, fs as IndexerTokenMeta, ft as TransactionsStreamCallbackV2, ga as GrpcMegaVaultOperationStatusLogEntry, gc as GrpcValidatorSlashingEvent, gi as ExplorerApiResponse, gl as GrpcMitoSubscription, gn as VaultHolderSubscriptionStreamCallback, go as GrpcDenomHolders, gr as IndexerGrpcTransactionApi, gs as QuantityAndFees, gt as IndexerGrpcTradingStreamV2, ha as GrpcMegaVaultMaxDrawdown, hc as GrpcPeggyWithdrawalTx, hi as ContractTransactionExplorerApiResponse, hl as GrpcMitoSubaccountBalance, hn as TransfersStreamCallback, ho as DenomHolders, hr as IndexerGrpcWeb3GwApi, hs as PriceLevel, ht as GridStrategyStreamCallbackV2, ia as IndexerInsuranceFund, ic as ExplorerTxsV2Response, ii as TcDerivativeOrdersResponse, il as GrpcMitoIDOSubscriptionActivity, in as IndexerGrpcTradingStream, io as CampaignV2, ir as IndexerGrpcTcDerivativesApi, is as SpotLimitOrder, it as DerivativeOrdersStreamCallbackV2, iu as TransportEventListener, ja as MegaVaultAprStats, jc as GridStrategyStreamResponse, ji as DerivativeOrderHistory, jl as MitoIDOSubscription, jn as IndexerGrpcMitoStreamTransformer, jo as VolLeaderboard, jr as AccountPortfolioV2, js as RFQSettlementLimitActionType, jt as SpotOrderHistoryStreamCallbackV2, ka as MegaVault, kc as ValidatorUptimeStatus, ki as DerivativeMarketWithoutBinaryOptions, kl as MitoIDOProgress, kn as IndexerDerivativeStreamTransformer, ko as PnlLeaderboard, kr as ChronosMarketHistoryResponse, ks as RFQRequestInputType, kt as VaultStreamCallbackV2, la as IncentivesRound, lc as GrpcBankMsgSendMessage, li as TcDerivativesPositionsResponse, ll as GrpcMitoPagination, ln as IndexerGrpcOracleStream, lo as GrpcGuildMember, lr as IndexerGrpcArchiverApi, ls as SpotTrade, lt as BlocksStreamCallbackV2, lu as WsState, ma as GrpcMegaVaultIncentives, mc as GrpcPeggyDepositTx, mi as ContractExplorerApiResponse, ml as GrpcMitoStakingStakingReward, mn as StakingRewardByAccountStreamCallback, mo as AccountStats, mr as IndexerGrpcAccountApi, ms as OrderbookWithSequence, mt as SpotAverageEntriesStreamCallbackV2, na as GrpcIndexerInsuranceFund, nc as ExplorerTransaction, ni as TcDerivativeLimitOrder, nl as GrpcMitoIDOSubscriber, nn as IndexerGrpcArchiverStream, no as Campaign, nr as IndexerRestExplorerApi, ns as GrpcSpotOrderHistory, nt as DerivativeOrderbookUpdateStreamCallbackV2, nu as IsomorphicWebSocket, oa as Redemption, oc as ExplorerValidatorDescription, oi as TcDerivativeTradeHistory, ol as GrpcMitoLeaderboardEpoch, on as IndexerGrpcAuctionStream, oo as GrpcCampaignUser, or as IndexerGrpcDerivativesApi, os as SpotMarket, ot as DerivativePositionsV2StreamCallbackV2, ou as TransportEvents, pa as GrpcMegaVaultHistoricalTVL, pc as GrpcIndexerValidatorDescription, pi as CW20BalanceExplorerApiResponse, pl as GrpcMitoStakingStakingActivity, pn as IndexerGrpcMitoStream, po as ReferralDetails, pr as IndexerGrpcAuctionApi, ps as Orderbook, pt as IndexerGrpcArchiverStreamV2, q as AccountPortfolioStreamCallbackV2, qa as MegaVaultUser, qc as TradingReward, qi as GrpcPerpetualMarketFunding, ql as MitoSubscription, qn as IndexerRfqStreamTransformer, qo as IndexerAuctionBid, qr as GrpcTcDerivativeLimitOrder, qs as ContractTransaction, qt as DerivativeOrdersStreamCallback, ra as GrpcIndexerRedemptionSchedule, rc as ExplorerTransactionV2, ri as TcDerivativeOrderHistory, rl as GrpcMitoIDOSubscription, rn as SpotAverageEntriesStreamCallback, ro as CampaignUser, rr as IndexerGrpcInsuranceFundApi, rs as GrpcSpotTrade, rt as DerivativeOrderbookV2StreamCallbackV2, ru as ResolvedWsTransportConfig, sa as RedemptionStatus, sc as ExplorerValidatorUptime, si as TcDerivativeTradesResponse, sl as GrpcMitoMission, sn as BalanceStreamCallback, so as GrpcCampaignV2, sr as IndexerGrpcMegaVaultApi, ss as SpotOrderCancelParams, st as DerivativeTradesStreamCallbackV2, su as WsDisconnectReason, ta as PositionV2, tc as ExplorerStats, ti as GrpcTcPositionDelta, tl as GrpcMitoIDOProgress, tn as TransactionsStreamCallback, to as ChronosSpotMarketSummaryResponse, tr as IndexerRestSpotChronosApi, ts as GrpcSpotMarketInfo, tt as DerivativeOrderHistoryStreamCallbackV2, tu as GrpcFrame, ua as GrpcMegaVaultApr, uc as GrpcExplorerStats, ui as TcPositionDelta, ul as GrpcMitoPriceSnapshot, un as OraclePriceStreamCallback, uo as Guild, ur as IndexerGrpcCampaignApi, us as GrpcPriceLevel, ut as BlocksWithTxsStreamCallbackV2, uu as WsTransportConfig, va as GrpcMegaVaultOperatorRedemptionBucket, vc as IBCTransferTx, vi as ExplorerBlockApiResponse, vl as GrpcMitoVault, vn as IndexerGrpcSpotStream, vo as GrpcHistoricalRPNL, vr as IndexerGrpcSpotApi, vs as GrpcRFQExpiry, vt as IndexerGrpcAuctionStreamV2, wa as GrpcMegaVaultUnrealizedPnl, wc as Signature, wi as BatchDerivativeOrderCancelParams, wl as MitoGaugeStatus, wn as SpotTradesStreamCallback, wo as HistoricalBalance, wr as GrpcWebSocketTransport, ws as MakerStreamEvents, wt as HistoricalStakingStreamCallbackV2, xa as GrpcMegaVaultRedemption, xc as Paging, xi as ValidatorUptimeFromExplorerApiResponse, xl as MitoClaimReference, xn as SpotOrderbookUpdateStreamCallback, xo as GrpcPnlLeaderboard, xr as IndexerGrpcRFQApi, xs as GrpcRFQRequest, xt as IndexerGrpcOracleStreamV2, ya as GrpcMegaVaultPnl, yc as IndexerStreamTransaction, yi as ExplorerTransactionApiResponse, yl as GrpcMitoWhitelistAccount, yn as MarketsStreamCallback, yo as GrpcHistoricalVolumes, yr as IndexerGrpcMetaApi, ys as GrpcRFQProcessedQuote, yt as BalanceStreamCallbackV2, za as MegaVaultPnlStats, zc as GrpcSubaccountBalanceTransfer, zi as GrpcDerivativeMarketInfo, zl as MitoPagination, zn as IndexerOracleStreamTransformer, zo as AuctionsStats, zr as SubaccountDepositV2, zs as AccessType, zt as StreamManager } from "../index-C3CJY1Ry.cjs";
|
|
4
4
|
import "../BaseGrpcConsumer-Ba4uw4ZN.cjs";
|
|
5
5
|
import "../index-CgHU4RQF.cjs";
|
|
6
6
|
import "../index-DfJ_98xz.cjs";
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import "../tx_pb-BN7h9uqT.cjs";
|
|
2
2
|
import "../index-m48Rf9ow.cjs";
|
|
3
|
-
import { Gf as PublicKey, Kf as Address, Uf as BaseAccount, Wf as PrivateKey } from "../index-
|
|
3
|
+
import { Gf as PublicKey, Kf as Address, Uf as BaseAccount, Wf as PrivateKey } from "../index-C3CJY1Ry.cjs";
|
|
4
4
|
import "../BaseGrpcConsumer-Ba4uw4ZN.cjs";
|
|
5
5
|
import "../index-CgHU4RQF.cjs";
|
|
6
6
|
import "../index-DfJ_98xz.cjs";
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import "../tx_pb-BN7h9uqT.cjs";
|
|
2
2
|
import "../index-m48Rf9ow.cjs";
|
|
3
|
-
import { $v as MsgIncreasePositionMargin, $y as MsgSubmitProposalPerpetualMarketLaunch, Af as MsgUpdateParams, Am as OracleMsgs, Ay as MsgChangeAdmin, Bf as ExecArgNeptuneWithdraw, By as MsgSendToEth, Cm as ExchangeV1Msgs, Cy as MsgGrantAllowance, Df as MsgUpdateActorRoles, Dm as IbcMsgs, Dy as MsgMigrateContract, Em as GovMsgs, Ey as MsgCreateRateLimit, Ff as ContractExecutionAuthorization, Fm as MsgSetDelegationTransferReceivers, Fy as MsgUndelegate, Gv as MsgCreateDerivativeMarketOrder, Gy as MsgBurn, Hy as MsgDeposit, If as GenericAuthorization, Im as MsgCreateBinaryOptionsMarketOrder, Iy as MsgUpdateAdmin, Jv as MsgWithdrawDelegatorReward, Jy as MsgSubmitProposal, Kv as MsgBatchCancelDerivativeOrders, Ky as MsgTransfer, Lf as GrantAuthorizationType, Lm as MsgBatchCancelBinaryOptionsOrders, Ly as MsgWithdraw, Mf as OrderHashManager, Mm as StakingMsgs, My as MsgPrivilegedExecuteContract, Nf as MsgInstantBinaryOptionsMarketLaunch, Nm as TokenFactoryMsgs, Ny as MsgEditValidator, Of as MsgUpdateNamespace, Om as InsuranceMsgs, Oy as MsgExecuteContract, Pf as ContractExecutionCompatAuthorization, Pm as WasmMsgs, Py as MsgUnderwrite, Qv as MsgInstantSpotMarketLaunch, Qy as MsgSubmitProposalSpotMarketParamUpdate, Rf as getGenericAuthorizationFromMessageType, Rm as MsgAdminUpdateBinaryOptionsMarket, Ry as MsgSignData, Sm as ExchangeMsgs, Sy as MsgBeginRedelegate, Tm as FeegrantMsgs, Ty as MsgUpdateRateLimit, Uv as MsgCreateBinaryOptionsLimitOrder, Uy as MsgMultiSend, Vf as ExecArgNeptuneDeposit, Vy as MsgStoreCode, Wv as MsgWithdrawValidatorCommission, Wy as MsgMint, Xv as MsgUpdateDerivativeMarketV2, Xy as MsgSubmitProposalExpiryFuturesMarketLaunch, Yv as MsgCancelUnbondingDelegation, Yy as ProposalDecomposer, Zv as MsgCancelBinaryOptionsOrder, Zy as MsgSubmitProposalPerpetualMarketLaunchV2, _m as AuctionMsgs, _y as MsgBatchUpdateOrders, ab as MsgRevoke, ay as MsgCreateSpotLimitOrder, bm as DistributionMsgs, by as MsgCancelSpotOrder, cb as MsgSend, cy as MsgFundCommunityPool, dy as MsgReclaimLockedFunds, eb as MsgGrantProviderPrivilegeProposal, ey as MsgCreateSpotMarketOrder, fy as MsgRelayProviderPrices, gy as MsgLiquidatePosition, hy as MsgInstantiateContract, ib as MsgDeposit$1, iy as MsgCancelPostOnlyModeV2, jf as MsgClaimVoucher, jm as PeggyMsgs, jy as MsgRewardsOptOut, kf as MsgCreateNamespace, km as Msgs, ky as MsgCreateDenom, lb as MsgVote, ly as MsgSetDenomMetadata, my as MsgRequestRedemption, nb as MsgSubmitGenericProposal, ny as MsgBatchCancelSpotOrders, ob as MsgGrant, oy as MsgAuthorizeStakeGrants, py as MsgTransferDelegation, qv as MsgCreateDerivativeLimitOrder, qy as MsgExec, rb as MsgSubmitTextProposal, ry as MsgGrantWithAuthorization, sb as MsgBid, sy as MsgCreateInsuranceFund, tb as MsgSubmitProposalSpotMarketLaunch, ty as MsgCancelDerivativeOrder, uy as MsgUpdateSpotMarketV2, vm as AuthzMsgs, vy as MsgExternalTransfer, wm as ExchangeV2Msgs, wy as MsgRemoveRateLimit, xm as Erc20Msgs, xy as MsgCreateValidator, ym as BankMsgs, yy as MsgRevokeAllowance, zf as msgsOrMsgExecMsgs, zy as MsgDelegate } from "../index-
|
|
3
|
+
import { $v as MsgIncreasePositionMargin, $y as MsgSubmitProposalPerpetualMarketLaunch, Af as MsgUpdateParams, Am as OracleMsgs, Ay as MsgChangeAdmin, Bf as ExecArgNeptuneWithdraw, By as MsgSendToEth, Cm as ExchangeV1Msgs, Cy as MsgGrantAllowance, Df as MsgUpdateActorRoles, Dm as IbcMsgs, Dy as MsgMigrateContract, Em as GovMsgs, Ey as MsgCreateRateLimit, Ff as ContractExecutionAuthorization, Fm as MsgSetDelegationTransferReceivers, Fy as MsgUndelegate, Gv as MsgCreateDerivativeMarketOrder, Gy as MsgBurn, Hy as MsgDeposit, If as GenericAuthorization, Im as MsgCreateBinaryOptionsMarketOrder, Iy as MsgUpdateAdmin, Jv as MsgWithdrawDelegatorReward, Jy as MsgSubmitProposal, Kv as MsgBatchCancelDerivativeOrders, Ky as MsgTransfer, Lf as GrantAuthorizationType, Lm as MsgBatchCancelBinaryOptionsOrders, Ly as MsgWithdraw, Mf as OrderHashManager, Mm as StakingMsgs, My as MsgPrivilegedExecuteContract, Nf as MsgInstantBinaryOptionsMarketLaunch, Nm as TokenFactoryMsgs, Ny as MsgEditValidator, Of as MsgUpdateNamespace, Om as InsuranceMsgs, Oy as MsgExecuteContract, Pf as ContractExecutionCompatAuthorization, Pm as WasmMsgs, Py as MsgUnderwrite, Qv as MsgInstantSpotMarketLaunch, Qy as MsgSubmitProposalSpotMarketParamUpdate, Rf as getGenericAuthorizationFromMessageType, Rm as MsgAdminUpdateBinaryOptionsMarket, Ry as MsgSignData, Sm as ExchangeMsgs, Sy as MsgBeginRedelegate, Tm as FeegrantMsgs, Ty as MsgUpdateRateLimit, Uv as MsgCreateBinaryOptionsLimitOrder, Uy as MsgMultiSend, Vf as ExecArgNeptuneDeposit, Vy as MsgStoreCode, Wv as MsgWithdrawValidatorCommission, Wy as MsgMint, Xv as MsgUpdateDerivativeMarketV2, Xy as MsgSubmitProposalExpiryFuturesMarketLaunch, Yv as MsgCancelUnbondingDelegation, Yy as ProposalDecomposer, Zv as MsgCancelBinaryOptionsOrder, Zy as MsgSubmitProposalPerpetualMarketLaunchV2, _m as AuctionMsgs, _y as MsgBatchUpdateOrders, ab as MsgRevoke, ay as MsgCreateSpotLimitOrder, bm as DistributionMsgs, by as MsgCancelSpotOrder, cb as MsgSend, cy as MsgFundCommunityPool, dy as MsgReclaimLockedFunds, eb as MsgGrantProviderPrivilegeProposal, ey as MsgCreateSpotMarketOrder, fy as MsgRelayProviderPrices, gy as MsgLiquidatePosition, hy as MsgInstantiateContract, ib as MsgDeposit$1, iy as MsgCancelPostOnlyModeV2, jf as MsgClaimVoucher, jm as PeggyMsgs, jy as MsgRewardsOptOut, kf as MsgCreateNamespace, km as Msgs, ky as MsgCreateDenom, lb as MsgVote, ly as MsgSetDenomMetadata, my as MsgRequestRedemption, nb as MsgSubmitGenericProposal, ny as MsgBatchCancelSpotOrders, ob as MsgGrant, oy as MsgAuthorizeStakeGrants, py as MsgTransferDelegation, qv as MsgCreateDerivativeLimitOrder, qy as MsgExec, rb as MsgSubmitTextProposal, ry as MsgGrantWithAuthorization, sb as MsgBid, sy as MsgCreateInsuranceFund, tb as MsgSubmitProposalSpotMarketLaunch, ty as MsgCancelDerivativeOrder, uy as MsgUpdateSpotMarketV2, vm as AuthzMsgs, vy as MsgExternalTransfer, wm as ExchangeV2Msgs, wy as MsgRemoveRateLimit, xm as Erc20Msgs, xy as MsgCreateValidator, ym as BankMsgs, yy as MsgRevokeAllowance, zf as msgsOrMsgExecMsgs, zy as MsgDelegate } from "../index-C3CJY1Ry.cjs";
|
|
4
4
|
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";
|
package/dist/cjs/core/tx.d.cts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { c as tx_pb_d_exports } from "../tx_pb-BN7h9uqT.cjs";
|
|
2
2
|
import "../index-m48Rf9ow.cjs";
|
|
3
|
-
import { $f as getEip712DomainV2, $p as SimulationResponse, Ap as createWeb3Extension, Bp as createTransactionAndCosmosSignDocForAddressAndMsg, Cp as createFee, Dp as createSignerInfo, Ep as createSignDocFromTransaction, Fp as TxRestApi, Gp as getTxRawFromTxRawOrDirectSignResponse, Hf as MsgBroadcasterWithPk, Hp as createTransactionFromMsg, Ip as TxGrpcApi, Jf as getEip712TypedData, Jp as RestAuthInfo, Kp as BroadcastMode, Lp as waitTxBroadcasted, Mp as getPublicKey, Np as getTransactionPartsFromTxRaw, Op as createSigners, Pp as generateArbitrarySignDoc, Qf as getEip712Domain, Qp as RestTxLog, Rp as createTransaction, Sp as createBody, Tp as createSignDoc, Up as createTransactionWithSigners, Vp as createTransactionForAddressAndMsg, Wp as createTxRawFromSigResponse, Xf as getDefaultEip712Types, Xp as RestTx, Yf as getEip712TypedDataV2, Yp as RestSignerInfo, Zf as getDefaultEip712TypesV2, Zp as RestTxBody, _p as getEthereumSignerAddress, am as TxSearchResultParams, ap as getObjectEip712PropertyType, bp as isTxNotFoundError, cm as CreateTransactionWithSignersArgs, cp as protoTypeToAminoType, dm as TxClientBroadcastOptions, dp as SIGN_AMINO, em as TxInfo, ep as getEip712Fee, fm as TxClientBroadcastResponse, fp as SIGN_DIRECT, gm as TxResponse, gp as createAnyMessage, hm as TxConcreteApi, hp as createAny, im as TxSearchResult, ip as getTypesIncludingFeePayer, jp as getAminoStdSignDoc, kp as createTxRawEIP712, lm as MsgArg, lp as stringTypeToReflectionStringType, mm as TxClientSimulateResponse, mp as SIGN_EIP712_V2, nm as TxResult, np as getEipTxContext, om as CreateTransactionArgs, op as numberTypeToReflectionNumberType, pm as TxClientMode, pp as SIGN_EIP712, qf as MsgDecoder, qp as BroadcastModeKeplr, rm as TxResultResponse, rp as getEipTxDetails, sm as CreateTransactionResult, sp as objectKeysToEip712Types, tm as TxInfoResponse, tp as getEip712FeeV2, um as SignerDetails, up as TxClient, vp as getInjectiveSignerAddress, wp as createNonCriticalExtensionFromObject, xp as createAuthInfo, yp as errorToErrorMessage, zp as createTransactionAndCosmosSignDoc } from "../index-
|
|
3
|
+
import { $f as getEip712DomainV2, $p as SimulationResponse, Ap as createWeb3Extension, Bp as createTransactionAndCosmosSignDocForAddressAndMsg, Cp as createFee, Dp as createSignerInfo, Ep as createSignDocFromTransaction, Fp as TxRestApi, Gp as getTxRawFromTxRawOrDirectSignResponse, Hf as MsgBroadcasterWithPk, Hp as createTransactionFromMsg, Ip as TxGrpcApi, Jf as getEip712TypedData, Jp as RestAuthInfo, Kp as BroadcastMode, Lp as waitTxBroadcasted, Mp as getPublicKey, Np as getTransactionPartsFromTxRaw, Op as createSigners, Pp as generateArbitrarySignDoc, Qf as getEip712Domain, Qp as RestTxLog, Rp as createTransaction, Sp as createBody, Tp as createSignDoc, Up as createTransactionWithSigners, Vp as createTransactionForAddressAndMsg, Wp as createTxRawFromSigResponse, Xf as getDefaultEip712Types, Xp as RestTx, Yf as getEip712TypedDataV2, Yp as RestSignerInfo, Zf as getDefaultEip712TypesV2, Zp as RestTxBody, _p as getEthereumSignerAddress, am as TxSearchResultParams, ap as getObjectEip712PropertyType, bp as isTxNotFoundError, cm as CreateTransactionWithSignersArgs, cp as protoTypeToAminoType, dm as TxClientBroadcastOptions, dp as SIGN_AMINO, em as TxInfo, ep as getEip712Fee, fm as TxClientBroadcastResponse, fp as SIGN_DIRECT, gm as TxResponse, gp as createAnyMessage, hm as TxConcreteApi, hp as createAny, im as TxSearchResult, ip as getTypesIncludingFeePayer, jp as getAminoStdSignDoc, kp as createTxRawEIP712, lm as MsgArg, lp as stringTypeToReflectionStringType, mm as TxClientSimulateResponse, mp as SIGN_EIP712_V2, nm as TxResult, np as getEipTxContext, om as CreateTransactionArgs, op as numberTypeToReflectionNumberType, pm as TxClientMode, pp as SIGN_EIP712, qf as MsgDecoder, qp as BroadcastModeKeplr, rm as TxResultResponse, rp as getEipTxDetails, sm as CreateTransactionResult, sp as objectKeysToEip712Types, tm as TxInfoResponse, tp as getEip712FeeV2, um as SignerDetails, up as TxClient, vp as getInjectiveSignerAddress, wp as createNonCriticalExtensionFromObject, xp as createAuthInfo, yp as errorToErrorMessage, zp as createTransactionAndCosmosSignDoc } from "../index-C3CJY1Ry.cjs";
|
|
4
4
|
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";
|
|
@@ -9007,13 +9007,13 @@ declare class MsgCreateValidator extends MsgBase<MsgCreateValidator.Params, MsgC
|
|
|
9007
9007
|
value: MsgCreateValidator.Object;
|
|
9008
9008
|
};
|
|
9009
9009
|
toWeb3Gw(): {
|
|
9010
|
+
value?: Coin$1 | undefined;
|
|
9010
9011
|
description?: Description | undefined;
|
|
9011
9012
|
commission?: CommissionRates | undefined;
|
|
9012
9013
|
minSelfDelegation: string;
|
|
9013
9014
|
delegatorAddress: string;
|
|
9014
9015
|
validatorAddress: string;
|
|
9015
9016
|
pubkey?: Any | undefined;
|
|
9016
|
-
value?: Coin$1 | undefined;
|
|
9017
9017
|
pubKey: any;
|
|
9018
9018
|
'@type': string;
|
|
9019
9019
|
};
|
|
@@ -18578,7 +18578,7 @@ declare const BECH32_ADDR_VAL_PREFIX = "injvaloper";
|
|
|
18578
18578
|
declare const BECH32_ADDR_CONS_PREFIX = "injvalcons";
|
|
18579
18579
|
declare const DEFAULT_DERIVATION_PATH = "m/44'/60'/0'/0/0";
|
|
18580
18580
|
//#endregion
|
|
18581
|
-
//#region ../../node_modules/.pnpm/@injectivelabs+indexer-proto-ts-v2@1.18.
|
|
18581
|
+
//#region ../../node_modules/.pnpm/@injectivelabs+indexer-proto-ts-v2@1.18.10/node_modules/@injectivelabs/indexer-proto-ts-v2/generated/injective_accounts_rpc_pb.d.ts
|
|
18582
18582
|
/**
|
|
18583
18583
|
* @generated from protobuf message injective_accounts_rpc.PortfolioResponse
|
|
18584
18584
|
*/
|
|
@@ -19094,7 +19094,7 @@ declare const Reward = new Reward$Type();
|
|
|
19094
19094
|
*/
|
|
19095
19095
|
declare const Coin$7 = new Coin$Type();
|
|
19096
19096
|
//#endregion
|
|
19097
|
-
//#region ../../node_modules/.pnpm/@injectivelabs+indexer-proto-ts-v2@1.18.
|
|
19097
|
+
//#region ../../node_modules/.pnpm/@injectivelabs+indexer-proto-ts-v2@1.18.10/node_modules/@injectivelabs/indexer-proto-ts-v2/generated/injective_explorer_rpc_pb.d.ts
|
|
19098
19098
|
/**
|
|
19099
19099
|
* @generated from protobuf message injective_explorer_rpc.GetAccountTxsResponse
|
|
19100
19100
|
*/
|
|
@@ -20528,7 +20528,7 @@ declare const fetchAllWithPagination: <T extends {
|
|
|
20528
20528
|
//#region src/utils/transaction.d.ts
|
|
20529
20529
|
declare const recoverTypedSignaturePubKey: (data: TypedDataDefinition, signature: string) => Promise<string>;
|
|
20530
20530
|
//#endregion
|
|
20531
|
-
//#region ../../node_modules/.pnpm/@injectivelabs+indexer-proto-ts-v2@1.18.
|
|
20531
|
+
//#region ../../node_modules/.pnpm/@injectivelabs+indexer-proto-ts-v2@1.18.10/node_modules/@injectivelabs/indexer-proto-ts-v2/generated/injective_rfq_rpc_pb.d.ts
|
|
20532
20532
|
/**
|
|
20533
20533
|
* @generated from protobuf message injective_rfq_rpc.StreamRequestResponse
|
|
20534
20534
|
*/
|
|
@@ -20751,6 +20751,18 @@ interface RFQQuoteType$1 {
|
|
|
20751
20751
|
* @generated from protobuf field: uint64 transaction_time = 18
|
|
20752
20752
|
*/
|
|
20753
20753
|
transactionTime: bigint;
|
|
20754
|
+
/**
|
|
20755
|
+
* Maker subaccount nonce used in quote signature
|
|
20756
|
+
*
|
|
20757
|
+
* @generated from protobuf field: uint64 maker_subaccount_nonce = 19
|
|
20758
|
+
*/
|
|
20759
|
+
makerSubaccountNonce: bigint;
|
|
20760
|
+
/**
|
|
20761
|
+
* Optional minimum fill quantity used in quote signature
|
|
20762
|
+
*
|
|
20763
|
+
* @generated from protobuf field: string min_fill_quantity = 20
|
|
20764
|
+
*/
|
|
20765
|
+
minFillQuantity: string;
|
|
20754
20766
|
}
|
|
20755
20767
|
/**
|
|
20756
20768
|
* Expiry with timestamp and block height
|
|
@@ -20920,6 +20932,18 @@ interface RFQProcessedQuoteType$1 {
|
|
|
20920
20932
|
* @generated from protobuf field: uint64 transaction_time = 18
|
|
20921
20933
|
*/
|
|
20922
20934
|
transactionTime: bigint;
|
|
20935
|
+
/**
|
|
20936
|
+
* Maker subaccount nonce used in quote signature
|
|
20937
|
+
*
|
|
20938
|
+
* @generated from protobuf field: uint64 maker_subaccount_nonce = 19
|
|
20939
|
+
*/
|
|
20940
|
+
makerSubaccountNonce: bigint;
|
|
20941
|
+
/**
|
|
20942
|
+
* Optional minimum fill quantity used in quote signature
|
|
20943
|
+
*
|
|
20944
|
+
* @generated from protobuf field: string min_fill_quantity = 20
|
|
20945
|
+
*/
|
|
20946
|
+
minFillQuantity: string;
|
|
20923
20947
|
}
|
|
20924
20948
|
/**
|
|
20925
20949
|
* @generated from protobuf message injective_rfq_rpc.ListSettlementResponse
|
|
@@ -23458,7 +23482,7 @@ type GrpcSubaccountBalance = SubaccountBalance$2;
|
|
|
23458
23482
|
type GrpcSubaccountPortfolio = SubaccountPortfolio$1;
|
|
23459
23483
|
type GrpcSubaccountBalanceTransfer = SubaccountBalanceTransfer;
|
|
23460
23484
|
//#endregion
|
|
23461
|
-
//#region ../../node_modules/.pnpm/@injectivelabs+indexer-proto-ts-v2@1.18.
|
|
23485
|
+
//#region ../../node_modules/.pnpm/@injectivelabs+indexer-proto-ts-v2@1.18.10/node_modules/@injectivelabs/indexer-proto-ts-v2/generated/injective_trading_rpc_pb.d.ts
|
|
23462
23486
|
/**
|
|
23463
23487
|
* @generated from protobuf message injective_trading_rpc.ListTradingStrategiesResponse
|
|
23464
23488
|
*/
|
|
@@ -24470,6 +24494,8 @@ interface RFQQuoteType {
|
|
|
24470
24494
|
takerDirection: string;
|
|
24471
24495
|
contractAddress: string;
|
|
24472
24496
|
transactionTime: number;
|
|
24497
|
+
makerSubaccountNonce: number;
|
|
24498
|
+
minFillQuantity: string;
|
|
24473
24499
|
}
|
|
24474
24500
|
interface RFQProcessedQuoteType {
|
|
24475
24501
|
error: string;
|
|
@@ -24493,6 +24519,8 @@ interface RFQProcessedQuoteType {
|
|
|
24493
24519
|
contractAddress: string;
|
|
24494
24520
|
transactionTime: number;
|
|
24495
24521
|
executedQuantity: string;
|
|
24522
|
+
makerSubaccountNonce: number;
|
|
24523
|
+
minFillQuantity: string;
|
|
24496
24524
|
}
|
|
24497
24525
|
interface RFQSettlementLimitActionType {
|
|
24498
24526
|
price: string;
|
|
@@ -24621,7 +24649,7 @@ interface QuantityAndFees {
|
|
|
24621
24649
|
resultQuantity: string;
|
|
24622
24650
|
}
|
|
24623
24651
|
//#endregion
|
|
24624
|
-
//#region ../../node_modules/.pnpm/@injectivelabs+indexer-proto-ts-v2@1.18.
|
|
24652
|
+
//#region ../../node_modules/.pnpm/@injectivelabs+indexer-proto-ts-v2@1.18.10/node_modules/@injectivelabs/indexer-proto-ts-v2/generated/injective_spot_exchange_rpc_pb.d.ts
|
|
24625
24653
|
/**
|
|
24626
24654
|
* @generated from protobuf message injective_spot_exchange_rpc.MarketsResponse
|
|
24627
24655
|
*/
|
|
@@ -25777,7 +25805,7 @@ type GrpcSpotLimitOrder = SpotLimitOrder$1;
|
|
|
25777
25805
|
type GrpcSpotOrderHistory = SpotOrderHistory$1;
|
|
25778
25806
|
type GrpcAtomicSwap = AtomicSwap$1;
|
|
25779
25807
|
//#endregion
|
|
25780
|
-
//#region ../../node_modules/.pnpm/@injectivelabs+indexer-proto-ts-v2@1.18.
|
|
25808
|
+
//#region ../../node_modules/.pnpm/@injectivelabs+indexer-proto-ts-v2@1.18.10/node_modules/@injectivelabs/indexer-proto-ts-v2/generated/injective_oracle_rpc_pb.d.ts
|
|
25781
25809
|
/**
|
|
25782
25810
|
* @generated from protobuf message injective_oracle_rpc.OracleListResponse
|
|
25783
25811
|
*/
|
|
@@ -25906,7 +25934,7 @@ declare const StreamPricesByMarketsResponse = new StreamPricesByMarketsResponse$
|
|
|
25906
25934
|
type GrpcOracle = Oracle$1;
|
|
25907
25935
|
interface Oracle extends GrpcOracle {}
|
|
25908
25936
|
//#endregion
|
|
25909
|
-
//#region ../../node_modules/.pnpm/@injectivelabs+indexer-proto-ts-v2@1.18.
|
|
25937
|
+
//#region ../../node_modules/.pnpm/@injectivelabs+indexer-proto-ts-v2@1.18.10/node_modules/@injectivelabs/indexer-proto-ts-v2/generated/injective_auction_rpc_pb.d.ts
|
|
25910
25938
|
/**
|
|
25911
25939
|
* @generated from protobuf message injective_auction_rpc.AuctionEndpointResponse
|
|
25912
25940
|
*/
|
|
@@ -26403,7 +26431,7 @@ type GrpcAccountAuctionV2 = AccountAuctionV2$1;
|
|
|
26403
26431
|
type GrpcAuctionContract = AuctionContract$1;
|
|
26404
26432
|
type StreamBidsResponse = StreamBidsResponse$1;
|
|
26405
26433
|
//#endregion
|
|
26406
|
-
//#region ../../node_modules/.pnpm/@injectivelabs+indexer-proto-ts-v2@1.18.
|
|
26434
|
+
//#region ../../node_modules/.pnpm/@injectivelabs+indexer-proto-ts-v2@1.18.10/node_modules/@injectivelabs/indexer-proto-ts-v2/generated/injective_archiver_rpc_pb.d.ts
|
|
26407
26435
|
/**
|
|
26408
26436
|
* @generated from protobuf message injective_archiver_rpc.BalanceResponse
|
|
26409
26437
|
*/
|
|
@@ -26925,7 +26953,7 @@ type GrpcHistoricalVolumes = HistoricalVolumes$1;
|
|
|
26925
26953
|
type GrpcPnlLeaderboard = PnlLeaderboardResponse | PnlLeaderboardFixedResolutionResponse;
|
|
26926
26954
|
type GrpcVolLeaderboard = VolLeaderboardResponse | VolLeaderboardFixedResolutionResponse;
|
|
26927
26955
|
//#endregion
|
|
26928
|
-
//#region ../../node_modules/.pnpm/@injectivelabs+indexer-proto-ts-v2@1.18.
|
|
26956
|
+
//#region ../../node_modules/.pnpm/@injectivelabs+indexer-proto-ts-v2@1.18.10/node_modules/@injectivelabs/indexer-proto-ts-v2/generated/injective_referral_rpc_pb.d.ts
|
|
26929
26957
|
/**
|
|
26930
26958
|
* @generated from protobuf message injective_referral_rpc.GetReferrerDetailsResponse
|
|
26931
26959
|
*/
|
|
@@ -27056,7 +27084,7 @@ interface ReferralDetails {
|
|
|
27056
27084
|
invitees: ReferralInvitee[];
|
|
27057
27085
|
}
|
|
27058
27086
|
//#endregion
|
|
27059
|
-
//#region ../../node_modules/.pnpm/@injectivelabs+indexer-proto-ts-v2@1.18.
|
|
27087
|
+
//#region ../../node_modules/.pnpm/@injectivelabs+indexer-proto-ts-v2@1.18.10/node_modules/@injectivelabs/indexer-proto-ts-v2/generated/injective_campaign_rpc_pb.d.ts
|
|
27060
27088
|
/**
|
|
27061
27089
|
* @generated from protobuf message injective_campaign_rpc.RankingResponse
|
|
27062
27090
|
*/
|
|
@@ -27893,7 +27921,7 @@ interface AllSpotMarketSummaryResponse {
|
|
|
27893
27921
|
data: AllChronosSpotMarketSummary[];
|
|
27894
27922
|
}
|
|
27895
27923
|
//#endregion
|
|
27896
|
-
//#region ../../node_modules/.pnpm/@injectivelabs+indexer-proto-ts-v2@1.18.
|
|
27924
|
+
//#region ../../node_modules/.pnpm/@injectivelabs+indexer-proto-ts-v2@1.18.10/node_modules/@injectivelabs/indexer-proto-ts-v2/generated/injective_megavault_rpc_pb.d.ts
|
|
27897
27925
|
/**
|
|
27898
27926
|
* @generated from protobuf message injective_megavault_rpc.GetVaultResponse
|
|
27899
27927
|
*/
|
|
@@ -29012,7 +29040,7 @@ interface IncentivesCampaign {
|
|
|
29012
29040
|
subaccountIdSuffix: string;
|
|
29013
29041
|
}
|
|
29014
29042
|
//#endregion
|
|
29015
|
-
//#region ../../node_modules/.pnpm/@injectivelabs+indexer-proto-ts-v2@1.18.
|
|
29043
|
+
//#region ../../node_modules/.pnpm/@injectivelabs+indexer-proto-ts-v2@1.18.10/node_modules/@injectivelabs/indexer-proto-ts-v2/generated/injective_insurance_rpc_pb.d.ts
|
|
29016
29044
|
/**
|
|
29017
29045
|
* @generated from protobuf message injective_insurance_rpc.FundsResponse
|
|
29018
29046
|
*/
|
|
@@ -29274,7 +29302,7 @@ interface InsuranceFundCreateParams {
|
|
|
29274
29302
|
type GrpcIndexerInsuranceFund = InsuranceFund$2;
|
|
29275
29303
|
type GrpcIndexerRedemptionSchedule = RedemptionSchedule;
|
|
29276
29304
|
//#endregion
|
|
29277
|
-
//#region ../../node_modules/.pnpm/@injectivelabs+indexer-proto-ts-v2@1.18.
|
|
29305
|
+
//#region ../../node_modules/.pnpm/@injectivelabs+indexer-proto-ts-v2@1.18.10/node_modules/@injectivelabs/indexer-proto-ts-v2/generated/injective_derivative_exchange_rpc_pb.d.ts
|
|
29278
29306
|
/**
|
|
29279
29307
|
* @generated from protobuf message injective_derivative_exchange_rpc.MarketsResponse
|
|
29280
29308
|
*/
|
|
@@ -31356,7 +31384,7 @@ interface BankTransferFromExplorerApiResponse {
|
|
|
31356
31384
|
block_timestamp: string;
|
|
31357
31385
|
}
|
|
31358
31386
|
//#endregion
|
|
31359
|
-
//#region ../../node_modules/.pnpm/@injectivelabs+indexer-proto-ts-v2@1.18.
|
|
31387
|
+
//#region ../../node_modules/.pnpm/@injectivelabs+indexer-proto-ts-v2@1.18.10/node_modules/@injectivelabs/indexer-proto-ts-v2/generated/injective_tc_derivatives_rpc_pb.d.ts
|
|
31360
31388
|
/**
|
|
31361
31389
|
* @generated from protobuf message injective_tc_derivatives_rpc.OrdersHistoryResponse
|
|
31362
31390
|
*/
|
|
@@ -32118,26 +32146,27 @@ interface TcDerivativePosition {
|
|
|
32118
32146
|
effectiveCumulativeFundingEntry: string;
|
|
32119
32147
|
}
|
|
32120
32148
|
interface TcDerivativeLimitOrder {
|
|
32121
|
-
|
|
32122
|
-
orderSide: string;
|
|
32123
|
-
marketId: string;
|
|
32124
|
-
subaccountId: string;
|
|
32125
|
-
isReduceOnly: boolean;
|
|
32126
|
-
margin: string;
|
|
32149
|
+
cid: string;
|
|
32127
32150
|
price: string;
|
|
32128
|
-
quantity: string;
|
|
32129
|
-
unfilledQuantity: string;
|
|
32130
|
-
triggerPrice: string;
|
|
32131
|
-
feeRecipient: string;
|
|
32132
32151
|
state: string;
|
|
32152
|
+
margin: string;
|
|
32153
|
+
marketId: string;
|
|
32154
|
+
quantity: string;
|
|
32155
|
+
orderHash: string;
|
|
32156
|
+
orderSide: string;
|
|
32133
32157
|
createdAt: number;
|
|
32134
32158
|
updatedAt: number;
|
|
32135
|
-
orderNumber: number;
|
|
32136
32159
|
orderType: string;
|
|
32137
|
-
isConditional: boolean;
|
|
32138
32160
|
triggerAt: number;
|
|
32139
|
-
|
|
32161
|
+
orderNumber: number;
|
|
32162
|
+
subaccountId: string;
|
|
32163
|
+
triggerPrice: string;
|
|
32164
|
+
feeRecipient: string;
|
|
32165
|
+
isReduceOnly: boolean;
|
|
32140
32166
|
executionType: string;
|
|
32167
|
+
isConditional: boolean;
|
|
32168
|
+
placedOrderHash: string;
|
|
32169
|
+
unfilledQuantity: string;
|
|
32141
32170
|
}
|
|
32142
32171
|
interface TcDerivativesOrdersHistoryResponse {
|
|
32143
32172
|
next: string[];
|
|
@@ -32206,7 +32235,7 @@ interface ChronosLeaderboardResponse {
|
|
|
32206
32235
|
data: ChronosLeaderboard;
|
|
32207
32236
|
}
|
|
32208
32237
|
//#endregion
|
|
32209
|
-
//#region ../../node_modules/.pnpm/@injectivelabs+indexer-proto-ts-v2@1.18.
|
|
32238
|
+
//#region ../../node_modules/.pnpm/@injectivelabs+indexer-proto-ts-v2@1.18.10/node_modules/@injectivelabs/indexer-proto-ts-v2/generated/injective_portfolio_rpc_pb.d.ts
|
|
32210
32239
|
/**
|
|
32211
32240
|
* @generated from protobuf message injective_portfolio_rpc.AccountPortfolioResponse
|
|
32212
32241
|
*/
|
|
@@ -33083,7 +33112,7 @@ declare class IndexerGrpcMitoApi extends BaseIndexerGrpcConsumer {
|
|
|
33083
33112
|
}>;
|
|
33084
33113
|
}
|
|
33085
33114
|
//#endregion
|
|
33086
|
-
//#region ../../node_modules/.pnpm/@injectivelabs+indexer-proto-ts-v2@1.18.
|
|
33115
|
+
//#region ../../node_modules/.pnpm/@injectivelabs+indexer-proto-ts-v2@1.18.10/node_modules/@injectivelabs/indexer-proto-ts-v2/generated/injective_meta_rpc_pb.d.ts
|
|
33087
33116
|
/**
|
|
33088
33117
|
* @generated from protobuf message injective_meta_rpc.PingResponse
|
|
33089
33118
|
*/
|
|
@@ -33295,7 +33324,7 @@ declare class IndexerGrpcOracleApi extends BaseIndexerGrpcConsumer {
|
|
|
33295
33324
|
}): Promise<PriceResponse>;
|
|
33296
33325
|
}
|
|
33297
33326
|
//#endregion
|
|
33298
|
-
//#region ../../node_modules/.pnpm/@injectivelabs+indexer-proto-ts-v2@1.18.
|
|
33327
|
+
//#region ../../node_modules/.pnpm/@injectivelabs+indexer-proto-ts-v2@1.18.10/node_modules/@injectivelabs/indexer-proto-ts-v2/generated/injective_exchange_rpc_pb.d.ts
|
|
33299
33328
|
/**
|
|
33300
33329
|
* @generated from protobuf message injective_exchange_rpc.PrepareTxResponse
|
|
33301
33330
|
*/
|
|
@@ -34420,12 +34449,14 @@ declare class IndexerGrpcTcDerivativesApi extends BaseIndexerGrpcConsumer {
|
|
|
34420
34449
|
perPage?: number;
|
|
34421
34450
|
marketId?: string;
|
|
34422
34451
|
direction?: string;
|
|
34452
|
+
accountAddress?: string;
|
|
34423
34453
|
}): Promise<TcDerivativesOrdersHistoryResponse>;
|
|
34424
34454
|
fetchTradesHistory(params?: {
|
|
34425
34455
|
token?: string;
|
|
34426
34456
|
perPage?: number;
|
|
34427
34457
|
marketId?: string;
|
|
34428
34458
|
direction?: string;
|
|
34459
|
+
accountAddress?: string;
|
|
34429
34460
|
}): Promise<TcDerivativeTradesResponse>;
|
|
34430
34461
|
fetchPositions(params?: {
|
|
34431
34462
|
token?: string;
|
|
@@ -34440,6 +34471,7 @@ declare class IndexerGrpcTcDerivativesApi extends BaseIndexerGrpcConsumer {
|
|
|
34440
34471
|
perPage?: number;
|
|
34441
34472
|
marketId?: string;
|
|
34442
34473
|
direction?: string;
|
|
34474
|
+
accountAddress?: string;
|
|
34443
34475
|
}): Promise<TcDerivativeOrdersResponse>;
|
|
34444
34476
|
}
|
|
34445
34477
|
//#endregion
|
|
@@ -36902,16 +36934,20 @@ declare class IndexerGrpcTcDerivativesStreamV2 {
|
|
|
36902
36934
|
constructor(endpoint: string, metadata?: Record<string, string>);
|
|
36903
36935
|
streamOrdersHistory({
|
|
36904
36936
|
marketId,
|
|
36937
|
+
accountAddress,
|
|
36905
36938
|
callback
|
|
36906
36939
|
}: {
|
|
36907
36940
|
marketId?: string;
|
|
36941
|
+
accountAddress?: string;
|
|
36908
36942
|
callback: TcDerivativeOrderHistoryStreamCallbackV2;
|
|
36909
36943
|
}): StreamSubscription;
|
|
36910
36944
|
streamTrades({
|
|
36911
36945
|
marketId,
|
|
36946
|
+
accountAddress,
|
|
36912
36947
|
callback
|
|
36913
36948
|
}: {
|
|
36914
36949
|
marketId?: string;
|
|
36950
|
+
accountAddress?: string;
|
|
36915
36951
|
callback: TcDerivativeTradesStreamCallbackV2;
|
|
36916
36952
|
}): StreamSubscription;
|
|
36917
36953
|
streamPositions({
|
|
@@ -36925,9 +36961,11 @@ declare class IndexerGrpcTcDerivativesStreamV2 {
|
|
|
36925
36961
|
}): StreamSubscription;
|
|
36926
36962
|
streamOrders({
|
|
36927
36963
|
marketId,
|
|
36964
|
+
accountAddress,
|
|
36928
36965
|
callback
|
|
36929
36966
|
}: {
|
|
36930
36967
|
marketId?: string;
|
|
36968
|
+
accountAddress?: string;
|
|
36931
36969
|
callback: TcDerivativeOrdersStreamCallbackV2;
|
|
36932
36970
|
}): StreamSubscription;
|
|
36933
36971
|
}
|
package/dist/cjs/index.cjs
CHANGED
|
@@ -16,7 +16,7 @@ require('./BaseRestConsumer-CRkyjiSo.cjs');
|
|
|
16
16
|
const require_ExecArgNeptuneWithdraw = require('./ExecArgNeptuneWithdraw-8SOWKjdg.cjs');
|
|
17
17
|
const require_AbacusGrpcApi = require('./AbacusGrpcApi-Da2mxc3z.cjs');
|
|
18
18
|
const require_IndexerGrpcWeb3GwApi = require('./IndexerGrpcWeb3GwApi-BjMwVPdm.cjs');
|
|
19
|
-
const require_StreamManagerV2 = require('./StreamManagerV2-
|
|
19
|
+
const require_StreamManagerV2 = require('./StreamManagerV2-ClyLDWzY.cjs');
|
|
20
20
|
const require_types = require('./types-BSrt7JzM.cjs');
|
|
21
21
|
const require_TcAbacusGrpcApi = require('./TcAbacusGrpcApi-QxfMHhQI.cjs');
|
|
22
22
|
const require_tx = require('./tx-DD4X9BrB.cjs');
|