@thru/proto 0.2.5 → 0.2.7

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
@@ -1437,6 +1437,13 @@ type TransactionExecutionResult = Message<"thru.core.v1.TransactionExecutionResu
1437
1437
  * @generated from field: repeated thru.core.v1.TransactionEvent events = 12;
1438
1438
  */
1439
1439
  events: TransactionEvent[];
1440
+ /**
1441
+ * Account index of the program that caused the error (revert, fault, etc.).
1442
+ * Only meaningful when vm_error indicates a failure.
1443
+ *
1444
+ * @generated from field: uint32 error_program_acc_idx = 13;
1445
+ */
1446
+ errorProgramAccIdx: number;
1440
1447
  };
1441
1448
  /**
1442
1449
  * Describes the message thru.core.v1.TransactionExecutionResult.
@@ -1953,6 +1960,333 @@ declare const CommandService: GenService<{
1953
1960
  };
1954
1961
  }>;
1955
1962
 
1963
+ /**
1964
+ * Describes the file thru/services/v1/debug_service.proto.
1965
+ */
1966
+ declare const file_thru_services_v1_debug_service: GenFile;
1967
+ /**
1968
+ * CallFrame represents a single shadow stack frame from the VM.
1969
+ *
1970
+ * @generated from message thru.services.v1.CallFrame
1971
+ */
1972
+ type CallFrame = Message<"thru.services.v1.CallFrame"> & {
1973
+ /**
1974
+ * @generated from field: uint32 program_acc_idx = 1;
1975
+ */
1976
+ programAccIdx: number;
1977
+ /**
1978
+ * @generated from field: uint64 program_counter = 2;
1979
+ */
1980
+ programCounter: bigint;
1981
+ /**
1982
+ * @generated from field: uint64 stack_pointer = 3;
1983
+ */
1984
+ stackPointer: bigint;
1985
+ /**
1986
+ * @generated from field: repeated uint64 saved_registers = 4;
1987
+ */
1988
+ savedRegisters: bigint[];
1989
+ /**
1990
+ * Up to 1024 bytes above sp
1991
+ *
1992
+ * @generated from field: bytes stack_window = 5;
1993
+ */
1994
+ stackWindow: Uint8Array;
1995
+ /**
1996
+ * Virtual address of first byte (== stack_pointer)
1997
+ *
1998
+ * @generated from field: uint64 stack_window_base = 6;
1999
+ */
2000
+ stackWindowBase: bigint;
2001
+ };
2002
+ /**
2003
+ * Describes the message thru.services.v1.CallFrame.
2004
+ * Use `create(CallFrameSchema)` to create a new message.
2005
+ */
2006
+ declare const CallFrameSchema: GenMessage<CallFrame>;
2007
+ /**
2008
+ * MemoryPage represents a single allocated page of VM memory.
2009
+ *
2010
+ * @generated from message thru.services.v1.MemoryPage
2011
+ */
2012
+ type MemoryPage = Message<"thru.services.v1.MemoryPage"> & {
2013
+ /**
2014
+ * Index within the segment's page array
2015
+ *
2016
+ * @generated from field: uint32 page_index = 1;
2017
+ */
2018
+ pageIndex: number;
2019
+ /**
2020
+ * Page contents (4096 bytes)
2021
+ *
2022
+ * @generated from field: bytes data = 2;
2023
+ */
2024
+ data: Uint8Array;
2025
+ };
2026
+ /**
2027
+ * Describes the message thru.services.v1.MemoryPage.
2028
+ * Use `create(MemoryPageSchema)` to create a new message.
2029
+ */
2030
+ declare const MemoryPageSchema: GenMessage<MemoryPage>;
2031
+ /**
2032
+ * MemorySegment represents all allocated pages of a VM memory segment.
2033
+ *
2034
+ * @generated from message thru.services.v1.MemorySegment
2035
+ */
2036
+ type MemorySegment = Message<"thru.services.v1.MemorySegment"> & {
2037
+ /**
2038
+ * VM segment type (5=stack, 7=heap)
2039
+ *
2040
+ * @generated from field: uint32 segment_type = 1;
2041
+ */
2042
+ segmentType: number;
2043
+ /**
2044
+ * Total virtual size of segment in bytes
2045
+ *
2046
+ * @generated from field: uint64 segment_size = 2;
2047
+ */
2048
+ segmentSize: bigint;
2049
+ /**
2050
+ * @generated from field: repeated thru.services.v1.MemoryPage pages = 3;
2051
+ */
2052
+ pages: MemoryPage[];
2053
+ };
2054
+ /**
2055
+ * Describes the message thru.services.v1.MemorySegment.
2056
+ * Use `create(MemorySegmentSchema)` to create a new message.
2057
+ */
2058
+ declare const MemorySegmentSchema: GenMessage<MemorySegment>;
2059
+ /**
2060
+ * VmExecutionDetails contains detailed VM state after execution.
2061
+ *
2062
+ * @generated from message thru.services.v1.VmExecutionDetails
2063
+ */
2064
+ type VmExecutionDetails = Message<"thru.services.v1.VmExecutionDetails"> & {
2065
+ /**
2066
+ * @generated from field: uint64 execution_code = 1;
2067
+ */
2068
+ executionCode: bigint;
2069
+ /**
2070
+ * @generated from field: uint64 user_error_code = 2;
2071
+ */
2072
+ userErrorCode: bigint;
2073
+ /**
2074
+ * @generated from field: uint64 compute_units_consumed = 3;
2075
+ */
2076
+ computeUnitsConsumed: bigint;
2077
+ /**
2078
+ * @generated from field: uint64 state_units_consumed = 4;
2079
+ */
2080
+ stateUnitsConsumed: bigint;
2081
+ /**
2082
+ * @generated from field: uint64 pages_used = 5;
2083
+ */
2084
+ pagesUsed: bigint;
2085
+ /**
2086
+ * @generated from field: uint64 program_counter = 6;
2087
+ */
2088
+ programCounter: bigint;
2089
+ /**
2090
+ * @generated from field: uint64 instruction_counter = 7;
2091
+ */
2092
+ instructionCounter: bigint;
2093
+ /**
2094
+ * @generated from field: thru.services.v1.VmFaultCode fault_code = 8;
2095
+ */
2096
+ faultCode: VmFaultCode;
2097
+ /**
2098
+ * @generated from field: uint64 segv_vaddr = 9;
2099
+ */
2100
+ segvVaddr: bigint;
2101
+ /**
2102
+ * @generated from field: uint64 segv_size = 10;
2103
+ */
2104
+ segvSize: bigint;
2105
+ /**
2106
+ * @generated from field: bool segv_write = 11;
2107
+ */
2108
+ segvWrite: boolean;
2109
+ /**
2110
+ * @generated from field: repeated uint64 registers = 12;
2111
+ */
2112
+ registers: bigint[];
2113
+ /**
2114
+ * @generated from field: uint64 call_depth = 13;
2115
+ */
2116
+ callDepth: bigint;
2117
+ /**
2118
+ * @generated from field: uint64 max_call_depth = 14;
2119
+ */
2120
+ maxCallDepth: bigint;
2121
+ /**
2122
+ * @generated from field: repeated thru.services.v1.CallFrame call_frames = 15;
2123
+ */
2124
+ callFrames: CallFrame[];
2125
+ };
2126
+ /**
2127
+ * Describes the message thru.services.v1.VmExecutionDetails.
2128
+ * Use `create(VmExecutionDetailsSchema)` to create a new message.
2129
+ */
2130
+ declare const VmExecutionDetailsSchema: GenMessage<VmExecutionDetails>;
2131
+ /**
2132
+ * AccountSnapshot represents the state of an account at a point in time.
2133
+ *
2134
+ * @generated from message thru.services.v1.AccountSnapshot
2135
+ */
2136
+ type AccountSnapshot = Message<"thru.services.v1.AccountSnapshot"> & {
2137
+ /**
2138
+ * @generated from field: thru.common.v1.Pubkey address = 1;
2139
+ */
2140
+ address?: Pubkey;
2141
+ /**
2142
+ * @generated from field: thru.core.v1.AccountMeta meta = 2;
2143
+ */
2144
+ meta?: AccountMeta;
2145
+ /**
2146
+ * @generated from field: optional bytes data = 3;
2147
+ */
2148
+ data?: Uint8Array;
2149
+ /**
2150
+ * @generated from field: bool exists = 4;
2151
+ */
2152
+ exists: boolean;
2153
+ };
2154
+ /**
2155
+ * Describes the message thru.services.v1.AccountSnapshot.
2156
+ * Use `create(AccountSnapshotSchema)` to create a new message.
2157
+ */
2158
+ declare const AccountSnapshotSchema: GenMessage<AccountSnapshot>;
2159
+ /**
2160
+ * DebugReExecuteRequest is a request to re-execute a transaction in simulated environment.
2161
+ *
2162
+ * @generated from message thru.services.v1.DebugReExecuteRequest
2163
+ */
2164
+ type DebugReExecuteRequest = Message<"thru.services.v1.DebugReExecuteRequest"> & {
2165
+ /**
2166
+ * @generated from field: thru.common.v1.Signature signature = 1;
2167
+ */
2168
+ signature?: Signature;
2169
+ /**
2170
+ * @generated from field: bool include_state_before = 2;
2171
+ */
2172
+ includeStateBefore: boolean;
2173
+ /**
2174
+ * @generated from field: bool include_state_after = 3;
2175
+ */
2176
+ includeStateAfter: boolean;
2177
+ /**
2178
+ * @generated from field: bool include_account_data = 4;
2179
+ */
2180
+ includeAccountData: boolean;
2181
+ /**
2182
+ * Return all allocated stack+heap pages
2183
+ *
2184
+ * @generated from field: bool include_memory_dump = 5;
2185
+ */
2186
+ includeMemoryDump: boolean;
2187
+ };
2188
+ /**
2189
+ * Describes the message thru.services.v1.DebugReExecuteRequest.
2190
+ * Use `create(DebugReExecuteRequestSchema)` to create a new message.
2191
+ */
2192
+ declare const DebugReExecuteRequestSchema: GenMessage<DebugReExecuteRequest>;
2193
+ /**
2194
+ * DebugReExecuteResponse is a response from the debug service.
2195
+ *
2196
+ * @generated from message thru.services.v1.DebugReExecuteResponse
2197
+ */
2198
+ type DebugReExecuteResponse = Message<"thru.services.v1.DebugReExecuteResponse"> & {
2199
+ /**
2200
+ * @generated from field: thru.core.v1.Transaction transaction = 1;
2201
+ */
2202
+ transaction?: Transaction;
2203
+ /**
2204
+ * @generated from field: string stdout = 2;
2205
+ */
2206
+ stdout: string;
2207
+ /**
2208
+ * @generated from field: string log = 3;
2209
+ */
2210
+ log: string;
2211
+ /**
2212
+ * @generated from field: string trace = 4;
2213
+ */
2214
+ trace: string;
2215
+ /**
2216
+ * @generated from field: thru.services.v1.VmExecutionDetails execution_details = 5;
2217
+ */
2218
+ executionDetails?: VmExecutionDetails;
2219
+ /**
2220
+ * @generated from field: repeated thru.services.v1.AccountSnapshot state_before = 6;
2221
+ */
2222
+ stateBefore: AccountSnapshot[];
2223
+ /**
2224
+ * @generated from field: repeated thru.services.v1.AccountSnapshot state_after = 7;
2225
+ */
2226
+ stateAfter: AccountSnapshot[];
2227
+ /**
2228
+ * @generated from field: repeated thru.services.v1.MemorySegment memory_segments = 8;
2229
+ */
2230
+ memorySegments: MemorySegment[];
2231
+ };
2232
+ /**
2233
+ * Describes the message thru.services.v1.DebugReExecuteResponse.
2234
+ * Use `create(DebugReExecuteResponseSchema)` to create a new message.
2235
+ */
2236
+ declare const DebugReExecuteResponseSchema: GenMessage<DebugReExecuteResponse>;
2237
+ /**
2238
+ * VmFaultCode enumerates VM halt conditions.
2239
+ *
2240
+ * @generated from enum thru.services.v1.VmFaultCode
2241
+ */
2242
+ declare enum VmFaultCode {
2243
+ /**
2244
+ * No fault
2245
+ *
2246
+ * @generated from enum value: VM_FAULT_NONE = 0;
2247
+ */
2248
+ VM_FAULT_NONE = 0,
2249
+ /**
2250
+ * TN_VM_FAULT_REVERT — explicit revert by program
2251
+ *
2252
+ * @generated from enum value: VM_FAULT_REVERT = 1;
2253
+ */
2254
+ VM_FAULT_REVERT = 1,
2255
+ /**
2256
+ * TN_VM_FAULT_SIGCU — compute units exhausted
2257
+ *
2258
+ * @generated from enum value: VM_FAULT_SIGCU = 2;
2259
+ */
2260
+ VM_FAULT_SIGCU = 2,
2261
+ /**
2262
+ * TN_VM_FAULT_SIGSU — state units exhausted
2263
+ *
2264
+ * @generated from enum value: VM_FAULT_SIGSU = 3;
2265
+ */
2266
+ VM_FAULT_SIGSU = 3
2267
+ }
2268
+ /**
2269
+ * Describes the enum thru.services.v1.VmFaultCode.
2270
+ */
2271
+ declare const VmFaultCodeSchema: GenEnum<VmFaultCode>;
2272
+ /**
2273
+ * DebugService defines unary RPCs helpful for debugging.
2274
+ *
2275
+ * @generated from service thru.services.v1.DebugService
2276
+ */
2277
+ declare const DebugService: GenService<{
2278
+ /**
2279
+ * DebugReExecute executes a transaction in simulated environment.
2280
+ *
2281
+ * @generated from rpc thru.services.v1.DebugService.DebugReExecute
2282
+ */
2283
+ debugReExecute: {
2284
+ methodKind: "unary";
2285
+ input: typeof DebugReExecuteRequestSchema;
2286
+ output: typeof DebugReExecuteResponseSchema;
2287
+ };
2288
+ }>;
2289
+
1956
2290
  /**
1957
2291
  * Describes the file thru/services/v1/query_service.proto.
1958
2292
  */
