@thru/proto 0.1.36 → 0.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.cts CHANGED
@@ -1,6 +1,7 @@
1
+ import { Message } from '@bufbuild/protobuf';
2
+ export { create } from '@bufbuild/protobuf';
1
3
  import { GenFile, GenMessage, GenEnum, GenService } from '@bufbuild/protobuf/codegenv2';
2
4
  import { Timestamp, Duration } from '@bufbuild/protobuf/wkt';
3
- import { Message } from '@bufbuild/protobuf';
4
5
 
5
6
  /**
6
7
  * Describes the file thru/common/v1/consensus.proto.
@@ -962,6 +963,10 @@ type BlockHeader = Message<"thru.core.v1.BlockHeader"> & {
962
963
  * @generated from field: uint64 weight_slot = 14;
963
964
  */
964
965
  weightSlot: bigint;
966
+ /**
967
+ * @generated from field: uint32 chain_id = 15;
968
+ */
969
+ chainId: number;
965
970
  };
966
971
  /**
967
972
  * Describes the message thru.core.v1.BlockHeader.
@@ -1253,6 +1258,12 @@ type TransactionHeader = Message<"thru.core.v1.TransactionHeader"> & {
1253
1258
  * @generated from field: thru.common.v1.Pubkey program_pubkey = 15;
1254
1259
  */
1255
1260
  programPubkey?: Pubkey;
1261
+ /**
1262
+ * Chain identifier to prevent transaction replay across different chains.
1263
+ *
1264
+ * @generated from field: uint32 chain_id = 16;
1265
+ */
1266
+ chainId: number;
1256
1267
  };
1257
1268
  /**
1258
1269
  * Describes the message thru.core.v1.TransactionHeader.
@@ -3172,6 +3183,36 @@ type GetHeightResponse = Message<"thru.services.v1.GetHeightResponse"> & {
3172
3183
  * Use `create(GetHeightResponseSchema)` to create a new message.
3173
3184
  */
3174
3185
  declare const GetHeightResponseSchema: GenMessage<GetHeightResponse>;
3186
+ /**
3187
+ * GetChainInfoRequest retrieves chain-level information.
3188
+ *
3189
+ * @generated from message thru.services.v1.GetChainInfoRequest
3190
+ */
3191
+ type GetChainInfoRequest = Message<"thru.services.v1.GetChainInfoRequest"> & {};
3192
+ /**
3193
+ * Describes the message thru.services.v1.GetChainInfoRequest.
3194
+ * Use `create(GetChainInfoRequestSchema)` to create a new message.
3195
+ */
3196
+ declare const GetChainInfoRequestSchema: GenMessage<GetChainInfoRequest>;
3197
+ /**
3198
+ * GetChainInfoResponse returns chain-level information.
3199
+ *
3200
+ * @generated from message thru.services.v1.GetChainInfoResponse
3201
+ */
3202
+ type GetChainInfoResponse = Message<"thru.services.v1.GetChainInfoResponse"> & {
3203
+ /**
3204
+ * Chain identifier, unique per network (similar to Ethereum chain ID).
3205
+ * Used to prevent transaction replay across different chains.
3206
+ *
3207
+ * @generated from field: uint32 chain_id = 1;
3208
+ */
3209
+ chainId: number;
3210
+ };
3211
+ /**
3212
+ * Describes the message thru.services.v1.GetChainInfoResponse.
3213
+ * Use `create(GetChainInfoResponseSchema)` to create a new message.
3214
+ */
3215
+ declare const GetChainInfoResponseSchema: GenMessage<GetChainInfoResponse>;
3175
3216
  /**
3176
3217
  * GetStateRootsRequest retrieves up to 257 state roots ending at a specified slot.
3177
3218
  * Used for transaction replay to verify state proofs against historical roots.
@@ -3230,6 +3271,112 @@ type GetStateRootsResponse = Message<"thru.services.v1.GetStateRootsResponse"> &
3230
3271
  * Use `create(GetStateRootsResponseSchema)` to create a new message.
3231
3272
  */
3232
3273
  declare const GetStateRootsResponseSchema: GenMessage<GetStateRootsResponse>;
