@sentio/api 1.0.5-rc.7 → 2.0.0-rc.1

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.
@@ -1,403 +0,0 @@
1
- import type { Options as ClientOptions, TDataShape, Client } from '@hey-api/client-fetch';
2
- import type { ai_service, alert_service, analytic_service, web_service, insights_service, metrics_service, google, move_service, price_service, processor_service, solidity_service, solidit_service } from './types.gen';
3
- export type Options<TData extends TDataShape = TDataShape, ThrowOnError extends boolean = boolean> = ClientOptions<TData, ThrowOnError> & {
4
- /**
5
- * You can provide a client instance returned by `createClient()` instead of
6
- * individual options. This might be also useful if you want to implement a
7
- * custom client.
8
- */
9
- client?: Client;
10
- /**
11
- * You can pass arbitrary values through the `meta` object. This can be
12
- * used to access values that aren't defined as part of the SDK function.
13
- */
14
- meta?: Record<string, unknown>;
15
- };
16
- export declare class AiService {
17
- /**
18
- * Create Chat Session
19
- * Initialize a new AI chat session. Returns a session_id that can be used with PostSessionMessage to have a conversation with the AI. Messages are generated as part of runs, with is_final indicating run completion.
20
- */
21
- static createChatSession<ThrowOnError extends boolean = false>(options: Options<ai_service.CreateChatSessionData, ThrowOnError>): import("@hey-api/client-fetch").RequestResult<ai_service.CreateChatSessionResponse, unknown, ThrowOnError>;
22
- /**
23
- * Query Chat Session
24
- * Retrieve information about an existing chat session, returning only messages after the specified cursor position. Messages include run_id to identify generation runs.
25
- */
26
- static queryChatSession<ThrowOnError extends boolean = false>(options: Options<ai_service.QueryChatSessionData, ThrowOnError>): import("@hey-api/client-fetch").RequestResult<ai_service.ChatSession, unknown, ThrowOnError>;
27
- /**
28
- * Post Session Message
29
- * Add a new message to an existing chat session. This will trigger AI message generation as a run. check is_final to know when all messages for the run have been generated.
30
- */
31
- static postSessionMessage<ThrowOnError extends boolean = false>(options: Options<ai_service.PostSessionMessageData, ThrowOnError>): import("@hey-api/client-fetch").RequestResult<ai_service.PostSessionMessageResponse, unknown, ThrowOnError>;
32
- /**
33
- * Healthz provides a health check endpoint for monitoring
34
- */
35
- static healthz<ThrowOnError extends boolean = false>(options?: Options<ai_service.HealthzData, ThrowOnError>): import("@hey-api/client-fetch").RequestResult<ai_service.HealthzResponse, unknown, ThrowOnError>;
36
- }
37
- export declare class AlertsService {
38
- /**
39
- * Save an alert rule
40
- */
41
- static saveAlertRule<ThrowOnError extends boolean = false>(options: Options<alert_service.SaveAlertRuleData, ThrowOnError>): import("@hey-api/client-fetch").RequestResult<{
42
- [key: string]: unknown;
43
- }, unknown, ThrowOnError>;
44
- /**
45
- * List all alert rules for a project
46
- */
47
- static getAlertRules<ThrowOnError extends boolean = false>(options: Options<alert_service.GetAlertRulesData, ThrowOnError>): import("@hey-api/client-fetch").RequestResult<alert_service.GetAlertRulesResponse, unknown, ThrowOnError>;
48
- /**
49
- * Delete an alert rule
50
- */
51
- static deleteAlertRule<ThrowOnError extends boolean = false>(options: Options<alert_service.DeleteAlertRuleData, ThrowOnError>): import("@hey-api/client-fetch").RequestResult<{
52
- [key: string]: unknown;
53
- }, unknown, ThrowOnError>;
54
- /**
55
- * Save an alert rule
56
- */
57
- static saveAlertRule2<ThrowOnError extends boolean = false>(options: Options<alert_service.SaveAlertRule2Data, ThrowOnError>): import("@hey-api/client-fetch").RequestResult<{
58
- [key: string]: unknown;
59
- }, unknown, ThrowOnError>;
60
- /**
61
- * Find an alert rule by id, and list all alerts for this rule
62
- */
63
- static getAlert<ThrowOnError extends boolean = false>(options: Options<alert_service.GetAlertData, ThrowOnError>): import("@hey-api/client-fetch").RequestResult<alert_service.GetAlertResponse, unknown, ThrowOnError>;
64
- }
65
- export declare class DataService {
66
- /**
67
- * Save Sharing SQL
68
- * Save or update sharing settings for a SQL query.
69
- */
70
- static saveSharingSql<ThrowOnError extends boolean = false>(options: Options<analytic_service.SaveSharingSqlData, ThrowOnError>): import("@hey-api/client-fetch").RequestResult<analytic_service.SaveSharingSqlResponse, unknown, ThrowOnError>;
71
- /**
72
- * Get Sharing SQL
73
- * Get sharing settings for a SQL query.
74
- */
75
- static getSharingSql<ThrowOnError extends boolean = false>(options: Options<analytic_service.GetSharingSqlData, ThrowOnError>): import("@hey-api/client-fetch").RequestResult<analytic_service.GetSharingSqlResponse, unknown, ThrowOnError>;
76
- /**
77
- * Query Tables
78
- * Query tables in a project. use flag to control which type of tables to include.
79
- */
80
- static queryTables2<ThrowOnError extends boolean = false>(options?: Options<analytic_service.QueryTables2Data, ThrowOnError>): import("@hey-api/client-fetch").RequestResult<analytic_service.QueryTablesResponse, unknown, ThrowOnError>;
81
- /**
82
- * Cancel SQL Query
83
- * Cancel a SQL query by execution_id.
84
- */
85
- static cancelSqlQuery<ThrowOnError extends boolean = false>(options: Options<analytic_service.CancelSqlQueryData, ThrowOnError>): import("@hey-api/client-fetch").RequestResult<{
86
- [key: string]: unknown;
87
- }, unknown, ThrowOnError>;
88
- /**
89
- * Execute SQL
90
- * Execute SQL in a project. Go to "Data Studio" -> "SQL Editor", write your query and then click "Export as cURL"
91
- *
92
- * ![screenshot](https://media.githubusercontent.com/media/sentioxyz/docs/HEAD/assets/image%20(102).png)
93
- *
94
- * Find more: https://docs.sentio.xyz/reference/data#sql-api
95
- */
96
- static executeSql<ThrowOnError extends boolean = false>(options: Options<analytic_service.ExecuteSqlData, ThrowOnError>): import("@hey-api/client-fetch").RequestResult<analytic_service.SyncExecuteSqlResponse, unknown, ThrowOnError>;
97
- /**
98
- * Execute SQL by Async
99
- * Execute SQL in a project asynchronously.
100
- */
101
- static executeSqlAsync<ThrowOnError extends boolean = false>(options: Options<analytic_service.ExecuteSqlAsyncData, ThrowOnError>): import("@hey-api/client-fetch").RequestResult<analytic_service.AsyncExecuteSqlResponse, unknown, ThrowOnError>;
102
- /**
103
- * Query SQL Execution Detail
104
- * Query the execution detail of a SQL query by execution_id.
105
- */
106
- static querySqlExecutionDetail<ThrowOnError extends boolean = false>(options: Options<analytic_service.QuerySqlExecutionDetailData, ThrowOnError>): import("@hey-api/client-fetch").RequestResult<analytic_service.QuerySqlExecutionDetailResponse, unknown, ThrowOnError>;
107
- /**
108
- * Query SQL Result
109
- * Query the result of a SQL query by execution_id.
110
- */
111
- static querySqlResult<ThrowOnError extends boolean = false>(options: Options<analytic_service.QuerySqlResultData, ThrowOnError>): import("@hey-api/client-fetch").RequestResult<analytic_service.QuerySqlResultResponse, unknown, ThrowOnError>;
112
- /**
113
- * Save Refreshable Materialized View
114
- * Save or update a refreshable materialized view in a project.
115
- */
116
- static saveRefreshableMaterializedView<ThrowOnError extends boolean = false>(options: Options<analytic_service.SaveRefreshableMaterializedViewData, ThrowOnError>): import("@hey-api/client-fetch").RequestResult<analytic_service.SaveRefreshableMaterializedViewResponse, unknown, ThrowOnError>;
117
- /**
118
- * Delete Refreshable Materialized View
119
- * Delete a refreshable materialized view in a project.
120
- */
121
- static deleteRefreshableMaterializedView<ThrowOnError extends boolean = false>(options: Options<analytic_service.DeleteRefreshableMaterializedViewData, ThrowOnError>): import("@hey-api/client-fetch").RequestResult<{
122
- [key: string]: unknown;
123
- }, unknown, ThrowOnError>;
124
- /**
125
- * Get Refreshable Materialized View Status
126
- * Get the status of a refreshable materialized view in a project.
127
- */
128
- static getRefreshableMaterializedStatus<ThrowOnError extends boolean = false>(options: Options<analytic_service.GetRefreshableMaterializedStatusData, ThrowOnError>): import("@hey-api/client-fetch").RequestResult<analytic_service.GetRefreshableMaterializedViewStatusResponse, unknown, ThrowOnError>;
129
- /**
130
- * List Refreshable Materialized Views
131
- * List all refreshable materialized views in a project.
132
- */
133
- static listRefreshableMaterializedViews<ThrowOnError extends boolean = false>(options: Options<analytic_service.ListRefreshableMaterializedViewsData, ThrowOnError>): import("@hey-api/client-fetch").RequestResult<analytic_service.ListRefreshableMaterializedViewResponse, unknown, ThrowOnError>;
134
- /**
135
- * Save SQL
136
- * Save or update a SQL query in a project.
137
- */
138
- static saveSql<ThrowOnError extends boolean = false>(options: Options<analytic_service.SaveSqlData, ThrowOnError>): import("@hey-api/client-fetch").RequestResult<analytic_service.SaveSqlResponse, unknown, ThrowOnError>;
139
- /**
140
- * Save SQL
141
- * Save or update a SQL query in a project.
142
- */
143
- static saveSql2<ThrowOnError extends boolean = false>(options: Options<analytic_service.SaveSql2Data, ThrowOnError>): import("@hey-api/client-fetch").RequestResult<analytic_service.SaveSqlResponse, unknown, ThrowOnError>;
144
- /**
145
- * Query Tables
146
- * Query tables in a project. use flag to control which type of tables to include.
147
- */
148
- static queryTables<ThrowOnError extends boolean = false>(options: Options<analytic_service.QueryTablesData, ThrowOnError>): import("@hey-api/client-fetch").RequestResult<analytic_service.QueryTablesResponse, unknown, ThrowOnError>;
149
- /**
150
- * Query event logs
151
- */
152
- static queryLog<ThrowOnError extends boolean = false>(options: Options<analytic_service.QueryLogData, ThrowOnError>): import("@hey-api/client-fetch").RequestResult<analytic_service.LogQueryResponse, unknown, ThrowOnError>;
153
- /**
154
- * Query event logs
155
- */
156
- static queryLog2<ThrowOnError extends boolean = false>(options: Options<analytic_service.QueryLog2Data, ThrowOnError>): import("@hey-api/client-fetch").RequestResult<analytic_service.LogQueryResponse, unknown, ThrowOnError>;
157
- /**
158
- * List coins
159
- * Get a list of coins in a project.
160
- */
161
- static listCoins2<ThrowOnError extends boolean = false>(options?: Options<insights_service.ListCoins2Data, ThrowOnError>): import("@hey-api/client-fetch").RequestResult<insights_service.ListCoinsResponse, unknown, ThrowOnError>;
162
- /**
163
- * List coins
164
- * Get a list of coins in a project.
165
- */
166
- static listCoins<ThrowOnError extends boolean = false>(options: Options<insights_service.ListCoinsData, ThrowOnError>): import("@hey-api/client-fetch").RequestResult<insights_service.ListCoinsResponse, unknown, ThrowOnError>;
167
- /**
168
- * Insight Query
169
- * Query for metrics,event logs and coin prices in a project.
170
- */
171
- static query<ThrowOnError extends boolean = false>(options: Options<insights_service.QueryData, ThrowOnError>): import("@hey-api/client-fetch").RequestResult<insights_service.QueryResponse, unknown, ThrowOnError>;
172
- /**
173
- * Get a list of metrics in a project
174
- */
175
- static getMetrics<ThrowOnError extends boolean = false>(options?: Options<metrics_service.GetMetricsData, ThrowOnError>): import("@hey-api/client-fetch").RequestResult<metrics_service.GetMetricsResponse, unknown, ThrowOnError>;
176
- /**
177
- * Metric instant queries
178
- */
179
- static queryInstant<ThrowOnError extends boolean = false>(options: Options<metrics_service.QueryInstantData, ThrowOnError>): import("@hey-api/client-fetch").RequestResult<metrics_service.QueryValueResponse, unknown, ThrowOnError>;
180
- /**
181
- * Metric range queries
182
- * The easiest way to build query is through UI, you could first create an insight chart, and then **Export as cURL**.
183
- *
184
- * ![screenshot](https://media.githubusercontent.com/media/sentioxyz/docs/HEAD/assets/image%20(101).png)
185
- */
186
- static queryRange<ThrowOnError extends boolean = false>(options: Options<metrics_service.QueryRangeData, ThrowOnError>): import("@hey-api/client-fetch").RequestResult<metrics_service.MetricsQueryResponse, unknown, ThrowOnError>;
187
- /**
188
- * Query Table By Name
189
- * Query table schema by name.
190
- */
191
- static queryTable2<ThrowOnError extends boolean = false>(options?: Options<analytic_service.QueryTable2Data, ThrowOnError>): import("@hey-api/client-fetch").RequestResult<analytic_service.QueryTableResponse, unknown, ThrowOnError>;
192
- /**
193
- * List Tables
194
- */
195
- static listTables2<ThrowOnError extends boolean = false>(options?: Options<analytic_service.ListTables2Data, ThrowOnError>): import("@hey-api/client-fetch").RequestResult<analytic_service.ListTablesResponse, unknown, ThrowOnError>;
196
- /**
197
- * Query Table By Name
198
- * Query table schema by name.
199
- */
200
- static queryTable<ThrowOnError extends boolean = false>(options: Options<analytic_service.QueryTableData, ThrowOnError>): import("@hey-api/client-fetch").RequestResult<analytic_service.QueryTableResponse, unknown, ThrowOnError>;
201
- /**
202
- * List Tables
203
- */
204
- static listTables<ThrowOnError extends boolean = false>(options: Options<analytic_service.ListTablesData, ThrowOnError>): import("@hey-api/client-fetch").RequestResult<analytic_service.ListTablesResponse, unknown, ThrowOnError>;
205
- }
206
- export declare class WebService {
207
- /**
208
- * List all dashboards in a project
209
- */
210
- static listDashboards<ThrowOnError extends boolean = false>(options?: Options<web_service.ListDashboardsData, ThrowOnError>): import("@hey-api/client-fetch").RequestResult<web_service.GetDashboardResponse, unknown, ThrowOnError>;
211
- /**
212
- * Import a dashboard
213
- */
214
- static importDashboard<ThrowOnError extends boolean = false>(options: Options<web_service.ImportDashboardData, ThrowOnError>): import("@hey-api/client-fetch").RequestResult<web_service.ImportDashboardResponse, unknown, ThrowOnError>;
215
- /**
216
- * Delete a dashboard by id
217
- */
218
- static deleteDashboard<ThrowOnError extends boolean = false>(options: Options<web_service.DeleteDashboardData, ThrowOnError>): import("@hey-api/client-fetch").RequestResult<web_service.Dashboard, unknown, ThrowOnError>;
219
- /**
220
- * Get a dashboard by id
221
- */
222
- static getDashboard<ThrowOnError extends boolean = false>(options: Options<web_service.GetDashboardData, ThrowOnError>): import("@hey-api/client-fetch").RequestResult<web_service.GetDashboardResponse, unknown, ThrowOnError>;
223
- /**
224
- * Get dashboard history by dashboard id
225
- */
226
- static getDashboardHistory<ThrowOnError extends boolean = false>(options: Options<web_service.GetDashboardHistoryData, ThrowOnError>): import("@hey-api/client-fetch").RequestResult<web_service.GetDashboardHistoryResponse, unknown, ThrowOnError>;
227
- /**
228
- * Export a dashboard to json
229
- */
230
- static exportDashboard<ThrowOnError extends boolean = false>(options: Options<web_service.ExportDashboardData, ThrowOnError>): import("@hey-api/client-fetch").RequestResult<web_service.ExportDashboardResponse, unknown, ThrowOnError>;
231
- /**
232
- * List all dashboards in a project
233
- */
234
- static listDashboards2<ThrowOnError extends boolean = false>(options: Options<web_service.ListDashboards2Data, ThrowOnError>): import("@hey-api/client-fetch").RequestResult<web_service.GetDashboardResponse, unknown, ThrowOnError>;
235
- /**
236
- * Get a dashboard by id
237
- */
238
- static getDashboard2<ThrowOnError extends boolean = false>(options: Options<web_service.GetDashboard2Data, ThrowOnError>): import("@hey-api/client-fetch").RequestResult<web_service.GetDashboardResponse, unknown, ThrowOnError>;
239
- static createLinkSession<ThrowOnError extends boolean = false>(options?: Options<web_service.CreateLinkSessionData, ThrowOnError>): import("@hey-api/client-fetch").RequestResult<web_service.LinkAccountSession, unknown, ThrowOnError>;
240
- }
241
- export declare class MoveService {
242
- /**
243
- * Get Aptos transaction call trace
244
- * Retrieves the detailed call trace for an Aptos transaction
245
- */
246
- static getCallTrace<ThrowOnError extends boolean = false>(options?: Options<google.GetCallTraceData, ThrowOnError>): import("@hey-api/client-fetch").RequestResult<google.ApiHttpBody, unknown, ThrowOnError>;
247
- /**
248
- * Get Sui transaction call trace
249
- * Retrieves the detailed call trace for a Sui transaction
250
- */
251
- static getSuiCallTrace<ThrowOnError extends boolean = false>(options?: Options<move_service.GetSuiCallTraceData, ThrowOnError>): import("@hey-api/client-fetch").RequestResult<move_service.GetSuiCallTraceResponse, unknown, ThrowOnError>;
252
- }
253
- export declare class PriceService {
254
- /**
255
- * Get price
256
- * GetPrice returns the price of a given coin identifier, in a best effort way.
257
- * If we do not have any price data for the given coin, we will return NOT_FOUND error.
258
- * If we have at least one price data for the given coin, we will return it with the actual timestamp.
259
- * Client is responsible for checking the timestamp and decide whether to use the price or not.
260
- */
261
- static getPrice<ThrowOnError extends boolean = false>(options?: Options<price_service.GetPriceData, ThrowOnError>): import("@hey-api/client-fetch").RequestResult<price_service.GetPriceResponse, unknown, ThrowOnError>;
262
- /**
263
- * Add coin by Gecko
264
- * adds a coin by its coingecko id.
265
- *
266
- * coingecko id the API ID of the coin in coingecko web page.
267
- *
268
- * please AWARE that the coingecko id is NOT the same as the symbol of the coin.
269
- *
270
- * ![screenshot](https://media.githubusercontent.com/media/sentioxyz/docs/HEAD/assets/coingecko_apiid.png)
271
- */
272
- static addCoinByGecko<ThrowOnError extends boolean = false>(options: Options<price_service.AddCoinByGeckoData, ThrowOnError>): import("@hey-api/client-fetch").RequestResult<price_service.AddCoinByGeckoResponse, unknown, ThrowOnError>;
273
- /**
274
- * Batch get prices
275
- */
276
- static batchGetPrices<ThrowOnError extends boolean = false>(options: Options<price_service.BatchGetPricesData, ThrowOnError>): import("@hey-api/client-fetch").RequestResult<price_service.BatchGetPricesResponse, unknown, ThrowOnError>;
277
- /**
278
- * Check latest price
279
- */
280
- static checkLatestPrice<ThrowOnError extends boolean = false>(options?: Options<price_service.CheckLatestPriceData, ThrowOnError>): import("@hey-api/client-fetch").RequestResult<price_service.CheckLatestPriceResponse, unknown, ThrowOnError>;
281
- /**
282
- * List coins
283
- */
284
- static priceListCoins<ThrowOnError extends boolean = false>(options?: Options<price_service.PriceListCoinsData, ThrowOnError>): import("@hey-api/client-fetch").RequestResult<price_service.ListCoinsResponse2, unknown, ThrowOnError>;
285
- }
286
- export declare class ProcessorService {
287
- /**
288
- * activate the pending version of a processor
289
- */
290
- static activatePendingVersion<ThrowOnError extends boolean = false>(options: Options<processor_service.ActivatePendingVersionData, ThrowOnError>): import("@hey-api/client-fetch").RequestResult<{
291
- [key: string]: unknown;
292
- }, unknown, ThrowOnError>;
293
- /**
294
- * Get processor status
295
- */
296
- static getProcessorStatusV2<ThrowOnError extends boolean = false>(options: Options<processor_service.GetProcessorStatusV2Data, ThrowOnError>): import("@hey-api/client-fetch").RequestResult<processor_service.GetProcessorStatusResponse, unknown, ThrowOnError>;
297
- }
298
- export declare class ProcessorExtService {
299
- /**
300
- * Get the source files of a processor
301
- */
302
- static getProcessorSourceFiles<ThrowOnError extends boolean = false>(options: Options<processor_service.GetProcessorSourceFilesData, ThrowOnError>): import("@hey-api/client-fetch").RequestResult<processor_service.GetProcessorSourceFilesResponse, unknown, ThrowOnError>;
303
- }
304
- export declare class DebugAndSimulationService {
305
- /**
306
- * Estimate gas price
307
- */
308
- static getEstimatedGasPrice<ThrowOnError extends boolean = false>(options?: Options<solidity_service.GetEstimatedGasPriceData, ThrowOnError>): import("@hey-api/client-fetch").RequestResult<solidity_service.GetEstimatedGasPriceResponse, unknown, ThrowOnError>;
309
- /**
310
- * Search transactions
311
- */
312
- static searchTransactions<ThrowOnError extends boolean = false>(options: Options<solidity_service.SearchTransactionsData, ThrowOnError>): import("@hey-api/client-fetch").RequestResult<solidity_service.EvmSearchTransactionsResponse, unknown, ThrowOnError>;
313
- /**
314
- * Get list of simulations
315
- */
316
- static getSimulations<ThrowOnError extends boolean = false>(options: Options<solidity_service.GetSimulationsData, ThrowOnError>): import("@hey-api/client-fetch").RequestResult<solidity_service.GetSimulationsResponse, unknown, ThrowOnError>;
317
- /**
318
- * Get simulation by ID
319
- */
320
- static getSimulation<ThrowOnError extends boolean = false>(options: Options<solidity_service.GetSimulationData, ThrowOnError>): import("@hey-api/client-fetch").RequestResult<solidity_service.GetSimulationResponse, unknown, ThrowOnError>;
321
- /**
322
- * Get bundle simulation by ID
323
- */
324
- static getSimulationBundleInProject<ThrowOnError extends boolean = false>(options: Options<solidity_service.GetSimulationBundleInProjectData, ThrowOnError>): import("@hey-api/client-fetch").RequestResult<solidity_service.GetSimulationBundleResponse, unknown, ThrowOnError>;
325
- /**
326
- * Get trace by bundle simulation
327
- */
328
- static getCallTraceByBundle<ThrowOnError extends boolean = false>(options: Options<google.GetCallTraceByBundleData, ThrowOnError>): import("@hey-api/client-fetch").RequestResult<google.ApiHttpBody, unknown, ThrowOnError>;
329
- /**
330
- * Run simulation
331
- * Create a new transaction simulation. The simulation body should be included in the request body.
332
- * Your simulations will be saved, and a unique ID for each simulation is included in the response. It will be useful for fetching simulation details.
333
- */
334
- static simulateTransaction<ThrowOnError extends boolean = false>(options: Options<solidity_service.SimulateTransactionData, ThrowOnError>): import("@hey-api/client-fetch").RequestResult<solidity_service.SimulateTransactionResponse, unknown, ThrowOnError>;
335
- /**
336
- * Get trace by simulation
337
- */
338
- static getCallTraceBySimulation<ThrowOnError extends boolean = false>(options: Options<google.GetCallTraceBySimulationData, ThrowOnError>): import("@hey-api/client-fetch").RequestResult<google.ApiHttpBody, unknown, ThrowOnError>;
339
- /**
340
- * Run bundle simulation
341
- * You could also create bundle simulations so that one transaction could be executed one after another. For `blockNumber` `transactionIndex` `networkId` `stateOverrides` and `blockOverrides` fields, only the first simulation takes effect.
342
- */
343
- static simulateTransactionBundle<ThrowOnError extends boolean = false>(options: Options<solidity_service.SimulateTransactionBundleData, ThrowOnError>): import("@hey-api/client-fetch").RequestResult<solidity_service.SimulateTransactionBundleResponse, unknown, ThrowOnError>;
344
- /**
345
- * Get trace by transaction
346
- * API to get Sentio call trace. It takes `txId.txHash` and `chainSpec.chainId` arguments, where the first is transaction hash, and the second is the numeric ethereum chain ID.
347
- *
348
- * The results looks very similar to the normal [Ethereum call trace](https://media.githubusercontent.com/media/sentioxyz/docs/HEAD/assets/image%20(2)%20(1)%20(1)%20(1).png). But we have an additional `startIndex` and `startIndex` on each trace entry even for the LOG, representing the execution order in the trace.
349
- *
350
- * This allows you to build chart that marks the order of fund flow.
351
- *
352
- * ![screenshot](https://media.githubusercontent.com/media/sentioxyz/docs/HEAD/assets/image%20(2)%20(1)%20(1)%20(1).png)
353
- */
354
- static getCallTraceByTransaction<ThrowOnError extends boolean = false>(options: Options<google.GetCallTraceByTransactionData, ThrowOnError>): import("@hey-api/client-fetch").RequestResult<google.ApiHttpBody, unknown, ThrowOnError>;
355
- }
356
- export declare class ForksService {
357
- /**
358
- * List all forks
359
- */
360
- static listForks<ThrowOnError extends boolean = false>(options: Options<solidity_service.ListForksData, ThrowOnError>): import("@hey-api/client-fetch").RequestResult<solidity_service.ListForksResponse, unknown, ThrowOnError>;
361
- /**
362
- * Create a fork
363
- */
364
- static createFork<ThrowOnError extends boolean = false>(options: Options<solidity_service.CreateForkData, ThrowOnError>): import("@hey-api/client-fetch").RequestResult<solidity_service.CreateForkResponse, unknown, ThrowOnError>;
365
- /**
366
- * Get trace by bundle simulation
367
- */
368
- static getCallTraceOnForkBundle<ThrowOnError extends boolean = false>(options: Options<google.GetCallTraceOnForkBundleData, ThrowOnError>): import("@hey-api/client-fetch").RequestResult<google.ApiHttpBody, unknown, ThrowOnError>;
369
- /**
370
- * Run Simulation
371
- */
372
- static simulateTransactionOnFork<ThrowOnError extends boolean = false>(options: Options<solidity_service.SimulateTransactionOnForkData, ThrowOnError>): import("@hey-api/client-fetch").RequestResult<solidity_service.SimulateTransactionResponse, unknown, ThrowOnError>;
373
- /**
374
- * Get trace by simulation
375
- */
376
- static getCallTraceOnForkSimulation<ThrowOnError extends boolean = false>(options: Options<google.GetCallTraceOnForkSimulationData, ThrowOnError>): import("@hey-api/client-fetch").RequestResult<google.ApiHttpBody, unknown, ThrowOnError>;
377
- /**
378
- * Run bundle simulation
379
- */
380
- static simulateTransactionBundleOnFork<ThrowOnError extends boolean = false>(options: Options<solidity_service.SimulateTransactionBundleOnForkData, ThrowOnError>): import("@hey-api/client-fetch").RequestResult<solidity_service.SimulateTransactionBundleResponse, unknown, ThrowOnError>;
381
- /**
382
- * Get trace by transaction
383
- */
384
- static getCallTraceOnForkTransaction<ThrowOnError extends boolean = false>(options: Options<google.GetCallTraceOnForkTransactionData, ThrowOnError>): import("@hey-api/client-fetch").RequestResult<google.ApiHttpBody, unknown, ThrowOnError>;
385
- /**
386
- * Delete fork by id
387
- */
388
- static deleteFork<ThrowOnError extends boolean = false>(options: Options<solidit_service.DeleteForkData, ThrowOnError>): import("@hey-api/client-fetch").RequestResult<{
389
- [key: string]: unknown;
390
- }, unknown, ThrowOnError>;
391
- /**
392
- * Get fork by id
393
- */
394
- static getFork<ThrowOnError extends boolean = false>(options: Options<solidity_service.GetForkData, ThrowOnError>): import("@hey-api/client-fetch").RequestResult<solidity_service.GetForkResponse, unknown, ThrowOnError>;
395
- /**
396
- * Update fork by id
397
- */
398
- static updateFork<ThrowOnError extends boolean = false>(options: Options<solidity_service.UpdateForkData, ThrowOnError>): import("@hey-api/client-fetch").RequestResult<solidity_service.UpdateForkResponse, unknown, ThrowOnError>;
399
- /**
400
- * Get fork info by id
401
- */
402
- static getForkInfo<ThrowOnError extends boolean = false>(options: Options<solidity_service.GetForkInfoData, ThrowOnError>): import("@hey-api/client-fetch").RequestResult<solidity_service.GetForkInfoResponse, unknown, ThrowOnError>;
403
- }