@injectivelabs/sdk-ts 1.19.1 → 1.19.3
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-J45IvgwP.cjs → StreamManagerV2-Ck3_o9BC.cjs} +159 -2
- package/dist/cjs/client/chain.d.cts +1 -1
- package/dist/cjs/client/indexer.cjs +1 -1
- package/dist/cjs/client/indexer.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-D0DwgN6e.d.cts → index-UE9sXMcw.d.cts} +1134 -181
- 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/{StreamManagerV2-CukGXKvI.js → StreamManagerV2-BFJfwh0c.js} +159 -2
- package/dist/esm/client/chain.d.ts +1 -1
- package/dist/esm/client/indexer.d.ts +2 -2
- 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-Cbsz6FZz.d.ts → index-Hj2qOUud.d.ts} +1134 -181
- 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
|
@@ -501,6 +501,7 @@ var IndexerGrpcRfqTransformer = class IndexerGrpcRfqTransformer {
|
|
|
501
501
|
marketId: grpcQuote.marketId,
|
|
502
502
|
quantity: grpcQuote.quantity,
|
|
503
503
|
clientId: grpcQuote.clientId,
|
|
504
|
+
signMode: grpcQuote.signMode,
|
|
504
505
|
signature: grpcQuote.signature,
|
|
505
506
|
rfqId: Number(grpcQuote.rfqId),
|
|
506
507
|
height: Number(grpcQuote.height),
|
|
@@ -508,6 +509,7 @@ var IndexerGrpcRfqTransformer = class IndexerGrpcRfqTransformer {
|
|
|
508
509
|
createdAt: Number(grpcQuote.createdAt),
|
|
509
510
|
updatedAt: Number(grpcQuote.updatedAt),
|
|
510
511
|
eventTime: Number(grpcQuote.eventTime),
|
|
512
|
+
evmChainId: Number(grpcQuote.evmChainId),
|
|
511
513
|
takerDirection: grpcQuote.takerDirection,
|
|
512
514
|
contractAddress: grpcQuote.contractAddress,
|
|
513
515
|
minFillQuantity: grpcQuote.minFillQuantity,
|
|
@@ -524,6 +526,7 @@ var IndexerGrpcRfqTransformer = class IndexerGrpcRfqTransformer {
|
|
|
524
526
|
cid: grpcSettlement.cid,
|
|
525
527
|
taker: grpcSettlement.taker,
|
|
526
528
|
margin: grpcSettlement.margin,
|
|
529
|
+
txHash: grpcSettlement.txHash,
|
|
527
530
|
marketId: grpcSettlement.marketId,
|
|
528
531
|
quantity: grpcSettlement.quantity,
|
|
529
532
|
rfqId: Number(grpcSettlement.rfqId),
|
|
@@ -553,6 +556,7 @@ var IndexerGrpcRfqTransformer = class IndexerGrpcRfqTransformer {
|
|
|
553
556
|
chainId: grpcProcessedQuote.chainId,
|
|
554
557
|
marketId: grpcProcessedQuote.marketId,
|
|
555
558
|
quantity: grpcProcessedQuote.quantity,
|
|
559
|
+
signMode: grpcProcessedQuote.signMode,
|
|
556
560
|
signature: grpcProcessedQuote.signature,
|
|
557
561
|
clientId: grpcProcessedQuote.clientId,
|
|
558
562
|
rfqId: Number(grpcProcessedQuote.rfqId),
|
|
@@ -561,6 +565,7 @@ var IndexerGrpcRfqTransformer = class IndexerGrpcRfqTransformer {
|
|
|
561
565
|
createdAt: Number(grpcProcessedQuote.createdAt),
|
|
562
566
|
updatedAt: Number(grpcProcessedQuote.updatedAt),
|
|
563
567
|
eventTime: Number(grpcProcessedQuote.eventTime),
|
|
568
|
+
evmChainId: Number(grpcProcessedQuote.evmChainId),
|
|
564
569
|
executedMargin: grpcProcessedQuote.executedMargin,
|
|
565
570
|
takerDirection: grpcProcessedQuote.takerDirection,
|
|
566
571
|
contractAddress: grpcProcessedQuote.contractAddress,
|
|
@@ -583,6 +588,7 @@ var IndexerGrpcRfqTransformer = class IndexerGrpcRfqTransformer {
|
|
|
583
588
|
static grpcConditionalOrderToConditionalOrder(grpcOrder) {
|
|
584
589
|
return {
|
|
585
590
|
error: grpcOrder.error,
|
|
591
|
+
txHash: grpcOrder.txHash,
|
|
586
592
|
margin: grpcOrder.margin,
|
|
587
593
|
status: grpcOrder.status,
|
|
588
594
|
marketId: grpcOrder.marketId,
|
|
@@ -596,6 +602,8 @@ var IndexerGrpcRfqTransformer = class IndexerGrpcRfqTransformer {
|
|
|
596
602
|
updatedAt: Number(grpcOrder.updatedAt),
|
|
597
603
|
expiresAt: Number(grpcOrder.expiresAt),
|
|
598
604
|
eventTime: Number(grpcOrder.eventTime),
|
|
605
|
+
terminalAt: Number(grpcOrder.terminalAt),
|
|
606
|
+
evmChainId: Number(grpcOrder.evmChainId),
|
|
599
607
|
requestAddress: grpcOrder.requestAddress,
|
|
600
608
|
minTotalFillQuantity: grpcOrder.minTotalFillQuantity
|
|
601
609
|
};
|
|
@@ -1787,6 +1795,7 @@ var IndexerGrpcRfqGwTransformer = class IndexerGrpcRfqGwTransformer {
|
|
|
1787
1795
|
pubKeyType: response.pubKeyType,
|
|
1788
1796
|
feePayerSig: response.feePayerSig,
|
|
1789
1797
|
quotesWaitMs: Number(response.quotesWaitMs),
|
|
1798
|
+
expiredQuotesCount: Number(response.expiredQuotesCount),
|
|
1790
1799
|
autosignAccountNumber: Number(response.autosignAccountNumber),
|
|
1791
1800
|
feePayerAccountNumber: Number(response.feePayerAccountNumber),
|
|
1792
1801
|
autosignAccountSequence: Number(response.autosignAccountSequence),
|
|
@@ -1795,6 +1804,56 @@ var IndexerGrpcRfqGwTransformer = class IndexerGrpcRfqGwTransformer {
|
|
|
1795
1804
|
quotes: response.quotes.map(IndexerGrpcRfqGwTransformer.grpcPrepareQuoteResultToPrepareQuoteResult)
|
|
1796
1805
|
};
|
|
1797
1806
|
}
|
|
1807
|
+
static prepareResponseToResponse(response) {
|
|
1808
|
+
return {
|
|
1809
|
+
tx: response.tx,
|
|
1810
|
+
feePayer: response.feePayer,
|
|
1811
|
+
signMode: response.signMode,
|
|
1812
|
+
rfqId: Number(response.rfqId),
|
|
1813
|
+
pubKeyType: response.pubKeyType,
|
|
1814
|
+
feePayerSig: response.feePayerSig,
|
|
1815
|
+
quotesWaitMs: Number(response.quotesWaitMs),
|
|
1816
|
+
expiredQuotesCount: Number(response.expiredQuotesCount),
|
|
1817
|
+
takerAccountNumber: Number(response.takerAccountNumber),
|
|
1818
|
+
takerAccountSequence: Number(response.takerAccountSequence),
|
|
1819
|
+
feePayerAccountNumber: Number(response.feePayerAccountNumber),
|
|
1820
|
+
feePayerAccountSequence: Number(response.feePayerAccountSequence),
|
|
1821
|
+
feePayerPubKey: response.feePayerPubKey ? IndexerGrpcRfqGwTransformer.grpcCosmosPubKeyToCosmosPubKey(response.feePayerPubKey) : void 0,
|
|
1822
|
+
quotes: response.quotes.map(IndexerGrpcRfqGwTransformer.grpcPrepareQuoteResultToPrepareQuoteResult)
|
|
1823
|
+
};
|
|
1824
|
+
}
|
|
1825
|
+
static prepareEip712ResponseToResponse(response) {
|
|
1826
|
+
return {
|
|
1827
|
+
data: response.data,
|
|
1828
|
+
feePayer: response.feePayer,
|
|
1829
|
+
signMode: response.signMode,
|
|
1830
|
+
rfqId: Number(response.rfqId),
|
|
1831
|
+
pubKeyType: response.pubKeyType,
|
|
1832
|
+
feePayerSig: response.feePayerSig,
|
|
1833
|
+
quotesWaitMs: Number(response.quotesWaitMs),
|
|
1834
|
+
expiredQuotesCount: Number(response.expiredQuotesCount),
|
|
1835
|
+
takerAccountNumber: Number(response.takerAccountNumber),
|
|
1836
|
+
takerAccountSequence: Number(response.takerAccountSequence),
|
|
1837
|
+
feePayerPubKey: response.feePayerPubKey ? IndexerGrpcRfqGwTransformer.grpcCosmosPubKeyToCosmosPubKey(response.feePayerPubKey) : void 0,
|
|
1838
|
+
quotes: response.quotes.map(IndexerGrpcRfqGwTransformer.grpcPrepareQuoteResultToPrepareQuoteResult)
|
|
1839
|
+
};
|
|
1840
|
+
}
|
|
1841
|
+
static prepareEip712AutoSignResponseToResponse(response) {
|
|
1842
|
+
return {
|
|
1843
|
+
data: response.data,
|
|
1844
|
+
feePayer: response.feePayer,
|
|
1845
|
+
signMode: response.signMode,
|
|
1846
|
+
rfqId: Number(response.rfqId),
|
|
1847
|
+
pubKeyType: response.pubKeyType,
|
|
1848
|
+
feePayerSig: response.feePayerSig,
|
|
1849
|
+
quotesWaitMs: Number(response.quotesWaitMs),
|
|
1850
|
+
expiredQuotesCount: Number(response.expiredQuotesCount),
|
|
1851
|
+
autosignAccountNumber: Number(response.autosignAccountNumber),
|
|
1852
|
+
autosignAccountSequence: Number(response.autosignAccountSequence),
|
|
1853
|
+
feePayerPubKey: response.feePayerPubKey ? IndexerGrpcRfqGwTransformer.grpcCosmosPubKeyToCosmosPubKey(response.feePayerPubKey) : void 0,
|
|
1854
|
+
quotes: response.quotes.map(IndexerGrpcRfqGwTransformer.grpcPrepareQuoteResultToPrepareQuoteResult)
|
|
1855
|
+
};
|
|
1856
|
+
}
|
|
1798
1857
|
};
|
|
1799
1858
|
|
|
1800
1859
|
//#endregion
|
|
@@ -3858,6 +3917,7 @@ var IndexerGrpcTcDerivativesTransformer = class IndexerGrpcTcDerivativesTransfor
|
|
|
3858
3917
|
isLiquidation: trade.isLiquidation,
|
|
3859
3918
|
executedAt: Number(trade.executedAt),
|
|
3860
3919
|
positionIsLong: trade.positionIsLong,
|
|
3920
|
+
isPositionClosed: trade.isPositionClosed,
|
|
3861
3921
|
positionEntryPrice: trade.positionEntryPrice,
|
|
3862
3922
|
positionOpenedAt: Number(trade.positionOpenedAt),
|
|
3863
3923
|
executionSide: trade.executionSide,
|
|
@@ -4058,7 +4118,7 @@ var IndexerGrpcRFQApi = class extends require_BaseIndexerGrpcConsumer.BaseIndexe
|
|
|
4058
4118
|
const response = await this.executeGrpcCall(request, this.client.listSettlement.bind(this.client));
|
|
4059
4119
|
return IndexerGrpcRfqTransformer.listSettlementsResponseToSettlements(response);
|
|
4060
4120
|
}
|
|
4061
|
-
async createConditionalOrder({ order, signature }) {
|
|
4121
|
+
async createConditionalOrder({ order, signMode, signature, evmChainId }) {
|
|
4062
4122
|
const conditionalOrderInput = __injectivelabs_indexer_proto_ts_v2_generated_injective_rfq_rpc_pb.ConditionalOrderInput.create();
|
|
4063
4123
|
conditionalOrderInput.taker = order.taker;
|
|
4064
4124
|
conditionalOrderInput.rfqId = order.rfqId;
|
|
@@ -4083,6 +4143,8 @@ var IndexerGrpcRFQApi = class extends require_BaseIndexerGrpcConsumer.BaseIndexe
|
|
|
4083
4143
|
const request = __injectivelabs_indexer_proto_ts_v2_generated_injective_rfq_rpc_pb.CreateConditionalOrderRequest.create();
|
|
4084
4144
|
request.order = conditionalOrderInput;
|
|
4085
4145
|
request.signature = signature;
|
|
4146
|
+
request.signMode = signMode;
|
|
4147
|
+
request.evmChainId = evmChainId;
|
|
4086
4148
|
const response = await this.executeGrpcCall(request, this.client.createConditionalOrder.bind(this.client));
|
|
4087
4149
|
return { order: response.order ? IndexerGrpcRfqTransformer.grpcConditionalOrderToConditionalOrder(response.order) : void 0 };
|
|
4088
4150
|
}
|
|
@@ -4512,6 +4574,100 @@ var IndexerGrpcRfqGwApi = class extends require_BaseIndexerGrpcConsumer.BaseInde
|
|
|
4512
4574
|
const response = await this.executeGrpcCall(requestMessage, this.client.prepareAutoSign.bind(this.client), { noRetry: true });
|
|
4513
4575
|
return IndexerGrpcRfqGwTransformer.prepareAutoSignResponseToResponse(response);
|
|
4514
4576
|
}
|
|
4577
|
+
async fetchPrepare({ cid, margin, expiry, clientId, marketId, quantity, direction, worstPrice, takerPubKey, takerAddress, unfilledAction, subaccountNonce, quotesWaitTimeMs, takerAccountNumber, feePayerAccountNumber, takerAccountSequence, feePayerAccountSequence }) {
|
|
4578
|
+
const request = __injectivelabs_indexer_proto_ts_v2_generated_injective_rfq_gw_rpc_pb.RFQGwPrepareRequestType.create();
|
|
4579
|
+
request.clientId = clientId;
|
|
4580
|
+
request.marketId = marketId;
|
|
4581
|
+
request.direction = direction;
|
|
4582
|
+
request.margin = margin;
|
|
4583
|
+
request.quantity = quantity;
|
|
4584
|
+
request.worstPrice = worstPrice;
|
|
4585
|
+
request.takerAddress = takerAddress;
|
|
4586
|
+
request.takerPubKey = takerPubKey;
|
|
4587
|
+
if (takerAccountNumber !== void 0) request.takerAccountNumber = BigInt(takerAccountNumber);
|
|
4588
|
+
if (takerAccountSequence !== void 0) request.takerAccountSequence = BigInt(takerAccountSequence);
|
|
4589
|
+
if (feePayerAccountNumber !== void 0) request.feePayerAccountNumber = BigInt(feePayerAccountNumber);
|
|
4590
|
+
if (feePayerAccountSequence !== void 0) request.feePayerAccountSequence = BigInt(feePayerAccountSequence);
|
|
4591
|
+
if (expiry !== void 0) request.expiry = BigInt(expiry);
|
|
4592
|
+
if (quotesWaitTimeMs !== void 0) request.quotesWaitTimeMs = BigInt(quotesWaitTimeMs);
|
|
4593
|
+
if (unfilledAction) {
|
|
4594
|
+
const action = __injectivelabs_indexer_proto_ts_v2_generated_injective_rfq_gw_rpc_pb.RFQSettlementUnfilledActionType.create();
|
|
4595
|
+
if (unfilledAction.limit) action.limit = unfilledAction.limit;
|
|
4596
|
+
if (unfilledAction.market) action.market = unfilledAction.market;
|
|
4597
|
+
request.unfilledAction = action;
|
|
4598
|
+
}
|
|
4599
|
+
if (subaccountNonce !== void 0) request.subaccountNonce = subaccountNonce;
|
|
4600
|
+
if (cid) request.cid = cid;
|
|
4601
|
+
const requestMessage = __injectivelabs_indexer_proto_ts_v2_generated_injective_rfq_gw_rpc_pb.PrepareRequest.create();
|
|
4602
|
+
requestMessage.request = request;
|
|
4603
|
+
const response = await this.executeGrpcCall(requestMessage, this.client.prepare.bind(this.client), { noRetry: true });
|
|
4604
|
+
return IndexerGrpcRfqGwTransformer.prepareResponseToResponse(response);
|
|
4605
|
+
}
|
|
4606
|
+
async fetchPrepareEip712({ cid, gas, margin, expiry, clientId, marketId, quantity, direction, worstPrice, ethChainId, takerPubKey, takerAddress, eip712Wrapper, unfilledAction, subaccountNonce, quotesWaitTimeMs, takerAccountNumber, feePayerAccountNumber, takerAccountSequence, feePayerAccountSequence }) {
|
|
4607
|
+
const request = __injectivelabs_indexer_proto_ts_v2_generated_injective_rfq_gw_rpc_pb.RFQGwPrepareEip712RequestType.create();
|
|
4608
|
+
request.clientId = clientId;
|
|
4609
|
+
request.marketId = marketId;
|
|
4610
|
+
request.direction = direction;
|
|
4611
|
+
request.margin = margin;
|
|
4612
|
+
request.quantity = quantity;
|
|
4613
|
+
request.worstPrice = worstPrice;
|
|
4614
|
+
request.takerAddress = takerAddress;
|
|
4615
|
+
request.takerPubKey = takerPubKey;
|
|
4616
|
+
if (takerAccountNumber !== void 0) request.takerAccountNumber = BigInt(takerAccountNumber);
|
|
4617
|
+
if (takerAccountSequence !== void 0) request.takerAccountSequence = BigInt(takerAccountSequence);
|
|
4618
|
+
if (feePayerAccountNumber !== void 0) request.feePayerAccountNumber = BigInt(feePayerAccountNumber);
|
|
4619
|
+
if (feePayerAccountSequence !== void 0) request.feePayerAccountSequence = BigInt(feePayerAccountSequence);
|
|
4620
|
+
if (expiry !== void 0) request.expiry = BigInt(expiry);
|
|
4621
|
+
if (quotesWaitTimeMs !== void 0) request.quotesWaitTimeMs = BigInt(quotesWaitTimeMs);
|
|
4622
|
+
if (unfilledAction) {
|
|
4623
|
+
const action = __injectivelabs_indexer_proto_ts_v2_generated_injective_rfq_gw_rpc_pb.RFQSettlementUnfilledActionType.create();
|
|
4624
|
+
if (unfilledAction.limit) action.limit = unfilledAction.limit;
|
|
4625
|
+
if (unfilledAction.market) action.market = unfilledAction.market;
|
|
4626
|
+
request.unfilledAction = action;
|
|
4627
|
+
}
|
|
4628
|
+
if (subaccountNonce !== void 0) request.subaccountNonce = subaccountNonce;
|
|
4629
|
+
if (cid) request.cid = cid;
|
|
4630
|
+
if (ethChainId !== void 0) request.ethChainId = BigInt(ethChainId);
|
|
4631
|
+
if (eip712Wrapper) request.eip712Wrapper = eip712Wrapper;
|
|
4632
|
+
if (gas !== void 0) request.gas = BigInt(gas);
|
|
4633
|
+
const requestMessage = __injectivelabs_indexer_proto_ts_v2_generated_injective_rfq_gw_rpc_pb.PrepareEip712Request.create();
|
|
4634
|
+
requestMessage.request = request;
|
|
4635
|
+
const response = await this.executeGrpcCall(requestMessage, this.client.prepareEip712.bind(this.client), { noRetry: true });
|
|
4636
|
+
return IndexerGrpcRfqGwTransformer.prepareEip712ResponseToResponse(response);
|
|
4637
|
+
}
|
|
4638
|
+
async fetchPrepareEip712AutoSign({ cid, gas, margin, expiry, clientId, marketId, quantity, direction, worstPrice, ethChainId, takerAddress, autosignPubKey, eip712Wrapper, unfilledAction, autosignAddress, subaccountNonce, quotesWaitTimeMs, autosignAccountNumber, feePayerAccountNumber, autosignAccountSequence, feePayerAccountSequence }) {
|
|
4639
|
+
const request = __injectivelabs_indexer_proto_ts_v2_generated_injective_rfq_gw_rpc_pb.RFQGwPrepareEip712AutoSignRequestType.create();
|
|
4640
|
+
request.clientId = clientId;
|
|
4641
|
+
request.marketId = marketId;
|
|
4642
|
+
request.direction = direction;
|
|
4643
|
+
request.margin = margin;
|
|
4644
|
+
request.quantity = quantity;
|
|
4645
|
+
request.worstPrice = worstPrice;
|
|
4646
|
+
request.autosignAddress = autosignAddress;
|
|
4647
|
+
request.autosignPubKey = autosignPubKey;
|
|
4648
|
+
if (autosignAccountNumber !== void 0) request.autosignAccountNumber = BigInt(autosignAccountNumber);
|
|
4649
|
+
if (autosignAccountSequence !== void 0) request.autosignAccountSequence = BigInt(autosignAccountSequence);
|
|
4650
|
+
if (feePayerAccountNumber !== void 0) request.feePayerAccountNumber = BigInt(feePayerAccountNumber);
|
|
4651
|
+
if (feePayerAccountSequence !== void 0) request.feePayerAccountSequence = BigInt(feePayerAccountSequence);
|
|
4652
|
+
if (takerAddress) request.takerAddress = takerAddress;
|
|
4653
|
+
if (expiry !== void 0) request.expiry = BigInt(expiry);
|
|
4654
|
+
if (quotesWaitTimeMs !== void 0) request.quotesWaitTimeMs = BigInt(quotesWaitTimeMs);
|
|
4655
|
+
if (unfilledAction) {
|
|
4656
|
+
const action = __injectivelabs_indexer_proto_ts_v2_generated_injective_rfq_gw_rpc_pb.RFQSettlementUnfilledActionType.create();
|
|
4657
|
+
if (unfilledAction.limit) action.limit = unfilledAction.limit;
|
|
4658
|
+
if (unfilledAction.market) action.market = unfilledAction.market;
|
|
4659
|
+
request.unfilledAction = action;
|
|
4660
|
+
}
|
|
4661
|
+
if (subaccountNonce !== void 0) request.subaccountNonce = subaccountNonce;
|
|
4662
|
+
if (cid) request.cid = cid;
|
|
4663
|
+
if (ethChainId !== void 0) request.ethChainId = BigInt(ethChainId);
|
|
4664
|
+
if (eip712Wrapper) request.eip712Wrapper = eip712Wrapper;
|
|
4665
|
+
if (gas !== void 0) request.gas = BigInt(gas);
|
|
4666
|
+
const requestMessage = __injectivelabs_indexer_proto_ts_v2_generated_injective_rfq_gw_rpc_pb.PrepareEip712AutoSignRequest.create();
|
|
4667
|
+
requestMessage.request = request;
|
|
4668
|
+
const response = await this.executeGrpcCall(requestMessage, this.client.prepareEip712AutoSign.bind(this.client), { noRetry: true });
|
|
4669
|
+
return IndexerGrpcRfqGwTransformer.prepareEip712AutoSignResponseToResponse(response);
|
|
4670
|
+
}
|
|
4515
4671
|
};
|
|
4516
4672
|
|
|
4517
4673
|
//#endregion
|
|
@@ -5433,7 +5589,7 @@ var IndexerGrpcTcDerivativesApi = class extends require_BaseIndexerGrpcConsumer.
|
|
|
5433
5589
|
return IndexerGrpcTcDerivativesTransformer.ordersHistoryResponseToOrdersHistory(response);
|
|
5434
5590
|
}
|
|
5435
5591
|
async fetchTradesHistory(params) {
|
|
5436
|
-
const { token, sortBy, endTime, perPage, marketId, startTime, direction, sortDirection, accountAddress } = params || {};
|
|
5592
|
+
const { token, sortBy, withPnl, endTime, perPage, marketId, startTime, direction, sortDirection, accountAddress } = params || {};
|
|
5437
5593
|
const request = __injectivelabs_indexer_proto_ts_v2_generated_injective_tc_derivatives_rpc_pb.TradesRequest.create();
|
|
5438
5594
|
if (marketId) request.marketIds = [marketId];
|
|
5439
5595
|
if (direction) request.direction = direction;
|
|
@@ -5442,6 +5598,7 @@ var IndexerGrpcTcDerivativesApi = class extends require_BaseIndexerGrpcConsumer.
|
|
|
5442
5598
|
if (token) request.token = token;
|
|
5443
5599
|
if (sortBy) request.sortBy = sortBy;
|
|
5444
5600
|
if (sortDirection) request.sortDirection = sortDirection;
|
|
5601
|
+
if (withPnl) request.withPnl = withPnl;
|
|
5445
5602
|
if (startTime !== void 0) request.startTime = BigInt(startTime);
|
|
5446
5603
|
if (endTime !== void 0) request.endTime = BigInt(endTime);
|
|
5447
5604
|
const response = await this.executeGrpcCall(request, this.client.trades.bind(this.client));
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import "../tx_pb-BGCQilBY.cjs";
|
|
2
2
|
import { st as OracleType } from "../index-C15wCMY6.cjs";
|
|
3
|
-
import { $_ as
|
|
3
|
+
import { $_ as GrpcOrderTypeMap, $g as OracleTypeMap, $h as GrpcPermissionPolicyStatusManagerCapability, $v as GovModuleStateParams, A as ChainGrpcAuctionApi, A_ as ExchangeParams, Ag as TokenPair, Ah as BaseAccountRestResponse, Av as ReDelegation, B as ChainGrpcAuthApi, B_ as GrpcChainPosition, Bg as CreateDerivativeMarketOrderAuthz, Bh as AuctionModuleStateParams, Bv as ContractCodeHistoryEntry, C as ChainGrpcInsuranceFundApi, C_ as CampaignRewardPool, Cg as GrpcTxFeesEipBaseFee, Ch as GrpcDistributionParams, Cv as GrpcUnbondingDelegation, D as ChainGrpcTendermintApi, D_ as ChainPosition, Dg as GrpcParams, Dh as DenomOwnersResponse, Dv as GrpcValidatorCommissionRates, E as ChainGrpcPermissionsApi, E_ as ChainDerivativePosition, Eg as TxFeesModuleStateParams, Eh as DenomBalance, Ev as GrpcValidatorCommission, F as ChainGrpcPeggyApi, F_ as GrpcCampaignRewardPool, Fg as BatchCreateDerivativeLimitOrdersAuthz, Fh as AuctionEventAuctionStart, Fv as ValidatorDescription, G_ as GrpcFeeDiscountAccountInfo, Gg as GrantAuthorization, Gh as GrpcAuctionEventAuctionStart, Gv as GoogleProtoBufAny, H as ChainGrpcIbcApi, H_ as GrpcDenomDecimals, Hg as CreateSpotMarketOrderAuthz, Hh as AuctionParams, Hv as ContractCodeHistoryOperationTypeMap, I as ChainGrpcAuthZApi, I_ as GrpcChainDerivativeMarket, Ig as BatchCreateSpotLimitOrdersAuthz, Ih as AuctionEventBid, Iv as AbsoluteTxPosition, J_ as GrpcFeeDiscountTierTTL, Jg as GrpcInsuranceFund, Jh as GrpcAuctionParams, Jv as GrpcContractCodeHistoryEntry, K_ as GrpcFeeDiscountSchedule, Kg as GrantAuthorizationWithDecodedAuthorization, Kh as GrpcAuctionEventBid, Kv as GrpcAbsoluteTxPosition, L as ChainGrpcWasmApi, L_ as GrpcChainDerivativePosition, Lg as CancelDerivativeOrderAuthz, Lh as AuctionLastAuctionResult, Lv as CodeInfoResponse, M as ChainGrpcOracleApi, M_ as FeeDiscountSchedule, Mg as PeggyModuleParams, Mh as AuctionBid, Mv as UnBondingDelegation, N as ChainGrpcErc20Api, N_ as FeeDiscountTierInfo, Ng as BatchCancelDerivativeOrdersAuthz, Nh as AuctionCurrentBasket, Nv as Validator, O as ChainGrpcExchangeApi, O_ as DepositProposalParams, Og as GrpcTokenPair, Oh as AccountResponse, Ov as GrpcValidatorDescription, P as ChainGrpcWasmXApi, P_ as FeeDiscountTierTTL, Pg as BatchCancelSpotOrdersAuthz, Ph as AuctionEventAuctionResult, Pv as ValidatorCommission, Q_ as GrpcOrderType, Qg as InsuranceModuleParams, Qh as GrpcPermissionPolicyStatus, Qv as grpcContractInfo, R as ChainGrpcMintApi, R_ as GrpcChainFullDerivativeMarket, Rg as CancelSpotOrderAuthz, Rh as AuctionModuleParams, Rv as ContractAccountBalance, S as ChainRestBankApi, S_ as GrpcEvmParams, Sg as OracleModuleParams, Sh as GrpcDelegationDelegatorReward, Sv as GrpcStakingParams, T as ChainGrpcDistributionApi, T_ as ChainDenomMinNotional, Tg as TxFeesEipBaseFee, Th as BalancesResponse, Tv as GrpcValidator, U as ChainGrpcGovApi, U_ as GrpcDenomMinNotional, Ug as GenericAuthorization, Uh as GrpcAuctionBid, Uv as ContractInfo, V as ChainGrpcEvmApi, V_ as GrpcChainSpotMarket, Vg as CreateSpotLimitOrderAuthz, Vh as AuctionModuleStateResponse, Vv as ContractCodeHistoryOperationType, W_ as GrpcExchangeParams, Wg as Grant, Wh as GrpcAuctionEventAuctionResult, Wv as ContractStateWithPagination, X_ as GrpcMarketStatusMap, Xg as GrpcRedemptionSchedule, Xh as GrpcPermissionAddressVoucher, Xv as MarketingInfo, Y_ as GrpcMarketStatus, Yg as GrpcInsuranceParams, Yh as GrpcPermissionActorRoles, Yv as GrpcContractInfo, Z_ as GrpcOrderInfo, Zg as InsuranceFund, Zh as GrpcPermissionNamespace, Zv as TokenInfo, _ as ChainGrpcEvmTransformer, __ as EvmParams, _g as PermissionRoleIDs, _h as FactoryDenomWithMetadata, _v as GrpcDelegationResponse, a as ChainGrpcExchangeTransformer, a_ as Metadata, ag as GrpcPermissionsParams, av as GrpcTradingRewardCampaignBoostInfo, ay as GrpcTallyResult, b as ChainRestWasmApi, b_ as GrpcEvmChainConfig, bg as PermissionsModuleParams, bh as DistributionModuleParams, bv as GrpcReDelegationEntryResponse, c as ChainGrpcCommonTransformer, c_ as Account, cg as PermissionAddressRoles, cv as OrderType, cy as ProposalDeposit, d as ChainGrpcPeggyTransformer, d_ as EthAccount, dg as PermissionNamespace, dv as TradeRewardCampaign, dy as TallyResult, e_ as GrpcMintParams, eg as GrpcPermissionRole, ev as GrpcPointsMultiplier, ey as GrpcGovernanceDepositParams, f as ChainGrpcAuthZTransformer, f_ as PubKey, fg as PermissionParams, fh as ChainModule, fv as TradingRewardCampaignBoostInfo, fy as Vote, g as ChainGrpcAuthTransformer, g_ as EvmLog, gg as PermissionRoleActors, gh as AuthorityMetadata, gv as GrpcDelegation, h as ChainGrpcBankTransformer, h_ as EvmChainConfig, hg as PermissionRole, hh as NodeInfoRestResponse, hv as Delegation, hy as WeightedVoteOption, i as ChainGrpcPermissionsTransformer, i_ as GrpcSupply, ig as GrpcPermissionsNamespace, iv as GrpcTradeRewardCampaign, iy as GrpcProposalDeposit, j as ChainGrpcTxFeesApi, j_ as FeeDiscountAccountInfo, jg as GrpcPeggyParams, jh as CosmosAccountRestResponse, jv as StakingModuleParams, k as ChainGrpcStakingApi, k_ as ExchangeModuleParams, kg as Params, kh as AccountsResponse, kv as Pool, l as ChainGrpcTxFeesTransformer, l_ as AuthBaseAccount, lg as PermissionAddressVoucher, lv as OrderTypeMap, ly as ProposalStatus, m as ChainGrpcMintTransformer, m_ as EvmBlobScheduleConfig, mg as PermissionPolicyStatus, mh as BlockLatestRestResponse, mv as BondStatus, my as VoteOptionMap, n as ChainGrpcTokenFactoryTransformer, n_ as BankModuleParams, ng as GrpcPermissionRoleIDs, nv as GrpcSpotMarketOrder, ny as GrpcGovernanceVotingParams, o as ChainGrpcStakingTransformer, o_ as SendEnabled, og as PermissionActionMap, ov as GrpcTradingRewardCampaignInfo, oy as GrpcVote, p as ChainGrpcWasmTransformer, p_ as EvmBlobConfig, pg as PermissionPolicyManagerCapability, ph as RestApiResponse, pv as TradingRewardCampaignInfo, py as VoteOption, q_ as GrpcFeeDiscountTierInfo, qg as GrantWithDecodedAuthorization, qh as GrpcAuctionLastAuctionResult, qv as GrpcCodeInfoResponse, r as ChainGrpcDistributionTransformer, r_ as GrpcBankParams, rg as GrpcPermissionRoleManager, rv as GrpcSpotOrder, ry as GrpcProposal, s as ChainGrpcAuctionTransformer, s_ as TotalSupply, sg as PermissionActorRoles, sv as IsOptedOutOfRewards, sy as Proposal, t as ChainGrpcInsuranceFundTransformer, t_ as MinModuleParams, tg as GrpcPermissionRoleActors, tv as GrpcSpotMarket, ty as GrpcGovernanceTallyParams, u as ChainGrpcErc20Transformer, u_ as AuthModuleParams, ug as PermissionGenesisState, uv as PointsMultiplier, uy as ProposalStatusMap, v as ChainGrpcGovTransformer, v_ as GrpcEvmBlobConfig, vg as PermissionRoleManager, vh as TokenFactoryModuleParams, vv as GrpcPool, w as ChainGrpcTokenFactoryApi, w_ as ChainDenomDecimal, wg as GrpcTxFeesParams, wh as ValidatorRewards, wv as GrpcUnbondingDelegationEntry, x as ChainRestAuthApi, x_ as GrpcEvmLog, xg as GrpcOracleParams, xh as GrpcDecCoin, xv as GrpcReDelegationResponse, y as ChainRestTendermintApi, y_ as GrpcEvmBlobScheduleConfig, yg as PermissionVoucher, yh as TokenFactoryModuleState, yv as GrpcReDelegation, z as ChainGrpcBankApi, z_ as GrpcChainFullSpotMarket, zg as CreateDerivativeLimitOrderAuthz, zh as AuctionModuleState, zv as ContractAccountsBalanceWithPagination } from "../index-UE9sXMcw.cjs";
|
|
4
4
|
import "../BaseGrpcConsumer-CZTAcNtS.cjs";
|
|
5
5
|
import "../index-C00Yswov.cjs";
|
|
6
6
|
import "../index-Dvfd07fs.cjs";
|
|
@@ -6,7 +6,7 @@ require('../BaseGrpcConsumer-Baz_ZnzI.cjs');
|
|
|
6
6
|
require('../BaseIndexerGrpcConsumer-ChilNYlV.cjs');
|
|
7
7
|
require('../BaseRestConsumer-uSzCOit7.cjs');
|
|
8
8
|
const require_IndexerGrpcWeb3GwApi = require('../IndexerGrpcWeb3GwApi-BDH3Pyr6.cjs');
|
|
9
|
-
const require_StreamManagerV2 = require('../StreamManagerV2-
|
|
9
|
+
const require_StreamManagerV2 = require('../StreamManagerV2-Ck3_o9BC.cjs');
|
|
10
10
|
require('../types-Cn54Lzf-.cjs');
|
|
11
11
|
|
|
12
12
|
exports.AccessType = require_IndexerGrpcWeb3GwApi.AccessType;
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import "../tx_pb-BGCQilBY.cjs";
|
|
2
2
|
import "../index-C15wCMY6.cjs";
|
|
3
|
-
import { $ as TcDerivativeTradesStreamCallbackV2, $a as MegaVaultVolatilityStats, $c as GrpcSubaccountBalance, $i as PerpetualMarket, $l as MitoMissionLeaderboardEntry, $n as IndexerGrpcRfqTransformer, $o as Oracle, $r as GrpcTcDerivativePosition, $s as TakerStreamEvents, $t as BlocksStreamCallback, Aa as GrpcMegaVaultVolatility, Ac as GrpcPeggyWithdrawalTx, Ai as DerivativeLimitOrderParams, Al as GrpcMitoSubaccountBalance, An as IndexerDerivativeStreamTransformer, Ao as Holder, Ar as StreamStatusResponse, As as GrpcRFQExpiry, At as VaultStreamCallbackV2, Ba as MegaVaultOperatorRedemptionBucket, Bc as Transaction, Bi as GrpcBinaryOptionsMarketInfo, Bl as MitoHolders, Bn as IndexerOracleStreamTransformer, Bo as AuctionContract, Br as PortfolioSubaccountBalanceV2, Bs as RFQExpiryType, Bt as StreamManager, Ca as GrpcMegaVaultPnlStats, Cc as GasFee, Ci as TransactionFromExplorerApiResponse, Cl as GrpcMitoMissionLeaderboardEntry, Cn as SpotOrderbookV2StreamCallback, Co as GrpcLeaderboardRow, Cr as IndexerGrpcMitoApi, Cs as IndexerTokenMeta, Ct as OraclePriceStreamCallbackV2, Cu as WsReconnectConfig, Da as GrpcMegaVaultUnrealizedPnl, Dc as GrpcIBCTransferTx, Di as BatchDerivativeOrderCancelParams, Dl as GrpcMitoStakingPool, Dn as IndexerTcDerivativesStreamTransformer, Do as HistoricalBalance, Dr as GrpcWebSocketTransport, Ds as QuantityAndFees, Dt as StakingRewardByAccountStreamCallbackV2, Ea as GrpcMegaVaultTargetApr, Ec as GrpcGasFee, Ei as BaseDerivativeMarket, El as GrpcMitoStakingGauge, En as IndexerAccountPortfolioStreamTransformer, Eo as GrpcVolLeaderboard, Er as IndexerWsTakerStream, Es as PriceLevel, Et as IndexerGrpcMitoStreamV2, Fa as MegaVaultHistoricalPnL, Fc as Message, Fi as DerivativeTrade, Fl as MitoChanges, Fn as IndexerArchiverStreamTransformer, Fo as AccountAuctionStatus, Fr as GrpcAccountPortfolioV2, Fs as MakerStreamConfig, Ft as SpotTradesStreamCallbackV2, G as createStreamSubscriptionV2, Ga as MegaVaultStats, Gc as WasmCode, Gi as GrpcDerivativePositionV2, Gl as MitoIDOSubscriber, Gn as IndexerGrpcAccountTransformer, Go as GrpcAuctionCoin, Gr as ChronosLeaderboardResponse, Gs as RFQRequestType, Gt as DerivativeOrderHistoryStreamCallback, Ha as MegaVaultPnlStats, Hc as ValidatorSlashingEvent, Hi as GrpcDerivativeMarketInfo, Hl as MitoIDOClaimedCoins, Hn as IndexerGrpcExplorerTransformer, Ho as AuctionsStats, Hr as SubaccountDepositV2, Hs as RFQProcessedQuoteType, Ht as AccountPortfolioStreamCallback, Ia as MegaVaultHistoricalTVL, Ic as Paging, Ii as ExpiryFuturesMarket, Il as MitoClaimReference, In as IndexerGrpcMegaVaultTransformer, Io as AccountAuctionV2, Ir as GrpcPortfolioSubaccountBalanceV2, Is as MakerStreamEvents, It as IndexerGrpcRfqStreamV2, J as IndexerGrpcAccountPortfolioStreamV2, Ja as MegaVaultTargetApr, Jc as ListTradingStrategiesResponse, Ji as GrpcFundingPayment, Jl as MitoLeaderboard, Jn as IndexerRfqStreamTransformer, Jo as GrpcAuctionV2, Jr as ChronosDerivativeMarketSummary, Js as RFQSettlementUnfilledActionType, Jt as DerivativeOrdersStreamCallback, K as StreamManagerV2, Ka as MegaVaultSubscription, Kc as GridStrategyStreamResponse, Ki as GrpcDerivativeTrade, Kl as MitoIDOSubscription, Kn as IndexerSpotStreamTransformer, Ko as GrpcAuctionCoinPrices, Kr as AllChronosDerivativeMarketSummary, Ks as RFQSettlementLimitActionType, Kt as DerivativeOrderbookUpdateStreamCallback, La as MegaVaultIncentives, Lc as PeggyDepositTx, Li as ExpiryFuturesMarketInfo, Ll as MitoDenomBalance, Ln as IndexerAuctionStreamTransformer, Lo as Auction, Lr as GrpcPositionV2, Ls as RFQConditionalOrder, Lt as QuoteStreamCallbackV2, Ma as MegaVault, Mc as GrpcValidatorUptime, Mi as DerivativeMarketWithoutBinaryOptions, Ml as GrpcMitoTokenInfo, Mn as IndexerGrpcMitoStreamTransformer, Mo as PnlLeaderboard, Mr as ChronosMarketHistoryResponse, Ms as GrpcRFQQuote, Mt as SpotOrderHistoryStreamCallbackV2, Na as MegaVaultApr, Nc as IBCTransferTx, Ni as DerivativeOrderCancelParams, Nl as GrpcMitoVault, Nn as IndexerGrpcDerivativeTransformer, No as SpotAverageEntry, Nr as AccountPortfolioBalances, Ns as GrpcRFQRequest, Nt as SpotOrderbookUpdateStreamCallbackV2, Oa as GrpcMegaVaultUserStats, Oc as GrpcIndexerValidatorDescription, Oi as BinaryOptionsMarket, Ol as GrpcMitoStakingStakingActivity, On as IndexerGrpcTcDerivativesTransformer, Oo as HistoricalRPNL, Or as GrpcWebSocketCodec, Os as Route, Ot as TransfersStreamCallbackV2, Pa as MegaVaultAprStats, Pc as IndexerStreamTransaction, Pi as DerivativeOrderHistory, Pl as GrpcMitoWhitelistAccount, Pn as ExplorerStreamTransformer, Po as VolLeaderboard, Pr as AccountPortfolioV2, Ps as GrpcRFQSettlement, Pt as SpotOrdersStreamCallbackV2, Q as TcDerivativePositionsStreamCallbackV2, Qa as MegaVaultVolatility, Qc as GrpcAccountPortfolio, Qi as GrpcPositionDelta, Ql as MitoMissionLeaderboard, Qn as IndexerGrpcMitoTransformer, Qo as GrpcOracle, Qr as GrpcTcDerivativeOrdersResponse, Qs as TakerStreamConfig, Qt as IndexerGrpcDerivativesStream, Ra as MegaVaultMaxDrawdown, Rc as PeggyWithdrawalTx, Ri as FundingPayment, Rl as MitoGauge, Rn as IndexerAccountStreamTransformer, Ro as AuctionCoin, Rr as GrpcPositionsWithUPNL, Rs as RFQConditionalOrderInput, Rt as RequestStreamCallbackV2, Sa as GrpcMegaVaultPnl, Sc as ExplorerValidatorUptime, Si as ExplorerTransactionApiResponse, Sl as GrpcMitoMission, Sn as SpotOrderbookUpdateStreamCallback, So as GrpcHistoricalVolumes, Sr as IndexerGrpcMetaApi, Ss as GrpcTokenMeta, St as OracleListStreamCallbackV2, Su as WsDisconnectReason, Ta as GrpcMegaVaultSubscription, Tc as GrpcExplorerStats, Ti as WasmCodeExplorerApiResponse, Tl as GrpcMitoPriceSnapshot, Tn as SpotTradesStreamCallback, To as GrpcSpotAverageEntry, Tr as IndexerWsMakerStream, Ts as OrderbookWithSequence, Tt as HistoricalStakingStreamCallbackV2, Tu as WsTransportConfig, Ua as MegaVaultRedemption, Uc as ValidatorUptime, Ui as GrpcDerivativeOrderHistory, Ul as MitoIDOInitParams, Un as IndexerGrpcArchiverTransformer, Uo as GrpcAccountAuctionV2, Ur as ChronosLeaderboard, Us as RFQQuoteType, Ut as IndexerGrpcAccountPortfolioStream, Va as MegaVaultPnl, Vc as TxMessage, Vi as GrpcDerivativeLimitOrder, Vl as MitoIDO, Vn as IndexerGrpcReferralTransformer, Vo as AuctionV2, Vr as PositionsWithUPNL, Vs as RFQMakerStreamAckData, Vt as createStreamSubscription, Wa as MegaVaultRedemptionStatus, Wc as ValidatorUptimeStatus, Wi as GrpcDerivativePosition, Wl as MitoIDOProgress, Wn as IndexerGrpcAuctionTransformer, Wo as GrpcAuction, Wr as ChronosLeaderboardEntry, Ws as RFQRequestInputType, Wt as DerivativeMarketStreamCallback, X as TcDerivativeOrderHistoryStreamCallbackV2, Xa as MegaVaultUser, Xc as TradingStrategy, Xi as GrpcPerpetualMarketFunding, Xl as MitoLeaderboardEpoch, Xn as IndexerCampaignTransformer, Xo as IndexerAuctionBid, Xr as GrpcTcDerivativeLimitOrder, Xs as RFQTakerStreamAckData, Xt as DerivativePositionsV2StreamCallback, Y as IndexerGrpcTcDerivativesStreamV2, Ya as MegaVaultUnrealizedPnl, Yc as MarketType, Yi as GrpcFundingRate, Yl as MitoLeaderboardEntry, Yn as IndexerGrpcRfqGwTransformer, Yo as GrpcIndexerAuctionBid, Yr as ChronosDerivativeMarketSummaryResponse, Ys as RFQStreamErrorData, Yt as DerivativePositionsStreamCallback, Z as TcDerivativeOrdersStreamCallbackV2, Za as MegaVaultUserStats, Zc as AccountPortfolio, Zi as GrpcPerpetualMarketInfo, Zl as MitoMission, Zn as IndexerGrpcSpotTransformer, Zo as StreamBidsResponse, Zr as GrpcTcDerivativeOrderHistory, Zs as SettlementsResponse, Zt as DerivativeTradesStreamCallback, _a as GrpcMegaVaultIncentives, _c as ExplorerTransaction, _i as ContractExplorerApiResponse, _l as GrpcMitoIDOSubscriber, _n as VaultHolderSubscriptionStreamCallback, _o as AccountStats, _r as IndexerGrpcWeb3GwApi, _s as SpotMarket, _t as BidsStreamCallbackV2, _u as IsomorphicWebSocket, aa as GrpcIndexerInsuranceFund, ac as BlockWithTxs, ai as TcDerivativeLimitOrder, al as SubaccountDeposit, an as IndexerGrpcTradingStream, ao as Campaign, ar as IndexerGrpcInsuranceFundApi, as as RFQGwPrepareAutoSignRequestType, at as DerivativePositionsStreamCallbackV2, au as MitoStakingPool, ba as GrpcMegaVaultOperator, bc as ExplorerValidator, bi as ExplorerApiResponseWithPagination, bl as GrpcMitoLeaderboardEntry, bn as MarketsStreamCallback, bo as GrpcHistoricalBalance, br as IndexerGrpcRfqGwApi, bs as SpotTrade, bt as IndexerGrpcAccountStreamV2, bu as TransportEventType, ca as InsuranceFundCreateParams, cc as ContractTransaction, ci as TcDerivativePosition, cl as TradingReward, cn as BalanceStreamCallback, co as GrpcCampaign, cr as IndexerGrpcDerivativesApi, cs as AtomicSwap, ct as IndexerGrpcDerivativesStreamV2, cu as MitoSubscription, da as IncentivesCampaign, dc as CosmWasmPermission, di as TcDerivativesOrdersHistoryResponse, dl as GrpcMitoClaimReference, dn as OraclePriceStreamCallback, do as GrpcGuild, dr as IndexerGrpcArchiverApi, ds as GrpcSpotLimitOrder, dt as IndexerGrpcExplorerStreamV2, du as MitoVault, ea as PerpetualMarketFunding, ec as AccessType, ei as GrpcTcDerivativeTradeHistory, el as GrpcSubaccountBalanceTransfer, en as BlocksWithTxsStreamCallback, eo as OperationStatusLogEntry, er as IndexerRestLeaderboardChronosApi, es as CosmosPubKeyType, et as DerivativeMarketStreamCallbackV2, eu as MitoPagination, fa as IncentivesRound, fc as EventLog, fi as TcDerivativesPositionsResponse, fl as GrpcMitoDenomBalance, fn as OraclePricesByMarketsStreamCallback, fo as GrpcGuildMember, fr as IndexerGrpcCampaignApi, fs as GrpcSpotMarketInfo, ft as TransactionsStreamCallbackV2, fu as MitoVestingConfig, ga as GrpcMegaVaultHistoricalTVL, gc as ExplorerStats, gi as CW20BalanceExplorerApiResponse, gl as GrpcMitoIDOProgress, gn as TransfersStreamCallback, go as ReferralDetails, gr as IndexerGrpcAccountApi, gs as SpotLimitOrderParams, gt as IndexerGrpcTradingStreamV2, gu as GrpcFrame, ha as GrpcMegaVaultHistoricalPnL, hc as ExplorerCW20BalanceWithToken, hi as BlockFromExplorerApiResponse, hl as GrpcMitoIDOClaimedCoins, hn as StakingRewardByAccountStreamCallback, ho as GuildMember, hr as IndexerGrpcAuctionApi, hs as SpotLimitOrder, ht as GridStrategyStreamCallbackV2, hu as GrpcDecodeError, ia as PositionV2, ic as Block, ii as GrpcTcPositionDelta, il as SubaccountBalance, in as SpotAverageEntriesStreamCallback, io as ChronosSpotMarketSummaryResponse, ir as IndexerRestExplorerApi, is as GrpcRFQGwPrepareQuoteResult, it as DerivativeOrdersStreamCallbackV2, iu as MitoStakingActivity, ja as GrpcMegaVaultVolatilityStats, jc as GrpcValidatorSlashingEvent, ji as DerivativeMarket, jl as GrpcMitoSubscription, jn as IndexerGrpcAccountPortfolioTransformer, jo as LeaderboardRow, jr as AllChronosMarketHistory, js as GrpcRFQProcessedQuote, jt as IndexerGrpcSpotStreamV2, ka as GrpcMegaVaultVaultStats, kc as GrpcPeggyDepositTx, ki as DerivativeLimitOrder, kl as GrpcMitoStakingStakingReward, kn as IndexerGrpcInsuranceFundTransformer, ko as HistoricalVolumes, kr as IndexerModule, ks as GrpcRFQConditionalOrder, kt as VaultHolderSubscriptionStreamCallbackV2, la as Redemption, lc as ContractTransactionWithMessages, li as TcDerivativeTradeHistory, ll as TransferType, ln as IndexerGrpcAccountStream, lo as GrpcCampaignUser, lr as IndexerGrpcMegaVaultApi, ls as BatchSpotOrderCancelParams, lt as BlocksStreamCallbackV2, lu as MitoTokenInfo, ma as GrpcMegaVaultAprStats, mc as ExplorerBlockWithTxs, mi as BankTransferFromExplorerApiResponse, ml as GrpcMitoIDO, mn as IndexerGrpcMitoStream, mo as GuildCampaignSummary, mr as IndexerGrpcTradingApi, ms as GrpcSpotTrade, mt as SpotAverageEntriesStreamCallbackV2, mu as MitoWhitelistAccount, na as Position, nc as BankMsgSendTransaction, ni as GrpcTcDerivativesOrdersHistoryResponse, nl as GrpcSubaccountPortfolio, nn as TransactionsStreamCallback, no as AllSpotMarketSummaryResponse, nr as IndexerRestMarketChronosApi, ns as GrpcRFQGwPrepareAutoSignRequest, nt as DerivativeOrderbookUpdateStreamCallbackV2, nu as MitoPriceSnapshot, oa as GrpcIndexerRedemptionSchedule, oc as CW20Message, oi as TcDerivativeOrderHistory, ol as SubaccountPortfolio, on as BidsStreamCallback, oo as CampaignUser, or as IndexerGrpcTcDerivativesApi, os as RFQGwPrepareAutoSignResponseType, ot as DerivativePositionsV2StreamCallbackV2, ou as MitoStakingReward, pa as GrpcMegaVaultApr, pc as EventLogEvent, pi as TcPositionDelta, pl as GrpcMitoHolders, pn as HistoricalStakingStreamCallback, po as Guild, pr as IndexerGrpcExplorerApi, ps as GrpcSpotOrderHistory, pt as IndexerGrpcArchiverStreamV2, pu as MitoVestingConfigMap, q as AccountPortfolioStreamCallbackV2, qa as MegaVaultSubscriptionStatus, qc as GridStrategyType, qi as GrpcExpiryFuturesMarketInfo, ql as MitoIDOSubscriptionActivity, qn as IndexerGrpcOracleTransformer, qo as GrpcAuctionContract, qr as AllDerivativeMarketSummaryResponse, qs as RFQSettlementType, qt as DerivativeOrderbookV2StreamCallback, ra as PositionDelta, rc as BankTransfer, ri as GrpcTcDerivativesPositionsResponse, rl as GrpcTradingReward, rn as IndexerGrpcArchiverStream, ro as ChronosSpotMarketSummary, rr as IndexerRestSpotChronosApi, rs as GrpcRFQGwPrepareAutoSignResponse, rt as DerivativeOrderbookV2StreamCallbackV2, ru as MitoStakeToSubscription, sa as IndexerInsuranceFund, sc as Contract, si as TcDerivativeOrdersResponse, sl as SubaccountTransfer, sn as IndexerGrpcAuctionStream, so as CampaignV2, sr as IndexerGrpcAccountPortfolioApi, ss as RFQGwPrepareQuoteResultType, st as DerivativeTradesStreamCallbackV2, su as MitoSubaccountBalance, ta as PerpetualMarketInfo, tc as AccessTypeCode, ti as GrpcTcDerivativeTradesResponse, tl as GrpcSubaccountDeposit, tn as IndexerGrpcExplorerStream, to as AllChronosSpotMarketSummary, tr as IndexerRestDerivativesChronosApi, ts as GrpcCosmosPubKey, tt as DerivativeOrderHistoryStreamCallbackV2, tu as MitoPortfolio, ua as RedemptionStatus, uc as CosmWasmChecksum, ui as TcDerivativeTradesResponse, ul as GrpcMitoChanges, un as IndexerGrpcOracleStream, uo as GrpcCampaignV2, ur as IndexerGrpcReferralApi, us as GrpcAtomicSwap, ut as BlocksWithTxsStreamCallbackV2, uu as MitoTransfer, va as GrpcMegaVaultMaxDrawdown, vc as ExplorerTransactionV2, vi as ContractTransactionExplorerApiResponse, vl as GrpcMitoIDOSubscription, vn as VaultStreamCallback, vo as DenomHolders, vr as IndexerGrpcTransactionApi, vs as SpotOrderCancelParams, vt as IndexerGrpcAuctionStreamV2, vu as ResolvedWsTransportConfig, wa as GrpcMegaVaultRedemption, wc as GrpcBankMsgSendMessage, wi as ValidatorUptimeFromExplorerApiResponse, wl as GrpcMitoPagination, wn as SpotOrdersStreamCallback, wo as GrpcPnlLeaderboard, wr as IndexerGrpcRFQApi, ws as Orderbook, wt as OraclePricesByMarketsStreamCallbackV2, wu as WsState, xa as GrpcMegaVaultOperatorRedemptionBucket, xc as ExplorerValidatorDescription, xi as ExplorerBlockApiResponse, xl as GrpcMitoLeaderboardEpoch, xn as SpotOrderHistoryStreamCallback, xo as GrpcHistoricalRPNL, xr as IndexerGrpcSpotApi, xs as GrpcPriceLevel, xt as IndexerGrpcOracleStreamV2, xu as TransportEvents, ya as GrpcMegaVaultOperationStatusLogEntry, yc as ExplorerTxsV2Response, yi as ExplorerApiResponse, yl as GrpcMitoIDOSubscriptionActivity, yn as IndexerGrpcSpotStream, yo as GrpcDenomHolders, yr as IndexerGrpcOracleApi, ys as SpotOrderHistory, yt as BalanceStreamCallbackV2, yu as TransportEventListener, za as MegaVaultOperator, zc as Signature, zi as FundingRate, zl as MitoGaugeStatus, zn as IndexerRestExplorerTransformer, zo as AuctionCoinPrices, zr as GrpcSubaccountDepositV2, zs as RFQConditionalOrdersResponse, zt as SettlementStreamCallbackV2 } from "../index-D0DwgN6e.cjs";
|
|
3
|
+
import { $ as TcDerivativeTradesStreamCallbackV2, $a as MegaVaultVolatilityStats, $c as TxMessage, $i as PerpetualMarket, $l as MitoIDO, $n as IndexerGrpcRfqTransformer, $o as Oracle, $r as GrpcTcDerivativePosition, $s as RFQMakerStreamAckData, $t as BlocksStreamCallback, Aa as GrpcMegaVaultVolatility, Ac as ExplorerTransactionV2, Ai as DerivativeLimitOrderParams, Al as GrpcMitoIDOSubscription, An as IndexerDerivativeStreamTransformer, Ao as Holder, Ar as StreamStatusResponse, As as SpotOrderCancelParams, At as VaultStreamCallbackV2, Au as ResolvedWsTransportConfig, Ba as MegaVaultOperatorRedemptionBucket, Bc as GrpcIndexerValidatorDescription, Bi as GrpcBinaryOptionsMarketInfo, Bl as GrpcMitoStakingStakingActivity, Bn as IndexerOracleStreamTransformer, Bo as AuctionContract, Br as PortfolioSubaccountBalanceV2, Bs as Route, Bt as StreamManager, Ca as GrpcMegaVaultPnlStats, Cc as CosmWasmPermission, Ci as TransactionFromExplorerApiResponse, Cl as GrpcMitoClaimReference, Cn as SpotOrderbookV2StreamCallback, Co as GrpcLeaderboardRow, Cr as IndexerGrpcMitoApi, Cs as GrpcSpotLimitOrder, Ct as OraclePriceStreamCallbackV2, Cu as MitoVault, Da as GrpcMegaVaultUnrealizedPnl, Dc as ExplorerCW20BalanceWithToken, Di as BatchDerivativeOrderCancelParams, Dl as GrpcMitoIDOClaimedCoins, Dn as IndexerTcDerivativesStreamTransformer, Do as HistoricalBalance, Dr as GrpcWebSocketTransport, Ds as SpotLimitOrder, Dt as StakingRewardByAccountStreamCallbackV2, Du as GrpcDecodeError, Ea as GrpcMegaVaultTargetApr, Ec as ExplorerBlockWithTxs, Ei as BaseDerivativeMarket, El as GrpcMitoIDO, En as IndexerAccountPortfolioStreamTransformer, Eo as GrpcVolLeaderboard, Er as IndexerWsTakerStream, Es as GrpcSpotTrade, Et as IndexerGrpcMitoStreamV2, Eu as MitoWhitelistAccount, Fa as MegaVaultHistoricalPnL, Fc as GasFee, Fi as DerivativeTrade, Fl as GrpcMitoMissionLeaderboardEntry, Fn as IndexerArchiverStreamTransformer, Fo as AccountAuctionStatus, Fr as GrpcAccountPortfolioV2, Fs as IndexerTokenMeta, Ft as SpotTradesStreamCallbackV2, Fu as WsReconnectConfig, G as createStreamSubscriptionV2, Ga as MegaVaultStats, Gc as IBCTransferTx, Gi as GrpcDerivativePositionV2, Gl as GrpcMitoVault, Gn as IndexerGrpcAccountTransformer, Go as GrpcAuctionCoin, Gr as ChronosLeaderboardResponse, Gs as GrpcRFQRequest, Gt as DerivativeOrderHistoryStreamCallback, Ha as MegaVaultPnlStats, Hc as GrpcPeggyWithdrawalTx, Hi as GrpcDerivativeMarketInfo, Hl as GrpcMitoSubaccountBalance, Hn as IndexerGrpcExplorerTransformer, Ho as AuctionsStats, Hr as SubaccountDepositV2, Hs as GrpcRFQExpiry, Ht as AccountPortfolioStreamCallback, Ia as MegaVaultHistoricalTVL, Ic as GrpcBankMsgSendMessage, Ii as ExpiryFuturesMarket, Il as GrpcMitoPagination, In as IndexerGrpcMegaVaultTransformer, Io as AccountAuctionV2, Ir as GrpcPortfolioSubaccountBalanceV2, Is as Orderbook, It as IndexerGrpcRfqStreamV2, Iu as WsState, J as IndexerGrpcAccountPortfolioStreamV2, Ja as MegaVaultTargetApr, Jc as Paging, Ji as GrpcFundingPayment, Jl as MitoClaimReference, Jn as IndexerRfqStreamTransformer, Jo as GrpcAuctionV2, Jr as ChronosDerivativeMarketSummary, Js as MakerStreamEvents, Jt as DerivativeOrdersStreamCallback, K as StreamManagerV2, Ka as MegaVaultSubscription, Kc as IndexerStreamTransaction, Ki as GrpcDerivativeTrade, Kl as GrpcMitoWhitelistAccount, Kn as IndexerSpotStreamTransformer, Ko as GrpcAuctionCoinPrices, Kr as AllChronosDerivativeMarketSummary, Ks as GrpcRFQSettlement, Kt as DerivativeOrderbookUpdateStreamCallback, La as MegaVaultIncentives, Lc as GrpcExplorerStats, Li as ExpiryFuturesMarketInfo, Ll as GrpcMitoPriceSnapshot, Ln as IndexerAuctionStreamTransformer, Lo as Auction, Lr as GrpcPositionV2, Ls as OrderbookWithSequence, Lt as QuoteStreamCallbackV2, Lu as WsTransportConfig, Ma as MegaVault, Mc as ExplorerValidator, Mi as DerivativeMarketWithoutBinaryOptions, Ml as GrpcMitoLeaderboardEntry, Mn as IndexerGrpcMitoStreamTransformer, Mo as PnlLeaderboard, Mr as ChronosMarketHistoryResponse, Ms as SpotTrade, Mt as SpotOrderHistoryStreamCallbackV2, Mu as TransportEventType, Na as MegaVaultApr, Nc as ExplorerValidatorDescription, Ni as DerivativeOrderCancelParams, Nl as GrpcMitoLeaderboardEpoch, Nn as IndexerGrpcDerivativeTransformer, No as SpotAverageEntry, Nr as AccountPortfolioBalances, Ns as GrpcPriceLevel, Nt as SpotOrderbookUpdateStreamCallbackV2, Nu as TransportEvents, Oa as GrpcMegaVaultUserStats, Oc as ExplorerStats, Oi as BinaryOptionsMarket, Ol as GrpcMitoIDOProgress, On as IndexerGrpcTcDerivativesTransformer, Oo as HistoricalRPNL, Or as GrpcWebSocketCodec, Os as SpotLimitOrderParams, Ot as TransfersStreamCallbackV2, Ou as GrpcFrame, Pa as MegaVaultAprStats, Pc as ExplorerValidatorUptime, Pi as DerivativeOrderHistory, Pl as GrpcMitoMission, Pn as ExplorerStreamTransformer, Po as VolLeaderboard, Pr as AccountPortfolioV2, Ps as GrpcTokenMeta, Pt as SpotOrdersStreamCallbackV2, Pu as WsDisconnectReason, Q as TcDerivativePositionsStreamCallbackV2, Qa as MegaVaultVolatility, Qc as Transaction, Qi as GrpcPositionDelta, Ql as MitoHolders, Qn as IndexerGrpcMitoTransformer, Qo as GrpcOracle, Qr as GrpcTcDerivativeOrdersResponse, Qs as RFQExpiryType, Qt as IndexerGrpcDerivativesStream, Ra as MegaVaultMaxDrawdown, Rc as GrpcGasFee, Ri as FundingPayment, Rl as GrpcMitoStakingGauge, Rn as IndexerAccountStreamTransformer, Ro as AuctionCoin, Rr as GrpcPositionsWithUPNL, Rs as PriceLevel, Rt as RequestStreamCallbackV2, Sa as GrpcMegaVaultPnl, Sc as CosmWasmChecksum, Si as ExplorerTransactionApiResponse, Sl as GrpcMitoChanges, Sn as SpotOrderbookUpdateStreamCallback, So as GrpcHistoricalVolumes, Sr as IndexerGrpcMetaApi, Ss as GrpcAtomicSwap, St as OracleListStreamCallbackV2, Su as MitoTransfer, Ta as GrpcMegaVaultSubscription, Tc as EventLogEvent, Ti as WasmCodeExplorerApiResponse, Tl as GrpcMitoHolders, Tn as SpotTradesStreamCallback, To as GrpcSpotAverageEntry, Tr as IndexerWsMakerStream, Ts as GrpcSpotOrderHistory, Tt as HistoricalStakingStreamCallbackV2, Tu as MitoVestingConfigMap, Ua as MegaVaultRedemption, Uc as GrpcValidatorSlashingEvent, Ui as GrpcDerivativeOrderHistory, Ul as GrpcMitoSubscription, Un as IndexerGrpcArchiverTransformer, Uo as GrpcAccountAuctionV2, Ur as ChronosLeaderboard, Us as GrpcRFQProcessedQuote, Ut as IndexerGrpcAccountPortfolioStream, Va as MegaVaultPnl, Vc as GrpcPeggyDepositTx, Vi as GrpcDerivativeLimitOrder, Vl as GrpcMitoStakingStakingReward, Vn as IndexerGrpcReferralTransformer, Vo as AuctionV2, Vr as PositionsWithUPNL, Vs as GrpcRFQConditionalOrder, Vt as createStreamSubscription, Wa as MegaVaultRedemptionStatus, Wc as GrpcValidatorUptime, Wi as GrpcDerivativePosition, Wl as GrpcMitoTokenInfo, Wn as IndexerGrpcAuctionTransformer, Wo as GrpcAuction, Wr as ChronosLeaderboardEntry, Ws as GrpcRFQQuote, Wt as DerivativeMarketStreamCallback, X as TcDerivativeOrderHistoryStreamCallbackV2, Xa as MegaVaultUser, Xc as PeggyWithdrawalTx, Xi as GrpcPerpetualMarketFunding, Xl as MitoGauge, Xn as IndexerCampaignTransformer, Xo as IndexerAuctionBid, Xr as GrpcTcDerivativeLimitOrder, Xs as RFQConditionalOrderInput, Xt as DerivativePositionsV2StreamCallback, Y as IndexerGrpcTcDerivativesStreamV2, Ya as MegaVaultUnrealizedPnl, Yc as PeggyDepositTx, Yi as GrpcFundingRate, Yl as MitoDenomBalance, Yn as IndexerGrpcRfqGwTransformer, Yo as GrpcIndexerAuctionBid, Yr as ChronosDerivativeMarketSummaryResponse, Ys as RFQConditionalOrder, Yt as DerivativePositionsStreamCallback, Z as TcDerivativeOrdersStreamCallbackV2, Za as MegaVaultUserStats, Zc as Signature, Zi as GrpcPerpetualMarketInfo, Zl as MitoGaugeStatus, Zn as IndexerGrpcSpotTransformer, Zo as StreamBidsResponse, Zr as GrpcTcDerivativeOrderHistory, Zs as RFQConditionalOrdersResponse, Zt as DerivativeTradesStreamCallback, _a as GrpcMegaVaultIncentives, _c as BlockWithTxs, _i as ContractExplorerApiResponse, _l as SubaccountDeposit, _n as VaultHolderSubscriptionStreamCallback, _o as AccountStats, _r as IndexerGrpcWeb3GwApi, _s as RFQGwPrepareQuoteResultType, _t as BidsStreamCallbackV2, _u as MitoStakingPool, aa as GrpcIndexerInsuranceFund, ac as RFQSettlementType, ai as TcDerivativeLimitOrder, al as GridStrategyType, an as IndexerGrpcTradingStream, ao as Campaign, ar as IndexerGrpcInsuranceFundApi, as as GrpcRFQGwPrepareEip712AutoSignResponse, at as DerivativePositionsStreamCallbackV2, au as MitoIDOSubscriptionActivity, ba as GrpcMegaVaultOperator, bc as ContractTransaction, bi as ExplorerApiResponseWithPagination, bl as TradingReward, bn as MarketsStreamCallback, bo as GrpcHistoricalBalance, br as IndexerGrpcRfqGwApi, bs as AtomicSwap, bt as IndexerGrpcAccountStreamV2, bu as MitoSubscription, ca as InsuranceFundCreateParams, cc as RFQTakerStreamAckData, ci as TcDerivativePosition, cl as TradingStrategy, cn as BalanceStreamCallback, co as GrpcCampaign, cr as IndexerGrpcDerivativesApi, cs as GrpcRFQGwPrepareQuoteResult, ct as IndexerGrpcDerivativesStreamV2, cu as MitoLeaderboardEpoch, da as IncentivesCampaign, dc as TakerStreamEvents, di as TcDerivativesOrdersHistoryResponse, dl as GrpcSubaccountBalance, dn as OraclePriceStreamCallback, do as GrpcGuild, dr as IndexerGrpcArchiverApi, ds as RFQGwPrepareAutoSignRequestType, dt as IndexerGrpcExplorerStreamV2, du as MitoMissionLeaderboardEntry, ea as PerpetualMarketFunding, ec as RFQProcessedQuoteType, ei as GrpcTcDerivativeTradeHistory, el as ValidatorSlashingEvent, en as BlocksWithTxsStreamCallback, eo as OperationStatusLogEntry, er as IndexerRestLeaderboardChronosApi, es as CosmosPubKeyType, et as DerivativeMarketStreamCallbackV2, eu as MitoIDOClaimedCoins, fa as IncentivesRound, fc as AccessType, fi as TcDerivativesPositionsResponse, fl as GrpcSubaccountBalanceTransfer, fn as OraclePricesByMarketsStreamCallback, fo as GrpcGuildMember, fr as IndexerGrpcCampaignApi, fs as RFQGwPrepareAutoSignResponseType, ft as TransactionsStreamCallbackV2, fu as MitoPagination, ga as GrpcMegaVaultHistoricalTVL, gc as Block, gi as CW20BalanceExplorerApiResponse, gl as SubaccountBalance, gn as TransfersStreamCallback, go as ReferralDetails, gr as IndexerGrpcAccountApi, gs as RFQGwPrepareEip712ResponseType, gt as IndexerGrpcTradingStreamV2, gu as MitoStakingActivity, ha as GrpcMegaVaultHistoricalPnL, hc as BankTransfer, hi as BlockFromExplorerApiResponse, hl as GrpcTradingReward, hn as StakingRewardByAccountStreamCallback, ho as GuildMember, hr as IndexerGrpcAuctionApi, hs as RFQGwPrepareEip712RequestType, ht as GridStrategyStreamCallbackV2, hu as MitoStakeToSubscription, ia as PositionV2, ic as RFQSettlementLimitActionType, ii as GrpcTcPositionDelta, il as GridStrategyStreamResponse, in as SpotAverageEntriesStreamCallback, io as ChronosSpotMarketSummaryResponse, ir as IndexerRestExplorerApi, is as GrpcRFQGwPrepareEip712AutoSignRequest, it as DerivativeOrdersStreamCallbackV2, iu as MitoIDOSubscription, ja as GrpcMegaVaultVolatilityStats, jc as ExplorerTxsV2Response, ji as DerivativeMarket, jl as GrpcMitoIDOSubscriptionActivity, jn as IndexerGrpcAccountPortfolioTransformer, jo as LeaderboardRow, jr as AllChronosMarketHistory, js as SpotOrderHistory, jt as IndexerGrpcSpotStreamV2, ju as TransportEventListener, ka as GrpcMegaVaultVaultStats, kc as ExplorerTransaction, ki as DerivativeLimitOrder, kl as GrpcMitoIDOSubscriber, kn as IndexerGrpcInsuranceFundTransformer, ko as HistoricalVolumes, kr as IndexerModule, ks as SpotMarket, kt as VaultHolderSubscriptionStreamCallbackV2, ku as IsomorphicWebSocket, la as Redemption, lc as SettlementsResponse, li as TcDerivativeTradeHistory, ll as AccountPortfolio, ln as IndexerGrpcAccountStream, lo as GrpcCampaignUser, lr as IndexerGrpcMegaVaultApi, ls as GrpcRFQGwPrepareRequest, lt as BlocksStreamCallbackV2, lu as MitoMission, ma as GrpcMegaVaultAprStats, mc as BankMsgSendTransaction, mi as BankTransferFromExplorerApiResponse, ml as GrpcSubaccountPortfolio, mn as IndexerGrpcMitoStream, mo as GuildCampaignSummary, mr as IndexerGrpcTradingApi, ms as RFQGwPrepareEip712AutoSignResponseType, mt as SpotAverageEntriesStreamCallbackV2, mu as MitoPriceSnapshot, na as Position, nc as RFQRequestInputType, ni as GrpcTcDerivativesOrdersHistoryResponse, nl as ValidatorUptimeStatus, nn as TransactionsStreamCallback, no as AllSpotMarketSummaryResponse, nr as IndexerRestMarketChronosApi, ns as GrpcRFQGwPrepareAutoSignRequest, nt as DerivativeOrderbookUpdateStreamCallbackV2, nu as MitoIDOProgress, oa as GrpcIndexerRedemptionSchedule, oc as RFQSettlementUnfilledActionType, oi as TcDerivativeOrderHistory, ol as ListTradingStrategiesResponse, on as BidsStreamCallback, oo as CampaignUser, or as IndexerGrpcTcDerivativesApi, os as GrpcRFQGwPrepareEip712Request, ot as DerivativePositionsV2StreamCallbackV2, ou as MitoLeaderboard, pa as GrpcMegaVaultApr, pc as AccessTypeCode, pi as TcPositionDelta, pl as GrpcSubaccountDeposit, pn as HistoricalStakingStreamCallback, po as Guild, pr as IndexerGrpcExplorerApi, ps as RFQGwPrepareEip712AutoSignRequestType, pt as IndexerGrpcArchiverStreamV2, pu as MitoPortfolio, q as AccountPortfolioStreamCallbackV2, qa as MegaVaultSubscriptionStatus, qc as Message, qi as GrpcExpiryFuturesMarketInfo, ql as MitoChanges, qn as IndexerGrpcOracleTransformer, qo as GrpcAuctionContract, qr as AllDerivativeMarketSummaryResponse, qs as MakerStreamConfig, qt as DerivativeOrderbookV2StreamCallback, ra as PositionDelta, rc as RFQRequestType, ri as GrpcTcDerivativesPositionsResponse, rl as WasmCode, rn as IndexerGrpcArchiverStream, ro as ChronosSpotMarketSummary, rr as IndexerRestSpotChronosApi, rs as GrpcRFQGwPrepareAutoSignResponse, rt as DerivativeOrderbookV2StreamCallbackV2, ru as MitoIDOSubscriber, sa as IndexerInsuranceFund, sc as RFQStreamErrorData, si as TcDerivativeOrdersResponse, sl as MarketType, sn as IndexerGrpcAuctionStream, so as CampaignV2, sr as IndexerGrpcAccountPortfolioApi, ss as GrpcRFQGwPrepareEip712Response, st as DerivativeTradesStreamCallbackV2, su as MitoLeaderboardEntry, ta as PerpetualMarketInfo, tc as RFQQuoteType, ti as GrpcTcDerivativeTradesResponse, tl as ValidatorUptime, tn as IndexerGrpcExplorerStream, to as AllChronosSpotMarketSummary, tr as IndexerRestDerivativesChronosApi, ts as GrpcCosmosPubKey, tt as DerivativeOrderHistoryStreamCallbackV2, tu as MitoIDOInitParams, ua as RedemptionStatus, uc as TakerStreamConfig, ui as TcDerivativeTradesResponse, ul as GrpcAccountPortfolio, un as IndexerGrpcOracleStream, uo as GrpcCampaignV2, ur as IndexerGrpcReferralApi, us as GrpcRFQGwPrepareResponse, ut as BlocksWithTxsStreamCallbackV2, uu as MitoMissionLeaderboard, va as GrpcMegaVaultMaxDrawdown, vc as CW20Message, vi as ContractTransactionExplorerApiResponse, vl as SubaccountPortfolio, vn as VaultStreamCallback, vo as DenomHolders, vr as IndexerGrpcTransactionApi, vs as RFQGwPrepareRequestType, vt as IndexerGrpcAuctionStreamV2, vu as MitoStakingReward, wa as GrpcMegaVaultRedemption, wc as EventLog, wi as ValidatorUptimeFromExplorerApiResponse, wl as GrpcMitoDenomBalance, wn as SpotOrdersStreamCallback, wo as GrpcPnlLeaderboard, wr as IndexerGrpcRFQApi, ws as GrpcSpotMarketInfo, wt as OraclePricesByMarketsStreamCallbackV2, wu as MitoVestingConfig, xa as GrpcMegaVaultOperatorRedemptionBucket, xc as ContractTransactionWithMessages, xi as ExplorerBlockApiResponse, xl as TransferType, xn as SpotOrderHistoryStreamCallback, xo as GrpcHistoricalRPNL, xr as IndexerGrpcSpotApi, xs as BatchSpotOrderCancelParams, xt as IndexerGrpcOracleStreamV2, xu as MitoTokenInfo, ya as GrpcMegaVaultOperationStatusLogEntry, yc as Contract, yi as ExplorerApiResponse, yl as SubaccountTransfer, yn as IndexerGrpcSpotStream, yo as GrpcDenomHolders, yr as IndexerGrpcOracleApi, ys as RFQGwPrepareResponseType, yt as BalanceStreamCallbackV2, yu as MitoSubaccountBalance, za as MegaVaultOperator, zc as GrpcIBCTransferTx, zi as FundingRate, zl as GrpcMitoStakingPool, zn as IndexerRestExplorerTransformer, zo as AuctionCoinPrices, zr as GrpcSubaccountDepositV2, zs as QuantityAndFees, zt as SettlementStreamCallbackV2 } from "../index-UE9sXMcw.cjs";
|
|
4
4
|
import "../BaseGrpcConsumer-CZTAcNtS.cjs";
|
|
5
5
|
import "../index-C00Yswov.cjs";
|
|
6
6
|
import "../index-Dvfd07fs.cjs";
|
|
7
7
|
import "../index-DD6UhYzr.cjs";
|
|
8
8
|
import "../index-xSXf-Ct4.cjs";
|
|
9
9
|
import "../index-B-Q3ov9G.cjs";
|
|
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, CosmosPubKeyType, 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, GrpcCosmosPubKey, 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, GrpcRFQGwPrepareAutoSignRequest, GrpcRFQGwPrepareAutoSignResponse, GrpcRFQGwPrepareQuoteResult, 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, IndexerGrpcRfqGwApi, IndexerGrpcRfqGwTransformer, 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, OracleListStreamCallbackV2, 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, RFQGwPrepareAutoSignRequestType, RFQGwPrepareAutoSignResponseType, RFQGwPrepareQuoteResultType, 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 };
|
|
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, CosmosPubKeyType, 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, GrpcCosmosPubKey, 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, GrpcRFQGwPrepareAutoSignRequest, GrpcRFQGwPrepareAutoSignResponse, GrpcRFQGwPrepareEip712AutoSignRequest, GrpcRFQGwPrepareEip712AutoSignResponse, GrpcRFQGwPrepareEip712Request, GrpcRFQGwPrepareEip712Response, GrpcRFQGwPrepareQuoteResult, GrpcRFQGwPrepareRequest, GrpcRFQGwPrepareResponse, 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, IndexerGrpcRfqGwApi, IndexerGrpcRfqGwTransformer, 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, OracleListStreamCallbackV2, 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, RFQGwPrepareAutoSignRequestType, RFQGwPrepareAutoSignResponseType, RFQGwPrepareEip712AutoSignRequestType, RFQGwPrepareEip712AutoSignResponseType, RFQGwPrepareEip712RequestType, RFQGwPrepareEip712ResponseType, RFQGwPrepareQuoteResultType, RFQGwPrepareRequestType, RFQGwPrepareResponseType, 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
|
import "../tx_pb-BGCQilBY.cjs";
|
|
2
2
|
import "../index-C15wCMY6.cjs";
|
|
3
|
-
import {
|
|
3
|
+
import { _p as PrivateKey, gp as BaseAccount, vp as PublicKey, yp as Address } from "../index-UE9sXMcw.cjs";
|
|
4
4
|
import "../BaseGrpcConsumer-CZTAcNtS.cjs";
|
|
5
5
|
import "../index-C00Yswov.cjs";
|
|
6
6
|
import "../index-Dvfd07fs.cjs";
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import "../tx_pb-BGCQilBY.cjs";
|
|
2
2
|
import "../index-C15wCMY6.cjs";
|
|
3
|
-
import { $
|
|
3
|
+
import { $m as GovMsgs, $y as MsgUpdateRateLimit, Ab as MsgSubmitGenericProposal, Ay as MsgBatchCancelSpotOrders, By as MsgRelayProviderPrices, Cb as ProposalDecomposer, Cy as MsgUpdateDerivativeMarketV2, Db as MsgSubmitProposalPerpetualMarketLaunch, Dy as MsgIncreasePositionMargin, Eb as MsgSubmitProposalSpotMarketParamUpdate, Ey as MsgDecreasePositionMargin, Fb as MsgBid, Fy as MsgCreateInsuranceFund, Gm as AuthzMsgs, Gy as MsgBatchUpdateOrders, Hy as MsgRequestRedemption, Ib as MsgSend, Iy as MsgFundCommunityPool, Jm as Erc20Msgs, Jy as MsgCancelSpotOrder, Km as BankMsgs, Ky as MsgExternalTransfer, Lb as MsgVote, Ly as MsgSetDenomMetadata, Mb as MsgDeposit$1, My as MsgCancelPostOnlyModeV2, Nb as MsgRevoke, Ny as MsgCreateSpotLimitOrder, Ob as MsgGrantProviderPrivilegeProposal, Oy as MsgCreateSpotMarketOrder, Pb as MsgGrant, Py as MsgAuthorizeStakeGrants, Qm as FeegrantMsgs, Qy as MsgRemoveRateLimit, Ry as MsgUpdateSpotMarketV2, Sb as MsgSubmitProposal, Sy as MsgCancelUnbondingDelegation, Tb as MsgSubmitProposalPerpetualMarketLaunchV2, Ty as MsgInstantSpotMarketLaunch, Uy as MsgInstantiateContract, Vy as MsgTransferDelegation, Wm as AuctionMsgs, Wy as MsgLiquidatePosition, Xm as ExchangeV1Msgs, Xy as MsgBeginRedelegate, Ym as ExchangeMsgs, Yy as MsgCreateValidator, Zm as ExchangeV2Msgs, Zy as MsgGrantAllowance, _b as MsgMultiSend, _y as MsgWithdrawValidatorCommission, ab as MsgRewardsOptOut, ah as StakingMsgs, ap as OrderHashManager, bb as MsgTransfer, by as MsgCreateDerivativeLimitOrder, cb as MsgUnderwrite, ch as MsgSetDelegationTransferReceivers, cp as ContractExecutionAuthorization, db as MsgWithdraw, dh as MsgAdminUpdateBinaryOptionsMarket, dp as getGenericAuthorizationFromMessageType, eb as MsgCreateRateLimit, eh as IbcMsgs, ep as MsgUpdateActorRoles, fb as MsgSignData, fp as msgsOrMsgExecMsgs, gb as MsgDeposit, gy as MsgCreateBinaryOptionsLimitOrder, hb as MsgStoreCode, ib as MsgChangeAdmin, ih as PeggyMsgs, ip as MsgClaimVoucher, jb as MsgSubmitTextProposal, jy as MsgGrantWithAuthorization, kb as MsgSubmitProposalSpotMarketLaunch, ky as MsgCancelDerivativeOrder, lb as MsgUndelegate, lh as MsgCreateBinaryOptionsMarketOrder, lp as GenericAuthorization, mb as MsgSendToEth, mp as ExecArgNeptuneDeposit, nb as MsgExecuteContract, nh as Msgs, np as MsgCreateNamespace, ob as MsgPrivilegedExecuteContract, oh as TokenFactoryMsgs, op as MsgInstantBinaryOptionsMarketLaunch, pb as MsgDelegate, pp as ExecArgNeptuneWithdraw, qm as DistributionMsgs, qy as MsgRevokeAllowance, rb as MsgCreateDenom, rh as OracleMsgs, rp as MsgUpdateParams, sb as MsgEditValidator, sh as WasmMsgs, sp as ContractExecutionCompatAuthorization, tb as MsgMigrateContract, th as InsuranceMsgs, tp as MsgUpdateNamespace, ub as MsgUpdateAdmin, uh as MsgBatchCancelBinaryOptionsOrders, up as GrantAuthorizationType, vb as MsgMint, vy as MsgCreateDerivativeMarketOrder, wb as MsgSubmitProposalExpiryFuturesMarketLaunch, wy as MsgCancelBinaryOptionsOrder, xb as MsgExec, xy as MsgWithdrawDelegatorReward, yb as MsgBurn, yy as MsgBatchCancelDerivativeOrders, zy as MsgReclaimLockedFunds } from "../index-UE9sXMcw.cjs";
|
|
4
4
|
import "../BaseGrpcConsumer-CZTAcNtS.cjs";
|
|
5
5
|
import "../index-C00Yswov.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-Dvfd07fs.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-BGCQilBY.cjs";
|
|
2
2
|
import "../index-C15wCMY6.cjs";
|
|
3
|
-
import { $p as
|
|
3
|
+
import { $p as createSignDocFromTransaction, Am as TxResultResponse, Ap as getEipTxDetails, Bm as TxClientMode, Bp as SIGN_EIP712, Cm as RestTx, Cp as getDefaultEip712Types, Dm as TxInfo, Dp as getEip712Fee, Em as SimulationResponse, Ep as getEip712DomainV2, Fm as CreateTransactionWithSignersArgs, Fp as protoTypeToAminoType, Gp as getInjectiveSignerAddress, Hm as TxConcreteApi, Hp as createAny, Im as MsgArg, Ip as stringTypeToReflectionStringType, Jp as createAuthInfo, Kp as errorToErrorMessage, Lm as SignerDetails, Lp as TxClient, Mm as TxSearchResultParams, Mp as getObjectEip712PropertyType, Nm as CreateTransactionArgs, Np as numberTypeToReflectionNumberType, Om as TxInfoResponse, Op as getEip712FeeV2, Pm as CreateTransactionResult, Pp as objectKeysToEip712Types, Qp as createSignDoc, Rm as TxClientBroadcastOptions, Rp as SIGN_AMINO, Sm as RestSignerInfo, Sp as getEip712TypedDataV2, Tm as RestTxLog, Tp as getEip712Domain, Um as TxResponse, Up as createAnyMessage, Vm as TxClientSimulateResponse, Vp as SIGN_EIP712_V2, Wp as getEthereumSignerAddress, Xp as createFee, Yp as createBody, Zp as createNonCriticalExtensionFromObject, _m as createTxRawFromSigResponse, am as getPublicKey, bm as BroadcastModeKeplr, bp as MsgDecoder, cm as TxRestApi, dm as createTransaction, em as createSignerInfo, fm as createTransactionAndCosmosSignDoc, gm as createTransactionWithSigners, hm as createTransactionFromMsg, hp as MsgBroadcasterWithPk, im as getAminoStdSignDoc, jm as TxSearchResult, jp as getTypesIncludingFeePayer, km as TxResult, kp as getEipTxContext, lm as TxGrpcApi, mm as createTransactionForAddressAndMsg, nm as createTxRawEIP712, om as getTransactionPartsFromTxRaw, pm as createTransactionAndCosmosSignDocForAddressAndMsg, qp as isTxNotFoundError, rm as createWeb3Extension, sm as generateArbitrarySignDoc, tm as createSigners, um as waitTxBroadcasted, vm as getTxRawFromTxRawOrDirectSignResponse, wm as RestTxBody, wp as getDefaultEip712TypesV2, xm as RestAuthInfo, xp as getEip712TypedData, ym as BroadcastMode, zm as TxClientBroadcastResponse, zp as SIGN_DIRECT } from "../index-UE9sXMcw.cjs";
|
|
4
4
|
import "../BaseGrpcConsumer-CZTAcNtS.cjs";
|
|
5
5
|
import "../index-C00Yswov.cjs";
|
|
6
6
|
import { St as TypedDataField, bt as Eip712ConvertTxArgs, xt as MapOfTypedDataField, yt as Eip712ConvertFeeArgs } from "../index-Dvfd07fs.cjs";
|