3274
+ /**
3275
+ * GetSlotMetricsRequest retrieves metrics for a specific slot.
3276
+ *
3277
+ * @generated from message thru.services.v1.GetSlotMetricsRequest
3278
+ */
3279
+ type GetSlotMetricsRequest = Message<"thru.services.v1.GetSlotMetricsRequest"> & {
3280
+ /**
3281
+ * Block slot number to retrieve metrics for.
3282
+ *
3283
+ * @generated from field: uint64 slot = 1;
3284
+ */
3285
+ slot: bigint;
3286
+ };
3287
+ /**
3288
+ * Describes the message thru.services.v1.GetSlotMetricsRequest.
3289
+ * Use `create(GetSlotMetricsRequestSchema)` to create a new message.
3290
+ */
3291
+ declare const GetSlotMetricsRequestSchema: GenMessage<GetSlotMetricsRequest>;
3292
+ /**
3293
+ * GetSlotMetricsResponse contains slot-level metrics.
3294
+ *
3295
+ * @generated from message thru.services.v1.GetSlotMetricsResponse
3296
+ */
3297
+ type GetSlotMetricsResponse = Message<"thru.services.v1.GetSlotMetricsResponse"> & {
3298
+ /**
3299
+ * Block slot number.
3300
+ *
3301
+ * @generated from field: uint64 slot = 1;
3302
+ */
3303
+ slot: bigint;
3304
+ /**
3305
+ * Global counter tracking total activated state across all accounts.
3306
+ *
3307
+ * @generated from field: uint64 global_activated_state_counter = 2;
3308
+ */
3309
+ globalActivatedStateCounter: bigint;
3310
+ /**
3311
+ * Global counter tracking total deactivated state across all accounts.
3312
+ *
3313
+ * @generated from field: uint64 global_deactivated_state_counter = 3;
3314
+ */
3315
+ globalDeactivatedStateCounter: bigint;
3316
+ /**
3317
+ * Total fees collected from all transactions in this block.
3318
+ *
3319
+ * @generated from field: uint64 collected_fees = 4;
3320
+ */
3321
+ collectedFees: bigint;
3322
+ /**
3323
+ * Block timestamp when available.
3324
+ *
3325
+ * @generated from field: optional google.protobuf.Timestamp block_timestamp = 5;
3326
+ */
3327
+ blockTimestamp?: Timestamp;
3328
+ };
3329
+ /**
3330
+ * Describes the message thru.services.v1.GetSlotMetricsResponse.
3331
+ * Use `create(GetSlotMetricsResponseSchema)` to create a new message.
3332
+ */
3333
+ declare const GetSlotMetricsResponseSchema: GenMessage<GetSlotMetricsResponse>;
3334
+ /**
3335
+ * ListSlotMetricsRequest lists slot metrics for a range of slots.
3336
+ *
3337
+ * @generated from message thru.services.v1.ListSlotMetricsRequest
3338
+ */
3339
+ type ListSlotMetricsRequest = Message<"thru.services.v1.ListSlotMetricsRequest"> & {
3340
+ /**
3341
+ * Start slot for the range (inclusive).
3342
+ *
3343
+ * @generated from field: uint64 start_slot = 1;
3344
+ */
3345
+ startSlot: bigint;
3346
+ /**
3347
+ * End slot for the range (inclusive). Defaults to start_slot if not specified.
3348
+ *
3349
+ * @generated from field: optional uint64 end_slot = 2;
3350
+ */
3351
+ endSlot?: bigint;
3352
+ /**
3353
+ * Maximum number of results to return. Defaults to 100.
3354
+ *
3355
+ * @generated from field: optional uint32 limit = 3;
3356
+ */
3357
+ limit?: number;
3358
+ };
3359
+ /**
3360
+ * Describes the message thru.services.v1.ListSlotMetricsRequest.
3361
+ * Use `create(ListSlotMetricsRequestSchema)` to create a new message.
3362
+ */
3363
+ declare const ListSlotMetricsRequestSchema: GenMessage<ListSlotMetricsRequest>;
3364
+ /**
3365
+ * ListSlotMetricsResponse contains a list of slot metrics.
3366
+ *
3367
+ * @generated from message thru.services.v1.ListSlotMetricsResponse
3368
+ */
3369
+ type ListSlotMetricsResponse = Message<"thru.services.v1.ListSlotMetricsResponse"> & {
3370
+ /**
3371
+ * @generated from field: repeated thru.services.v1.GetSlotMetricsResponse metrics = 1;
3372
+ */
3373
+ metrics: GetSlotMetricsResponse[];
3374
+ };
3375
+ /**
3376
+ * Describes the message thru.services.v1.ListSlotMetricsResponse.
3377
+ * Use `create(ListSlotMetricsResponseSchema)` to create a new message.
3378
+ */
3379
+ declare const ListSlotMetricsResponseSchema: GenMessage<ListSlotMetricsResponse>;
3233
3380
  /**
3234
3381
  * QueryService defines unary RPCs for accessing blockchain data.
3235
3382
  *
@@ -3246,6 +3393,16 @@ declare const QueryService: GenService<{
3246
3393
  input: typeof GetHeightRequestSchema;
3247
3394
  output: typeof GetHeightResponseSchema;
3248
3395
  };
3396
+ /**
3397
+ * Get chain-level information including chain ID.
3398
+ *
3399
+ * @generated from rpc thru.services.v1.QueryService.GetChainInfo
3400
+ */
3401
+ getChainInfo: {
3402
+ methodKind: "unary";
3403
+ input: typeof GetChainInfoRequestSchema;
3404
+ output: typeof GetChainInfoResponseSchema;
3405
+ };
3249
3406
  /**
3250
3407
  * Get account information.
3251
3408
  *
@@ -3407,6 +3564,26 @@ declare const QueryService: GenService<{
3407
3564
  input: typeof GetStateRootsRequestSchema;
3408
3565
  output: typeof GetStateRootsResponseSchema;
3409
3566
  };
3567
+ /**
3568
+ * Get slot-level metrics including state counters and collected fees.
3569
+ *
3570
+ * @generated from rpc thru.services.v1.QueryService.GetSlotMetrics
3571
+ */
3572
+ getSlotMetrics: {
3573
+ methodKind: "unary";
3574
+ input: typeof GetSlotMetricsRequestSchema;
3575
+ output: typeof GetSlotMetricsResponseSchema;
3576
+ };
3577
+ /**
3578
+ * List slot metrics for a range of slots.
3579
+ *
3580
+ * @generated from rpc thru.services.v1.QueryService.ListSlotMetrics
3581
+ */
3582
+ listSlotMetrics: {
3583
+ methodKind: "unary";
3584
+ input: typeof ListSlotMetricsRequestSchema;
3585
+ output: typeof ListSlotMetricsResponseSchema;
3586
+ };
3410
3587
  }>;