@@ -4743,4 +5077,4 @@ declare const StreamingService: GenService<{
4743
5077
  };
4744
5078
  }>;
4745
5079
 
4746
- 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 GetNodePubkeyRequest, GetNodePubkeyRequestSchema, type GetNodePubkeyResponse, GetNodePubkeyResponseSchema, type GetNodeRecordsRequest, GetNodeRecordsRequestSchema, type GetNodeRecordsResponse, GetNodeRecordsResponseSchema, 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 NodeContact, NodeContactSchema, type NodeProtocol, NodeProtocolSchema, type NodeRecord, NodeRecordSchema, 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 StreamNodeRecordsRequest, StreamNodeRecordsRequestSchema, type StreamNodeRecordsResponse, StreamNodeRecordsResponseSchema, 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_node, 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 };
5080
+ export { type Account, type AccountData, AccountDataSchema, type AccountFlags, AccountFlagsSchema, type AccountMeta, AccountMetaSchema, type AccountPage, AccountPageSchema, AccountSchema, type AccountSnapshot, AccountSnapshotSchema, 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 CallFrame, CallFrameSchema, type CelFilterValidation, CelFilterValidationSchema, CommandService, ConsensusStatus, ConsensusStatusSchema, type CurrentOrHistoricalVersion, CurrentOrHistoricalVersionSchema, type CurrentVersion, CurrentVersionSchema, type DataSlice, DataSliceSchema, type DebugReExecuteRequest, DebugReExecuteRequestSchema, type DebugReExecuteResponse, DebugReExecuteResponseSchema, DebugService, 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 GetNodePubkeyRequest, GetNodePubkeyRequestSchema, type GetNodePubkeyResponse, GetNodePubkeyResponseSchema, type GetNodeRecordsRequest, GetNodeRecordsRequestSchema, type GetNodeRecordsResponse, GetNodeRecordsResponseSchema, 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 MemoryPage, MemoryPageSchema, type MemorySegment, MemorySegmentSchema, type NodeContact, NodeContactSchema, type NodeProtocol, NodeProtocolSchema, type NodeRecord, NodeRecordSchema, 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 StreamNodeRecordsRequest, StreamNodeRecordsRequestSchema, type StreamNodeRecordsResponse, StreamNodeRecordsResponseSchema, 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, type VmExecutionDetails, VmExecutionDetailsSchema, VmFaultCode, VmFaultCodeSchema, 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_node, 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_debug_service, file_thru_services_v1_query_service, file_thru_services_v1_streaming_service };