@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.
@@ -9049,13 +9049,13 @@ declare class MsgCreateValidator extends MsgBase<MsgCreateValidator.Params, MsgC
9049
9049
  value: MsgCreateValidator.Object;
9050
9050
  };
9051
9051
  toWeb3Gw(): {
9052
+ value?: Coin$1 | undefined;
9052
9053
  description?: Description | undefined;
9053
9054
  commission?: CommissionRates | undefined;
9054
9055
  minSelfDelegation: string;
9055
9056
  delegatorAddress: string;
9056
9057
  validatorAddress: string;
9057
9058
  pubkey?: Any | undefined;
9058
- value?: Coin$1 | undefined;
9059
9059
  pubKey: any;
9060
9060
  '@type': string;
9061
9061
  };
@@ -18742,7 +18742,7 @@ declare const BECH32_ADDR_VAL_PREFIX = "injvaloper";
18742
18742
  declare const BECH32_ADDR_CONS_PREFIX = "injvalcons";
18743
18743
  declare const DEFAULT_DERIVATION_PATH = "m/44'/60'/0'/0/0";
18744
18744
  //#endregion
18745
- //#region ../../node_modules/.pnpm/@injectivelabs+indexer-proto-ts-v2@1.18.16/node_modules/@injectivelabs/indexer-proto-ts-v2/generated/injective_accounts_rpc_pb.d.ts
18745
+ //#region ../../node_modules/.pnpm/@injectivelabs+indexer-proto-ts-v2@1.18.18/node_modules/@injectivelabs/indexer-proto-ts-v2/generated/injective_accounts_rpc_pb.d.ts
18746
18746
  /**
18747
18747
  * @generated from protobuf message injective_accounts_rpc.PortfolioResponse
18748
18748
  */
@@ -19258,7 +19258,7 @@ declare const Reward = new Reward$Type();
19258
19258
  */
19259
19259
  declare const Coin$7 = new Coin$Type();
19260
19260
  //#endregion
19261
- //#region ../../node_modules/.pnpm/@injectivelabs+indexer-proto-ts-v2@1.18.16/node_modules/@injectivelabs/indexer-proto-ts-v2/generated/injective_explorer_rpc_pb.d.ts
19261
+ //#region ../../node_modules/.pnpm/@injectivelabs+indexer-proto-ts-v2@1.18.18/node_modules/@injectivelabs/indexer-proto-ts-v2/generated/injective_explorer_rpc_pb.d.ts
19262
19262
  /**
19263
19263
  * @generated from protobuf message injective_explorer_rpc.GetAccountTxsResponse
19264
19264
  */
@@ -20692,7 +20692,7 @@ declare const fetchAllWithPagination: <T extends {
20692
20692
  //#region src/utils/transaction.d.ts
20693
20693
  declare const recoverTypedSignaturePubKey: (data: TypedDataDefinition, signature: string) => Promise<string>;
20694
20694
  //#endregion
20695
- //#region ../../node_modules/.pnpm/@injectivelabs+indexer-proto-ts-v2@1.18.16/node_modules/@injectivelabs/indexer-proto-ts-v2/generated/injective_rfq_rpc_pb.d.ts
20695
+ //#region ../../node_modules/.pnpm/@injectivelabs+indexer-proto-ts-v2@1.18.18/node_modules/@injectivelabs/indexer-proto-ts-v2/generated/injective_rfq_rpc_pb.d.ts
20696
20696
  /**
20697
20697
  * @generated from protobuf message injective_rfq_rpc.StreamRequestResponse
20698
20698
  */
@@ -20918,9 +20918,9 @@ interface RFQQuoteType$1 {
20918
20918
  /**
20919
20919
  * Maker subaccount nonce used in quote signature
20920
20920
  *
20921
- * @generated from protobuf field: uint64 maker_subaccount_nonce = 19
20921
+ * @generated from protobuf field: uint32 maker_subaccount_nonce = 19
20922
20922
  */
20923
- makerSubaccountNonce: bigint;
20923
+ makerSubaccountNonce: number;
20924
20924
  /**
20925
20925
  * Optional minimum fill quantity used in quote signature
20926
20926
  *
@@ -20939,6 +20939,22 @@ interface RFQQuoteType$1 {
20939
20939
  * @generated from protobuf field: string client_id = 22
20940
20940
  */
20941
20941
  clientId: string;
20942
+ /**
20943
+ * Signature scheme used for the quote: "v1" (raw JSON keccak256) or "v2"
20944
+ * (EIP-712). Defaults to "v1" when omitted, for backward compatibility with
20945
+ * pre-EIP-712 clients.
20946
+ *
20947
+ * @generated from protobuf field: string sign_mode = 23
20948
+ */
20949
+ signMode: string;
20950
+ /**
20951
+ * EVM chain ID embedded in the EIP-712 domain. Required when sign_mode is
20952
+ * "v2"; ignored otherwise. Must match one of the indexer's configured chain
20953
+ * IDs.
20954
+ *
20955
+ * @generated from protobuf field: uint64 evm_chain_id = 24
20956
+ */
20957
+ evmChainId: bigint;
20942
20958
  }
20943
20959
  /**
20944
20960
  * Expiry with timestamp and block height
@@ -21111,9 +21127,9 @@ interface RFQProcessedQuoteType$1 {
21111
21127
  /**
21112
21128
  * Maker subaccount nonce used in quote signature
21113
21129
  *
21114
- * @generated from protobuf field: uint64 maker_subaccount_nonce = 19
21130
+ * @generated from protobuf field: uint32 maker_subaccount_nonce = 19
21115
21131
  */
21116
- makerSubaccountNonce: bigint;
21132
+ makerSubaccountNonce: number;
21117
21133
  /**
21118
21134
  * Optional minimum fill quantity used in quote signature
21119
21135
  *
@@ -21132,6 +21148,22 @@ interface RFQProcessedQuoteType$1 {
21132
21148
  * @generated from protobuf field: string client_id = 22
21133
21149
  */
21134
21150
  clientId: string;
21151
+ /**
21152
+ * Signature scheme used for the quote: "v1" (raw JSON keccak256) or "v2"
21153
+ * (EIP-712). Defaults to "v1" when omitted, for backward compatibility with
21154
+ * pre-EIP-712 clients.
21155
+ *
21156
+ * @generated from protobuf field: string sign_mode = 23
21157
+ */
21158
+ signMode: string;
21159
+ /**
21160
+ * EVM chain ID embedded in the EIP-712 domain. Required when sign_mode is
21161
+ * "v2"; ignored otherwise. Must match one of the indexer's configured chain
21162
+ * IDs.
21163
+ *
21164
+ * @generated from protobuf field: uint64 evm_chain_id = 24
21165
+ */
21166
+ evmChainId: bigint;
21135
21167
  }
21136
21168
  /**
21137
21169
  * @generated from protobuf message injective_rfq_rpc.ListSettlementResponse
@@ -21252,6 +21284,12 @@ interface RFQSettlementType$1 {
21252
21284
  * @generated from protobuf field: string cid = 16
21253
21285
  */
21254
21286
  cid: string;
21287
+ /**
21288
+ * Settlement transaction hash
21289
+ *
21290
+ * @generated from protobuf field: string tx_hash = 17
21291
+ */
21292
+ txHash: string;
21255
21293
  }
21256
21294
  /**
21257
21295
  * Action to take for unfilled quantity - only one field should be set
@@ -21410,6 +21448,26 @@ interface ConditionalOrderResponseType {
21410
21448
  * @generated from protobuf field: string error = 16
21411
21449
  */
21412
21450
  error: string;
21451
+ /**
21452
+ * Settlement transaction hash, if any
21453
+ *
21454
+ * @generated from protobuf field: string tx_hash = 17
21455
+ */
21456
+ txHash: string;
21457
+ /**
21458
+ * Terminal timestamp in milliseconds (set when the order reaches a terminal
21459
+ * status: completed, failed, or cancelled)
21460
+ *
21461
+ * @generated from protobuf field: sint64 terminal_at = 18
21462
+ */
21463
+ terminalAt: bigint;
21464
+ /**
21465
+ * EVM chain ID embedded in the EIP-712 domain at signing time. Zero for v1
21466
+ * (raw JSON) orders.
21467
+ *
21468
+ * @generated from protobuf field: uint64 evm_chain_id = 19
21469
+ */
21470
+ evmChainId: bigint;
21413
21471
  }
21414
21472
  /**
21415
21473
  * @generated from protobuf message injective_rfq_rpc.ListConditionalOrdersResponse
@@ -21696,6 +21754,12 @@ interface RFQSettlementMakerUpdate {
21696
21754
  * @generated from protobuf field: string cid = 16
21697
21755
  */
21698
21756
  cid: string;
21757
+ /**
21758
+ * Settlement transaction hash
21759
+ *
21760
+ * @generated from protobuf field: string tx_hash = 17
21761
+ */
21762
+ txHash: string;
21699
21763
  }
21700
21764
  /**
21701
21765
  * Quote data embedded in settlement
@@ -23828,7 +23892,7 @@ type GrpcSubaccountBalance = SubaccountBalance$2;
23828
23892
  type GrpcSubaccountPortfolio = SubaccountPortfolio$1;
23829
23893
  type GrpcSubaccountBalanceTransfer = SubaccountBalanceTransfer;
23830
23894
  //#endregion
23831
- //#region ../../node_modules/.pnpm/@injectivelabs+indexer-proto-ts-v2@1.18.16/node_modules/@injectivelabs/indexer-proto-ts-v2/generated/injective_trading_rpc_pb.d.ts
23895
+ //#region ../../node_modules/.pnpm/@injectivelabs+indexer-proto-ts-v2@1.18.18/node_modules/@injectivelabs/indexer-proto-ts-v2/generated/injective_trading_rpc_pb.d.ts
23832
23896
  /**
23833
23897
  * @generated from protobuf message injective_trading_rpc.ListTradingStrategiesResponse
23834
23898
  */