3411
3588
 
3412
3589
  /**
@@ -3721,6 +3898,7 @@ type AccountUpdate = Message<"thru.services.v1.AccountUpdate"> & {
3721
3898
  declare const AccountUpdateSchema: GenMessage<AccountUpdate>;
3722
3899
  /**
3723
3900
  * BlockFinished is sent when block's execution is complete.
3901
+ * Contains block accumulator metrics finalized after execution.
3724
3902
  *
3725
3903
  * @generated from message thru.services.v1.BlockFinished
3726
3904
  */
@@ -3729,6 +3907,26 @@ type BlockFinished = Message<"thru.services.v1.BlockFinished"> & {
3729
3907
  * @generated from field: uint64 slot = 1;
3730
3908
  */
3731
3909
  slot: bigint;
3910
+ /**
3911
+ * Global counter tracking total activated state across all accounts.
3912
+ * Increments when accounts are created or modified.
3913
+ *
3914
+ * @generated from field: uint64 global_activated_state_counter = 2;
3915
+ */
3916
+ globalActivatedStateCounter: bigint;
3917
+ /**
3918
+ * Global counter tracking total deactivated state across all accounts.
3919
+ * Increments when accounts are deleted or compressed.
3920
+ *
3921
+ * @generated from field: uint64 global_deactivated_state_counter = 3;
3922
+ */
3923
+ globalDeactivatedStateCounter: bigint;
3924
+ /**
3925
+ * Total fees collected from all transactions in this block.
3926
+ *
3927
+ * @generated from field: uint64 collected_fees = 4;
3928
+ */
3929
+ collectedFees: bigint;
3732
3930
  };
