@sentio/api 1.0.2-rc.22 → 1.0.2-rc.24
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/src/apis/DebugAndSimulationApi.d.ts +73 -105
- package/dist/src/apis/DebugAndSimulationApi.js +121 -189
- package/dist/src/apis/DebugAndSimulationApi.js.map +1 -1
- package/dist/src/models/SolidityServiceSolidityAPIServiceSimulateTransactionBody.d.ts +1 -1
- package/dist/src/models/SolidityServiceSolidityAPIServiceSimulateTransactionBody.js +3 -1
- package/dist/src/models/SolidityServiceSolidityAPIServiceSimulateTransactionBody.js.map +1 -1
- package/dist/src/models/SolidityServiceSolidityAPIServiceSimulateTransactionBodyChainSpec.d.ts +1 -1
- package/dist/src/models/SolidityServiceSolidityAPIServiceSimulateTransactionBodyChainSpec.js +2 -2
- package/dist/src/models/SolidityServiceSolidityAPIServiceSimulateTransactionBodyChainSpec.js.map +1 -1
- package/dist/src/models/SolidityServiceSolidityAPIServiceSimulateTransactionBundleBody.d.ts +1 -1
- package/dist/src/models/SolidityServiceSolidityAPIServiceSimulateTransactionBundleBody.js +3 -1
- package/dist/src/models/SolidityServiceSolidityAPIServiceSimulateTransactionBundleBody.js.map +1 -1
- package/dist/src/models/SolidityServiceSolidityAPIServiceSimulateTransactionBundleByForkBody.d.ts +40 -0
- package/dist/src/models/SolidityServiceSolidityAPIServiceSimulateTransactionBundleByForkBody.js +50 -0
- package/dist/src/models/SolidityServiceSolidityAPIServiceSimulateTransactionBundleByForkBody.js.map +1 -0
- package/dist/src/models/SolidityServiceSolidityAPIServiceSimulateTransactionBundleByForkBodyChainSpec.d.ts +32 -0
- package/dist/src/models/SolidityServiceSolidityAPIServiceSimulateTransactionBundleByForkBodyChainSpec.js +42 -0
- package/dist/src/models/SolidityServiceSolidityAPIServiceSimulateTransactionBundleByForkBodyChainSpec.js.map +1 -0
- package/dist/src/models/SolidityServiceSolidityAPIServiceSimulateTransactionByForkBody.d.ts +40 -0
- package/dist/src/models/SolidityServiceSolidityAPIServiceSimulateTransactionByForkBody.js +50 -0
- package/dist/src/models/SolidityServiceSolidityAPIServiceSimulateTransactionByForkBody.js.map +1 -0
- package/dist/src/models/SolidityServiceTxIdentifier.d.ts +1 -1
- package/dist/src/models/index.d.ts +3 -0
- package/dist/src/models/index.js +3 -0
- package/dist/src/models/index.js.map +1 -1
- package/package.json +1 -1
- package/src/apis/DebugAndSimulationApi.ts +158 -256
- package/src/models/SolidityServiceSolidityAPIServiceSimulateTransactionBody.ts +3 -2
- package/src/models/SolidityServiceSolidityAPIServiceSimulateTransactionBodyChainSpec.ts +3 -3
- package/src/models/SolidityServiceSolidityAPIServiceSimulateTransactionBundleBody.ts +3 -2
- package/src/models/SolidityServiceSolidityAPIServiceSimulateTransactionBundleByForkBody.ts +90 -0
- package/src/models/SolidityServiceSolidityAPIServiceSimulateTransactionBundleByForkBodyChainSpec.ts +65 -0
- package/src/models/SolidityServiceSolidityAPIServiceSimulateTransactionByForkBody.ts +90 -0
- package/src/models/SolidityServiceTxIdentifier.ts +1 -1
- package/src/models/index.ts +3 -0
|
@@ -10,75 +10,57 @@
|
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
12
|
import * as runtime from '../runtime.js';
|
|
13
|
-
import type { GoogleApiHttpBody, SolidityServiceGetSimulationBundleResponse, SolidityServiceGetSimulationResponse, SolidityServiceGetSimulationsResponse, SolidityServiceSimulateTransactionBundleResponse, SolidityServiceSimulateTransactionResponse, SolidityServiceSolidityAPIServiceSimulateTransactionBody, SolidityServiceSolidityAPIServiceSimulateTransactionBundleBody, TxindexEvmSearchTransactionsResponse } from '../models/index.js';
|
|
14
|
-
export interface
|
|
13
|
+
import type { GoogleApiHttpBody, SolidityServiceGetSimulationBundleResponse, SolidityServiceGetSimulationResponse, SolidityServiceGetSimulationsResponse, SolidityServiceSimulateTransactionBundleResponse, SolidityServiceSimulateTransactionResponse, SolidityServiceSolidityAPIServiceSimulateTransactionBody, SolidityServiceSolidityAPIServiceSimulateTransactionBundleBody, SolidityServiceSolidityAPIServiceSimulateTransactionBundleByForkBody, SolidityServiceSolidityAPIServiceSimulateTransactionByForkBody, TxindexEvmSearchTransactionsResponse } from '../models/index.js';
|
|
14
|
+
export interface GetCallTraceByBundleRequest {
|
|
15
15
|
owner: string;
|
|
16
16
|
slug: string;
|
|
17
17
|
chainId: string;
|
|
18
|
-
|
|
19
|
-
chainSpecForkId?: string;
|
|
20
|
-
txIdSimulationId?: string;
|
|
21
|
-
txIdBundleId?: string;
|
|
18
|
+
bundleId: string;
|
|
22
19
|
withInternalCalls?: boolean;
|
|
23
20
|
disableOptimizer?: boolean;
|
|
24
21
|
ignoreGasCost?: boolean;
|
|
25
22
|
}
|
|
26
|
-
export interface
|
|
23
|
+
export interface GetCallTraceByForkBundleRequest {
|
|
27
24
|
owner: string;
|
|
28
25
|
slug: string;
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
chainSpecForkId?: string;
|
|
32
|
-
txIdTxHash?: string;
|
|
33
|
-
txIdBundleId?: string;
|
|
26
|
+
forkId: string;
|
|
27
|
+
bundleId: string;
|
|
34
28
|
withInternalCalls?: boolean;
|
|
35
29
|
disableOptimizer?: boolean;
|
|
36
30
|
ignoreGasCost?: boolean;
|
|
37
31
|
}
|
|
38
|
-
export interface
|
|
32
|
+
export interface GetCallTraceByForkSimulationRequest {
|
|
39
33
|
owner: string;
|
|
40
34
|
slug: string;
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
chainSpecForkId?: string;
|
|
44
|
-
txIdTxHash?: string;
|
|
45
|
-
txIdSimulationId?: string;
|
|
35
|
+
forkId: string;
|
|
36
|
+
simulationId: string;
|
|
46
37
|
withInternalCalls?: boolean;
|
|
47
38
|
disableOptimizer?: boolean;
|
|
48
39
|
ignoreGasCost?: boolean;
|
|
49
40
|
}
|
|
50
|
-
export interface
|
|
41
|
+
export interface GetCallTraceByForkTransactionRequest {
|
|
51
42
|
owner: string;
|
|
52
43
|
slug: string;
|
|
53
44
|
forkId: string;
|
|
54
45
|
txHash: string;
|
|
55
|
-
chainSpecChainId?: string;
|
|
56
|
-
txIdSimulationId?: string;
|
|
57
|
-
txIdBundleId?: string;
|
|
58
46
|
withInternalCalls?: boolean;
|
|
59
47
|
disableOptimizer?: boolean;
|
|
60
48
|
ignoreGasCost?: boolean;
|
|
61
49
|
}
|
|
62
|
-
export interface
|
|
50
|
+
export interface GetCallTraceBySimulationRequest {
|
|
63
51
|
owner: string;
|
|
64
52
|
slug: string;
|
|
65
|
-
|
|
53
|
+
chainId: string;
|
|
66
54
|
simulationId: string;
|
|
67
|
-
chainSpecChainId?: string;
|
|
68
|
-
txIdTxHash?: string;
|
|
69
|
-
txIdBundleId?: string;
|
|
70
55
|
withInternalCalls?: boolean;
|
|
71
56
|
disableOptimizer?: boolean;
|
|
72
57
|
ignoreGasCost?: boolean;
|
|
73
58
|
}
|
|
74
|
-
export interface
|
|
59
|
+
export interface GetCallTraceByTransactionRequest {
|
|
75
60
|
owner: string;
|
|
76
61
|
slug: string;
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
chainSpecChainId?: string;
|
|
80
|
-
txIdTxHash?: string;
|
|
81
|
-
txIdSimulationId?: string;
|
|
62
|
+
chainId: string;
|
|
63
|
+
txHash: string;
|
|
82
64
|
withInternalCalls?: boolean;
|
|
83
65
|
disableOptimizer?: boolean;
|
|
84
66
|
ignoreGasCost?: boolean;
|
|
@@ -124,158 +106,144 @@ export interface SimulateTransactionRequest {
|
|
|
124
106
|
chainId: string;
|
|
125
107
|
body: SolidityServiceSolidityAPIServiceSimulateTransactionBody;
|
|
126
108
|
}
|
|
127
|
-
export interface SimulateTransaction2Request {
|
|
128
|
-
owner: string;
|
|
129
|
-
slug: string;
|
|
130
|
-
forkId: string;
|
|
131
|
-
body: SolidityServiceSolidityAPIServiceSimulateTransactionBody;
|
|
132
|
-
}
|
|
133
109
|
export interface SimulateTransactionBundleRequest {
|
|
134
110
|
owner: string;
|
|
135
111
|
slug: string;
|
|
136
112
|
chainId: string;
|
|
137
113
|
body: SolidityServiceSolidityAPIServiceSimulateTransactionBundleBody;
|
|
138
114
|
}
|
|
139
|
-
export interface
|
|
115
|
+
export interface SimulateTransactionBundleByForkRequest {
|
|
140
116
|
owner: string;
|
|
141
117
|
slug: string;
|
|
142
118
|
forkId: string;
|
|
143
|
-
body:
|
|
119
|
+
body: SolidityServiceSolidityAPIServiceSimulateTransactionBundleByForkBody;
|
|
120
|
+
}
|
|
121
|
+
export interface SimulateTransactionByForkRequest {
|
|
122
|
+
owner: string;
|
|
123
|
+
slug: string;
|
|
124
|
+
forkId: string;
|
|
125
|
+
body: SolidityServiceSolidityAPIServiceSimulateTransactionByForkBody;
|
|
144
126
|
}
|
|
145
127
|
/**
|
|
146
128
|
*
|
|
147
129
|
*/
|
|
148
130
|
export declare class DebugAndSimulationApi extends runtime.BaseAPI {
|
|
149
131
|
/**
|
|
150
|
-
*
|
|
151
|
-
* Get indexed call trace
|
|
132
|
+
* Get Call Trace by Bundle Simulation
|
|
152
133
|
*/
|
|
153
|
-
|
|
134
|
+
getCallTraceByBundleRaw(requestParameters: GetCallTraceByBundleRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<GoogleApiHttpBody>>;
|
|
154
135
|
/**
|
|
155
|
-
*
|
|
156
|
-
* Get indexed call trace
|
|
136
|
+
* Get Call Trace by Bundle Simulation
|
|
157
137
|
*/
|
|
158
|
-
|
|
138
|
+
getCallTraceByBundle(requestParameters: GetCallTraceByBundleRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<GoogleApiHttpBody>;
|
|
159
139
|
/**
|
|
160
|
-
*
|
|
161
|
-
* Get indexed call trace
|
|
140
|
+
* Get Call Trace by Bundle Simulation on Fork
|
|
162
141
|
*/
|
|
163
|
-
|
|
142
|
+
getCallTraceByForkBundleRaw(requestParameters: GetCallTraceByForkBundleRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<GoogleApiHttpBody>>;
|
|
164
143
|
/**
|
|
165
|
-
*
|
|
166
|
-
* Get indexed call trace
|
|
144
|
+
* Get Call Trace by Bundle Simulation on Fork
|
|
167
145
|
*/
|
|
168
|
-
|
|
146
|
+
getCallTraceByForkBundle(requestParameters: GetCallTraceByForkBundleRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<GoogleApiHttpBody>;
|
|
169
147
|
/**
|
|
170
|
-
*
|
|
171
|
-
* Get indexed call trace
|
|
148
|
+
* Get Call Trace by Simulation on Fork
|
|
172
149
|
*/
|
|
173
|
-
|
|
150
|
+
getCallTraceByForkSimulationRaw(requestParameters: GetCallTraceByForkSimulationRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<GoogleApiHttpBody>>;
|
|
174
151
|
/**
|
|
175
|
-
*
|
|
176
|
-
* Get indexed call trace
|
|
152
|
+
* Get Call Trace by Simulation on Fork
|
|
177
153
|
*/
|
|
178
|
-
|
|
154
|
+
getCallTraceByForkSimulation(requestParameters: GetCallTraceByForkSimulationRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<GoogleApiHttpBody>;
|
|
179
155
|
/**
|
|
180
|
-
*
|
|
181
|
-
* Get indexed call trace
|
|
156
|
+
* Get Call Trace by Transaction on Fork
|
|
182
157
|
*/
|
|
183
|
-
|
|
158
|
+
getCallTraceByForkTransactionRaw(requestParameters: GetCallTraceByForkTransactionRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<GoogleApiHttpBody>>;
|
|
184
159
|
/**
|
|
185
|
-
*
|
|
186
|
-
* Get indexed call trace
|
|
160
|
+
* Get Call Trace by Transaction on Fork
|
|
187
161
|
*/
|
|
188
|
-
|
|
162
|
+
getCallTraceByForkTransaction(requestParameters: GetCallTraceByForkTransactionRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<GoogleApiHttpBody>;
|
|
189
163
|
/**
|
|
190
|
-
*
|
|
191
|
-
* Get indexed call trace
|
|
164
|
+
* Get Call Trace by Simulation
|
|
192
165
|
*/
|
|
193
|
-
|
|
166
|
+
getCallTraceBySimulationRaw(requestParameters: GetCallTraceBySimulationRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<GoogleApiHttpBody>>;
|
|
194
167
|
/**
|
|
195
|
-
*
|
|
196
|
-
* Get indexed call trace
|
|
168
|
+
* Get Call Trace by Simulation
|
|
197
169
|
*/
|
|
198
|
-
|
|
170
|
+
getCallTraceBySimulation(requestParameters: GetCallTraceBySimulationRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<GoogleApiHttpBody>;
|
|
199
171
|
/**
|
|
200
|
-
* API to get Sentio call trace. It takes `txId.txHash` and `
|
|
201
|
-
* Get
|
|
172
|
+
* 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. The results looks very similar to the normal [Ethereum call trace](https://raw.githubusercontent.com/sentioxyz/docs/main/.gitbook/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. This allows you to build chart that marks the order of fund flow. %20(1)%20(1)%20(1).png)
|
|
173
|
+
* Get Call Trace by Transaction
|
|
202
174
|
*/
|
|
203
|
-
|
|
175
|
+
getCallTraceByTransactionRaw(requestParameters: GetCallTraceByTransactionRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<GoogleApiHttpBody>>;
|
|
204
176
|
/**
|
|
205
|
-
* API to get Sentio call trace. It takes `txId.txHash` and `
|
|
206
|
-
* Get
|
|
177
|
+
* 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. The results looks very similar to the normal [Ethereum call trace](https://raw.githubusercontent.com/sentioxyz/docs/main/.gitbook/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. This allows you to build chart that marks the order of fund flow. %20(1)%20(1)%20(1).png)
|
|
178
|
+
* Get Call Trace by Transaction
|
|
207
179
|
*/
|
|
208
|
-
|
|
180
|
+
getCallTraceByTransaction(requestParameters: GetCallTraceByTransactionRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<GoogleApiHttpBody>;
|
|
209
181
|
/**
|
|
210
|
-
* Get
|
|
182
|
+
* Get Simulation by ID
|
|
211
183
|
*/
|
|
212
184
|
getSimulationRaw(requestParameters: GetSimulationRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<SolidityServiceGetSimulationResponse>>;
|
|
213
185
|
/**
|
|
214
|
-
* Get
|
|
186
|
+
* Get Simulation by ID
|
|
215
187
|
*/
|
|
216
188
|
getSimulation(requestParameters: GetSimulationRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<SolidityServiceGetSimulationResponse>;
|
|
217
189
|
/**
|
|
218
|
-
* Get
|
|
190
|
+
* Get Bundle Simulation by ID
|
|
219
191
|
*/
|
|
220
192
|
getSimulationBundleInProjectRaw(requestParameters: GetSimulationBundleInProjectRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<SolidityServiceGetSimulationBundleResponse>>;
|
|
221
193
|
/**
|
|
222
|
-
* Get
|
|
194
|
+
* Get Bundle Simulation by ID
|
|
223
195
|
*/
|
|
224
196
|
getSimulationBundleInProject(requestParameters: GetSimulationBundleInProjectRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<SolidityServiceGetSimulationBundleResponse>;
|
|
225
197
|
/**
|
|
226
|
-
* Get
|
|
198
|
+
* Get Existied Simulations
|
|
227
199
|
*/
|
|
228
200
|
getSimulationsRaw(requestParameters: GetSimulationsRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<SolidityServiceGetSimulationsResponse>>;
|
|
229
201
|
/**
|
|
230
|
-
* Get
|
|
202
|
+
* Get Existied Simulations
|
|
231
203
|
*/
|
|
232
204
|
getSimulations(requestParameters: GetSimulationsRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<SolidityServiceGetSimulationsResponse>;
|
|
233
205
|
/**
|
|
234
|
-
* Search
|
|
206
|
+
* Search transactions
|
|
235
207
|
*/
|
|
236
208
|
searchTransactionsRaw(requestParameters: SearchTransactionsRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<TxindexEvmSearchTransactionsResponse>>;
|
|
237
209
|
/**
|
|
238
|
-
* Search
|
|
210
|
+
* Search transactions
|
|
239
211
|
*/
|
|
240
212
|
searchTransactions(requestParameters: SearchTransactionsRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<TxindexEvmSearchTransactionsResponse>;
|
|
241
213
|
/**
|
|
242
214
|
* Create a new transaction simulation. The simulation body should be included in the request body. 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.
|
|
243
|
-
*
|
|
215
|
+
* Run Simulation
|
|
244
216
|
*/
|
|
245
217
|
simulateTransactionRaw(requestParameters: SimulateTransactionRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<SolidityServiceSimulateTransactionResponse>>;
|
|
246
218
|
/**
|
|
247
219
|
* Create a new transaction simulation. The simulation body should be included in the request body. 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.
|
|
248
|
-
*
|
|
220
|
+
* Run Simulation
|
|
249
221
|
*/
|
|
250
222
|
simulateTransaction(requestParameters: SimulateTransactionRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<SolidityServiceSimulateTransactionResponse>;
|
|
251
|
-
/**
|
|
252
|
-
* Create a new transaction simulation. The simulation body should be included in the request body. 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.
|
|
253
|
-
* Single simulation
|
|
254
|
-
*/
|
|
255
|
-
simulateTransaction2Raw(requestParameters: SimulateTransaction2Request, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<SolidityServiceSimulateTransactionResponse>>;
|
|
256
|
-
/**
|
|
257
|
-
* Create a new transaction simulation. The simulation body should be included in the request body. 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.
|
|
258
|
-
* Single simulation
|
|
259
|
-
*/
|
|
260
|
-
simulateTransaction2(requestParameters: SimulateTransaction2Request, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<SolidityServiceSimulateTransactionResponse>;
|
|
261
223
|
/**
|
|
262
224
|
* 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.
|
|
263
|
-
* Bundle simulation
|
|
225
|
+
* Run Bundle simulation
|
|
264
226
|
*/
|
|
265
227
|
simulateTransactionBundleRaw(requestParameters: SimulateTransactionBundleRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<SolidityServiceSimulateTransactionBundleResponse>>;
|
|
266
228
|
/**
|
|
267
229
|
* 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.
|
|
268
|
-
* Bundle simulation
|
|
230
|
+
* Run Bundle simulation
|
|
269
231
|
*/
|
|
270
232
|
simulateTransactionBundle(requestParameters: SimulateTransactionBundleRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<SolidityServiceSimulateTransactionBundleResponse>;
|
|
271
233
|
/**
|
|
272
|
-
*
|
|
273
|
-
* Bundle simulation
|
|
234
|
+
* Run Bundle simulation on Fork
|
|
274
235
|
*/
|
|
275
|
-
|
|
236
|
+
simulateTransactionBundleByForkRaw(requestParameters: SimulateTransactionBundleByForkRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<SolidityServiceSimulateTransactionBundleResponse>>;
|
|
276
237
|
/**
|
|
277
|
-
*
|
|
278
|
-
|
|
238
|
+
* Run Bundle simulation on Fork
|
|
239
|
+
*/
|
|
240
|
+
simulateTransactionBundleByFork(requestParameters: SimulateTransactionBundleByForkRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<SolidityServiceSimulateTransactionBundleResponse>;
|
|
241
|
+
/**
|
|
242
|
+
* Run Simulation on Fork
|
|
243
|
+
*/
|
|
244
|
+
simulateTransactionByForkRaw(requestParameters: SimulateTransactionByForkRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<SolidityServiceSimulateTransactionResponse>>;
|
|
245
|
+
/**
|
|
246
|
+
* Run Simulation on Fork
|
|
279
247
|
*/
|
|
280
|
-
|
|
248
|
+
simulateTransactionByFork(requestParameters: SimulateTransactionByForkRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<SolidityServiceSimulateTransactionResponse>;
|
|
281
249
|
}
|