@@ -24833,10 +24897,12 @@ interface RFQQuoteType {
24833
24897
  marketId: string;
24834
24898
  quantity: string;
24835
24899
  clientId: string;
24900
+ signMode: string;
24836
24901
  signature: string;
24837
24902
  createdAt: number;
24838
24903
  updatedAt: number;
24839
24904
  eventTime: number;
24905
+ evmChainId: number;
24840
24906
  priceCheck: boolean;
24841
24907
  expiry: RFQExpiryType;
24842
24908
  takerDirection: string;
@@ -24857,11 +24923,13 @@ interface RFQProcessedQuoteType {
24857
24923
  chainId: string;
24858
24924
  marketId: string;
24859
24925
  quantity: string;
24926
+ signMode: string;
24860
24927
  signature: string;
24861
24928
  createdAt: number;
24862
24929
  updatedAt: number;
24863
24930
  clientId: string;
24864
24931
  eventTime: number;
24932
+ evmChainId: number;
24865
24933
  priceCheck: boolean;
24866
24934
  executedMargin: string;
24867
24935
  takerDirection: string;
@@ -24885,6 +24953,7 @@ interface RFQSettlementType {
24885
24953
  taker: string;
24886
24954
  margin: string;
24887
24955
  height: number;
24956
+ txHash: string;
24888
24957
  marketId: string;
24889
24958
  quantity: string;
24890
24959
  direction: string;
@@ -24926,6 +24995,7 @@ interface RFQConditionalOrderInput {
24926
24995
  interface RFQConditionalOrder {
24927
24996
  rfqId: number;
24928
24997
  error?: string;
24998
+ txHash: string;
24929
24999
  margin: string;
24930
25000
  status: string;
24931
25001
  marketId: string;
@@ -24935,6 +25005,8 @@ interface RFQConditionalOrder {
24935
25005
  updatedAt: number;
24936
25006
  expiresAt: number;
24937
25007
  eventTime: number;
25008
+ terminalAt: number;
25009
+ evmChainId: number;
24938
25010
  worstPrice: string;
24939
25011
  triggerType: string;
24940
25012
  triggerPrice: string;
@@ -25052,7 +25124,7 @@ interface QuantityAndFees {
25052
25124
  resultQuantity: string;
25053
25125
  }
25054
25126
  //#endregion
25055
- //#region ../../node_modules/.pnpm/@injectivelabs+indexer-proto-ts-v2@1.18.16/node_modules/@injectivelabs/indexer-proto-ts-v2/generated/injective_spot_exchange_rpc_pb.d.ts
25127
+ //#region ../../node_modules/.pnpm/@injectivelabs+indexer-proto-ts-v2@1.18.18/node_modules/@injectivelabs/indexer-proto-ts-v2/generated/injective_spot_exchange_rpc_pb.d.ts
25056
25128
  /**
25057
25129
  * @generated from protobuf message injective_spot_exchange_rpc.MarketsResponse
25058
25130
  */
@@ -26208,11 +26280,11 @@ type GrpcSpotLimitOrder = SpotLimitOrder$1;
26208
26280
  type GrpcSpotOrderHistory = SpotOrderHistory$1;
26209
26281
  type GrpcAtomicSwap = AtomicSwap$1;
26210
26282
  //#endregion
26211
- //#region ../../node_modules/.pnpm/@injectivelabs+indexer-proto-ts-v2@1.18.16/node_modules/@injectivelabs/indexer-proto-ts-v2/generated/injective_rfq_gw_rpc_pb.d.ts
26283
+ //#region ../../node_modules/.pnpm/@injectivelabs+indexer-proto-ts-v2@1.18.18/node_modules/@injectivelabs/indexer-proto-ts-v2/generated/injective_rfq_gw_rpc_pb.d.ts
26212
26284
  /**
26213
- * @generated from protobuf message injective_rfq_gw_rpc.RFQGwPrepareAutoSignRequestType
26285
+ * @generated from protobuf message injective_rfq_gw_rpc.RFQGwPrepareEip712AutoSignRequestType
26214
26286
  */
26215
- interface RFQGwPrepareAutoSignRequestType$1 {
26287
+ interface RFQGwPrepareEip712AutoSignRequestType$1 {
26216
26288
  /**
26217
26289
  * @generated from protobuf field: string client_id = 1
26218
26290
  */
@@ -26238,7 +26310,7 @@ interface RFQGwPrepareAutoSignRequestType$1 {
26238
26310
  */
26239
26311
  worstPrice: string;
26240
26312
  /**
26241
- * Ephemeral autosign address (MsgExec grantee) that signs the prepared tx
26313
+ * Ephemeral autosign address (MsgExec grantee) that signs the EIP712 typed data
26242
26314
  *
26243
26315
  * @generated from protobuf field: string autosign_address = 7
26244
26316
  */
@@ -26315,6 +26387,26 @@ interface RFQGwPrepareAutoSignRequestType$1 {
26315
26387
  * @generated from protobuf field: string taker_address = 30
26316
26388
  */
26317
26389
  takerAddress: string;
26390
+ /**
26391
+ * EVM chain ID used in the EIP712 domain separator (e.g. 1 for Injective
26392
+ * mainnet)
26393
+ *
26394
+ * @generated from protobuf field: uint64 eth_chain_id = 31
26395
+ */
26396
+ ethChainId: bigint;
26397
+ /**
26398
+ * EIP712 wrapper version: 'v2' uses WrapTxToEIP712V2, 'v1' uses legacy amino
26399
+ * JSON
26400
+ *
26401
+ * @generated from protobuf field: string eip712_wrapper = 32
26402
+ */
26403
+ eip712Wrapper: string;
26404
+ /**
26405
+ * Optional gas limit override
26406
+ *
26407
+ * @generated from protobuf field: uint64 gas = 33
26408
+ */
26409
+ gas: bigint;
26318
26410
  }
26319
26411
  /**
26320
26412
  * Action to take for unfilled quantity - only one field should be set
@@ -26355,9 +26447,9 @@ interface RFQSettlementLimitActionType {
26355
26447
  */
26356
26448
  interface RFQSettlementMarketActionType {}
26357
26449
  /**
26358
- * @generated from protobuf message injective_rfq_gw_rpc.PrepareAutoSignResponse
26450
+ * @generated from protobuf message injective_rfq_gw_rpc.PrepareEip712AutoSignResponse
26359
26451
  */
26360
- interface PrepareAutoSignResponse {
26452
+ interface PrepareEip712AutoSignResponse {
26361
26453
  /**
26362
26454
  * Generated RFQ ID
26363
26455
  *
@@ -26365,13 +26457,14 @@ interface PrepareAutoSignResponse {
26365
26457
  */
26366
26458
  rfqId: bigint;
26367
26459
  /**
26368
- * Fee-delegated prepared transaction bytes containing MsgExec wrapper
26460
+ * EIP712-compatible JSON containing MsgExec wrapper, signable with
26461
+ * eth_signTypedData_v4
26369
26462
  *
26370
- * @generated from protobuf field: bytes tx = 2
26463
+ * @generated from protobuf field: string data = 2
26371
26464
  */
26372
- tx: Uint8Array;
26465
+ data: string;
26373
26466
  /**
26374
- * Hex-encoded fee payer signature
26467
+ * Hex-encoded fee payer signature over the EIP712 hash
26375
26468
  *
26376
26469
  * @generated from protobuf field: string fee_payer_sig = 3
26377
26470
  */
@@ -26383,7 +26476,7 @@ interface PrepareAutoSignResponse {
26383
26476
  */
26384
26477
  feePayer: string;
26385
26478
  /**
26386
- * Sign mode (SIGN_MODE_DIRECT)
26479
+ * SIGN_MODE_EIP712_V2 or SIGN_MODE_LEGACY_AMINO_JSON
26387
26480
  *
26388
26481
  * @generated from protobuf field: string sign_mode = 5
26389
26482
  */
@@ -26418,25 +26511,20 @@ interface PrepareAutoSignResponse {
26418
26511
  * @generated from protobuf field: uint64 autosign_account_sequence = 10
26419
26512
  */
26420
26513
  autosignAccountSequence: bigint;
26421
- /**
26422
- * Fee payer Cosmos account number
26423
- *
26424
- * @generated from protobuf field: uint64 fee_payer_account_number = 11
26425
- */
26426
- feePayerAccountNumber: bigint;
26427
- /**
26428
- * Fee payer Cosmos account sequence
26429
- *
26430
- * @generated from protobuf field: uint64 fee_payer_account_sequence = 12
26431
- */
26432
- feePayerAccountSequence: bigint;
26433
26514
  /**
26434
26515
  * Actual milliseconds elapsed waiting for quotes; use as quotes_wait_time_ms
26435
26516
  * hint in next request
26436
26517
  *
26437
- * @generated from protobuf field: uint64 quotes_wait_ms = 13
26518
+ * @generated from protobuf field: uint64 quotes_wait_ms = 11
26438
26519
  */
26439
26520
  quotesWaitMs: bigint;
26521
+ /**
26522
+ * Number of quotes that expired after being received and were excluded from
26523
+ * selection
26524
+ *
26525
+ * @generated from protobuf field: uint64 expired_quotes_count = 12
26526
+ */
26527
+ expiredQuotesCount: bigint;
26440
26528
  }
26441
26529
  /**
26442
26530
  * @generated from protobuf message injective_rfq_gw_rpc.CosmosPubKey
@@ -26485,176 +26573,901 @@ interface RFQGwPrepareQuoteResult {
26485
26573
  margin: string;
26486
26574
  }
26487
26575
  /**
26488
- * @generated MessageType for protobuf message injective_rfq_gw_rpc.RFQGwPrepareAutoSignRequestType
26489
- */
26490
- declare const RFQGwPrepareAutoSignRequestType$1 = new RFQGwPrepareAutoSignRequestType$Type();
26491
- /**
26492
- * @generated MessageType for protobuf message injective_rfq_gw_rpc.RFQSettlementUnfilledActionType
26493
- */
26494
- declare const RFQSettlementUnfilledActionType$1 = new RFQSettlementUnfilledActionType$Type();
26495
- /**
26496
- * @generated MessageType for protobuf message injective_rfq_gw_rpc.RFQSettlementLimitActionType
26497
- */
26498
- declare const RFQSettlementLimitActionType = new RFQSettlementLimitActionType$Type();
26499
- /**
26500
- * @generated MessageType for protobuf message injective_rfq_gw_rpc.RFQSettlementMarketActionType
26501
- */
26502
- declare const RFQSettlementMarketActionType = new RFQSettlementMarketActionType$Type();
26503
- /**
26504
- * @generated MessageType for protobuf message injective_rfq_gw_rpc.PrepareAutoSignResponse
26505
- */
26506
- declare const PrepareAutoSignResponse = new PrepareAutoSignResponse$Type();
26507
- /**
26508
- * @generated MessageType for protobuf message injective_rfq_gw_rpc.CosmosPubKey
26509
- */
26510
- declare const CosmosPubKey$1 = new CosmosPubKey$Type();
26511
- /**
26512
- * @generated MessageType for protobuf message injective_rfq_gw_rpc.RFQGwPrepareQuoteResult
26576
+ * @generated from protobuf message injective_rfq_gw_rpc.RFQGwPrepareAutoSignRequestType
26513
26577
  */
26514
- declare const RFQGwPrepareQuoteResult = new RFQGwPrepareQuoteResult$Type();
26515
- //#endregion
26516
- //#region src/client/indexer/types/rfq-gw.d.ts
26517
- interface RFQGwPrepareAutoSignRequestType {
26518
- cid?: string;
26519
- margin: string;
26520
- expiry?: number;
26578
+ interface RFQGwPrepareAutoSignRequestType$1 {
26579
+ /**
26580
+ * @generated from protobuf field: string client_id = 1
26581
+ */
26521
26582
  clientId: string;
26583
+ /**
26584
+ * @generated from protobuf field: string market_id = 2
26585
+ */
26522
26586
  marketId: string;
26523
- quantity: string;
26587
+ /**
26588
+ * @generated from protobuf field: string direction = 3
26589
+ */
26524
26590
  direction: string;
26525
- worstPrice: string;
26526
- takerAddress?: string;
26527
- autosignPubKey: string;
26528
- autosignAddress: string;
26529
- subaccountNonce?: number;
26530
- quotesWaitTimeMs?: number;
26531
- autosignAccountNumber?: number;
26532
- feePayerAccountNumber?: number;
26533
- autosignAccountSequence?: number;
26534
- feePayerAccountSequence?: number;
26535
- unfilledAction?: RFQSettlementUnfilledActionType;
26536
- }
26537
- interface CosmosPubKeyType {
26538
- key: string;
26539
- type: string;
26540
- }
26541
- interface RFQGwPrepareQuoteResultType {
26542
- maker: string;
26543
- price: string;
26591
+ /**
26592
+ * @generated from protobuf field: string margin = 4
26593
+ */
26544
26594
  margin: string;
26545
- quantity: string;
26546
- }
26547
- interface RFQGwPrepareAutoSignResponseType {
26548
- rfqId: number;
26549
- tx: Uint8Array;
26550
- feePayer: string;
26551
- signMode: string;
26552
- pubKeyType: string;
26553
- feePayerSig: string;
26554
- quotesWaitMs: number;
26555
- autosignAccountNumber: number;
26556
- feePayerAccountNumber: number;
26557
- autosignAccountSequence: number;
26558
- feePayerAccountSequence: number;
26559
- feePayerPubKey?: CosmosPubKeyType;
26560
- quotes: RFQGwPrepareQuoteResultType[];
26561
- }
26562
- type GrpcCosmosPubKey = CosmosPubKey$1;
26563
- type GrpcRFQGwPrepareQuoteResult = RFQGwPrepareQuoteResult;
26564
- type GrpcRFQGwPrepareAutoSignResponse = PrepareAutoSignResponse;
26565
- type GrpcRFQGwPrepareAutoSignRequest = RFQGwPrepareAutoSignRequestType$1;
26566
- //#endregion
26567
- //#region ../../node_modules/.pnpm/@injectivelabs+indexer-proto-ts-v2@1.18.16/node_modules/@injectivelabs/indexer-proto-ts-v2/generated/injective_oracle_rpc_pb.d.ts
26568
- /**
26569
- * @generated from protobuf message injective_oracle_rpc.OracleListResponse
26570
- */
26571
- interface OracleListResponse {
26572
26595
  /**
26573
- * List of oracles
26574
- *
26575
- * @generated from protobuf field: repeated injective_oracle_rpc.Oracle oracles = 1
26596
+ * @generated from protobuf field: string quantity = 5
26576
26597
  */
26577
- oracles: Oracle$1[];
26598
+ quantity: string;
26578
26599
  /**
26579
- * Next tokens for pagination
26580
- *
26581
- * @generated from protobuf field: repeated string next = 2
26600
+ * @generated from protobuf field: string worst_price = 6
26582
26601
  */
26583
- next: string[];
26584
- }
26585
- /**
26586
- * @generated from protobuf message injective_oracle_rpc.Oracle
26587
- */
26588
- interface Oracle$1 {
26602
+ worstPrice: string;
26589
26603
  /**
26590
- * The symbol of the oracle asset.
26604
+ * Ephemeral autosign address (MsgExec grantee) that signs the prepared tx
26591
26605
  *
26592
- * @generated from protobuf field: string symbol = 1
26606
+ * @generated from protobuf field: string autosign_address = 7
26593
26607
  */
26594
- symbol: string;
26608
+ autosignAddress: string;
26595
26609
  /**
26596
- * Oracle base currency
26610
+ * RFQ request expiry in milliseconds. 0 = no expiry
26597
26611
  *
26598
- * @generated from protobuf field: string base_symbol = 2
26612
+ * @generated from protobuf field: uint64 expiry = 8
26599
26613
  */
26600
- baseSymbol: string;
26614
+ expiry: bigint;
26601
26615
  /**
26602
- * Oracle quote currency
26616
+ * Hex-encoded autosign ephemeral public key
26603
26617
  *
26604
- * @generated from protobuf field: string quote_symbol = 3
26618
+ * @generated from protobuf field: string autosign_pub_key = 9
26605
26619
  */
26606
- quoteSymbol: string;
26620
+ autosignPubKey: string;
26607
26621
  /**
26608
- * Oracle Type
26622
+ * Autosign (ephemeral) Cosmos account number
26609
26623
  *
26610
- * @generated from protobuf field: string oracle_type = 4
26624
+ * @generated from protobuf field: uint64 autosign_account_number = 10
26611
26625
  */
26612
- oracleType: string;
26626
+ autosignAccountNumber: bigint;
26613
26627
  /**
26614
- * The price of the oracle asset
26628
+ * Autosign (ephemeral) Cosmos account sequence (nonce)
26615
26629
  *
26616
- * @generated from protobuf field: string price = 5
26630
+ * @generated from protobuf field: uint64 autosign_account_sequence = 11
26617
26631
  */
26618
- price: string;
26619
- }
26620
- /**
26621
- * @generated from protobuf message injective_oracle_rpc.PriceResponse
26622
- */
26623
- interface PriceResponse {
26632
+ autosignAccountSequence: bigint;
26624
26633
  /**
26625
- * The price of the oracle asset
26634
+ * Fee payer Cosmos account number
26626
26635
  *
26627
- * @generated from protobuf field: string price = 1
26636
+ * @generated from protobuf field: uint64 fee_payer_account_number = 12
26628
26637
  */
26629
- price: string;
26630
- }
26631
- /**
26632
- * @generated from protobuf message injective_oracle_rpc.StreamPricesResponse
26633
- */
26634
- interface StreamPricesResponse {
26638
+ feePayerAccountNumber: bigint;
26635
26639
  /**
26636
- * The price of the oracle asset
26640
+ * Fee payer Cosmos account sequence (nonce)
26637
26641
  *
26638
- * @generated from protobuf field: string price = 1
26642
+ * @generated from protobuf field: uint64 fee_payer_account_sequence = 13
26639
26643
  */
26640
- price: string;
26644
+ feePayerAccountSequence: bigint;
26641
26645
  /**
26642
- * Operation timestamp in UNIX millis.
26646
+ * How long to wait for quotes (max 5000ms)
26643
26647
  *
26644
- * @generated from protobuf field: sint64 timestamp = 2
26648
+ * @generated from protobuf field: uint64 quotes_wait_time_ms = 20
26645
26649
  */
26646
- timestamp: bigint;
26647
- }
26648
- /**
26649
- * @generated from protobuf message injective_oracle_rpc.StreamOracleListResponse
26650
- */
26651
- interface StreamOracleListResponse {
26650
+ quotesWaitTimeMs: bigint;
26652
26651
  /**
26653
- * The symbol of the oracle asset
26652
+ * Action for quantity not filled by the selected quotes. Set `limit` to place
26653
+ * a limit order at the given price, `market` to sweep the remainder as a
26654
+ * market order. Omit to settle only the quoted amount.
26654
26655
  *
26655
- * @generated from protobuf field: string symbol = 1
26656
+ * @generated from protobuf field: injective_rfq_gw_rpc.RFQSettlementUnfilledActionType unfilled_action = 21
26656
26657
  */
26657
- symbol: string;
26658
+ unfilledAction?: RFQSettlementUnfilledActionType$1;
26659
+ /**
26660
+ * Taker subaccount nonce at settlement time. Prevents replay when submitting
26661
+ * multiple RFQs in the same block. Defaults to 0 (contract reads the on-chain
26662
+ * nonce).
26663
+ *
26664
+ * @generated from protobuf field: uint32 subaccount_nonce = 22
26665
+ */
26666
+ subaccountNonce: number;
26667
+ /**
26668
+ * Client order ID echoed through to the on-chain trade event. Used to
26669
+ * correlate a trade event back to the originating UI order. Not used
26670
+ * server-side.
26671
+ *
26672
+ * @generated from protobuf field: string cid = 23
26673
+ */
26674
+ cid: string;
26675
+ /**
26676
+ * Real taker address (authz granter); used as MsgExecuteContractCompat sender
26677
+ *
26678
+ * @generated from protobuf field: string taker_address = 30
26679
+ */
26680
+ takerAddress: string;
26681
+ }
26682
+ /**
26683
+ * @generated from protobuf message injective_rfq_gw_rpc.PrepareAutoSignResponse
26684
+ */
26685
+ interface PrepareAutoSignResponse {
26686
+ /**
26687
+ * Generated RFQ ID
26688
+ *
26689
+ * @generated from protobuf field: uint64 rfq_id = 1
26690
+ */
26691
+ rfqId: bigint;
26692
+ /**
26693
+ * Fee-delegated prepared transaction bytes containing MsgExec wrapper
26694
+ *
26695
+ * @generated from protobuf field: bytes tx = 2
26696
+ */
26697
+ tx: Uint8Array;
26698
+ /**
26699
+ * Hex-encoded fee payer signature
26700
+ *
26701
+ * @generated from protobuf field: string fee_payer_sig = 3
26702
+ */
26703
+ feePayerSig: string;
26704
+ /**
26705
+ * Fee payer address
26706
+ *
26707
+ * @generated from protobuf field: string fee_payer = 4
26708
+ */
26709
+ feePayer: string;
26710
+ /**
26711
+ * Sign mode (SIGN_MODE_DIRECT)
26712
+ *
26713
+ * @generated from protobuf field: string sign_mode = 5
26714
+ */
26715
+ signMode: string;
26716
+ /**
26717
+ * Fee payer public key type
26718
+ *
26719
+ * @generated from protobuf field: string pub_key_type = 6
26720
+ */
26721
+ pubKeyType: string;
26722
+ /**
26723
+ * Fee payer public key
26724
+ *
26725
+ * @generated from protobuf field: injective_rfq_gw_rpc.CosmosPubKey fee_payer_pub_key = 7
26726
+ */
26727
+ feePayerPubKey?: CosmosPubKey$1;
26728
+ /**
26729
+ * Selected quotes in execution order
26730
+ *
26731
+ * @generated from protobuf field: repeated injective_rfq_gw_rpc.RFQGwPrepareQuoteResult quotes = 8
26732
+ */
26733
+ quotes: RFQGwPrepareQuoteResult[];
26734
+ /**
26735
+ * Autosign (ephemeral) account number
26736
+ *
26737
+ * @generated from protobuf field: uint64 autosign_account_number = 9
26738
+ */
26739
+ autosignAccountNumber: bigint;
26740
+ /**
26741
+ * Autosign (ephemeral) account sequence
26742
+ *
26743
+ * @generated from protobuf field: uint64 autosign_account_sequence = 10
26744
+ */
26745
+ autosignAccountSequence: bigint;
26746
+ /**
26747
+ * Fee payer Cosmos account number
26748
+ *
26749
+ * @generated from protobuf field: uint64 fee_payer_account_number = 11
26750
+ */
26751
+ feePayerAccountNumber: bigint;
26752
+ /**
26753
+ * Fee payer Cosmos account sequence
26754
+ *
26755
+ * @generated from protobuf field: uint64 fee_payer_account_sequence = 12
26756
+ */
26757
+ feePayerAccountSequence: bigint;
26758
+ /**
26759
+ * Actual milliseconds elapsed waiting for quotes; use as quotes_wait_time_ms
26760
+ * hint in next request
26761
+ *
26762
+ * @generated from protobuf field: uint64 quotes_wait_ms = 13
26763
+ */
26764
+ quotesWaitMs: bigint;
26765
+ /**
26766
+ * Number of quotes that expired after being received and were excluded from
26767
+ * selection
26768
+ *
26769
+ * @generated from protobuf field: uint64 expired_quotes_count = 14
26770
+ */
26771
+ expiredQuotesCount: bigint;
26772
+ }
26773
+ /**
26774
+ * @generated from protobuf message injective_rfq_gw_rpc.RFQGwPrepareEip712RequestType
26775
+ */
26776
+ interface RFQGwPrepareEip712RequestType$1 {
26777
+ /**
26778
+ * @generated from protobuf field: string client_id = 1
26779
+ */
26780
+ clientId: string;
26781
+ /**
26782
+ * @generated from protobuf field: string market_id = 2
26783
+ */
26784
+ marketId: string;
26785
+ /**
26786
+ * @generated from protobuf field: string direction = 3
26787
+ */
26788
+ direction: string;
26789
+ /**
26790
+ * @generated from protobuf field: string margin = 4
26791
+ */
26792
+ margin: string;
26793
+ /**
26794
+ * @generated from protobuf field: string quantity = 5
26795
+ */
26796
+ quantity: string;
26797
+ /**
26798
+ * @generated from protobuf field: string worst_price = 6
26799
+ */
26800
+ worstPrice: string;
26801
+ /**
26802
+ * @generated from protobuf field: string taker_address = 7
26803
+ */
26804
+ takerAddress: string;
26805
+ /**
26806
+ * RFQ request expiry in milliseconds. 0 = no expiry
26807
+ *
26808
+ * @generated from protobuf field: uint64 expiry = 8
26809
+ */
26810
+ expiry: bigint;
26811
+ /**
26812
+ * Hex-encoded taker public key
26813
+ *
26814
+ * @generated from protobuf field: string taker_pub_key = 9
26815
+ */
26816
+ takerPubKey: string;
26817
+ /**
26818
+ * Taker Cosmos account number
26819
+ *
26820
+ * @generated from protobuf field: uint64 taker_account_number = 10
26821
+ */
26822
+ takerAccountNumber: bigint;
26823
+ /**
26824
+ * Taker Cosmos account sequence (nonce)
26825
+ *
26826
+ * @generated from protobuf field: uint64 taker_account_sequence = 11
26827
+ */
26828
+ takerAccountSequence: bigint;
26829
+ /**
26830
+ * Fee payer Cosmos account number
26831
+ *
26832
+ * @generated from protobuf field: uint64 fee_payer_account_number = 12
26833
+ */
26834
+ feePayerAccountNumber: bigint;
26835
+ /**
26836
+ * Fee payer Cosmos account sequence (nonce)
26837
+ *
26838
+ * @generated from protobuf field: uint64 fee_payer_account_sequence = 13
26839
+ */
26840
+ feePayerAccountSequence: bigint;
26841
+ /**
26842
+ * How long to wait for quotes (max 5000ms)
26843
+ *
26844
+ * @generated from protobuf field: uint64 quotes_wait_time_ms = 20
26845
+ */
26846
+ quotesWaitTimeMs: bigint;
26847
+ /**
26848
+ * Action for quantity not filled by the selected quotes. Set `limit` to place
26849
+ * a limit order at the given price, `market` to sweep the remainder as a
26850
+ * market order. Omit to settle only the quoted amount.
26851
+ *
26852
+ * @generated from protobuf field: injective_rfq_gw_rpc.RFQSettlementUnfilledActionType unfilled_action = 21
26853
+ */
26854
+ unfilledAction?: RFQSettlementUnfilledActionType$1;
26855
+ /**
26856
+ * Taker subaccount nonce at settlement time. Prevents replay when submitting
26857
+ * multiple RFQs in the same block. Defaults to 0 (contract reads the on-chain
26858
+ * nonce).
26859
+ *
26860
+ * @generated from protobuf field: uint32 subaccount_nonce = 22
26861
+ */
26862
+ subaccountNonce: number;
26863
+ /**
26864
+ * Client order ID echoed through to the on-chain trade event. Used to
26865
+ * correlate a trade event back to the originating UI order. Not used
26866
+ * server-side.
26867
+ *
26868
+ * @generated from protobuf field: string cid = 23
26869
+ */
26870
+ cid: string;
26871
+ /**
26872
+ * EVM chain ID used in the EIP712 domain separator (e.g. 1 for Injective
26873
+ * mainnet)
26874
+ *
26875
+ * @generated from protobuf field: uint64 eth_chain_id = 30
26876
+ */
26877
+ ethChainId: bigint;
26878
+ /**
26879
+ * EIP712 wrapper version: 'v2' uses WrapTxToEIP712V2, 'v1' uses legacy amino
26880
+ * JSON
26881
+ *
26882
+ * @generated from protobuf field: string eip712_wrapper = 31
26883
+ */
26884
+ eip712Wrapper: string;
26885
+ /**
26886
+ * Optional gas limit override
26887
+ *
26888
+ * @generated from protobuf field: uint64 gas = 32
26889
+ */
26890
+ gas: bigint;
26891
+ }
26892
+ /**
26893
+ * @generated from protobuf message injective_rfq_gw_rpc.PrepareEip712Response
26894
+ */
26895
+ interface PrepareEip712Response$1 {
26896
+ /**
26897
+ * Generated RFQ ID
26898
+ *
26899
+ * @generated from protobuf field: uint64 rfq_id = 1
26900
+ */
26901
+ rfqId: bigint;
26902
+ /**
26903
+ * EIP712-compatible JSON, signable with eth_signTypedData_v4
26904
+ *
26905
+ * @generated from protobuf field: string data = 2
26906
+ */
26907
+ data: string;
26908
+ /**
26909
+ * Hex-encoded fee payer signature over the EIP712 hash
26910
+ *
26911
+ * @generated from protobuf field: string fee_payer_sig = 3
26912
+ */
26913
+ feePayerSig: string;
26914
+ /**
26915
+ * Fee payer address
26916
+ *
26917
+ * @generated from protobuf field: string fee_payer = 4
26918
+ */
26919
+ feePayer: string;
26920
+ /**
26921
+ * SIGN_MODE_EIP712_V2 or SIGN_MODE_LEGACY_AMINO_JSON
26922
+ *
26923
+ * @generated from protobuf field: string sign_mode = 5
26924
+ */
26925
+ signMode: string;
26926
+ /**
26927
+ * Fee payer public key type
26928
+ *
26929
+ * @generated from protobuf field: string pub_key_type = 6
26930
+ */
26931
+ pubKeyType: string;
26932
+ /**
26933
+ * Fee payer public key
26934
+ *
26935
+ * @generated from protobuf field: injective_rfq_gw_rpc.CosmosPubKey fee_payer_pub_key = 7
26936
+ */
26937
+ feePayerPubKey?: CosmosPubKey$1;
26938
+ /**
26939
+ * Selected quotes in execution order
26940
+ *
26941
+ * @generated from protobuf field: repeated injective_rfq_gw_rpc.RFQGwPrepareQuoteResult quotes = 8
26942
+ */
26943
+ quotes: RFQGwPrepareQuoteResult[];
26944
+ /**
26945
+ * Taker Cosmos account number
26946
+ *
26947
+ * @generated from protobuf field: uint64 taker_account_number = 9
26948
+ */
26949
+ takerAccountNumber: bigint;
26950
+ /**
26951
+ * Taker Cosmos account sequence
26952
+ *
26953
+ * @generated from protobuf field: uint64 taker_account_sequence = 10
26954
+ */
26955
+ takerAccountSequence: bigint;
26956
+ /**
26957
+ * Actual milliseconds elapsed waiting for quotes; use as quotes_wait_time_ms
26958
+ * hint in next request
26959
+ *
26960
+ * @generated from protobuf field: uint64 quotes_wait_ms = 11
26961
+ */
26962
+ quotesWaitMs: bigint;
26963
+ /**
26964
+ * Number of quotes that expired after being received and were excluded from
26965
+ * selection
26966
+ *
26967
+ * @generated from protobuf field: uint64 expired_quotes_count = 12
26968
+ */
26969
+ expiredQuotesCount: bigint;
26970
+ }
26971
+ /**
26972
+ * @generated from protobuf message injective_rfq_gw_rpc.RFQGwPrepareRequestType
26973
+ */
26974
+ interface RFQGwPrepareRequestType$1 {
26975
+ /**
26976
+ * @generated from protobuf field: string client_id = 1
26977
+ */
26978
+ clientId: string;
26979
+ /**
26980
+ * @generated from protobuf field: string market_id = 2
26981
+ */
26982
+ marketId: string;
26983
+ /**
26984
+ * @generated from protobuf field: string direction = 3
26985
+ */
26986
+ direction: string;
26987
+ /**
26988
+ * @generated from protobuf field: string margin = 4
26989
+ */
26990
+ margin: string;
26991
+ /**
26992
+ * @generated from protobuf field: string quantity = 5
26993
+ */
26994
+ quantity: string;
26995
+ /**
26996
+ * @generated from protobuf field: string worst_price = 6
26997
+ */
26998
+ worstPrice: string;
26999
+ /**
27000
+ * @generated from protobuf field: string taker_address = 7
27001
+ */
27002
+ takerAddress: string;
27003
+ /**
27004
+ * RFQ request expiry in milliseconds. 0 = no expiry
27005
+ *
27006
+ * @generated from protobuf field: uint64 expiry = 8
27007
+ */
27008
+ expiry: bigint;
27009
+ /**
27010
+ * Hex-encoded taker public key
27011
+ *
27012
+ * @generated from protobuf field: string taker_pub_key = 9
27013
+ */
27014
+ takerPubKey: string;
27015
+ /**
27016
+ * Taker Cosmos account number
27017
+ *
27018
+ * @generated from protobuf field: uint64 taker_account_number = 10
27019
+ */
27020
+ takerAccountNumber: bigint;
27021
+ /**
27022
+ * Taker Cosmos account sequence (nonce)
27023
+ *
27024
+ * @generated from protobuf field: uint64 taker_account_sequence = 11
27025
+ */
27026
+ takerAccountSequence: bigint;
27027
+ /**
27028
+ * Fee payer Cosmos account number
27029
+ *
27030
+ * @generated from protobuf field: uint64 fee_payer_account_number = 12
27031
+ */
27032
+ feePayerAccountNumber: bigint;
27033
+ /**
27034
+ * Fee payer Cosmos account sequence (nonce)
27035
+ *
27036
+ * @generated from protobuf field: uint64 fee_payer_account_sequence = 13
27037
+ */
27038
+ feePayerAccountSequence: bigint;
27039
+ /**
27040
+ * How long to wait for quotes (max 5000ms)
27041
+ *
27042
+ * @generated from protobuf field: uint64 quotes_wait_time_ms = 20
27043
+ */
27044
+ quotesWaitTimeMs: bigint;
27045
+ /**
27046
+ * Action for quantity not filled by the selected quotes. Set `limit` to place
27047
+ * a limit order at the given price, `market` to sweep the remainder as a
27048
+ * market order. Omit to settle only the quoted amount.
27049
+ *
27050
+ * @generated from protobuf field: injective_rfq_gw_rpc.RFQSettlementUnfilledActionType unfilled_action = 21
27051
+ */
27052
+ unfilledAction?: RFQSettlementUnfilledActionType$1;
27053
+ /**
27054
+ * Taker subaccount nonce at settlement time. Prevents replay when submitting
27055
+ * multiple RFQs in the same block. Defaults to 0 (contract reads the on-chain
27056
+ * nonce).
27057
+ *
27058
+ * @generated from protobuf field: uint32 subaccount_nonce = 22
27059
+ */
27060
+ subaccountNonce: number;
27061
+ /**
27062
+ * Client order ID echoed through to the on-chain trade event. Used to
27063
+ * correlate a trade event back to the originating UI order. Not used
27064
+ * server-side.
27065
+ *
27066
+ * @generated from protobuf field: string cid = 23
27067
+ */
27068
+ cid: string;
27069
+ }
27070
+ /**
27071
+ * @generated from protobuf message injective_rfq_gw_rpc.PrepareResponse
27072
+ */
27073
+ interface PrepareResponse {
27074
+ /**
27075
+ * Generated RFQ ID
27076
+ *
27077
+ * @generated from protobuf field: uint64 rfq_id = 1
27078
+ */
27079
+ rfqId: bigint;
27080
+ /**
27081
+ * Fee-delegated prepared transaction bytes
27082
+ *
27083
+ * @generated from protobuf field: bytes tx = 2
27084
+ */
27085
+ tx: Uint8Array;
27086
+ /**
27087
+ * Hex-encoded fee payer signature
27088
+ *
27089
+ * @generated from protobuf field: string fee_payer_sig = 3
27090
+ */
27091
+ feePayerSig: string;
27092
+ /**
27093
+ * Fee payer address
27094
+ *
27095
+ * @generated from protobuf field: string fee_payer = 4
27096
+ */
27097
+ feePayer: string;
27098
+ /**
27099
+ * Sign mode (SIGN_MODE_DIRECT)
27100
+ *
27101
+ * @generated from protobuf field: string sign_mode = 5
27102
+ */
27103
+ signMode: string;
27104
+ /**
27105
+ * Fee payer public key type
27106
+ *
27107
+ * @generated from protobuf field: string pub_key_type = 6
27108
+ */
27109
+ pubKeyType: string;
27110
+ /**
27111
+ * Fee payer public key
27112
+ *
27113
+ * @generated from protobuf field: injective_rfq_gw_rpc.CosmosPubKey fee_payer_pub_key = 7
27114
+ */
27115
+ feePayerPubKey?: CosmosPubKey$1;
27116
+ /**
27117
+ * Selected quotes in execution order
27118
+ *
27119
+ * @generated from protobuf field: repeated injective_rfq_gw_rpc.RFQGwPrepareQuoteResult quotes = 8
27120
+ */
27121
+ quotes: RFQGwPrepareQuoteResult[];
27122
+ /**
27123
+ * Taker Cosmos account number
27124
+ *
27125
+ * @generated from protobuf field: uint64 taker_account_number = 9
27126
+ */
27127
+ takerAccountNumber: bigint;
27128
+ /**
27129
+ * Taker Cosmos account sequence
27130
+ *
27131
+ * @generated from protobuf field: uint64 taker_account_sequence = 10
27132
+ */
27133
+ takerAccountSequence: bigint;
27134
+ /**
27135
+ * Fee payer Cosmos account number
27136
+ *
27137
+ * @generated from protobuf field: uint64 fee_payer_account_number = 11
27138
+ */
27139
+ feePayerAccountNumber: bigint;
27140
+ /**
27141
+ * Fee payer Cosmos account sequence
27142
+ *
27143
+ * @generated from protobuf field: uint64 fee_payer_account_sequence = 12
27144
+ */
27145
+ feePayerAccountSequence: bigint;
27146
+ /**
27147
+ * Actual milliseconds elapsed waiting for quotes; use as quotes_wait_time_ms
27148
+ * hint in next request
27149
+ *
27150
+ * @generated from protobuf field: uint64 quotes_wait_ms = 13
27151
+ */
27152
+ quotesWaitMs: bigint;
27153
+ /**
27154
+ * Number of quotes that expired after being received and were excluded from
27155
+ * selection
27156
+ *
27157
+ * @generated from protobuf field: uint64 expired_quotes_count = 14
27158
+ */
27159
+ expiredQuotesCount: bigint;
27160
+ }
27161
+ /**
27162
+ * @generated MessageType for protobuf message injective_rfq_gw_rpc.RFQGwPrepareEip712AutoSignRequestType
27163
+ */
27164
+ declare const RFQGwPrepareEip712AutoSignRequestType$1 = new RFQGwPrepareEip712AutoSignRequestType$Type();
27165
+ /**
27166
+ * @generated MessageType for protobuf message injective_rfq_gw_rpc.RFQSettlementUnfilledActionType
27167
+ */
27168
+ declare const RFQSettlementUnfilledActionType$1 = new RFQSettlementUnfilledActionType$Type();
27169
+ /**
27170
+ * @generated MessageType for protobuf message injective_rfq_gw_rpc.RFQSettlementLimitActionType
27171
+ */
27172
+ declare const RFQSettlementLimitActionType = new RFQSettlementLimitActionType$Type();
27173
+ /**
27174
+ * @generated MessageType for protobuf message injective_rfq_gw_rpc.RFQSettlementMarketActionType
27175
+ */
27176
+ declare const RFQSettlementMarketActionType = new RFQSettlementMarketActionType$Type();
27177
+ /**
27178
+ * @generated MessageType for protobuf message injective_rfq_gw_rpc.PrepareEip712AutoSignResponse
27179
+ */
27180
+ declare const PrepareEip712AutoSignResponse = new PrepareEip712AutoSignResponse$Type();
27181
+ /**
27182
+ * @generated MessageType for protobuf message injective_rfq_gw_rpc.CosmosPubKey
27183
+ */
27184
+ declare const CosmosPubKey$1 = new CosmosPubKey$Type();
27185
+ /**
27186
+ * @generated MessageType for protobuf message injective_rfq_gw_rpc.RFQGwPrepareQuoteResult
27187
+ */
27188
+ declare const RFQGwPrepareQuoteResult = new RFQGwPrepareQuoteResult$Type();
27189
+ /**
27190
+ * @generated MessageType for protobuf message injective_rfq_gw_rpc.RFQGwPrepareAutoSignRequestType
27191
+ */
27192
+ declare const RFQGwPrepareAutoSignRequestType$1 = new RFQGwPrepareAutoSignRequestType$Type();
27193
+ /**
27194
+ * @generated MessageType for protobuf message injective_rfq_gw_rpc.PrepareAutoSignResponse
27195
+ */
27196
+ declare const PrepareAutoSignResponse = new PrepareAutoSignResponse$Type();
27197
+ /**
27198
+ * @generated MessageType for protobuf message injective_rfq_gw_rpc.RFQGwPrepareEip712RequestType
27199
+ */
27200
+ declare const RFQGwPrepareEip712RequestType$1 = new RFQGwPrepareEip712RequestType$Type();
27201
+ /**
27202
+ * @generated MessageType for protobuf message injective_rfq_gw_rpc.PrepareEip712Response
27203
+ */
27204
+ declare const PrepareEip712Response$1 = new PrepareEip712Response$Type();
27205
+ /**
27206
+ * @generated MessageType for protobuf message injective_rfq_gw_rpc.RFQGwPrepareRequestType
27207
+ */
27208
+ declare const RFQGwPrepareRequestType$1 = new RFQGwPrepareRequestType$Type();
27209
+ /**
27210
+ * @generated MessageType for protobuf message injective_rfq_gw_rpc.PrepareResponse
27211
+ */
27212
+ declare const PrepareResponse = new PrepareResponse$Type();
27213
+ //#endregion
27214
+ //#region src/client/indexer/types/rfq-gw.d.ts
27215
+ interface RFQGwPrepareAutoSignRequestType {
27216
+ cid?: string;
27217
+ margin: string;
27218
+ expiry?: number;
27219
+ clientId: string;
27220
+ marketId: string;
27221
+ quantity: string;
27222
+ direction: string;
27223
+ worstPrice: string;
27224
+ takerAddress?: string;
27225
+ autosignPubKey: string;
27226
+ autosignAddress: string;
27227
+ subaccountNonce?: number;
27228
+ quotesWaitTimeMs?: number;
27229
+ autosignAccountNumber?: number;
27230
+ feePayerAccountNumber?: number;
27231
+ autosignAccountSequence?: number;
27232
+ feePayerAccountSequence?: number;
27233
+ unfilledAction?: RFQSettlementUnfilledActionType;
27234
+ }
27235
+ interface CosmosPubKeyType {
27236
+ key: string;
27237
+ type: string;
27238
+ }
27239
+ interface RFQGwPrepareQuoteResultType {
27240
+ maker: string;
27241
+ price: string;
27242
+ margin: string;
27243
+ quantity: string;
27244
+ }
27245
+ interface RFQGwPrepareAutoSignResponseType {
27246
+ rfqId: number;
27247
+ tx: Uint8Array;
27248
+ feePayer: string;
27249
+ signMode: string;
27250
+ pubKeyType: string;
27251
+ feePayerSig: string;
27252
+ quotesWaitMs: number;
27253
+ expiredQuotesCount: number;
27254
+ autosignAccountNumber: number;
27255
+ feePayerAccountNumber: number;
27256
+ autosignAccountSequence: number;
27257
+ feePayerAccountSequence: number;
27258
+ feePayerPubKey?: CosmosPubKeyType;
27259
+ quotes: RFQGwPrepareQuoteResultType[];
27260
+ }
27261
+ interface RFQGwPrepareRequestType {
27262
+ cid?: string;
27263
+ margin: string;
27264
+ expiry?: number;
27265
+ clientId: string;
27266
+ marketId: string;
27267
+ quantity: string;
27268
+ direction: string;
27269
+ worstPrice: string;
27270
+ takerAddress: string;
27271
+ takerPubKey: string;
27272
+ subaccountNonce?: number;
27273
+ quotesWaitTimeMs?: number;
27274
+ takerAccountNumber?: number;
27275
+ takerAccountSequence?: number;
27276
+ feePayerAccountNumber?: number;
27277
+ feePayerAccountSequence?: number;
27278
+ unfilledAction?: RFQSettlementUnfilledActionType;
27279
+ }
27280
+ interface RFQGwPrepareResponseType {
27281
+ rfqId: number;
27282
+ tx: Uint8Array;
27283
+ feePayer: string;
27284
+ signMode: string;
27285
+ pubKeyType: string;
27286
+ feePayerSig: string;
27287
+ quotesWaitMs: number;
27288
+ expiredQuotesCount: number;
27289
+ takerAccountNumber: number;
27290
+ takerAccountSequence: number;
27291
+ feePayerAccountNumber: number;
27292
+ feePayerAccountSequence: number;
27293
+ feePayerPubKey?: CosmosPubKeyType;
27294
+ quotes: RFQGwPrepareQuoteResultType[];
27295
+ }
27296
+ interface RFQGwPrepareEip712RequestType {
27297
+ cid?: string;
27298
+ gas?: number;
27299
+ margin: string;
27300
+ expiry?: number;
27301
+ clientId: string;
27302
+ marketId: string;
27303
+ quantity: string;
27304
+ direction: string;
27305
+ worstPrice: string;
27306
+ takerAddress: string;
27307
+ takerPubKey: string;
27308
+ ethChainId?: number;
27309
+ eip712Wrapper?: string;
27310
+ subaccountNonce?: number;
27311
+ quotesWaitTimeMs?: number;
27312
+ takerAccountNumber?: number;
27313
+ takerAccountSequence?: number;
27314
+ feePayerAccountNumber?: number;
27315
+ feePayerAccountSequence?: number;
27316
+ unfilledAction?: RFQSettlementUnfilledActionType;
27317
+ }
27318
+ interface RFQGwPrepareEip712ResponseType {
27319
+ rfqId: number;
27320
+ data: string;
27321
+ feePayer: string;
27322
+ signMode: string;
27323
+ pubKeyType: string;
27324
+ feePayerSig: string;
27325
+ quotesWaitMs: number;
27326
+ expiredQuotesCount: number;
27327
+ takerAccountNumber: number;
27328
+ takerAccountSequence: number;
27329
+ feePayerPubKey?: CosmosPubKeyType;
27330
+ quotes: RFQGwPrepareQuoteResultType[];
27331
+ }
27332
+ interface RFQGwPrepareEip712AutoSignRequestType {
27333
+ cid?: string;
27334
+ gas?: number;
27335
+ margin: string;
27336
+ expiry?: number;
27337
+ clientId: string;
27338
+ marketId: string;
27339
+ quantity: string;
27340
+ direction: string;
27341
+ worstPrice: string;
27342
+ takerAddress?: string;
27343
+ ethChainId?: number;
27344
+ autosignPubKey: string;
27345
+ eip712Wrapper?: string;
27346
+ autosignAddress: string;
27347
+ subaccountNonce?: number;
27348
+ quotesWaitTimeMs?: number;
27349
+ autosignAccountNumber?: number;
27350
+ feePayerAccountNumber?: number;
27351
+ autosignAccountSequence?: number;
27352
+ feePayerAccountSequence?: number;
27353
+ unfilledAction?: RFQSettlementUnfilledActionType;
27354
+ }
27355
+ interface RFQGwPrepareEip712AutoSignResponseType {
27356
+ rfqId: number;
27357
+ data: string;
27358
+ feePayer: string;
27359
+ signMode: string;
27360
+ pubKeyType: string;
27361
+ feePayerSig: string;
27362
+ quotesWaitMs: number;
27363
+ expiredQuotesCount: number;
27364
+ autosignAccountNumber: number;
27365
+ autosignAccountSequence: number;
27366
+ feePayerPubKey?: CosmosPubKeyType;
27367
+ quotes: RFQGwPrepareQuoteResultType[];
27368
+ }
27369
+ type GrpcCosmosPubKey = CosmosPubKey$1;
27370
+ type GrpcRFQGwPrepareRequest = RFQGwPrepareRequestType$1;
27371
+ type GrpcRFQGwPrepareResponse = PrepareResponse;
27372
+ type GrpcRFQGwPrepareQuoteResult = RFQGwPrepareQuoteResult;
27373
+ type GrpcRFQGwPrepareAutoSignResponse = PrepareAutoSignResponse;
27374
+ type GrpcRFQGwPrepareAutoSignRequest = RFQGwPrepareAutoSignRequestType$1;
27375
+ type GrpcRFQGwPrepareEip712Request = RFQGwPrepareEip712RequestType$1;
27376
+ type GrpcRFQGwPrepareEip712Response = PrepareEip712Response$1;
27377
+ type GrpcRFQGwPrepareEip712AutoSignRequest = RFQGwPrepareEip712AutoSignRequestType$1;
27378
+ type GrpcRFQGwPrepareEip712AutoSignResponse = PrepareEip712AutoSignResponse;
27379
+ //#endregion
27380
+ //#region ../../node_modules/.pnpm/@injectivelabs+indexer-proto-ts-v2@1.18.18/node_modules/@injectivelabs/indexer-proto-ts-v2/generated/injective_oracle_rpc_pb.d.ts
27381
+ /**
27382
+ * @generated from protobuf message injective_oracle_rpc.OracleListResponse
27383
+ */
27384
+ interface OracleListResponse {
27385
+ /**
27386
+ * List of oracles
27387
+ *
27388
+ * @generated from protobuf field: repeated injective_oracle_rpc.Oracle oracles = 1
27389
+ */
27390
+ oracles: Oracle$1[];
27391
+ /**
27392
+ * Next tokens for pagination
27393
+ *
27394
+ * @generated from protobuf field: repeated string next = 2
27395
+ */
27396
+ next: string[];
27397
+ }
27398
+ /**
27399
+ * @generated from protobuf message injective_oracle_rpc.Oracle
27400
+ */
27401
+ interface Oracle$1 {
27402
+ /**
27403
+ * The symbol of the oracle asset.
27404
+ *
27405
+ * @generated from protobuf field: string symbol = 1
27406
+ */
27407
+ symbol: string;
27408
+ /**
27409
+ * Oracle base currency
27410
+ *
27411
+ * @generated from protobuf field: string base_symbol = 2
27412
+ */
27413
+ baseSymbol: string;
27414
+ /**
27415
+ * Oracle quote currency
27416
+ *
27417
+ * @generated from protobuf field: string quote_symbol = 3
27418
+ */
27419
+ quoteSymbol: string;
27420
+ /**
27421
+ * Oracle Type
27422
+ *
27423
+ * @generated from protobuf field: string oracle_type = 4
27424
+ */
27425
+ oracleType: string;
27426
+ /**
27427
+ * The price of the oracle asset
27428
+ *
27429
+ * @generated from protobuf field: string price = 5
27430
+ */
27431
+ price: string;
27432
+ }
27433
+ /**
27434
+ * @generated from protobuf message injective_oracle_rpc.PriceResponse
27435
+ */
27436
+ interface PriceResponse {
27437
+ /**
27438
+ * The price of the oracle asset
27439
+ *
27440
+ * @generated from protobuf field: string price = 1
27441
+ */
27442
+ price: string;
27443
+ }
27444
+ /**
27445
+ * @generated from protobuf message injective_oracle_rpc.StreamPricesResponse
27446
+ */
27447
+ interface StreamPricesResponse {
27448
+ /**
27449
+ * The price of the oracle asset
27450
+ *
27451
+ * @generated from protobuf field: string price = 1
27452
+ */
27453
+ price: string;
27454
+ /**
27455
+ * Operation timestamp in UNIX millis.
27456
+ *
27457
+ * @generated from protobuf field: sint64 timestamp = 2
27458
+ */
27459
+ timestamp: bigint;
27460
+ }
27461
+ /**
27462
+ * @generated from protobuf message injective_oracle_rpc.StreamOracleListResponse
27463
+ */
27464
+ interface StreamOracleListResponse {
27465
+ /**
27466
+ * The symbol of the oracle asset
27467
+ *
27468
+ * @generated from protobuf field: string symbol = 1
27469
+ */
27470
+ symbol: string;
26658
27471
  /**
26659
27472
  * Oracle type
26660
27473
  *
@@ -26726,7 +27539,7 @@ declare const StreamPricesByMarketsResponse = new StreamPricesByMarketsResponse$
26726
27539
  type GrpcOracle = Oracle$1;
26727
27540
  interface Oracle extends GrpcOracle {}
26728
27541
  //#endregion
26729
- //#region ../../node_modules/.pnpm/@injectivelabs+indexer-proto-ts-v2@1.18.16/node_modules/@injectivelabs/indexer-proto-ts-v2/generated/injective_auction_rpc_pb.d.ts
27542
+ //#region ../../node_modules/.pnpm/@injectivelabs+indexer-proto-ts-v2@1.18.18/node_modules/@injectivelabs/indexer-proto-ts-v2/generated/injective_auction_rpc_pb.d.ts
26730
27543
  /**
26731
27544
  * @generated from protobuf message injective_auction_rpc.AuctionEndpointResponse
26732
27545
  */
@@ -27223,7 +28036,7 @@ type GrpcAccountAuctionV2 = AccountAuctionV2$1;
27223
28036
  type GrpcAuctionContract = AuctionContract$1;
27224
28037
  type StreamBidsResponse = StreamBidsResponse$1;
27225
28038
  //#endregion
27226
- //#region ../../node_modules/.pnpm/@injectivelabs+indexer-proto-ts-v2@1.18.16/node_modules/@injectivelabs/indexer-proto-ts-v2/generated/injective_archiver_rpc_pb.d.ts
28039
+ //#region ../../node_modules/.pnpm/@injectivelabs+indexer-proto-ts-v2@1.18.18/node_modules/@injectivelabs/indexer-proto-ts-v2/generated/injective_archiver_rpc_pb.d.ts
27227
28040
  /**
27228
28041
  * @generated from protobuf message injective_archiver_rpc.BalanceResponse
27229
28042
  */
@@ -27745,7 +28558,7 @@ type GrpcHistoricalVolumes = HistoricalVolumes$1;
27745
28558
  type GrpcPnlLeaderboard = PnlLeaderboardResponse | PnlLeaderboardFixedResolutionResponse;
27746
28559
  type GrpcVolLeaderboard = VolLeaderboardResponse | VolLeaderboardFixedResolutionResponse;
27747
28560
  //#endregion
27748
- //#region ../../node_modules/.pnpm/@injectivelabs+indexer-proto-ts-v2@1.18.16/node_modules/@injectivelabs/indexer-proto-ts-v2/generated/injective_referral_rpc_pb.d.ts
28561
+ //#region ../../node_modules/.pnpm/@injectivelabs+indexer-proto-ts-v2@1.18.18/node_modules/@injectivelabs/indexer-proto-ts-v2/generated/injective_referral_rpc_pb.d.ts
27749
28562
  /**
27750
28563
  * @generated from protobuf message injective_referral_rpc.GetReferrerDetailsResponse
27751
28564
  */
@@ -27876,7 +28689,7 @@ interface ReferralDetails {
27876
28689
  invitees: ReferralInvitee[];
27877
28690
  }
27878
28691
  //#endregion
27879
- //#region ../../node_modules/.pnpm/@injectivelabs+indexer-proto-ts-v2@1.18.16/node_modules/@injectivelabs/indexer-proto-ts-v2/generated/injective_campaign_rpc_pb.d.ts
28692
+ //#region ../../node_modules/.pnpm/@injectivelabs+indexer-proto-ts-v2@1.18.18/node_modules/@injectivelabs/indexer-proto-ts-v2/generated/injective_campaign_rpc_pb.d.ts
27880
28693
  /**
27881
28694
  * @generated from protobuf message injective_campaign_rpc.RankingResponse
27882
28695
  */
@@ -28713,7 +29526,7 @@ interface AllSpotMarketSummaryResponse {
28713
29526
  data: AllChronosSpotMarketSummary[];
28714
29527
  }
28715
29528
  //#endregion
28716
- //#region ../../node_modules/.pnpm/@injectivelabs+indexer-proto-ts-v2@1.18.16/node_modules/@injectivelabs/indexer-proto-ts-v2/generated/injective_megavault_rpc_pb.d.ts
29529
+ //#region ../../node_modules/.pnpm/@injectivelabs+indexer-proto-ts-v2@1.18.18/node_modules/@injectivelabs/indexer-proto-ts-v2/generated/injective_megavault_rpc_pb.d.ts
28717
29530
  /**
28718
29531
  * @generated from protobuf message injective_megavault_rpc.GetVaultResponse
28719
29532
  */
@@ -29832,7 +30645,7 @@ interface IncentivesCampaign {
29832
30645
  subaccountIdSuffix: string;
29833
30646
  }
29834
30647
  //#endregion
29835
- //#region ../../node_modules/.pnpm/@injectivelabs+indexer-proto-ts-v2@1.18.16/node_modules/@injectivelabs/indexer-proto-ts-v2/generated/injective_insurance_rpc_pb.d.ts
30648
+ //#region ../../node_modules/.pnpm/@injectivelabs+indexer-proto-ts-v2@1.18.18/node_modules/@injectivelabs/indexer-proto-ts-v2/generated/injective_insurance_rpc_pb.d.ts
29836
30649
  /**
29837
30650
  * @generated from protobuf message injective_insurance_rpc.FundsResponse
29838
30651
  */
@@ -30094,7 +30907,7 @@ interface InsuranceFundCreateParams {
30094
30907
  type GrpcIndexerInsuranceFund = InsuranceFund$2;
30095
30908
  type GrpcIndexerRedemptionSchedule = RedemptionSchedule;
30096
30909
  //#endregion
30097
- //#region ../../node_modules/.pnpm/@injectivelabs+indexer-proto-ts-v2@1.18.16/node_modules/@injectivelabs/indexer-proto-ts-v2/generated/injective_derivative_exchange_rpc_pb.d.ts
30910
+ //#region ../../node_modules/.pnpm/@injectivelabs+indexer-proto-ts-v2@1.18.18/node_modules/@injectivelabs/indexer-proto-ts-v2/generated/injective_derivative_exchange_rpc_pb.d.ts
30098
30911
  /**
30099
30912
  * @generated from protobuf message injective_derivative_exchange_rpc.MarketsResponse
30100
30913
  */
@@ -32184,7 +32997,7 @@ interface BankTransferFromExplorerApiResponse {
32184
32997
  block_timestamp: string;
32185
32998
  }
32186
32999
  //#endregion
32187
- //#region ../../node_modules/.pnpm/@injectivelabs+indexer-proto-ts-v2@1.18.16/node_modules/@injectivelabs/indexer-proto-ts-v2/generated/injective_tc_derivatives_rpc_pb.d.ts
33000
+ //#region ../../node_modules/.pnpm/@injectivelabs+indexer-proto-ts-v2@1.18.18/node_modules/@injectivelabs/indexer-proto-ts-v2/generated/injective_tc_derivatives_rpc_pb.d.ts
32188
33001
  /**
32189
33002
  * @generated from protobuf message injective_tc_derivatives_rpc.OrdersHistoryResponse
32190
33003
  */
@@ -32660,6 +33473,12 @@ interface TCDerivativeTrade {
32660
33473
  * @generated from protobuf field: string position_entry_price = 17
32661
33474
  */
32662
33475
  positionEntryPrice: string;
33476
+ /**
33477
+ * True if the position is closed by this trade
33478
+ *
33479
+ * @generated from protobuf field: bool is_position_closed = 18
33480
+ */
33481
+ isPositionClosed: boolean;
32663
33482
  }
32664
33483
  /**
32665
33484
  * @generated from protobuf message injective_tc_derivatives_rpc.PositionDelta
@@ -32951,6 +33770,7 @@ interface TcDerivativeTradeHistory {
32951
33770
  executionPrice: string;
32952
33771
  positionIsLong: boolean;
32953
33772
  executionMargin: string;
33773
+ isPositionClosed: boolean;
32954
33774
  positionOpenedAt: number;
32955
33775
  executionQuantity: string;
32956
33776
  positionEntryPrice: string;
@@ -33066,7 +33886,7 @@ interface ChronosLeaderboardResponse {
33066
33886
  data: ChronosLeaderboard;
33067
33887
  }
33068
33888
  //#endregion
33069
- //#region ../../node_modules/.pnpm/@injectivelabs+indexer-proto-ts-v2@1.18.16/node_modules/@injectivelabs/indexer-proto-ts-v2/generated/injective_portfolio_rpc_pb.d.ts
33889
+ //#region ../../node_modules/.pnpm/@injectivelabs+indexer-proto-ts-v2@1.18.18/node_modules/@injectivelabs/indexer-proto-ts-v2/generated/injective_portfolio_rpc_pb.d.ts
33070
33890
  /**
33071
33891
  * @generated from protobuf message injective_portfolio_rpc.AccountPortfolioResponse
33072
33892
  */
@@ -33685,9 +34505,13 @@ declare class IndexerGrpcRFQApi extends BaseIndexerGrpcConsumer {
33685
34505
  }): Promise<SettlementsResponse>;
33686
34506
  createConditionalOrder({
33687
34507
  order,
33688
- signature
34508
+ signMode,
34509
+ signature,
34510
+ evmChainId
33689
34511
  }: {
34512
+ signMode: string;
33690
34513
  signature: string;
34514
+ evmChainId: bigint;
33691
34515
  order: {
33692
34516
  cid?: string;
33693
34517
  taker: string;
@@ -33981,7 +34805,7 @@ declare class IndexerGrpcMitoApi extends BaseIndexerGrpcConsumer {
33981
34805
  }>;
33982
34806
  }
33983
34807
  //#endregion
33984
- //#region ../../node_modules/.pnpm/@injectivelabs+indexer-proto-ts-v2@1.18.16/node_modules/@injectivelabs/indexer-proto-ts-v2/generated/injective_meta_rpc_pb.d.ts
34808
+ //#region ../../node_modules/.pnpm/@injectivelabs+indexer-proto-ts-v2@1.18.18/node_modules/@injectivelabs/indexer-proto-ts-v2/generated/injective_meta_rpc_pb.d.ts
33985
34809
  /**
33986
34810
  * @generated from protobuf message injective_meta_rpc.PingResponse
33987
34811
  */
@@ -34207,6 +35031,131 @@ declare class IndexerGrpcRfqGwApi extends BaseIndexerGrpcConsumer {
34207
35031
  feePayerAccountSequence?: number;
34208
35032
  unfilledAction?: RFQSettlementUnfilledActionType;
34209
35033
  }): Promise<RFQGwPrepareAutoSignResponseType>;
35034
+ fetchPrepare({
35035
+ cid,
35036
+ margin,
35037
+ expiry,
35038
+ clientId,
35039
+ marketId,
35040
+ quantity,
35041
+ direction,
35042
+ worstPrice,
35043
+ takerPubKey,
35044
+ takerAddress,
35045
+ unfilledAction,
35046
+ subaccountNonce,
35047
+ quotesWaitTimeMs,
35048
+ takerAccountNumber,
35049
+ feePayerAccountNumber,
35050
+ takerAccountSequence,
35051
+ feePayerAccountSequence
35052
+ }: {
35053
+ cid?: string;
35054
+ margin: string;
35055
+ expiry?: number;
35056
+ clientId: string;
35057
+ marketId: string;
35058
+ quantity: string;
35059
+ direction: string;
35060
+ worstPrice: string;
35061
+ takerAddress: string;
35062
+ takerPubKey: string;
35063
+ subaccountNonce?: number;
35064
+ quotesWaitTimeMs?: number;
35065
+ takerAccountNumber?: number;
35066
+ feePayerAccountNumber?: number;
35067
+ takerAccountSequence?: number;
35068
+ feePayerAccountSequence?: number;
35069
+ unfilledAction?: RFQSettlementUnfilledActionType;
35070
+ }): Promise<RFQGwPrepareResponseType>;
35071
+ fetchPrepareEip712({
35072
+ cid,
35073
+ gas,
35074
+ margin,
35075
+ expiry,
35076
+ clientId,
35077
+ marketId,
35078
+ quantity,
35079
+ direction,
35080
+ worstPrice,
35081
+ ethChainId,
35082
+ takerPubKey,
35083
+ takerAddress,
35084
+ eip712Wrapper,
35085
+ unfilledAction,
35086
+ subaccountNonce,
35087
+ quotesWaitTimeMs,
35088
+ takerAccountNumber,
35089
+ feePayerAccountNumber,
35090
+ takerAccountSequence,
35091
+ feePayerAccountSequence
35092
+ }: {
35093
+ cid?: string;
35094
+ gas?: number;
35095
+ margin: string;
35096
+ expiry?: number;
35097
+ clientId: string;
35098
+ marketId: string;
35099
+ quantity: string;
35100
+ direction: string;
35101
+ worstPrice: string;
35102
+ ethChainId?: number;
35103
+ takerAddress: string;
35104
+ takerPubKey: string;
35105
+ eip712Wrapper?: string;
35106
+ subaccountNonce?: number;
35107
+ quotesWaitTimeMs?: number;
35108
+ takerAccountNumber?: number;
35109
+ feePayerAccountNumber?: number;
35110
+ takerAccountSequence?: number;
35111
+ feePayerAccountSequence?: number;
35112
+ unfilledAction?: RFQSettlementUnfilledActionType;
35113
+ }): Promise<RFQGwPrepareEip712ResponseType>;
35114
+ fetchPrepareEip712AutoSign({
35115
+ cid,
35116
+ gas,
35117
+ margin,
35118
+ expiry,
35119
+ clientId,
35120
+ marketId,
35121
+ quantity,
35122
+ direction,
35123
+ worstPrice,
35124
+ ethChainId,
35125
+ takerAddress,
35126
+ autosignPubKey,
35127
+ eip712Wrapper,
35128
+ unfilledAction,
35129
+ autosignAddress,
35130
+ subaccountNonce,
35131
+ quotesWaitTimeMs,
35132
+ autosignAccountNumber,
35133
+ feePayerAccountNumber,
35134
+ autosignAccountSequence,
35135
+ feePayerAccountSequence
35136
+ }: {
35137
+ cid?: string;
35138
+ gas?: number;
35139
+ margin: string;
35140
+ expiry?: number;
35141
+ clientId: string;
35142
+ marketId: string;
35143
+ quantity: string;
35144
+ direction: string;
35145
+ worstPrice: string;
35146
+ ethChainId?: number;
35147
+ takerAddress?: string;
35148
+ autosignPubKey: string;
35149
+ eip712Wrapper?: string;
35150
+ autosignAddress: string;
35151
+ subaccountNonce?: number;
35152
+ quotesWaitTimeMs?: number;
35153
+ autosignAccountNumber?: number;
35154
+ feePayerAccountNumber?: number;
35155
+ autosignAccountSequence?: number;
35156
+ feePayerAccountSequence?: number;
35157
+ unfilledAction?: RFQSettlementUnfilledActionType;
35158
+ }): Promise<RFQGwPrepareEip712AutoSignResponseType>;
34210
35159
  }
34211
35160
  //#endregion
34212
35161
  //#region src/client/indexer/grpc/IndexerGrpcOracleApi.d.ts
@@ -34241,7 +35190,7 @@ declare class IndexerGrpcOracleApi extends BaseIndexerGrpcConsumer {
34241
35190
  }): Promise<PriceResponse>;
34242
35191
  }
34243
35192
  //#endregion
34244
- //#region ../../node_modules/.pnpm/@injectivelabs+indexer-proto-ts-v2@1.18.16/node_modules/@injectivelabs/indexer-proto-ts-v2/generated/injective_exchange_rpc_pb.d.ts
35193
+ //#region ../../node_modules/.pnpm/@injectivelabs+indexer-proto-ts-v2@1.18.18/node_modules/@injectivelabs/indexer-proto-ts-v2/generated/injective_exchange_rpc_pb.d.ts
34245
35194
  /**
34246
35195
  * @generated from protobuf message injective_exchange_rpc.PrepareTxResponse
34247
35196
  */
@@ -35371,6 +36320,7 @@ declare class IndexerGrpcTcDerivativesApi extends BaseIndexerGrpcConsumer {
35371
36320
  fetchTradesHistory(params?: {
35372
36321
  token?: string;
35373
36322
  sortBy?: string;
36323
+ withPnl?: boolean;
35374
36324
  endTime?: number;
35375
36325
  perPage?: number;
35376
36326
  marketId?: string;
@@ -35852,6 +36802,9 @@ declare class IndexerGrpcRfqGwTransformer {
35852
36802
  static grpcCosmosPubKeyToCosmosPubKey(grpcPubKey: GrpcCosmosPubKey): CosmosPubKeyType;
35853
36803
  static grpcPrepareQuoteResultToPrepareQuoteResult(grpcQuote: GrpcRFQGwPrepareQuoteResult): RFQGwPrepareQuoteResultType;
35854
36804
  static prepareAutoSignResponseToResponse(response: PrepareAutoSignResponse): RFQGwPrepareAutoSignResponseType;
36805
+ static prepareResponseToResponse(response: PrepareResponse): RFQGwPrepareResponseType;
36806
+ static prepareEip712ResponseToResponse(response: PrepareEip712Response$1): RFQGwPrepareEip712ResponseType;
36807
+ static prepareEip712AutoSignResponseToResponse(response: PrepareEip712AutoSignResponse): RFQGwPrepareEip712AutoSignResponseType;
35855
36808
  }
35856
36809
  //#endregion
35857
36810
  //#region src/client/indexer/transformers/IndexerRfqStreamTransformer.d.ts
@@ -40790,4 +41743,4 @@ declare class ChainGrpcInsuranceFundTransformer {
40790
41743
  }[];
40791
41744
  }
40792
41745
  //#endregion
40793
- export { TcDerivativeTradesStreamCallbackV2 as $, TradeRewardCampaign as $_, MegaVaultVolatilityStats as $a, GrpcSubaccountBalance as $c, spotQuantityToChainQuantity as $d, getGenericAuthorizationFromMessageType as $f, EthAccount as $g, PermissionNamespace as $h, PerpetualMarket as $i, MitoMissionLeaderboardEntry as $l, MsgAdminUpdateBinaryOptionsMarket as $m, IndexerGrpcRfqTransformer as $n, Oracle as $o, createTransaction as $p, GrpcTcDerivativePosition as $r, TakerStreamEvents as $s, BlocksStreamCallback as $t, uint8ArrayToBase64 as $u, TallyResult as $v, MsgWithdraw as $y, ChainGrpcAuctionApi as A, GrpcDenomDecimals as A_, GrpcMegaVaultVolatility as Aa, GrpcPeggyWithdrawalTx as Ac, derivativePriceToChainPrice as Ad, ripemd160 as Af, CreateSpotMarketOrderAuthz as Ag, AuctionParams as Ah, DerivativeLimitOrderParams as Ai, GrpcMitoSubaccountBalance as Al, TxConcreteApi as Am, IndexerDerivativeStreamTransformer as An, Holder as Ao, createAny as Ap, StreamStatusResponse as Ar, GrpcRFQExpiry as As, VaultStreamCallbackV2 as At, grpcPagingToPagingV2 as Au, ContractCodeHistoryOperationTypeMap as Av, MsgRequestRedemption as Ay, ChainGrpcAuthApi as B, GrpcOrderType as B_, MegaVaultOperatorRedemptionBucket as Ba, Transaction as Bc, formatPriceToAllowableDecimals as Bd, protobufTimestampToUnixMs as Bf, InsuranceModuleParams as Bg, GrpcPermissionPolicyStatus as Bh, GrpcBinaryOptionsMarketInfo as Bi, MitoHolders as Bl, FeegrantMsgs as Bm, IndexerOracleStreamTransformer as Bn, AuctionContract as Bo, createSignDoc as Bp, PortfolioSubaccountBalanceV2 as Br, RFQExpiryType as Bs, StreamManager as Bt, DEFAULT_DERIVATION_PATH as Bu, grpcContractInfo as Bv, MsgRemoveRateLimit as By, ChainGrpcInsuranceFundApi as C, GrpcCampaignRewardPool as C_, GrpcMegaVaultPnlStats as Ca, MsgBid as Cb, GasFee as Cc, denomAmountToGrpcChainDenomAmount as Cd, hashToHex as Cf, BatchCreateDerivativeLimitOrdersAuthz as Cg, AuctionEventAuctionStart as Ch, TransactionFromExplorerApiResponse as Ci, GrpcMitoMissionLeaderboardEntry as Cl, CreateTransactionWithSignersArgs as Cm, SpotOrderbookV2StreamCallback as Cn, GrpcLeaderboardRow as Co, protoTypeToAminoType as Cp, IndexerGrpcMitoApi as Cr, IndexerTokenMeta as Cs, OraclePriceStreamCallbackV2 as Ct, WsReconnectConfig as Cu, ValidatorDescription as Cv, MsgCreateInsuranceFund as Cy, ChainGrpcTendermintApi as D, GrpcChainFullSpotMarket as D_, GrpcMegaVaultUnrealizedPnl as Da, GrpcIBCTransferTx as Dc, derivativeMarginToChainMarginToFixed as Dd, privateKeyToPublicKey as Df, CreateDerivativeLimitOrderAuthz as Dg, AuctionModuleState as Dh, BatchDerivativeOrderCancelParams as Di, GrpcMitoStakingPool as Dl, TxClientBroadcastResponse as Dm, IndexerTcDerivativesStreamTransformer as Dn, HistoricalBalance as Do, SIGN_DIRECT as Dp, GrpcWebSocketTransport as Dr, QuantityAndFees as Ds, StakingRewardByAccountStreamCallbackV2 as Dt, fetchAllWithPagination as Du, ContractAccountsBalanceWithPagination as Dv, MsgReclaimLockedFunds as Dy, ChainGrpcPermissionsApi as E, GrpcChainFullDerivativeMarket as E_, GrpcMegaVaultTargetApr as Ea, GrpcWebFetchTransport as Eb, GrpcGasFee as Ec, derivativeMarginToChainMargin as Ed, privateKeyHashToPublicKeyBase64 as Ef, CancelSpotOrderAuthz as Eg, AuctionModuleParams as Eh, BaseDerivativeMarket as Ei, GrpcMitoStakingGauge as El, TxClientBroadcastOptions as Em, IndexerAccountPortfolioStreamTransformer as En, GrpcVolLeaderboard as Eo, SIGN_AMINO as Ep, IndexerWsTakerStream as Er, PriceLevel as Es, IndexerGrpcMitoStreamV2 as Et, recoverTypedSignaturePubKey as Eu, ContractAccountBalance as Ev, MsgUpdateSpotMarketV2 as Ey, ChainGrpcPeggyApi as F, GrpcFeeDiscountTierInfo as F_, MegaVaultHistoricalPnL as Fa, Message as Fc, derivativeQuantityToChainQuantityToFixed as Fd, getGrpcWebTransport as Ff, GrantWithDecodedAuthorization as Fg, GrpcAuctionLastAuctionResult as Fh, DerivativeTrade as Fi, MitoChanges as Fl, DistributionMsgs as Fm, IndexerArchiverStreamTransformer as Fn, AccountAuctionStatus as Fo, isTxNotFoundError as Fp, GrpcAccountPortfolioV2 as Fr, MakerStreamConfig as Fs, SpotTradesStreamCallbackV2 as Ft, BECH32_ADDR_CONS_PREFIX as Fu, GrpcCodeInfoResponse as Fv, MsgRevokeAllowance as Fy, createStreamSubscriptionV2 as G, GrpcSpotOrder as G_, MegaVaultStats as Ga, WasmCode as Gc, isNumber as Gd, MsgUpdateParams as Gf, GrpcBankParams as Gg, GrpcPermissionRoleManager as Gh, GrpcDerivativePositionV2 as Gi, MitoIDOSubscriber as Gl, OracleMsgs as Gm, IndexerGrpcAccountTransformer as Gn, GrpcAuctionCoin as Go, createWeb3Extension as Gp, ChronosLeaderboardResponse as Gr, RFQRequestType as Gs, DerivativeOrderHistoryStreamCallback as Gt, fromBase64 as Gu, GrpcProposal as Gv, MsgCreateDenom as Gy, ChainGrpcIbcApi as H, GrpcPointsMultiplier as H_, MegaVaultPnlStats as Ha, ValidatorSlashingEvent as Hc, getExactDecimalsFromNumber as Hd, MsgUpdateActorRoles as Hf, GrpcMintParams as Hg, GrpcPermissionRole as Hh, GrpcDerivativeMarketInfo as Hi, MitoIDOClaimedCoins as Hl, IbcMsgs as Hm, IndexerGrpcExplorerTransformer as Hn, AuctionsStats as Ho, createSignerInfo as Hp, SubaccountDepositV2 as Hr, RFQProcessedQuoteType as Hs, AccountPortfolioStreamCallback as Ht, base64ToUtf8 as Hu, GrpcGovernanceDepositParams as Hv, MsgCreateRateLimit as Hy, ChainGrpcAuthZApi as I, GrpcFeeDiscountTierTTL as I_, MegaVaultHistoricalTVL as Ia, Paging as Ic, formatAmountToAllowableAmount as Id, getGasPriceBasedOnMessage as If, GrpcInsuranceFund as Ig, GrpcAuctionParams as Ih, ExpiryFuturesMarket as Ii, MitoClaimReference as Il, Erc20Msgs as Im, IndexerGrpcMegaVaultTransformer as In, AccountAuctionV2 as Io, createAuthInfo as Ip, GrpcPortfolioSubaccountBalanceV2 as Ir, MakerStreamEvents as Is, IndexerGrpcRfqStreamV2 as It, BECH32_ADDR_VAL_PREFIX as Iu, GrpcContractCodeHistoryEntry as Iv, MsgCancelSpotOrder as Iy, IndexerGrpcAccountPortfolioStreamV2 as J, GrpcTradingRewardCampaignInfo as J_, MegaVaultTargetApr as Ja, ListTradingStrategiesResponse as Jc, spotPriceFromChainPriceToFixed as Jd, MsgInstantBinaryOptionsMarketLaunch as Jf, SendEnabled as Jg, PermissionActionMap as Jh, GrpcFundingPayment as Ji, MitoLeaderboard as Jl, TokenFactoryMsgs as Jm, IndexerRfqStreamTransformer as Jn, GrpcAuctionV2 as Jo, getTransactionPartsFromTxRaw as Jp, ChronosDerivativeMarketSummary as Jr, RFQSettlementUnfilledActionType as Js, DerivativeOrdersStreamCallback as Jt, hexToBuff as Ju, GrpcVote as Jv, MsgPrivilegedExecuteContract as Jy, StreamManagerV2 as K, GrpcTradeRewardCampaign as K_, MegaVaultSubscription as Ka, GridStrategyStreamResponse as Kc, numberToCosmosSdkDecString as Kd, MsgClaimVoucher as Kf, GrpcSupply as Kg, GrpcPermissionsNamespace as Kh, GrpcDerivativeTrade as Ki, MitoIDOSubscription as Kl, PeggyMsgs as Km, IndexerSpotStreamTransformer as Kn, GrpcAuctionCoinPrices as Ko, getAminoStdSignDoc as Kp, AllChronosDerivativeMarketSummary as Kr, RFQSettlementLimitActionType$1 as Ks, DerivativeOrderbookUpdateStreamCallback as Kt, fromUtf8 as Ku, GrpcProposalDeposit as Kv, MsgChangeAdmin as Ky, ChainGrpcWasmApi as L, GrpcMarketStatus as L_, MegaVaultIncentives as La, PeggyDepositTx as Lc, formatAmountToAllowableDecimals as Ld, makeTimeoutTimestamp as Lf, GrpcInsuranceParams as Lg, GrpcPermissionActorRoles as Lh, ExpiryFuturesMarketInfo as Li, MitoDenomBalance as Ll, ExchangeMsgs as Lm, IndexerAuctionStreamTransformer as Ln, Auction as Lo, createBody as Lp, GrpcPositionV2 as Lr, RFQConditionalOrder as Ls, QuoteStreamCallbackV2 as Lt, BECH32_PUBKEY_ACC_PREFIX as Lu, GrpcContractInfo as Lv, MsgCreateValidator as Ly, ChainGrpcOracleApi as M, GrpcExchangeParams as M_, MegaVault as Ma, GrpcValidatorUptime as Mc, derivativeQuantityFromChainQuantity as Md, sha256 as Mf, Grant$1 as Mg, GrpcAuctionEventAuctionResult as Mh, DerivativeMarketWithoutBinaryOptions as Mi, GrpcMitoTokenInfo as Ml, AuctionMsgs as Mm, IndexerGrpcMitoStreamTransformer as Mn, PnlLeaderboard as Mo, getEthereumSignerAddress as Mp, ChronosMarketHistoryResponse as Mr, GrpcRFQQuote as Ms, SpotOrderHistoryStreamCallbackV2 as Mt, paginationRequestFromPagination as Mu, ContractStateWithPagination as Mv, MsgLiquidatePosition as My, ChainGrpcErc20Api as N, GrpcFeeDiscountAccountInfo as N_, MegaVaultApr as Na, IBCTransferTx as Nc, derivativeQuantityFromChainQuantityToFixed as Nd, parseCoins as Nf, GrantAuthorization$1 as Ng, GrpcAuctionEventAuctionStart as Nh, DerivativeOrderCancelParams as Ni, GrpcMitoVault as Nl, AuthzMsgs as Nm, IndexerGrpcDerivativeTransformer as Nn, SpotAverageEntry as No, getInjectiveSignerAddress as Np, AccountPortfolioBalances as Nr, GrpcRFQRequest as Ns, SpotOrderbookUpdateStreamCallbackV2 as Nt, paginationUint8ArrayToString as Nu, GoogleProtoBufAny as Nv, MsgBatchUpdateOrders as Ny, ChainGrpcExchangeApi as O, GrpcChainPosition as O_, GrpcMegaVaultUserStats as Oa, GrpcIndexerValidatorDescription as Oc, derivativePriceFromChainPrice as Od, privateKeyToPublicKeyBase64 as Of, CreateDerivativeMarketOrderAuthz as Og, AuctionModuleStateParams as Oh, BinaryOptionsMarket as Oi, GrpcMitoStakingStakingActivity as Ol, TxClientMode as Om, IndexerGrpcTcDerivativesTransformer as On, HistoricalRPNL as Oo, SIGN_EIP712 as Op, GrpcWebSocketCodec as Or, Route as Os, TransfersStreamCallbackV2 as Ot, grpcPaginationToPagination as Ou, ContractCodeHistoryEntry as Ov, MsgRelayProviderPrices as Oy, ChainGrpcWasmXApi as P, GrpcFeeDiscountSchedule as P_, MegaVaultAprStats as Pa, IndexerStreamTransaction as Pc, derivativeQuantityToChainQuantity as Pd, ofacList as Pf, GrantAuthorizationWithDecodedAuthorization as Pg, GrpcAuctionEventBid as Ph, DerivativeOrderHistory as Pi, GrpcMitoWhitelistAccount as Pl, BankMsgs as Pm, ExplorerStreamTransformer as Pn, VolLeaderboard as Po, errorToErrorMessage as Pp, AccountPortfolioV2 as Pr, GrpcRFQSettlement as Ps, SpotOrdersStreamCallbackV2 as Pt, BECH32_ADDR_ACC_PREFIX as Pu, GrpcAbsoluteTxPosition as Pv, MsgExternalTransfer as Py, TcDerivativePositionsStreamCallbackV2 as Q, PointsMultiplier as Q_, MegaVaultVolatility as Qa, GrpcAccountPortfolio as Qc, spotQuantityFromChainQuantityToFixed as Qd, GrantAuthorizationType as Qf, AuthModuleParams as Qg, PermissionGenesisState as Qh, GrpcPositionDelta as Qi, MitoMissionLeaderboard as Ql, MsgBatchCancelBinaryOptionsOrders as Qm, IndexerGrpcMitoTransformer as Qn, GrpcOracle as Qo, waitTxBroadcasted as Qp, GrpcTcDerivativeOrdersResponse as Qr, TakerStreamConfig as Qs, IndexerGrpcDerivativesStream as Qt, toUtf8 as Qu, ProposalStatusMap as Qv, MsgUpdateAdmin as Qy, ChainGrpcMintApi as R, GrpcMarketStatusMap as R_, MegaVaultMaxDrawdown as Ra, PeggyWithdrawalTx as Rc, formatNumberToAllowableDecimals as Rd, makeTimeoutTimestampInNs as Rf, GrpcRedemptionSchedule as Rg, GrpcPermissionAddressVoucher as Rh, FundingPayment as Ri, MitoGauge as Rl, ExchangeV1Msgs as Rm, IndexerAccountStreamTransformer as Rn, AuctionCoin as Ro, createFee as Rp, GrpcPositionsWithUPNL as Rr, RFQConditionalOrderInput as Rs, RequestStreamCallbackV2 as Rt, BECH32_PUBKEY_CONS_PREFIX as Ru, MarketingInfo as Rv, MsgBeginRedelegate as Ry, ChainRestBankApi as S, FeeDiscountTierTTL as S_, GrpcMegaVaultPnl as Sa, MsgGrant as Sb, ExplorerValidatorUptime as Sc, denomAmountToChainDenomAmountToFixed as Sd, domainHash as Sf, BatchCancelSpotOrdersAuthz as Sg, AuctionEventAuctionResult as Sh, ExplorerTransactionApiResponse as Si, GrpcMitoMission as Sl, CreateTransactionResult as Sm, SpotOrderbookUpdateStreamCallback as Sn, GrpcHistoricalVolumes as So, objectKeysToEip712Types as Sp, IndexerGrpcMetaApi as Sr, GrpcTokenMeta as Ss, OracleListStreamCallbackV2 as St, WsDisconnectReason as Su, ValidatorCommission as Sv, MsgAuthorizeStakeGrants as Sy, ChainGrpcDistributionApi as T, GrpcChainDerivativePosition as T_, GrpcMegaVaultSubscription as Ta, MsgVote as Tb, GrpcExplorerStats as Tc, derivativeMarginFromChainMarginToFixed as Td, privateKeyHashToPublicKey as Tf, CancelDerivativeOrderAuthz as Tg, AuctionLastAuctionResult as Th, WasmCodeExplorerApiResponse as Ti, GrpcMitoPriceSnapshot as Tl, SignerDetails as Tm, SpotTradesStreamCallback as Tn, GrpcSpotAverageEntry as To, TxClient as Tp, IndexerWsMakerStream as Tr, OrderbookWithSequence as Ts, HistoricalStakingStreamCallbackV2 as Tt, WsTransportConfig as Tu, CodeInfoResponse as Tv, MsgSetDenomMetadata as Ty, ChainGrpcGovApi as U, GrpcSpotMarket as U_, MegaVaultRedemption as Ua, ValidatorUptime as Uc, getSignificantDecimalsFromNumber as Ud, MsgUpdateNamespace as Uf, MinModuleParams as Ug, GrpcPermissionRoleActors as Uh, GrpcDerivativeOrderHistory as Ui, MitoIDOInitParams as Ul, InsuranceMsgs as Um, IndexerGrpcArchiverTransformer as Un, GrpcAccountAuctionV2 as Uo, createSigners as Up, ChronosLeaderboard as Ur, RFQQuoteType as Us, IndexerGrpcAccountPortfolioStream as Ut, binaryToBase64 as Uu, GrpcGovernanceTallyParams as Uv, MsgMigrateContract as Uy, ChainGrpcEvmApi as V, GrpcOrderTypeMap as V_, MegaVaultPnl as Va, TxMessage as Vc, formatPriceToAllowablePrice as Vd, protobufTimestampToUnixSeconds as Vf, OracleTypeMap as Vg, GrpcPermissionPolicyStatusManagerCapability as Vh, GrpcDerivativeLimitOrder as Vi, MitoIDO as Vl, GovMsgs as Vm, IndexerGrpcReferralTransformer as Vn, AuctionV2 as Vo, createSignDocFromTransaction as Vp, PositionsWithUPNL as Vr, RFQMakerStreamAckData as Vs, createStreamSubscription as Vt, base64ToUint8Array as Vu, GovModuleStateParams as Vv, MsgUpdateRateLimit as Vy, accountEthParser as W, GrpcSpotMarketOrder as W_, MegaVaultRedemptionStatus as Wa, ValidatorUptimeStatus as Wc, getTensMultiplier as Wd, MsgCreateNamespace as Wf, BankModuleParams as Wg, GrpcPermissionRoleIDs as Wh, GrpcDerivativePosition as Wi, MitoIDOProgress as Wl, Msgs as Wm, IndexerGrpcAuctionTransformer as Wn, GrpcAuction as Wo, createTxRawEIP712 as Wp, ChronosLeaderboardEntry as Wr, RFQRequestInputType as Ws, DerivativeMarketStreamCallback as Wt, concatUint8Arrays as Wu, GrpcGovernanceVotingParams as Wv, MsgExecuteContract as Wy, TcDerivativeOrderHistoryStreamCallbackV2 as X, OrderType as X_, MegaVaultUser as Xa, TradingStrategy as Xc, spotPriceToChainPriceToFixed as Xd, ContractExecutionAuthorization as Xf, Account as Xg, PermissionAddressRoles as Xh, GrpcPerpetualMarketFunding as Xi, MitoLeaderboardEpoch as Xl, MsgSetDelegationTransferReceivers as Xm, IndexerCampaignTransformer as Xn, IndexerAuctionBid as Xo, TxRestApi as Xp, GrpcTcDerivativeLimitOrder as Xr, RFQTakerStreamAckData as Xs, DerivativePositionsV2StreamCallback as Xt, stringToUint8Array as Xu, ProposalDeposit as Xv, MsgUnderwrite as Xy, IndexerGrpcTcDerivativesStreamV2 as Y, IsOptedOutOfRewards as Y_, MegaVaultUnrealizedPnl as Ya, MarketType as Yc, spotPriceToChainPrice as Yd, ContractExecutionCompatAuthorization as Yf, TotalSupply as Yg, PermissionActorRoles as Yh, GrpcFundingRate as Yi, MitoLeaderboardEntry as Yl, WasmMsgs as Ym, IndexerGrpcRfqGwTransformer as Yn, GrpcIndexerAuctionBid as Yo, generateArbitrarySignDoc as Yp, ChronosDerivativeMarketSummaryResponse as Yr, RFQStreamErrorData as Ys, DerivativePositionsStreamCallback as Yt, hexToUint8Array as Yu, Proposal as Yv, MsgEditValidator as Yy, TcDerivativeOrdersStreamCallbackV2 as Z, OrderTypeMap as Z_, MegaVaultUserStats as Za, AccountPortfolio as Zc, spotQuantityFromChainQuantity as Zd, GenericAuthorization as Zf, AuthBaseAccount as Zg, PermissionAddressVoucher as Zh, GrpcPerpetualMarketInfo as Zi, MitoMission as Zl, MsgCreateBinaryOptionsMarketOrder as Zm, IndexerGrpcSpotTransformer as Zn, StreamBidsResponse as Zo, TxGrpcApi as Zp, GrpcTcDerivativeOrderHistory as Zr, SettlementsResponse as Zs, DerivativeTradesStreamCallback as Zt, toBase64 as Zu, ProposalStatus as Zv, MsgUndelegate as Zy, ChainGrpcEvmTransformer as _, ExchangeModuleParams as __, GrpcMegaVaultIncentives as _a, MsgSubmitProposalSpotMarketLaunch as _b, ExplorerTransaction as _c, cosmosSdkDecToBigNumber as _d, SignTypedDataVersionV4 as _f, Params$6 as _g, AccountsResponse as _h, ContractExplorerApiResponse as _i, GrpcMitoIDOSubscriber as _l, TxResult as _m, VaultHolderSubscriptionStreamCallback as _n, AccountStats as _o, getEipTxContext as _p, IndexerGrpcWeb3GwApi as _r, SpotMarket as _s, BidsStreamCallbackV2 as _t, IsomorphicWebSocket as _u, Pool as _v, MsgCancelDerivativeOrder as _y, ChainGrpcExchangeTransformer as a, EvmParams as a_, GrpcIndexerInsuranceFund as aa, MsgMultiSend as ab, BlockWithTxs as ac, getDefaultSubaccountId as ad, grpcCoinToUiCoin as af, PermissionRoleIDs as ag, FactoryDenomWithMetadata as ah, TcDerivativeLimitOrder as ai, SubaccountDeposit as al, createTxRawFromSigResponse as am, IndexerGrpcTradingStream as an, Campaign as ao, PrivateKey as ap, IndexerGrpcInsuranceFundApi as ar, RFQGwPrepareAutoSignRequestType as as, DerivativePositionsStreamCallbackV2 as at, MitoStakingPool as au, GrpcDelegationResponse as av, MsgWithdrawValidatorCommission as ay, ChainRestWasmApi as b, FeeDiscountSchedule as b_, GrpcMegaVaultOperator as ba, MsgDeposit$1 as bb, ExplorerValidator as bc, denomAmountFromGrpcChainDenomAmount as bd, TypedMessageV4 as bf, PeggyModuleParams as bg, AuctionBid as bh, ExplorerApiResponseWithPagination as bi, GrpcMitoLeaderboardEntry as bl, TxSearchResultParams as bm, MarketsStreamCallback as bn, GrpcHistoricalBalance as bo, getObjectEip712PropertyType as bp, IndexerGrpcRfqGwApi as br, SpotTrade as bs, IndexerGrpcAccountStreamV2 as bt, TransportEventType as bu, UnBondingDelegation as bv, MsgCancelPostOnlyModeV2 as by, ChainGrpcCommonTransformer as c, GrpcEvmChainConfig as c_, InsuranceFundCreateParams as ca, MsgTransfer as cb, ContractTransaction as cc, getInjectiveAddressFromSubaccountId as cd, isJsonString as cf, PermissionsModuleParams as cg, DistributionModuleParams as ch, TcDerivativePosition as ci, TradingReward as cl, BroadcastModeKeplr as cm, BalanceStreamCallback as cn, GrpcCampaign as co, MsgDecoder as cp, IndexerGrpcDerivativesApi as cr, AtomicSwap as cs, IndexerGrpcDerivativesStreamV2 as ct, MitoSubscription as cu, GrpcReDelegationEntryResponse as cv, MsgCreateDerivativeLimitOrder as cy, ChainGrpcPeggyTransformer as d, CampaignRewardPool as d_, IncentivesCampaign as da, ProposalDecomposer as db, CosmWasmPermission as dc, removeHexPrefix as dd, isServerSide as df, GrpcTxFeesEipBaseFee as dg, GrpcDistributionParams as dh, TcDerivativesOrdersHistoryResponse as di, GrpcMitoClaimReference as dl, RestTx as dm, OraclePriceStreamCallback as dn, GrpcGuild as do, getDefaultEip712Types as dp, IndexerGrpcArchiverApi as dr, GrpcSpotLimitOrder as ds, IndexerGrpcExplorerStreamV2 as dt, MitoVault as du, GrpcUnbondingDelegation as dv, MsgUpdateDerivativeMarketV2 as dy, PubKey$1 as e_, PerpetualMarketFunding as ea, MsgSignData as eb, AccessType as ec, uint8ArrayToHex as ed, spotQuantityToChainQuantityToFixed as ef, PermissionParams as eg, ChainModule as eh, GrpcTcDerivativeTradeHistory as ei, GrpcSubaccountBalanceTransfer as el, createTransactionAndCosmosSignDoc as em, BlocksWithTxsStreamCallback as en, OperationStatusLogEntry as eo, msgsOrMsgExecMsgs as ep, IndexerRestLeaderboardChronosApi as er, CosmosPubKeyType as es, DerivativeMarketStreamCallbackV2 as et, MitoPagination as eu, TradingRewardCampaignBoostInfo as ev, Vote as ey, ChainGrpcAuthZTransformer as f, ChainDenomDecimal as f_, IncentivesRound as fa, MsgSubmitProposalExpiryFuturesMarketLaunch as fb, EventLog as fc, getDerivativeMarketDecimals as fd, objectToJson as ff, GrpcTxFeesParams as fg, ValidatorRewards as fh, TcDerivativesPositionsResponse as fi, GrpcMitoDenomBalance as fl, RestTxBody as fm, OraclePricesByMarketsStreamCallback as fn, GrpcGuildMember as fo, getDefaultEip712TypesV2 as fp, IndexerGrpcCampaignApi as fr, GrpcSpotMarketInfo as fs, TransactionsStreamCallbackV2 as ft, MitoVestingConfig as fu, GrpcUnbondingDelegationEntry as fv, MsgCancelBinaryOptionsOrder as fy, ChainGrpcAuthTransformer as g, DepositProposalParams as g_, GrpcMegaVaultHistoricalTVL as ga, MsgGrantProviderPrivilegeProposal as gb, ExplorerStats as gc, amountToCosmosSdkDecAmount as gd, sortObjectByKeysWithReduce as gf, GrpcTokenPair as gg, AccountResponse as gh, CW20BalanceExplorerApiResponse as gi, GrpcMitoIDOProgress as gl, TxInfoResponse as gm, TransfersStreamCallback as gn, ReferralDetails as go, getEip712FeeV2 as gp, IndexerGrpcAccountApi as gr, SpotLimitOrderParams as gs, IndexerGrpcTradingStreamV2 as gt, GrpcFrame as gu, GrpcValidatorDescription as gv, MsgCreateSpotMarketOrder as gy, ChainGrpcBankTransformer as h, ChainPosition as h_, GrpcMegaVaultHistoricalPnL as ha, MsgSubmitProposalPerpetualMarketLaunch as hb, ExplorerCW20BalanceWithToken as hc, getSpotMarketTensMultiplier as hd, sortObjectByKeys as hf, GrpcParams as hg, DenomOwnersResponse as hh, BlockFromExplorerApiResponse as hi, GrpcMitoIDOClaimedCoins as hl, TxInfo as hm, StakingRewardByAccountStreamCallback as hn, GuildMember as ho, getEip712Fee as hp, IndexerGrpcAuctionApi as hr, SpotLimitOrder as hs, GridStrategyStreamCallbackV2 as ht, GrpcDecodeError as hu, GrpcValidatorCommissionRates as hv, MsgIncreasePositionMargin as hy, ChainGrpcPermissionsTransformer as i, EvmLog as i_, PositionV2 as ia, MsgDeposit as ib, Block$1 as ic, getChecksumAddress as id, getErrorMessage as if, PermissionRoleActors as ig, AuthorityMetadata as ih, GrpcTcPositionDelta as ii, SubaccountBalance as il, createTransactionWithSigners as im, SpotAverageEntriesStreamCallback as in, ChronosSpotMarketSummaryResponse as io, BaseAccount as ip, IndexerRestExplorerApi as ir, GrpcRFQGwPrepareQuoteResult as is, DerivativeOrdersStreamCallbackV2 as it, MitoStakingActivity as iu, GrpcDelegation as iv, MsgCreateBinaryOptionsLimitOrder as iy, ChainGrpcTxFeesApi as j, GrpcDenomMinNotional as j_, GrpcMegaVaultVolatilityStats as ja, GrpcValidatorSlashingEvent as jc, derivativePriceToChainPriceToFixed as jd, sanitizeTypedData as jf, GenericAuthorization$1 as jg, GrpcAuctionBid as jh, DerivativeMarket as ji, GrpcMitoSubscription as jl, TxResponse as jm, IndexerGrpcAccountPortfolioTransformer as jn, LeaderboardRow as jo, createAnyMessage as jp, AllChronosMarketHistory as jr, GrpcRFQProcessedQuote as js, IndexerGrpcSpotStreamV2 as jt, pageRequestToGrpcPageRequestV2 as ju, ContractInfo as jv, MsgInstantiateContract as jy, ChainGrpcStakingApi as k, GrpcChainSpotMarket as k_, GrpcMegaVaultVaultStats as ka, GrpcPeggyDepositTx as kc, derivativePriceFromChainPriceToFixed as kd, publicKeyToAddress as kf, CreateSpotLimitOrderAuthz as kg, AuctionModuleStateResponse as kh, DerivativeLimitOrder as ki, GrpcMitoStakingStakingReward as kl, TxClientSimulateResponse as km, IndexerGrpcInsuranceFundTransformer as kn, HistoricalVolumes as ko, SIGN_EIP712_V2 as kp, IndexerModule as kr, GrpcRFQConditionalOrder as ks, VaultHolderSubscriptionStreamCallbackV2 as kt, grpcPagingToPaging as ku, ContractCodeHistoryOperationType as kv, MsgTransferDelegation as ky, ChainGrpcTxFeesTransformer as l, GrpcEvmLog as l_, Redemption as la, MsgExec as lb, ContractTransactionWithMessages as lc, getSubaccountId as ld, isNode as lf, GrpcOracleParams as lg, GrpcDecCoin as lh, TcDerivativeTradeHistory as li, TransferType as ll, RestAuthInfo as lm, IndexerGrpcAccountStream as ln, GrpcCampaignUser as lo, getEip712TypedData as lp, IndexerGrpcMegaVaultApi as lr, BatchSpotOrderCancelParams as ls, BlocksStreamCallbackV2 as lt, MitoTokenInfo as lu, GrpcReDelegationResponse as lv, MsgWithdrawDelegatorReward as ly, ChainGrpcMintTransformer as m, ChainDerivativePosition as m_, GrpcMegaVaultAprStats as ma, MsgSubmitProposalSpotMarketParamUpdate as mb, ExplorerBlockWithTxs as mc, getSpotMarketDecimals as md, safeBigIntStringify as mf, TxFeesModuleStateParams as mg, DenomBalance as mh, BankTransferFromExplorerApiResponse as mi, GrpcMitoIDO as ml, SimulationResponse as mm, IndexerGrpcMitoStream as mn, GuildCampaignSummary as mo, getEip712DomainV2 as mp, IndexerGrpcTradingApi as mr, GrpcSpotTrade as ms, SpotAverageEntriesStreamCallbackV2 as mt, MitoWhitelistAccount as mu, GrpcValidatorCommission as mv, MsgDecreasePositionMargin as my, ChainGrpcTokenFactoryTransformer as n, EvmBlobScheduleConfig as n_, Position as na, MsgSendToEth as nb, BankMsgSendTransaction as nc, addHexPrefix as nd, bigIntToNumber as nf, PermissionPolicyStatus as ng, BlockLatestRestResponse as nh, GrpcTcDerivativesOrdersHistoryResponse as ni, GrpcSubaccountPortfolio as nl, createTransactionForAddressAndMsg as nm, TransactionsStreamCallback as nn, AllSpotMarketSummaryResponse as no, ExecArgNeptuneDeposit as np, IndexerRestMarketChronosApi as nr, GrpcRFQGwPrepareAutoSignRequest as ns, DerivativeOrderbookUpdateStreamCallbackV2 as nt, MitoPriceSnapshot as nu, BondStatus as nv, VoteOptionMap as ny, ChainGrpcStakingTransformer as o, GrpcEvmBlobConfig as o_, GrpcIndexerRedemptionSchedule as oa, MsgMint as ob, CW20Message as oc, getEthereumAddress as od, hexToNumber as of, PermissionRoleManager as og, TokenFactoryModuleParams as oh, TcDerivativeOrderHistory as oi, SubaccountPortfolio as ol, getTxRawFromTxRawOrDirectSignResponse as om, BidsStreamCallback as on, CampaignUser as oo, PublicKey as op, IndexerGrpcTcDerivativesApi as or, RFQGwPrepareAutoSignResponseType as os, DerivativePositionsV2StreamCallbackV2 as ot, MitoStakingReward as ou, GrpcPool as ov, MsgCreateDerivativeMarketOrder as oy, ChainGrpcWasmTransformer as p, ChainDenomMinNotional as p_, GrpcMegaVaultApr as pa, MsgSubmitProposalPerpetualMarketLaunchV2 as pb, EventLogEvent as pc, getDerivativeMarketTensMultiplier as pd, protoObjectToJson as pf, TxFeesEipBaseFee as pg, BalancesResponse as ph, TcPositionDelta as pi, GrpcMitoHolders as pl, RestTxLog as pm, HistoricalStakingStreamCallback as pn, Guild as po, getEip712Domain as pp, IndexerGrpcExplorerApi as pr, GrpcSpotOrderHistory as ps, IndexerGrpcArchiverStreamV2 as pt, MitoVestingConfigMap as pu, GrpcValidator as pv, MsgInstantSpotMarketLaunch as py, AccountPortfolioStreamCallbackV2 as q, GrpcTradingRewardCampaignBoostInfo as q_, MegaVaultSubscriptionStatus as qa, GridStrategyType as qc, spotPriceFromChainPrice as qd, OrderHashManager as qf, Metadata as qg, GrpcPermissionsParams as qh, GrpcExpiryFuturesMarketInfo as qi, MitoIDOSubscriptionActivity as ql, StakingMsgs as qm, IndexerGrpcOracleTransformer as qn, GrpcAuctionContract as qo, getPublicKey as qp, AllDerivativeMarketSummaryResponse as qr, RFQSettlementType as qs, DerivativeOrderbookV2StreamCallback as qt, hexToBase64 as qu, GrpcTallyResult as qv, MsgRewardsOptOut as qy, ChainGrpcDistributionTransformer as r, EvmChainConfig as r_, PositionDelta as ra, MsgStoreCode as rb, BankTransfer as rc, getAddressFromInjectiveAddress as rd, bigIntToString as rf, PermissionRole as rg, NodeInfoRestResponse as rh, GrpcTcDerivativesPositionsResponse as ri, GrpcTradingReward as rl, createTransactionFromMsg as rm, IndexerGrpcArchiverStream as rn, ChronosSpotMarketSummary as ro, MsgBroadcasterWithPk as rp, IndexerRestSpotChronosApi as rr, GrpcRFQGwPrepareAutoSignResponse as rs, DerivativeOrderbookV2StreamCallbackV2 as rt, MitoStakeToSubscription as ru, Delegation as rv, WeightedVoteOption as ry, ChainGrpcAuctionTransformer as s, GrpcEvmBlobScheduleConfig as s_, IndexerInsuranceFund as sa, MsgBurn as sb, Contract as sc, getInjectiveAddress as sd, isBrowser as sf, PermissionVoucher as sg, TokenFactoryModuleState as sh, TcDerivativeOrdersResponse as si, SubaccountTransfer as sl, BroadcastMode as sm, IndexerGrpcAuctionStream as sn, CampaignV2 as so, Address as sp, IndexerGrpcAccountPortfolioApi as sr, RFQGwPrepareQuoteResultType as ss, DerivativeTradesStreamCallbackV2 as st, MitoSubaccountBalance as su, GrpcReDelegation as sv, MsgBatchCancelDerivativeOrders as sy, ChainGrpcInsuranceFundTransformer as t, EvmBlobConfig as t_, PerpetualMarketInfo as ta, MsgDelegate as tb, AccessTypeCode as tc, uint8ArrayToString as td, bigIntReplacer as tf, PermissionPolicyManagerCapability as tg, RestApiResponse as th, GrpcTcDerivativeTradesResponse as ti, GrpcSubaccountDeposit as tl, createTransactionAndCosmosSignDocForAddressAndMsg as tm, IndexerGrpcExplorerStream as tn, AllChronosSpotMarketSummary as to, ExecArgNeptuneWithdraw as tp, IndexerRestDerivativesChronosApi as tr, GrpcCosmosPubKey as ts, DerivativeOrderHistoryStreamCallbackV2 as tt, MitoPortfolio as tu, TradingRewardCampaignInfo as tv, VoteOption as ty, ChainGrpcErc20Transformer as u, GrpcEvmParams as u_, RedemptionStatus as ua, MsgSubmitProposal as ub, CosmWasmChecksum as uc, isCw20ContractAddress as ud, isReactNative as uf, OracleModuleParams as ug, GrpcDelegationDelegatorReward as uh, TcDerivativeTradesResponse as ui, GrpcMitoChanges as ul, RestSignerInfo as um, IndexerGrpcOracleStream as un, GrpcCampaignV2 as uo, getEip712TypedDataV2 as up, IndexerGrpcReferralApi as ur, GrpcAtomicSwap as us, BlocksWithTxsStreamCallbackV2 as ut, MitoTransfer as uu, GrpcStakingParams as uv, MsgCancelUnbondingDelegation as uy, ChainGrpcGovTransformer as v, ExchangeParams as v_, GrpcMegaVaultMaxDrawdown as va, MsgSubmitGenericProposal as vb, ExplorerTransactionV2 as vc, denomAmountFromChainDenomAmount as vd, TypedDataUtilsHashStruct as vf, TokenPair as vg, BaseAccountRestResponse as vh, ContractTransactionExplorerApiResponse as vi, GrpcMitoIDOSubscription as vl, TxResultResponse as vm, VaultStreamCallback as vn, DenomHolders as vo, getEipTxDetails as vp, IndexerGrpcTransactionApi as vr, SpotOrderCancelParams as vs, IndexerGrpcAuctionStreamV2 as vt, ResolvedWsTransportConfig as vu, ReDelegation as vv, MsgBatchCancelSpotOrders as vy, ChainGrpcTokenFactoryApi as w, GrpcChainDerivativeMarket as w_, GrpcMegaVaultRedemption as wa, MsgSend as wb, GrpcBankMsgSendMessage as wc, derivativeMarginFromChainMargin as wd, messageHash as wf, BatchCreateSpotLimitOrdersAuthz as wg, AuctionEventBid as wh, ValidatorUptimeFromExplorerApiResponse as wi, GrpcMitoPagination as wl, MsgArg as wm, SpotOrdersStreamCallback as wn, GrpcPnlLeaderboard as wo, stringTypeToReflectionStringType as wp, IndexerGrpcRFQApi as wr, Orderbook as ws, OraclePricesByMarketsStreamCallbackV2 as wt, WsState as wu, AbsoluteTxPosition as wv, MsgFundCommunityPool as wy, ChainRestAuthApi as x, FeeDiscountTierInfo as x_, GrpcMegaVaultOperatorRedemptionBucket as xa, MsgRevoke as xb, ExplorerValidatorDescription as xc, denomAmountToChainDenomAmount as xd, decompressPubKey as xf, BatchCancelDerivativeOrdersAuthz as xg, AuctionCurrentBasket as xh, ExplorerBlockApiResponse as xi, GrpcMitoLeaderboardEpoch as xl, CreateTransactionArgs as xm, SpotOrderHistoryStreamCallback as xn, GrpcHistoricalRPNL as xo, numberTypeToReflectionNumberType as xp, IndexerGrpcSpotApi as xr, GrpcPriceLevel as xs, IndexerGrpcOracleStreamV2 as xt, TransportEvents as xu, Validator as xv, MsgCreateSpotLimitOrder as xy, ChainRestTendermintApi as y, FeeDiscountAccountInfo as y_, GrpcMegaVaultOperationStatusLogEntry as ya, MsgSubmitTextProposal as yb, ExplorerTxsV2Response as yc, denomAmountFromChainDenomAmountToFixed as yd, TypedDataUtilsSanitizeData as yf, GrpcPeggyParams as yg, CosmosAccountRestResponse as yh, ExplorerApiResponse as yi, GrpcMitoIDOSubscriptionActivity as yl, TxSearchResult as ym, IndexerGrpcSpotStream as yn, GrpcDenomHolders as yo, getTypesIncludingFeePayer as yp, IndexerGrpcOracleApi as yr, SpotOrderHistory as ys, BalanceStreamCallbackV2 as yt, TransportEventListener as yu, StakingModuleParams as yv, MsgGrantWithAuthorization as yy, ChainGrpcBankApi as z, GrpcOrderInfo as z_, MegaVaultOperator as za, Signature as zc, formatNumberToAllowableTensMultiplier as zd, protobufTimestampToDate as zf, InsuranceFund as zg, GrpcPermissionNamespace as zh, FundingRate as zi, MitoGaugeStatus as zl, ExchangeV2Msgs as zm, IndexerRestExplorerTransformer as zn, AuctionCoinPrices as zo, createNonCriticalExtensionFromObject as zp, GrpcSubaccountDepositV2 as zr, RFQConditionalOrdersResponse as zs, SettlementStreamCallbackV2 as zt, BECH32_PUBKEY_VAL_PREFIX as zu, TokenInfo$1 as zv, MsgGrantAllowance as zy };
41746
+ export { TcDerivativeTradesStreamCallbackV2 as $, GrpcOrderTypeMap as $_, MegaVaultVolatilityStats as $a, TxMessage as $c, formatPriceToAllowablePrice as $d, protobufTimestampToUnixSeconds as $f, OracleTypeMap as $g, GrpcPermissionPolicyStatusManagerCapability as $h, PerpetualMarket as $i, MitoIDO as $l, GovMsgs as $m, IndexerGrpcRfqTransformer as $n, Oracle as $o, createSignDocFromTransaction as $p, GrpcTcDerivativePosition as $r, RFQMakerStreamAckData as $s, BlocksStreamCallback as $t, base64ToUint8Array as $u, GovModuleStateParams as $v, MsgUpdateRateLimit as $y, ChainGrpcAuctionApi as A, ExchangeParams as A_, GrpcMegaVaultVolatility as Aa, MsgSubmitGenericProposal as Ab, ExplorerTransactionV2 as Ac, denomAmountFromChainDenomAmount as Ad, TypedDataUtilsHashStruct as Af, TokenPair as Ag, BaseAccountRestResponse as Ah, DerivativeLimitOrderParams as Ai, GrpcMitoIDOSubscription as Al, TxResultResponse as Am, IndexerDerivativeStreamTransformer as An, Holder as Ao, getEipTxDetails as Ap, StreamStatusResponse as Ar, SpotOrderCancelParams as As, VaultStreamCallbackV2 as At, ResolvedWsTransportConfig as Au, ReDelegation as Av, MsgBatchCancelSpotOrders as Ay, ChainGrpcAuthApi as B, GrpcChainPosition as B_, MegaVaultOperatorRedemptionBucket as Ba, GrpcIndexerValidatorDescription as Bc, derivativePriceFromChainPrice as Bd, privateKeyToPublicKeyBase64 as Bf, CreateDerivativeMarketOrderAuthz as Bg, AuctionModuleStateParams as Bh, GrpcBinaryOptionsMarketInfo as Bi, GrpcMitoStakingStakingActivity as Bl, TxClientMode as Bm, IndexerOracleStreamTransformer as Bn, AuctionContract as Bo, SIGN_EIP712 as Bp, PortfolioSubaccountBalanceV2 as Br, Route as Bs, StreamManager as Bt, grpcPaginationToPagination as Bu, ContractCodeHistoryEntry as Bv, MsgRelayProviderPrices as By, ChainGrpcInsuranceFundApi as C, CampaignRewardPool as C_, GrpcMegaVaultPnlStats as Ca, ProposalDecomposer as Cb, CosmWasmPermission as Cc, removeHexPrefix as Cd, isServerSide as Cf, GrpcTxFeesEipBaseFee as Cg, GrpcDistributionParams as Ch, TransactionFromExplorerApiResponse as Ci, GrpcMitoClaimReference as Cl, RestTx as Cm, SpotOrderbookV2StreamCallback as Cn, GrpcLeaderboardRow as Co, getDefaultEip712Types as Cp, IndexerGrpcMitoApi as Cr, GrpcSpotLimitOrder as Cs, OraclePriceStreamCallbackV2 as Ct, MitoVault as Cu, GrpcUnbondingDelegation as Cv, MsgUpdateDerivativeMarketV2 as Cy, ChainGrpcTendermintApi as D, ChainPosition as D_, GrpcMegaVaultUnrealizedPnl as Da, MsgSubmitProposalPerpetualMarketLaunch as Db, ExplorerCW20BalanceWithToken as Dc, getSpotMarketTensMultiplier as Dd, sortObjectByKeys as Df, GrpcParams as Dg, DenomOwnersResponse as Dh, BatchDerivativeOrderCancelParams as Di, GrpcMitoIDOClaimedCoins as Dl, TxInfo as Dm, IndexerTcDerivativesStreamTransformer as Dn, HistoricalBalance as Do, getEip712Fee as Dp, GrpcWebSocketTransport as Dr, SpotLimitOrder as Ds, StakingRewardByAccountStreamCallbackV2 as Dt, GrpcDecodeError as Du, GrpcValidatorCommissionRates as Dv, MsgIncreasePositionMargin as Dy, ChainGrpcPermissionsApi as E, ChainDerivativePosition as E_, GrpcMegaVaultTargetApr as Ea, MsgSubmitProposalSpotMarketParamUpdate as Eb, ExplorerBlockWithTxs as Ec, getSpotMarketDecimals as Ed, safeBigIntStringify as Ef, TxFeesModuleStateParams as Eg, DenomBalance as Eh, BaseDerivativeMarket as Ei, GrpcMitoIDO as El, SimulationResponse as Em, IndexerAccountPortfolioStreamTransformer as En, GrpcVolLeaderboard as Eo, getEip712DomainV2 as Ep, IndexerWsTakerStream as Er, GrpcSpotTrade as Es, IndexerGrpcMitoStreamV2 as Et, MitoWhitelistAccount as Eu, GrpcValidatorCommission as Ev, MsgDecreasePositionMargin as Ey, ChainGrpcPeggyApi as F, GrpcCampaignRewardPool as F_, MegaVaultHistoricalPnL as Fa, MsgBid as Fb, GasFee as Fc, denomAmountToGrpcChainDenomAmount as Fd, hashToHex as Ff, BatchCreateDerivativeLimitOrdersAuthz as Fg, AuctionEventAuctionStart as Fh, DerivativeTrade as Fi, GrpcMitoMissionLeaderboardEntry as Fl, CreateTransactionWithSignersArgs as Fm, IndexerArchiverStreamTransformer as Fn, AccountAuctionStatus as Fo, protoTypeToAminoType as Fp, GrpcAccountPortfolioV2 as Fr, IndexerTokenMeta as Fs, SpotTradesStreamCallbackV2 as Ft, WsReconnectConfig as Fu, ValidatorDescription as Fv, MsgCreateInsuranceFund as Fy, createStreamSubscriptionV2 as G, GrpcFeeDiscountAccountInfo as G_, MegaVaultStats as Ga, IBCTransferTx as Gc, derivativeQuantityFromChainQuantityToFixed as Gd, parseCoins as Gf, GrantAuthorization$1 as Gg, GrpcAuctionEventAuctionStart as Gh, GrpcDerivativePositionV2 as Gi, GrpcMitoVault as Gl, AuthzMsgs as Gm, IndexerGrpcAccountTransformer as Gn, GrpcAuctionCoin as Go, getInjectiveSignerAddress as Gp, ChronosLeaderboardResponse as Gr, GrpcRFQRequest as Gs, DerivativeOrderHistoryStreamCallback as Gt, paginationUint8ArrayToString as Gu, GoogleProtoBufAny as Gv, MsgBatchUpdateOrders as Gy, ChainGrpcIbcApi as H, GrpcDenomDecimals as H_, MegaVaultPnlStats as Ha, GrpcPeggyWithdrawalTx as Hc, derivativePriceToChainPrice as Hd, ripemd160 as Hf, CreateSpotMarketOrderAuthz as Hg, AuctionParams as Hh, GrpcDerivativeMarketInfo as Hi, GrpcMitoSubaccountBalance as Hl, TxConcreteApi as Hm, IndexerGrpcExplorerTransformer as Hn, AuctionsStats as Ho, createAny as Hp, SubaccountDepositV2 as Hr, GrpcRFQExpiry as Hs, AccountPortfolioStreamCallback as Ht, grpcPagingToPagingV2 as Hu, ContractCodeHistoryOperationTypeMap as Hv, MsgRequestRedemption as Hy, ChainGrpcAuthZApi as I, GrpcChainDerivativeMarket as I_, MegaVaultHistoricalTVL as Ia, MsgSend as Ib, GrpcBankMsgSendMessage as Ic, derivativeMarginFromChainMargin as Id, messageHash as If, BatchCreateSpotLimitOrdersAuthz as Ig, AuctionEventBid as Ih, ExpiryFuturesMarket as Ii, GrpcMitoPagination as Il, MsgArg as Im, IndexerGrpcMegaVaultTransformer as In, AccountAuctionV2 as Io, stringTypeToReflectionStringType as Ip, GrpcPortfolioSubaccountBalanceV2 as Ir, Orderbook as Is, IndexerGrpcRfqStreamV2 as It, WsState as Iu, AbsoluteTxPosition as Iv, MsgFundCommunityPool as Iy, IndexerGrpcAccountPortfolioStreamV2 as J, GrpcFeeDiscountTierTTL as J_, MegaVaultTargetApr as Ja, Paging as Jc, formatAmountToAllowableAmount as Jd, getGasPriceBasedOnMessage as Jf, GrpcInsuranceFund as Jg, GrpcAuctionParams as Jh, GrpcFundingPayment as Ji, MitoClaimReference as Jl, Erc20Msgs as Jm, IndexerRfqStreamTransformer as Jn, GrpcAuctionV2 as Jo, createAuthInfo as Jp, ChronosDerivativeMarketSummary as Jr, MakerStreamEvents as Js, DerivativeOrdersStreamCallback as Jt, BECH32_ADDR_VAL_PREFIX as Ju, GrpcContractCodeHistoryEntry as Jv, MsgCancelSpotOrder as Jy, StreamManagerV2 as K, GrpcFeeDiscountSchedule as K_, MegaVaultSubscription as Ka, IndexerStreamTransaction as Kc, derivativeQuantityToChainQuantity as Kd, ofacList as Kf, GrantAuthorizationWithDecodedAuthorization as Kg, GrpcAuctionEventBid as Kh, GrpcDerivativeTrade as Ki, GrpcMitoWhitelistAccount as Kl, BankMsgs as Km, IndexerSpotStreamTransformer as Kn, GrpcAuctionCoinPrices as Ko, errorToErrorMessage as Kp, AllChronosDerivativeMarketSummary as Kr, GrpcRFQSettlement as Ks, DerivativeOrderbookUpdateStreamCallback as Kt, BECH32_ADDR_ACC_PREFIX as Ku, GrpcAbsoluteTxPosition as Kv, MsgExternalTransfer as Ky, ChainGrpcWasmApi as L, GrpcChainDerivativePosition as L_, MegaVaultIncentives as La, MsgVote as Lb, GrpcExplorerStats as Lc, derivativeMarginFromChainMarginToFixed as Ld, privateKeyHashToPublicKey as Lf, CancelDerivativeOrderAuthz as Lg, AuctionLastAuctionResult as Lh, ExpiryFuturesMarketInfo as Li, GrpcMitoPriceSnapshot as Ll, SignerDetails as Lm, IndexerAuctionStreamTransformer as Ln, Auction as Lo, TxClient as Lp, GrpcPositionV2 as Lr, OrderbookWithSequence as Ls, QuoteStreamCallbackV2 as Lt, WsTransportConfig as Lu, CodeInfoResponse as Lv, MsgSetDenomMetadata as Ly, ChainGrpcOracleApi as M, FeeDiscountSchedule as M_, MegaVault as Ma, MsgDeposit$1 as Mb, ExplorerValidator as Mc, denomAmountFromGrpcChainDenomAmount as Md, TypedMessageV4 as Mf, PeggyModuleParams as Mg, AuctionBid as Mh, DerivativeMarketWithoutBinaryOptions as Mi, GrpcMitoLeaderboardEntry as Ml, TxSearchResultParams as Mm, IndexerGrpcMitoStreamTransformer as Mn, PnlLeaderboard as Mo, getObjectEip712PropertyType as Mp, ChronosMarketHistoryResponse as Mr, SpotTrade as Ms, SpotOrderHistoryStreamCallbackV2 as Mt, TransportEventType as Mu, UnBondingDelegation as Mv, MsgCancelPostOnlyModeV2 as My, ChainGrpcErc20Api as N, FeeDiscountTierInfo as N_, MegaVaultApr as Na, MsgRevoke as Nb, ExplorerValidatorDescription as Nc, denomAmountToChainDenomAmount as Nd, decompressPubKey as Nf, BatchCancelDerivativeOrdersAuthz as Ng, AuctionCurrentBasket as Nh, DerivativeOrderCancelParams as Ni, GrpcMitoLeaderboardEpoch as Nl, CreateTransactionArgs as Nm, IndexerGrpcDerivativeTransformer as Nn, SpotAverageEntry as No, numberTypeToReflectionNumberType as Np, AccountPortfolioBalances as Nr, GrpcPriceLevel as Ns, SpotOrderbookUpdateStreamCallbackV2 as Nt, TransportEvents as Nu, Validator as Nv, MsgCreateSpotLimitOrder as Ny, ChainGrpcExchangeApi as O, DepositProposalParams as O_, GrpcMegaVaultUserStats as Oa, MsgGrantProviderPrivilegeProposal as Ob, ExplorerStats as Oc, amountToCosmosSdkDecAmount as Od, sortObjectByKeysWithReduce as Of, GrpcTokenPair as Og, AccountResponse as Oh, BinaryOptionsMarket as Oi, GrpcMitoIDOProgress as Ol, TxInfoResponse as Om, IndexerGrpcTcDerivativesTransformer as On, HistoricalRPNL as Oo, getEip712FeeV2 as Op, GrpcWebSocketCodec as Or, SpotLimitOrderParams as Os, TransfersStreamCallbackV2 as Ot, GrpcFrame as Ou, GrpcValidatorDescription as Ov, MsgCreateSpotMarketOrder as Oy, ChainGrpcWasmXApi as P, FeeDiscountTierTTL as P_, MegaVaultAprStats as Pa, MsgGrant as Pb, ExplorerValidatorUptime as Pc, denomAmountToChainDenomAmountToFixed as Pd, domainHash as Pf, BatchCancelSpotOrdersAuthz as Pg, AuctionEventAuctionResult as Ph, DerivativeOrderHistory as Pi, GrpcMitoMission as Pl, CreateTransactionResult as Pm, ExplorerStreamTransformer as Pn, VolLeaderboard as Po, objectKeysToEip712Types as Pp, AccountPortfolioV2 as Pr, GrpcTokenMeta as Ps, SpotOrdersStreamCallbackV2 as Pt, WsDisconnectReason as Pu, ValidatorCommission as Pv, MsgAuthorizeStakeGrants as Py, TcDerivativePositionsStreamCallbackV2 as Q, GrpcOrderType as Q_, MegaVaultVolatility as Qa, Transaction as Qc, formatPriceToAllowableDecimals as Qd, protobufTimestampToUnixMs as Qf, InsuranceModuleParams as Qg, GrpcPermissionPolicyStatus as Qh, GrpcPositionDelta as Qi, MitoHolders as Ql, FeegrantMsgs as Qm, IndexerGrpcMitoTransformer as Qn, GrpcOracle as Qo, createSignDoc as Qp, GrpcTcDerivativeOrdersResponse as Qr, RFQExpiryType as Qs, IndexerGrpcDerivativesStream as Qt, DEFAULT_DERIVATION_PATH as Qu, grpcContractInfo as Qv, MsgRemoveRateLimit as Qy, ChainGrpcMintApi as R, GrpcChainFullDerivativeMarket as R_, MegaVaultMaxDrawdown as Ra, GrpcWebFetchTransport as Rb, GrpcGasFee as Rc, derivativeMarginToChainMargin as Rd, privateKeyHashToPublicKeyBase64 as Rf, CancelSpotOrderAuthz as Rg, AuctionModuleParams as Rh, FundingPayment as Ri, GrpcMitoStakingGauge as Rl, TxClientBroadcastOptions as Rm, IndexerAccountStreamTransformer as Rn, AuctionCoin as Ro, SIGN_AMINO as Rp, GrpcPositionsWithUPNL as Rr, PriceLevel as Rs, RequestStreamCallbackV2 as Rt, recoverTypedSignaturePubKey as Ru, ContractAccountBalance as Rv, MsgUpdateSpotMarketV2 as Ry, ChainRestBankApi as S, GrpcEvmParams as S_, GrpcMegaVaultPnl as Sa, MsgSubmitProposal as Sb, CosmWasmChecksum as Sc, isCw20ContractAddress as Sd, isReactNative as Sf, OracleModuleParams as Sg, GrpcDelegationDelegatorReward as Sh, ExplorerTransactionApiResponse as Si, GrpcMitoChanges as Sl, RestSignerInfo as Sm, SpotOrderbookUpdateStreamCallback as Sn, GrpcHistoricalVolumes as So, getEip712TypedDataV2 as Sp, IndexerGrpcMetaApi as Sr, GrpcAtomicSwap as Ss, OracleListStreamCallbackV2 as St, MitoTransfer as Su, GrpcStakingParams as Sv, MsgCancelUnbondingDelegation as Sy, ChainGrpcDistributionApi as T, ChainDenomMinNotional as T_, GrpcMegaVaultSubscription as Ta, MsgSubmitProposalPerpetualMarketLaunchV2 as Tb, EventLogEvent as Tc, getDerivativeMarketTensMultiplier as Td, protoObjectToJson as Tf, TxFeesEipBaseFee as Tg, BalancesResponse as Th, WasmCodeExplorerApiResponse as Ti, GrpcMitoHolders as Tl, RestTxLog as Tm, SpotTradesStreamCallback as Tn, GrpcSpotAverageEntry as To, getEip712Domain as Tp, IndexerWsMakerStream as Tr, GrpcSpotOrderHistory as Ts, HistoricalStakingStreamCallbackV2 as Tt, MitoVestingConfigMap as Tu, GrpcValidator as Tv, MsgInstantSpotMarketLaunch as Ty, ChainGrpcGovApi as U, GrpcDenomMinNotional as U_, MegaVaultRedemption as Ua, GrpcValidatorSlashingEvent as Uc, derivativePriceToChainPriceToFixed as Ud, sanitizeTypedData as Uf, GenericAuthorization$1 as Ug, GrpcAuctionBid as Uh, GrpcDerivativeOrderHistory as Ui, GrpcMitoSubscription as Ul, TxResponse as Um, IndexerGrpcArchiverTransformer as Un, GrpcAccountAuctionV2 as Uo, createAnyMessage as Up, ChronosLeaderboard as Ur, GrpcRFQProcessedQuote as Us, IndexerGrpcAccountPortfolioStream as Ut, pageRequestToGrpcPageRequestV2 as Uu, ContractInfo as Uv, MsgInstantiateContract as Uy, ChainGrpcEvmApi as V, GrpcChainSpotMarket as V_, MegaVaultPnl as Va, GrpcPeggyDepositTx as Vc, derivativePriceFromChainPriceToFixed as Vd, publicKeyToAddress as Vf, CreateSpotLimitOrderAuthz as Vg, AuctionModuleStateResponse as Vh, GrpcDerivativeLimitOrder as Vi, GrpcMitoStakingStakingReward as Vl, TxClientSimulateResponse as Vm, IndexerGrpcReferralTransformer as Vn, AuctionV2 as Vo, SIGN_EIP712_V2 as Vp, PositionsWithUPNL as Vr, GrpcRFQConditionalOrder as Vs, createStreamSubscription as Vt, grpcPagingToPaging as Vu, ContractCodeHistoryOperationType as Vv, MsgTransferDelegation as Vy, accountEthParser as W, GrpcExchangeParams as W_, MegaVaultRedemptionStatus as Wa, GrpcValidatorUptime as Wc, derivativeQuantityFromChainQuantity as Wd, sha256 as Wf, Grant$1 as Wg, GrpcAuctionEventAuctionResult as Wh, GrpcDerivativePosition as Wi, GrpcMitoTokenInfo as Wl, AuctionMsgs as Wm, IndexerGrpcAuctionTransformer as Wn, GrpcAuction as Wo, getEthereumSignerAddress as Wp, ChronosLeaderboardEntry as Wr, GrpcRFQQuote as Ws, DerivativeMarketStreamCallback as Wt, paginationRequestFromPagination as Wu, ContractStateWithPagination as Wv, MsgLiquidatePosition as Wy, TcDerivativeOrderHistoryStreamCallbackV2 as X, GrpcMarketStatusMap as X_, MegaVaultUser as Xa, PeggyWithdrawalTx as Xc, formatNumberToAllowableDecimals as Xd, makeTimeoutTimestampInNs as Xf, GrpcRedemptionSchedule as Xg, GrpcPermissionAddressVoucher as Xh, GrpcPerpetualMarketFunding as Xi, MitoGauge as Xl, ExchangeV1Msgs as Xm, IndexerCampaignTransformer as Xn, IndexerAuctionBid as Xo, createFee as Xp, GrpcTcDerivativeLimitOrder as Xr, RFQConditionalOrderInput as Xs, DerivativePositionsV2StreamCallback as Xt, BECH32_PUBKEY_CONS_PREFIX as Xu, MarketingInfo as Xv, MsgBeginRedelegate as Xy, IndexerGrpcTcDerivativesStreamV2 as Y, GrpcMarketStatus as Y_, MegaVaultUnrealizedPnl as Ya, PeggyDepositTx as Yc, formatAmountToAllowableDecimals as Yd, makeTimeoutTimestamp as Yf, GrpcInsuranceParams as Yg, GrpcPermissionActorRoles as Yh, GrpcFundingRate as Yi, MitoDenomBalance as Yl, ExchangeMsgs as Ym, IndexerGrpcRfqGwTransformer as Yn, GrpcIndexerAuctionBid as Yo, createBody as Yp, ChronosDerivativeMarketSummaryResponse as Yr, RFQConditionalOrder as Ys, DerivativePositionsStreamCallback as Yt, BECH32_PUBKEY_ACC_PREFIX as Yu, GrpcContractInfo as Yv, MsgCreateValidator as Yy, TcDerivativeOrdersStreamCallbackV2 as Z, GrpcOrderInfo as Z_, MegaVaultUserStats as Za, Signature as Zc, formatNumberToAllowableTensMultiplier as Zd, protobufTimestampToDate as Zf, InsuranceFund as Zg, GrpcPermissionNamespace as Zh, GrpcPerpetualMarketInfo as Zi, MitoGaugeStatus as Zl, ExchangeV2Msgs as Zm, IndexerGrpcSpotTransformer as Zn, StreamBidsResponse as Zo, createNonCriticalExtensionFromObject as Zp, GrpcTcDerivativeOrderHistory as Zr, RFQConditionalOrdersResponse as Zs, DerivativeTradesStreamCallback as Zt, BECH32_PUBKEY_VAL_PREFIX as Zu, TokenInfo$1 as Zv, MsgGrantAllowance as Zy, ChainGrpcEvmTransformer as _, EvmParams as __, GrpcMegaVaultIncentives as _a, MsgMultiSend as _b, BlockWithTxs as _c, getDefaultSubaccountId as _d, grpcCoinToUiCoin as _f, PermissionRoleIDs as _g, FactoryDenomWithMetadata as _h, ContractExplorerApiResponse as _i, SubaccountDeposit as _l, createTxRawFromSigResponse as _m, VaultHolderSubscriptionStreamCallback as _n, AccountStats as _o, PrivateKey as _p, IndexerGrpcWeb3GwApi as _r, RFQGwPrepareQuoteResultType as _s, BidsStreamCallbackV2 as _t, MitoStakingPool as _u, GrpcDelegationResponse as _v, MsgWithdrawValidatorCommission as _y, ChainGrpcExchangeTransformer as a, Metadata as a_, GrpcIndexerInsuranceFund as aa, MsgRewardsOptOut as ab, RFQSettlementType as ac, hexToBase64 as ad, spotPriceFromChainPrice as af, GrpcPermissionsParams as ag, StakingMsgs as ah, TcDerivativeLimitOrder as ai, GridStrategyType as al, getPublicKey as am, IndexerGrpcTradingStream as an, Campaign as ao, OrderHashManager as ap, IndexerGrpcInsuranceFundApi as ar, GrpcRFQGwPrepareEip712AutoSignResponse as as, DerivativePositionsStreamCallbackV2 as at, MitoIDOSubscriptionActivity as au, GrpcTradingRewardCampaignBoostInfo as av, GrpcTallyResult as ay, ChainRestWasmApi as b, GrpcEvmChainConfig as b_, GrpcMegaVaultOperator as ba, MsgTransfer as bb, ContractTransaction as bc, getInjectiveAddressFromSubaccountId as bd, isJsonString as bf, PermissionsModuleParams as bg, DistributionModuleParams as bh, ExplorerApiResponseWithPagination as bi, TradingReward as bl, BroadcastModeKeplr as bm, MarketsStreamCallback as bn, GrpcHistoricalBalance as bo, MsgDecoder as bp, IndexerGrpcRfqGwApi as br, AtomicSwap as bs, IndexerGrpcAccountStreamV2 as bt, MitoSubscription as bu, GrpcReDelegationEntryResponse as bv, MsgCreateDerivativeLimitOrder as by, ChainGrpcCommonTransformer as c, Account as c_, InsuranceFundCreateParams as ca, MsgUnderwrite as cb, RFQTakerStreamAckData as cc, stringToUint8Array as cd, spotPriceToChainPriceToFixed as cf, PermissionAddressRoles as cg, MsgSetDelegationTransferReceivers as ch, TcDerivativePosition as ci, TradingStrategy as cl, TxRestApi as cm, BalanceStreamCallback as cn, GrpcCampaign as co, ContractExecutionAuthorization as cp, IndexerGrpcDerivativesApi as cr, GrpcRFQGwPrepareQuoteResult as cs, IndexerGrpcDerivativesStreamV2 as ct, MitoLeaderboardEpoch as cu, OrderType as cv, ProposalDeposit as cy, ChainGrpcPeggyTransformer as d, EthAccount as d_, IncentivesCampaign as da, MsgWithdraw as db, TakerStreamEvents as dc, uint8ArrayToBase64 as dd, spotQuantityToChainQuantity as df, PermissionNamespace as dg, MsgAdminUpdateBinaryOptionsMarket as dh, TcDerivativesOrdersHistoryResponse as di, GrpcSubaccountBalance as dl, createTransaction as dm, OraclePriceStreamCallback as dn, GrpcGuild as do, getGenericAuthorizationFromMessageType as dp, IndexerGrpcArchiverApi as dr, RFQGwPrepareAutoSignRequestType as ds, IndexerGrpcExplorerStreamV2 as dt, MitoMissionLeaderboardEntry as du, TradeRewardCampaign as dv, TallyResult as dy, GrpcMintParams as e_, PerpetualMarketFunding as ea, MsgCreateRateLimit as eb, RFQProcessedQuoteType as ec, base64ToUtf8 as ed, getExactDecimalsFromNumber as ef, GrpcPermissionRole as eg, IbcMsgs as eh, GrpcTcDerivativeTradeHistory as ei, ValidatorSlashingEvent as el, createSignerInfo as em, BlocksWithTxsStreamCallback as en, OperationStatusLogEntry as eo, MsgUpdateActorRoles as ep, IndexerRestLeaderboardChronosApi as er, CosmosPubKeyType as es, DerivativeMarketStreamCallbackV2 as et, MitoIDOClaimedCoins as eu, GrpcPointsMultiplier as ev, GrpcGovernanceDepositParams as ey, ChainGrpcAuthZTransformer as f, PubKey$1 as f_, IncentivesRound as fa, MsgSignData as fb, AccessType as fc, uint8ArrayToHex as fd, spotQuantityToChainQuantityToFixed as ff, PermissionParams as fg, ChainModule as fh, TcDerivativesPositionsResponse as fi, GrpcSubaccountBalanceTransfer as fl, createTransactionAndCosmosSignDoc as fm, OraclePricesByMarketsStreamCallback as fn, GrpcGuildMember as fo, msgsOrMsgExecMsgs as fp, IndexerGrpcCampaignApi as fr, RFQGwPrepareAutoSignResponseType as fs, TransactionsStreamCallbackV2 as ft, MitoPagination as fu, TradingRewardCampaignBoostInfo as fv, Vote as fy, ChainGrpcAuthTransformer as g, EvmLog as g_, GrpcMegaVaultHistoricalTVL as ga, MsgDeposit as gb, Block$1 as gc, getChecksumAddress as gd, getErrorMessage as gf, PermissionRoleActors as gg, AuthorityMetadata as gh, CW20BalanceExplorerApiResponse as gi, SubaccountBalance as gl, createTransactionWithSigners as gm, TransfersStreamCallback as gn, ReferralDetails as go, BaseAccount as gp, IndexerGrpcAccountApi as gr, RFQGwPrepareEip712ResponseType as gs, IndexerGrpcTradingStreamV2 as gt, MitoStakingActivity as gu, GrpcDelegation as gv, MsgCreateBinaryOptionsLimitOrder as gy, ChainGrpcBankTransformer as h, EvmChainConfig as h_, GrpcMegaVaultHistoricalPnL as ha, MsgStoreCode as hb, BankTransfer as hc, getAddressFromInjectiveAddress as hd, bigIntToString as hf, PermissionRole as hg, NodeInfoRestResponse as hh, BlockFromExplorerApiResponse as hi, GrpcTradingReward as hl, createTransactionFromMsg as hm, StakingRewardByAccountStreamCallback as hn, GuildMember as ho, MsgBroadcasterWithPk as hp, IndexerGrpcAuctionApi as hr, RFQGwPrepareEip712RequestType as hs, GridStrategyStreamCallbackV2 as ht, MitoStakeToSubscription as hu, Delegation as hv, WeightedVoteOption as hy, ChainGrpcPermissionsTransformer as i, GrpcSupply as i_, PositionV2 as ia, MsgChangeAdmin as ib, RFQSettlementLimitActionType$1 as ic, fromUtf8 as id, numberToCosmosSdkDecString as if, GrpcPermissionsNamespace as ig, PeggyMsgs as ih, GrpcTcPositionDelta as ii, GridStrategyStreamResponse as il, getAminoStdSignDoc as im, SpotAverageEntriesStreamCallback as in, ChronosSpotMarketSummaryResponse as io, MsgClaimVoucher as ip, IndexerRestExplorerApi as ir, GrpcRFQGwPrepareEip712AutoSignRequest as is, DerivativeOrdersStreamCallbackV2 as it, MitoIDOSubscription as iu, GrpcTradeRewardCampaign as iv, GrpcProposalDeposit as iy, ChainGrpcTxFeesApi as j, FeeDiscountAccountInfo as j_, GrpcMegaVaultVolatilityStats as ja, MsgSubmitTextProposal as jb, ExplorerTxsV2Response as jc, denomAmountFromChainDenomAmountToFixed as jd, TypedDataUtilsSanitizeData as jf, GrpcPeggyParams as jg, CosmosAccountRestResponse as jh, DerivativeMarket as ji, GrpcMitoIDOSubscriptionActivity as jl, TxSearchResult as jm, IndexerGrpcAccountPortfolioTransformer as jn, LeaderboardRow as jo, getTypesIncludingFeePayer as jp, AllChronosMarketHistory as jr, SpotOrderHistory as js, IndexerGrpcSpotStreamV2 as jt, TransportEventListener as ju, StakingModuleParams as jv, MsgGrantWithAuthorization as jy, ChainGrpcStakingApi as k, ExchangeModuleParams as k_, GrpcMegaVaultVaultStats as ka, MsgSubmitProposalSpotMarketLaunch as kb, ExplorerTransaction as kc, cosmosSdkDecToBigNumber as kd, SignTypedDataVersionV4 as kf, Params$6 as kg, AccountsResponse as kh, DerivativeLimitOrder as ki, GrpcMitoIDOSubscriber as kl, TxResult as km, IndexerGrpcInsuranceFundTransformer as kn, HistoricalVolumes as ko, getEipTxContext as kp, IndexerModule as kr, SpotMarket as ks, VaultHolderSubscriptionStreamCallbackV2 as kt, IsomorphicWebSocket as ku, Pool as kv, MsgCancelDerivativeOrder as ky, ChainGrpcTxFeesTransformer as l, AuthBaseAccount as l_, Redemption as la, MsgUndelegate as lb, SettlementsResponse as lc, toBase64 as ld, spotQuantityFromChainQuantity as lf, PermissionAddressVoucher as lg, MsgCreateBinaryOptionsMarketOrder as lh, TcDerivativeTradeHistory as li, AccountPortfolio as ll, TxGrpcApi as lm, IndexerGrpcAccountStream as ln, GrpcCampaignUser as lo, GenericAuthorization as lp, IndexerGrpcMegaVaultApi as lr, GrpcRFQGwPrepareRequest as ls, BlocksStreamCallbackV2 as lt, MitoMission as lu, OrderTypeMap as lv, ProposalStatus as ly, ChainGrpcMintTransformer as m, EvmBlobScheduleConfig as m_, GrpcMegaVaultAprStats as ma, MsgSendToEth as mb, BankMsgSendTransaction as mc, addHexPrefix as md, bigIntToNumber as mf, PermissionPolicyStatus as mg, BlockLatestRestResponse as mh, BankTransferFromExplorerApiResponse as mi, GrpcSubaccountPortfolio as ml, createTransactionForAddressAndMsg as mm, IndexerGrpcMitoStream as mn, GuildCampaignSummary as mo, ExecArgNeptuneDeposit as mp, IndexerGrpcTradingApi as mr, RFQGwPrepareEip712AutoSignResponseType as ms, SpotAverageEntriesStreamCallbackV2 as mt, MitoPriceSnapshot as mu, BondStatus as mv, VoteOptionMap as my, ChainGrpcTokenFactoryTransformer as n, BankModuleParams as n_, Position as na, MsgExecuteContract as nb, RFQRequestInputType as nc, concatUint8Arrays as nd, getTensMultiplier as nf, GrpcPermissionRoleIDs as ng, Msgs as nh, GrpcTcDerivativesOrdersHistoryResponse as ni, ValidatorUptimeStatus as nl, createTxRawEIP712 as nm, TransactionsStreamCallback as nn, AllSpotMarketSummaryResponse as no, MsgCreateNamespace as np, IndexerRestMarketChronosApi as nr, GrpcRFQGwPrepareAutoSignRequest as ns, DerivativeOrderbookUpdateStreamCallbackV2 as nt, MitoIDOProgress as nu, GrpcSpotMarketOrder as nv, GrpcGovernanceVotingParams as ny, ChainGrpcStakingTransformer as o, SendEnabled as o_, GrpcIndexerRedemptionSchedule as oa, MsgPrivilegedExecuteContract as ob, RFQSettlementUnfilledActionType as oc, hexToBuff as od, spotPriceFromChainPriceToFixed as of, PermissionActionMap as og, TokenFactoryMsgs as oh, TcDerivativeOrderHistory as oi, ListTradingStrategiesResponse as ol, getTransactionPartsFromTxRaw as om, BidsStreamCallback as on, CampaignUser as oo, MsgInstantBinaryOptionsMarketLaunch as op, IndexerGrpcTcDerivativesApi as or, GrpcRFQGwPrepareEip712Request as os, DerivativePositionsV2StreamCallbackV2 as ot, MitoLeaderboard as ou, GrpcTradingRewardCampaignInfo as ov, GrpcVote as oy, ChainGrpcWasmTransformer as p, EvmBlobConfig as p_, GrpcMegaVaultApr as pa, MsgDelegate as pb, AccessTypeCode as pc, uint8ArrayToString as pd, bigIntReplacer as pf, PermissionPolicyManagerCapability as pg, RestApiResponse as ph, TcPositionDelta as pi, GrpcSubaccountDeposit as pl, createTransactionAndCosmosSignDocForAddressAndMsg as pm, HistoricalStakingStreamCallback as pn, Guild as po, ExecArgNeptuneWithdraw as pp, IndexerGrpcExplorerApi as pr, RFQGwPrepareEip712AutoSignRequestType as ps, IndexerGrpcArchiverStreamV2 as pt, MitoPortfolio as pu, TradingRewardCampaignInfo as pv, VoteOption as py, AccountPortfolioStreamCallbackV2 as q, GrpcFeeDiscountTierInfo as q_, MegaVaultSubscriptionStatus as qa, Message as qc, derivativeQuantityToChainQuantityToFixed as qd, getGrpcWebTransport as qf, GrantWithDecodedAuthorization as qg, GrpcAuctionLastAuctionResult as qh, GrpcExpiryFuturesMarketInfo as qi, MitoChanges as ql, DistributionMsgs as qm, IndexerGrpcOracleTransformer as qn, GrpcAuctionContract as qo, isTxNotFoundError as qp, AllDerivativeMarketSummaryResponse as qr, MakerStreamConfig as qs, DerivativeOrderbookV2StreamCallback as qt, BECH32_ADDR_CONS_PREFIX as qu, GrpcCodeInfoResponse as qv, MsgRevokeAllowance as qy, ChainGrpcDistributionTransformer as r, GrpcBankParams as r_, PositionDelta as ra, MsgCreateDenom as rb, RFQRequestType as rc, fromBase64 as rd, isNumber as rf, GrpcPermissionRoleManager as rg, OracleMsgs as rh, GrpcTcDerivativesPositionsResponse as ri, WasmCode as rl, createWeb3Extension as rm, IndexerGrpcArchiverStream as rn, ChronosSpotMarketSummary as ro, MsgUpdateParams as rp, IndexerRestSpotChronosApi as rr, GrpcRFQGwPrepareAutoSignResponse as rs, DerivativeOrderbookV2StreamCallbackV2 as rt, MitoIDOSubscriber as ru, GrpcSpotOrder as rv, GrpcProposal as ry, ChainGrpcAuctionTransformer as s, TotalSupply as s_, IndexerInsuranceFund as sa, MsgEditValidator as sb, RFQStreamErrorData as sc, hexToUint8Array as sd, spotPriceToChainPrice as sf, PermissionActorRoles as sg, WasmMsgs as sh, TcDerivativeOrdersResponse as si, MarketType as sl, generateArbitrarySignDoc as sm, IndexerGrpcAuctionStream as sn, CampaignV2 as so, ContractExecutionCompatAuthorization as sp, IndexerGrpcAccountPortfolioApi as sr, GrpcRFQGwPrepareEip712Response as ss, DerivativeTradesStreamCallbackV2 as st, MitoLeaderboardEntry as su, IsOptedOutOfRewards as sv, Proposal as sy, ChainGrpcInsuranceFundTransformer as t, MinModuleParams as t_, PerpetualMarketInfo as ta, MsgMigrateContract as tb, RFQQuoteType as tc, binaryToBase64 as td, getSignificantDecimalsFromNumber as tf, GrpcPermissionRoleActors as tg, InsuranceMsgs as th, GrpcTcDerivativeTradesResponse as ti, ValidatorUptime as tl, createSigners as tm, IndexerGrpcExplorerStream as tn, AllChronosSpotMarketSummary as to, MsgUpdateNamespace as tp, IndexerRestDerivativesChronosApi as tr, GrpcCosmosPubKey as ts, DerivativeOrderHistoryStreamCallbackV2 as tt, MitoIDOInitParams as tu, GrpcSpotMarket as tv, GrpcGovernanceTallyParams as ty, ChainGrpcErc20Transformer as u, AuthModuleParams as u_, RedemptionStatus as ua, MsgUpdateAdmin as ub, TakerStreamConfig as uc, toUtf8 as ud, spotQuantityFromChainQuantityToFixed as uf, PermissionGenesisState as ug, MsgBatchCancelBinaryOptionsOrders as uh, TcDerivativeTradesResponse as ui, GrpcAccountPortfolio as ul, waitTxBroadcasted as um, IndexerGrpcOracleStream as un, GrpcCampaignV2 as uo, GrantAuthorizationType as up, IndexerGrpcReferralApi as ur, GrpcRFQGwPrepareResponse as us, BlocksWithTxsStreamCallbackV2 as ut, MitoMissionLeaderboard as uu, PointsMultiplier as uv, ProposalStatusMap as uy, ChainGrpcGovTransformer as v, GrpcEvmBlobConfig as v_, GrpcMegaVaultMaxDrawdown as va, MsgMint as vb, CW20Message as vc, getEthereumAddress as vd, hexToNumber as vf, PermissionRoleManager as vg, TokenFactoryModuleParams as vh, ContractTransactionExplorerApiResponse as vi, SubaccountPortfolio as vl, getTxRawFromTxRawOrDirectSignResponse as vm, VaultStreamCallback as vn, DenomHolders as vo, PublicKey as vp, IndexerGrpcTransactionApi as vr, RFQGwPrepareRequestType as vs, IndexerGrpcAuctionStreamV2 as vt, MitoStakingReward as vu, GrpcPool as vv, MsgCreateDerivativeMarketOrder as vy, ChainGrpcTokenFactoryApi as w, ChainDenomDecimal as w_, GrpcMegaVaultRedemption as wa, MsgSubmitProposalExpiryFuturesMarketLaunch as wb, EventLog as wc, getDerivativeMarketDecimals as wd, objectToJson as wf, GrpcTxFeesParams as wg, ValidatorRewards as wh, ValidatorUptimeFromExplorerApiResponse as wi, GrpcMitoDenomBalance as wl, RestTxBody as wm, SpotOrdersStreamCallback as wn, GrpcPnlLeaderboard as wo, getDefaultEip712TypesV2 as wp, IndexerGrpcRFQApi as wr, GrpcSpotMarketInfo as ws, OraclePricesByMarketsStreamCallbackV2 as wt, MitoVestingConfig as wu, GrpcUnbondingDelegationEntry as wv, MsgCancelBinaryOptionsOrder as wy, ChainRestAuthApi as x, GrpcEvmLog as x_, GrpcMegaVaultOperatorRedemptionBucket as xa, MsgExec as xb, ContractTransactionWithMessages as xc, getSubaccountId as xd, isNode as xf, GrpcOracleParams as xg, GrpcDecCoin as xh, ExplorerBlockApiResponse as xi, TransferType as xl, RestAuthInfo as xm, SpotOrderHistoryStreamCallback as xn, GrpcHistoricalRPNL as xo, getEip712TypedData as xp, IndexerGrpcSpotApi as xr, BatchSpotOrderCancelParams as xs, IndexerGrpcOracleStreamV2 as xt, MitoTokenInfo as xu, GrpcReDelegationResponse as xv, MsgWithdrawDelegatorReward as xy, ChainRestTendermintApi as y, GrpcEvmBlobScheduleConfig as y_, GrpcMegaVaultOperationStatusLogEntry as ya, MsgBurn as yb, Contract as yc, getInjectiveAddress as yd, isBrowser as yf, PermissionVoucher as yg, TokenFactoryModuleState as yh, ExplorerApiResponse as yi, SubaccountTransfer as yl, BroadcastMode as ym, IndexerGrpcSpotStream as yn, GrpcDenomHolders as yo, Address as yp, IndexerGrpcOracleApi as yr, RFQGwPrepareResponseType as ys, BalanceStreamCallbackV2 as yt, MitoSubaccountBalance as yu, GrpcReDelegation as yv, MsgBatchCancelDerivativeOrders as yy, ChainGrpcBankApi as z, GrpcChainFullSpotMarket as z_, MegaVaultOperator as za, GrpcIBCTransferTx as zc, derivativeMarginToChainMarginToFixed as zd, privateKeyToPublicKey as zf, CreateDerivativeLimitOrderAuthz as zg, AuctionModuleState as zh, FundingRate as zi, GrpcMitoStakingPool as zl, TxClientBroadcastResponse as zm, IndexerRestExplorerTransformer as zn, AuctionCoinPrices as zo, SIGN_DIRECT as zp, GrpcSubaccountDepositV2 as zr, QuantityAndFees as zs, SettlementStreamCallbackV2 as zt, fetchAllWithPagination as zu, ContractAccountsBalanceWithPagination as zv, MsgReclaimLockedFunds as zy };