3733
3931
  /**
3734
3932
  * Describes the message thru.services.v1.BlockFinished.
@@ -4137,6 +4335,68 @@ type TrackTransactionResponse = Message<"thru.services.v1.TrackTransactionRespon
4137
4335
  * Use `create(TrackTransactionResponseSchema)` to create a new message.
4138
4336
  */
4139
4337
  declare const TrackTransactionResponseSchema: GenMessage<TrackTransactionResponse>;
4338
+ /**
4339
+ * StreamSlotMetricsRequest subscribes to per-slot metrics updates.
4340
+ * Metrics are emitted after each block's execution completes.
4341
+ *
4342
+ * @generated from message thru.services.v1.StreamSlotMetricsRequest
4343
+ */
4344
+ type StreamSlotMetricsRequest = Message<"thru.services.v1.StreamSlotMetricsRequest"> & {
4345
+ /**
4346
+ * Optional starting slot. If specified, starts streaming from this slot.
4347
+ * If not specified, starts from the next executed slot.
4348
+ *
4349
+ * @generated from field: optional uint64 start_slot = 1;
4350
+ */
4351
+ startSlot?: bigint;
4352
+ };
4353
+ /**
4354
+ * Describes the message thru.services.v1.StreamSlotMetricsRequest.
4355
+ * Use `create(StreamSlotMetricsRequestSchema)` to create a new message.
4356
+ */
4357
+ declare const StreamSlotMetricsRequestSchema: GenMessage<StreamSlotMetricsRequest>;
4358
+ /**
4359
+ * StreamSlotMetricsResponse delivers slot metrics after execution completes.
4360
+ *
4361
+ * @generated from message thru.services.v1.StreamSlotMetricsResponse
4362
+ */
4363
+ type StreamSlotMetricsResponse = Message<"thru.services.v1.StreamSlotMetricsResponse"> & {
4364
+ /**
4365
+ * Block slot number.
4366
+ *
4367
+ * @generated from field: uint64 slot = 1;
4368
+ */
4369
+ slot: bigint;
4370
+ /**
4371
+ * Global counter tracking total activated state across all accounts.
4372
+ *
4373
+ * @generated from field: uint64 global_activated_state_counter = 2;
4374
+ */
4375
+ globalActivatedStateCounter: bigint;
4376
+ /**
4377
+ * Global counter tracking total deactivated state across all accounts.
4378
+ *
4379
+ * @generated from field: uint64 global_deactivated_state_counter = 3;
4380
+ */
4381
+ globalDeactivatedStateCounter: bigint;
4382
+ /**
4383
+ * Total fees collected from all transactions in this block.
4384
+ *
4385
+ * @generated from field: uint64 collected_fees = 4;
4386
+ */
4387
+ collectedFees: bigint;
4388
+ /**
4389
+ * Block timestamp when available.
4390
+ *
4391
+ * @generated from field: optional google.protobuf.Timestamp block_timestamp = 5;
4392
+ */
4393
+ blockTimestamp?: Timestamp;
4394
+ };
4395
+ /**
4396
+ * Describes the message thru.services.v1.StreamSlotMetricsResponse.
4397
+ * Use `create(StreamSlotMetricsResponseSchema)` to create a new message.
4398
+ */
4399
+ declare const StreamSlotMetricsResponseSchema: GenMessage<StreamSlotMetricsResponse>;
4140
4400
  /**
4141
4401
  * StreamHeightRequest subscribes to real-time height updates.
4142
4402
  *
@@ -4226,6 +4486,17 @@ declare const StreamingService: GenService<{
4226
4486
  input: typeof StreamHeightRequestSchema;
4227
4487
  output: typeof StreamHeightResponseSchema;
4228
4488
  };
4489
+ /**
4490
+ * Stream per-slot metrics including state counters and collected fees.
4491
+ * Metrics are emitted after each block's execution completes.
4492
+ *
4493
+ * @generated from rpc thru.services.v1.StreamingService.StreamSlotMetrics
4494
+ */
4495
+ streamSlotMetrics: {
4496
+ methodKind: "server_streaming";
4497
+ input: typeof StreamSlotMetricsRequestSchema;
4498
+ output: typeof StreamSlotMetricsResponseSchema;
4499
+ };
4229
4500
  }>;
4230
4501
 
4231
- export { type Account, type AccountData, AccountDataSchema, type AccountFlags, AccountFlagsSchema, type AccountMeta, AccountMetaSchema, type AccountPage, AccountPageSchema, AccountSchema, type AccountUpdate, AccountUpdateSchema, AccountView, AccountViewSchema, type BatchSendTransactionsRequest, BatchSendTransactionsRequestSchema, type BatchSendTransactionsResponse, BatchSendTransactionsResponseSchema, type Block, type BlockFinished, BlockFinishedSchema, type BlockFooter, BlockFooterSchema, type BlockHash, BlockHashSchema, type BlockHeader, BlockHeaderSchema, BlockSchema, BlockView, BlockViewSchema, type BytesList, BytesListSchema, type CelFilterValidation, CelFilterValidationSchema, CommandService, ConsensusStatus, ConsensusStatusSchema, type CurrentOrHistoricalVersion, CurrentOrHistoricalVersionSchema, type CurrentVersion, CurrentVersionSchema, type DataSlice, DataSliceSchema, type ErrorDetail, ErrorDetailSchema, ErrorType, ErrorTypeSchema, type Event, EventSchema, ExecutionStatus, ExecutionStatusSchema, type Filter, type FilterParamValue, FilterParamValueSchema, FilterSchema, type GenerateStateProofRequest, GenerateStateProofRequestSchema, type GenerateStateProofResponse, GenerateStateProofResponseSchema, type GetAccountRequest, GetAccountRequestSchema, type GetBlockRequest, GetBlockRequestSchema, type GetEventRequest, GetEventRequestSchema, type GetHeightRequest, GetHeightRequestSchema, type GetHeightResponse, GetHeightResponseSchema, type GetRawAccountRequest, GetRawAccountRequestSchema, type GetRawBlockRequest, GetRawBlockRequestSchema, type GetRawTransactionRequest, GetRawTransactionRequestSchema, type GetStateRootsRequest, GetStateRootsRequestSchema, type GetStateRootsResponse, GetStateRootsResponseSchema, type GetTransactionRequest, GetTransactionRequestSchema, type GetTransactionStatusRequest, GetTransactionStatusRequestSchema, type GetVersionRequest, GetVersionRequestSchema, type GetVersionResponse, GetVersionResponseSchema, type Hash, HashSchema, type ListAccountsRequest, ListAccountsRequestSchema, type ListAccountsResponse, ListAccountsResponseSchema, type ListBlocksRequest, ListBlocksRequestSchema, type ListBlocksResponse, ListBlocksResponseSchema, type ListEventsRequest, ListEventsRequestSchema, type ListEventsResponse, ListEventsResponseSchema, type ListTransactionsForAccountRequest, ListTransactionsForAccountRequestSchema, type ListTransactionsForAccountResponse, ListTransactionsForAccountResponseSchema, type ListTransactionsRequest, ListTransactionsRequestSchema, type ListTransactionsResponse, ListTransactionsResponseSchema, type PageRequest, PageRequestSchema, type PageResponse, PageResponseSchema, type Pubkey, type PubkeyList, PubkeyListSchema, PubkeySchema, QueryService, type RawAccount, RawAccountSchema, type RawBlock, RawBlockSchema, type RawTransaction, RawTransactionSchema, type SendAndTrackTxnRequest, SendAndTrackTxnRequestSchema, type SendAndTrackTxnResponse, SendAndTrackTxnResponseSchema, type SendTransactionRequest, SendTransactionRequestSchema, type SendTransactionResponse, SendTransactionResponseSchema, type Signature, SignatureSchema, type StateProof, type StateProofRequest, StateProofRequestSchema, StateProofSchema, StateProofType, StateProofTypeSchema, type StateRootEntry, StateRootEntrySchema, type StreamAccountUpdatesRequest, StreamAccountUpdatesRequestSchema, type StreamAccountUpdatesResponse, StreamAccountUpdatesResponseSchema, type StreamBlocksRequest, StreamBlocksRequestSchema, type StreamBlocksResponse, StreamBlocksResponseSchema, type StreamEventsRequest, StreamEventsRequestSchema, type StreamEventsResponse, StreamEventsResponseSchema, type StreamHeightRequest, StreamHeightRequestSchema, type StreamHeightResponse, StreamHeightResponseSchema, type StreamTransactionsRequest, StreamTransactionsRequestSchema, type StreamTransactionsResponse, StreamTransactionsResponseSchema, StreamingService, SubmissionStatus, SubmissionStatusSchema, type TaPubkey, TaPubkeySchema, type TrackTransactionRequest, TrackTransactionRequestSchema, type TrackTransactionResponse, TrackTransactionResponseSchema, type Transaction, type TransactionEvent, TransactionEventSchema, type TransactionExecutionResult, TransactionExecutionResultSchema, type TransactionHeader, TransactionHeaderSchema, TransactionSchema, type TransactionStatus, TransactionStatusSchema, TransactionView, TransactionViewSchema, TransactionVmError, TransactionVmErrorSchema, type TsSignature, TsSignatureSchema, type VersionContext, type VersionContextMetadata, VersionContextMetadataSchema, VersionContextSchema, file_thru_common_v1_consensus, file_thru_common_v1_errors, file_thru_common_v1_filters, file_thru_common_v1_pagination, file_thru_common_v1_primitives, file_thru_core_v1_account, file_thru_core_v1_block, file_thru_core_v1_state, file_thru_core_v1_transaction, file_thru_core_v1_types, file_thru_services_v1_command_service, file_thru_services_v1_query_service, file_thru_services_v1_streaming_service };
4502
+ export { type Account, type AccountData, AccountDataSchema, type AccountFlags, AccountFlagsSchema, type AccountMeta, AccountMetaSchema, type AccountPage, AccountPageSchema, AccountSchema, type AccountUpdate, AccountUpdateSchema, AccountView, AccountViewSchema, type BatchSendTransactionsRequest, BatchSendTransactionsRequestSchema, type BatchSendTransactionsResponse, BatchSendTransactionsResponseSchema, type Block, type BlockFinished, BlockFinishedSchema, type BlockFooter, BlockFooterSchema, type BlockHash, BlockHashSchema, type BlockHeader, BlockHeaderSchema, BlockSchema, BlockView, BlockViewSchema, type BytesList, BytesListSchema, type CelFilterValidation, CelFilterValidationSchema, CommandService, ConsensusStatus, ConsensusStatusSchema, type CurrentOrHistoricalVersion, CurrentOrHistoricalVersionSchema, type CurrentVersion, CurrentVersionSchema, type DataSlice, DataSliceSchema, type ErrorDetail, ErrorDetailSchema, ErrorType, ErrorTypeSchema, type Event, EventSchema, ExecutionStatus, ExecutionStatusSchema, type Filter, type FilterParamValue, FilterParamValueSchema, FilterSchema, type GenerateStateProofRequest, GenerateStateProofRequestSchema, type GenerateStateProofResponse, GenerateStateProofResponseSchema, type GetAccountRequest, GetAccountRequestSchema, type GetBlockRequest, GetBlockRequestSchema, type GetChainInfoRequest, GetChainInfoRequestSchema, type GetChainInfoResponse, GetChainInfoResponseSchema, type GetEventRequest, GetEventRequestSchema, type GetHeightRequest, GetHeightRequestSchema, type GetHeightResponse, GetHeightResponseSchema, type GetRawAccountRequest, GetRawAccountRequestSchema, type GetRawBlockRequest, GetRawBlockRequestSchema, type GetRawTransactionRequest, GetRawTransactionRequestSchema, type GetSlotMetricsRequest, GetSlotMetricsRequestSchema, type GetSlotMetricsResponse, GetSlotMetricsResponseSchema, type GetStateRootsRequest, GetStateRootsRequestSchema, type GetStateRootsResponse, GetStateRootsResponseSchema, type GetTransactionRequest, GetTransactionRequestSchema, type GetTransactionStatusRequest, GetTransactionStatusRequestSchema, type GetVersionRequest, GetVersionRequestSchema, type GetVersionResponse, GetVersionResponseSchema, type Hash, HashSchema, type ListAccountsRequest, ListAccountsRequestSchema, type ListAccountsResponse, ListAccountsResponseSchema, type ListBlocksRequest, ListBlocksRequestSchema, type ListBlocksResponse, ListBlocksResponseSchema, type ListEventsRequest, ListEventsRequestSchema, type ListEventsResponse, ListEventsResponseSchema, type ListSlotMetricsRequest, ListSlotMetricsRequestSchema, type ListSlotMetricsResponse, ListSlotMetricsResponseSchema, type ListTransactionsForAccountRequest, ListTransactionsForAccountRequestSchema, type ListTransactionsForAccountResponse, ListTransactionsForAccountResponseSchema, type ListTransactionsRequest, ListTransactionsRequestSchema, type ListTransactionsResponse, ListTransactionsResponseSchema, type PageRequest, PageRequestSchema, type PageResponse, PageResponseSchema, type Pubkey, type PubkeyList, PubkeyListSchema, PubkeySchema, QueryService, type RawAccount, RawAccountSchema, type RawBlock, RawBlockSchema, type RawTransaction, RawTransactionSchema, type SendAndTrackTxnRequest, SendAndTrackTxnRequestSchema, type SendAndTrackTxnResponse, SendAndTrackTxnResponseSchema, type SendTransactionRequest, SendTransactionRequestSchema, type SendTransactionResponse, SendTransactionResponseSchema, type Signature, SignatureSchema, type StateProof, type StateProofRequest, StateProofRequestSchema, StateProofSchema, StateProofType, StateProofTypeSchema, type StateRootEntry, StateRootEntrySchema, type StreamAccountUpdatesRequest, StreamAccountUpdatesRequestSchema, type StreamAccountUpdatesResponse, StreamAccountUpdatesResponseSchema, type StreamBlocksRequest, StreamBlocksRequestSchema, type StreamBlocksResponse, StreamBlocksResponseSchema, type StreamEventsRequest, StreamEventsRequestSchema, type StreamEventsResponse, StreamEventsResponseSchema, type StreamHeightRequest, StreamHeightRequestSchema, type StreamHeightResponse, StreamHeightResponseSchema, type StreamSlotMetricsRequest, StreamSlotMetricsRequestSchema, type StreamSlotMetricsResponse, StreamSlotMetricsResponseSchema, type StreamTransactionsRequest, StreamTransactionsRequestSchema, type StreamTransactionsResponse, StreamTransactionsResponseSchema, StreamingService, SubmissionStatus, SubmissionStatusSchema, type TaPubkey, TaPubkeySchema, type TrackTransactionRequest, TrackTransactionRequestSchema, type TrackTransactionResponse, TrackTransactionResponseSchema, type Transaction, type TransactionEvent, TransactionEventSchema, type TransactionExecutionResult, TransactionExecutionResultSchema, type TransactionHeader, TransactionHeaderSchema, TransactionSchema, type TransactionStatus, TransactionStatusSchema, TransactionView, TransactionViewSchema, TransactionVmError, TransactionVmErrorSchema, type TsSignature, TsSignatureSchema, type VersionContext, type VersionContextMetadata, VersionContextMetadataSchema, VersionContextSchema, file_thru_common_v1_consensus, file_thru_common_v1_errors, file_thru_common_v1_filters, file_thru_common_v1_pagination, file_thru_common_v1_primitives, file_thru_core_v1_account, file_thru_core_v1_block, file_thru_core_v1_state, file_thru_core_v1_transaction, file_thru_core_v1_types, file_thru_services_v1_command_service, file_thru_services_v1_query_service, file_thru_services_v1_streaming_service };