@pimlico/alto 0.0.0-main.20250110T130024 → 0.0.0-main.20250110T130132
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/esm/cli/config/options.js +1 -1
- package/esm/cli/config/options.js.map +1 -1
- package/esm/cli/deploySimulationsContract.js +6 -9
- package/esm/cli/deploySimulationsContract.js.map +1 -1
- package/esm/rpc/estimation/gasEstimationsV07.d.ts +2 -2
- package/esm/rpc/estimation/gasEstimationsV07.js +42 -41
- package/esm/rpc/estimation/gasEstimationsV07.js.map +1 -1
- package/esm/rpc/rpcHandler.d.ts +1 -1
- package/esm/rpc/rpcHandler.js +3 -3
- package/esm/rpc/rpcHandler.js.map +1 -1
- package/esm/types/contracts/EntryPointSimulationsV7.d.ts +154 -1
- package/esm/types/contracts/EntryPointSimulationsV7.js +1619 -1914
- package/esm/types/contracts/EntryPointSimulationsV7.js.map +1 -1
- package/esm/types/contracts/PimlicoEntryPointSimulations.d.ts +1 -2
- package/esm/types/contracts/PimlicoEntryPointSimulations.js +1 -2
- package/esm/types/contracts/PimlicoEntryPointSimulations.js.map +1 -1
- package/esm/utils/validation.js +1 -4
- package/esm/utils/validation.js.map +1 -1
- package/lib/cli/config/options.js +1 -1
- package/lib/cli/config/options.js.map +1 -1
- package/lib/cli/deploySimulationsContract.js +4 -7
- package/lib/cli/deploySimulationsContract.js.map +1 -1
- package/lib/rpc/estimation/gasEstimationsV07.d.ts +2 -2
- package/lib/rpc/estimation/gasEstimationsV07.js +42 -41
- package/lib/rpc/estimation/gasEstimationsV07.js.map +1 -1
- package/lib/rpc/rpcHandler.d.ts +1 -1
- package/lib/rpc/rpcHandler.js +3 -3
- package/lib/rpc/rpcHandler.js.map +1 -1
- package/lib/types/contracts/EntryPointSimulationsV7.d.ts +154 -1
- package/lib/types/contracts/EntryPointSimulationsV7.js +1620 -1915
- package/lib/types/contracts/EntryPointSimulationsV7.js.map +1 -1
- package/lib/types/contracts/PimlicoEntryPointSimulations.d.ts +1 -2
- package/lib/types/contracts/PimlicoEntryPointSimulations.js +2 -3
- package/lib/types/contracts/PimlicoEntryPointSimulations.js.map +1 -1
- package/lib/utils/validation.js +1 -4
- package/lib/utils/validation.js.map +1 -1
- package/package.json +1 -1
|
@@ -1,2004 +1,1805 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.EntryPointV07SimulationsAbi = void 0;
|
|
3
|
+
exports.ENTRY_POINT_SIMULATIONS_CREATECALL = exports.EntryPointV07SimulationsAbi = void 0;
|
|
4
4
|
exports.EntryPointV07SimulationsAbi = [
|
|
5
|
+
{ type: "constructor", inputs: [], stateMutability: "nonpayable" },
|
|
6
|
+
{ type: "receive", stateMutability: "payable" },
|
|
5
7
|
{
|
|
6
|
-
|
|
7
|
-
"
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
{
|
|
11
|
-
"type": "receive",
|
|
12
|
-
"stateMutability": "payable"
|
|
13
|
-
},
|
|
14
|
-
{
|
|
15
|
-
"type": "function",
|
|
16
|
-
"name": "_accountValidation",
|
|
17
|
-
"inputs": [
|
|
18
|
-
{
|
|
19
|
-
"name": "opIndex",
|
|
20
|
-
"type": "uint256",
|
|
21
|
-
"internalType": "uint256"
|
|
22
|
-
},
|
|
8
|
+
type: "function",
|
|
9
|
+
name: "_accountValidation",
|
|
10
|
+
inputs: [
|
|
11
|
+
{ name: "opIndex", type: "uint256", internalType: "uint256" },
|
|
23
12
|
{
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
{
|
|
29
|
-
"name": "sender",
|
|
30
|
-
"type": "address",
|
|
31
|
-
"internalType": "address"
|
|
32
|
-
},
|
|
33
|
-
{
|
|
34
|
-
"name": "nonce",
|
|
35
|
-
"type": "uint256",
|
|
36
|
-
"internalType": "uint256"
|
|
37
|
-
},
|
|
13
|
+
name: "userOp",
|
|
14
|
+
type: "tuple",
|
|
15
|
+
internalType: "struct PackedUserOperation",
|
|
16
|
+
components: [
|
|
38
17
|
{
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
18
|
+
name: "sender",
|
|
19
|
+
type: "address",
|
|
20
|
+
internalType: "address"
|
|
42
21
|
},
|
|
22
|
+
{ name: "nonce", type: "uint256", internalType: "uint256" },
|
|
23
|
+
{ name: "initCode", type: "bytes", internalType: "bytes" },
|
|
24
|
+
{ name: "callData", type: "bytes", internalType: "bytes" },
|
|
43
25
|
{
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
26
|
+
name: "accountGasLimits",
|
|
27
|
+
type: "bytes32",
|
|
28
|
+
internalType: "bytes32"
|
|
47
29
|
},
|
|
48
30
|
{
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
31
|
+
name: "preVerificationGas",
|
|
32
|
+
type: "uint256",
|
|
33
|
+
internalType: "uint256"
|
|
52
34
|
},
|
|
53
35
|
{
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
36
|
+
name: "gasFees",
|
|
37
|
+
type: "bytes32",
|
|
38
|
+
internalType: "bytes32"
|
|
57
39
|
},
|
|
58
40
|
{
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
41
|
+
name: "paymasterAndData",
|
|
42
|
+
type: "bytes",
|
|
43
|
+
internalType: "bytes"
|
|
62
44
|
},
|
|
63
|
-
{
|
|
64
|
-
"name": "paymasterAndData",
|
|
65
|
-
"type": "bytes",
|
|
66
|
-
"internalType": "bytes"
|
|
67
|
-
},
|
|
68
|
-
{
|
|
69
|
-
"name": "signature",
|
|
70
|
-
"type": "bytes",
|
|
71
|
-
"internalType": "bytes"
|
|
72
|
-
}
|
|
45
|
+
{ name: "signature", type: "bytes", internalType: "bytes" }
|
|
73
46
|
]
|
|
74
47
|
},
|
|
75
48
|
{
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
49
|
+
name: "outOpInfo",
|
|
50
|
+
type: "tuple",
|
|
51
|
+
internalType: "struct EntryPoint.UserOpInfo",
|
|
52
|
+
components: [
|
|
80
53
|
{
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
54
|
+
name: "mUserOp",
|
|
55
|
+
type: "tuple",
|
|
56
|
+
internalType: "struct EntryPoint.MemoryUserOp",
|
|
57
|
+
components: [
|
|
85
58
|
{
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
59
|
+
name: "sender",
|
|
60
|
+
type: "address",
|
|
61
|
+
internalType: "address"
|
|
89
62
|
},
|
|
90
63
|
{
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
64
|
+
name: "nonce",
|
|
65
|
+
type: "uint256",
|
|
66
|
+
internalType: "uint256"
|
|
94
67
|
},
|
|
95
68
|
{
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
69
|
+
name: "verificationGasLimit",
|
|
70
|
+
type: "uint256",
|
|
71
|
+
internalType: "uint256"
|
|
99
72
|
},
|
|
100
73
|
{
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
74
|
+
name: "callGasLimit",
|
|
75
|
+
type: "uint256",
|
|
76
|
+
internalType: "uint256"
|
|
104
77
|
},
|
|
105
78
|
{
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
79
|
+
name: "paymasterVerificationGasLimit",
|
|
80
|
+
type: "uint256",
|
|
81
|
+
internalType: "uint256"
|
|
109
82
|
},
|
|
110
83
|
{
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
84
|
+
name: "paymasterPostOpGasLimit",
|
|
85
|
+
type: "uint256",
|
|
86
|
+
internalType: "uint256"
|
|
114
87
|
},
|
|
115
88
|
{
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
89
|
+
name: "preVerificationGas",
|
|
90
|
+
type: "uint256",
|
|
91
|
+
internalType: "uint256"
|
|
119
92
|
},
|
|
120
93
|
{
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
94
|
+
name: "paymaster",
|
|
95
|
+
type: "address",
|
|
96
|
+
internalType: "address"
|
|
124
97
|
},
|
|
125
98
|
{
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
99
|
+
name: "maxFeePerGas",
|
|
100
|
+
type: "uint256",
|
|
101
|
+
internalType: "uint256"
|
|
129
102
|
},
|
|
130
103
|
{
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
104
|
+
name: "maxPriorityFeePerGas",
|
|
105
|
+
type: "uint256",
|
|
106
|
+
internalType: "uint256"
|
|
134
107
|
}
|
|
135
108
|
]
|
|
136
109
|
},
|
|
137
110
|
{
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
111
|
+
name: "userOpHash",
|
|
112
|
+
type: "bytes32",
|
|
113
|
+
internalType: "bytes32"
|
|
141
114
|
},
|
|
142
115
|
{
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
116
|
+
name: "prefund",
|
|
117
|
+
type: "uint256",
|
|
118
|
+
internalType: "uint256"
|
|
146
119
|
},
|
|
147
120
|
{
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
121
|
+
name: "contextOffset",
|
|
122
|
+
type: "uint256",
|
|
123
|
+
internalType: "uint256"
|
|
151
124
|
},
|
|
152
125
|
{
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
126
|
+
name: "preOpGas",
|
|
127
|
+
type: "uint256",
|
|
128
|
+
internalType: "uint256"
|
|
156
129
|
}
|
|
157
130
|
]
|
|
158
131
|
}
|
|
159
132
|
],
|
|
160
|
-
|
|
133
|
+
outputs: [
|
|
161
134
|
{
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
135
|
+
name: "validationData",
|
|
136
|
+
type: "uint256",
|
|
137
|
+
internalType: "uint256"
|
|
165
138
|
},
|
|
166
139
|
{
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
140
|
+
name: "paymasterValidationData",
|
|
141
|
+
type: "uint256",
|
|
142
|
+
internalType: "uint256"
|
|
170
143
|
},
|
|
171
144
|
{
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
145
|
+
name: "paymasterVerificationGasLimit",
|
|
146
|
+
type: "uint256",
|
|
147
|
+
internalType: "uint256"
|
|
175
148
|
}
|
|
176
149
|
],
|
|
177
|
-
|
|
150
|
+
stateMutability: "nonpayable"
|
|
178
151
|
},
|
|
179
152
|
{
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
153
|
+
type: "function",
|
|
154
|
+
name: "_paymasterValidation",
|
|
155
|
+
inputs: [
|
|
156
|
+
{ name: "opIndex", type: "uint256", internalType: "uint256" },
|
|
183
157
|
{
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
{
|
|
189
|
-
"name": "userOp",
|
|
190
|
-
"type": "tuple",
|
|
191
|
-
"internalType": "struct PackedUserOperation",
|
|
192
|
-
"components": [
|
|
193
|
-
{
|
|
194
|
-
"name": "sender",
|
|
195
|
-
"type": "address",
|
|
196
|
-
"internalType": "address"
|
|
197
|
-
},
|
|
198
|
-
{
|
|
199
|
-
"name": "nonce",
|
|
200
|
-
"type": "uint256",
|
|
201
|
-
"internalType": "uint256"
|
|
202
|
-
},
|
|
203
|
-
{
|
|
204
|
-
"name": "initCode",
|
|
205
|
-
"type": "bytes",
|
|
206
|
-
"internalType": "bytes"
|
|
207
|
-
},
|
|
158
|
+
name: "userOp",
|
|
159
|
+
type: "tuple",
|
|
160
|
+
internalType: "struct PackedUserOperation",
|
|
161
|
+
components: [
|
|
208
162
|
{
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
163
|
+
name: "sender",
|
|
164
|
+
type: "address",
|
|
165
|
+
internalType: "address"
|
|
212
166
|
},
|
|
167
|
+
{ name: "nonce", type: "uint256", internalType: "uint256" },
|
|
168
|
+
{ name: "initCode", type: "bytes", internalType: "bytes" },
|
|
169
|
+
{ name: "callData", type: "bytes", internalType: "bytes" },
|
|
213
170
|
{
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
171
|
+
name: "accountGasLimits",
|
|
172
|
+
type: "bytes32",
|
|
173
|
+
internalType: "bytes32"
|
|
217
174
|
},
|
|
218
175
|
{
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
176
|
+
name: "preVerificationGas",
|
|
177
|
+
type: "uint256",
|
|
178
|
+
internalType: "uint256"
|
|
222
179
|
},
|
|
223
180
|
{
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
181
|
+
name: "gasFees",
|
|
182
|
+
type: "bytes32",
|
|
183
|
+
internalType: "bytes32"
|
|
227
184
|
},
|
|
228
185
|
{
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
186
|
+
name: "paymasterAndData",
|
|
187
|
+
type: "bytes",
|
|
188
|
+
internalType: "bytes"
|
|
232
189
|
},
|
|
233
|
-
{
|
|
234
|
-
"name": "signature",
|
|
235
|
-
"type": "bytes",
|
|
236
|
-
"internalType": "bytes"
|
|
237
|
-
}
|
|
190
|
+
{ name: "signature", type: "bytes", internalType: "bytes" }
|
|
238
191
|
]
|
|
239
192
|
},
|
|
240
193
|
{
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
194
|
+
name: "outOpInfo",
|
|
195
|
+
type: "tuple",
|
|
196
|
+
internalType: "struct EntryPoint.UserOpInfo",
|
|
197
|
+
components: [
|
|
245
198
|
{
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
199
|
+
name: "mUserOp",
|
|
200
|
+
type: "tuple",
|
|
201
|
+
internalType: "struct EntryPoint.MemoryUserOp",
|
|
202
|
+
components: [
|
|
250
203
|
{
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
204
|
+
name: "sender",
|
|
205
|
+
type: "address",
|
|
206
|
+
internalType: "address"
|
|
254
207
|
},
|
|
255
208
|
{
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
209
|
+
name: "nonce",
|
|
210
|
+
type: "uint256",
|
|
211
|
+
internalType: "uint256"
|
|
259
212
|
},
|
|
260
213
|
{
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
214
|
+
name: "verificationGasLimit",
|
|
215
|
+
type: "uint256",
|
|
216
|
+
internalType: "uint256"
|
|
264
217
|
},
|
|
265
218
|
{
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
219
|
+
name: "callGasLimit",
|
|
220
|
+
type: "uint256",
|
|
221
|
+
internalType: "uint256"
|
|
269
222
|
},
|
|
270
223
|
{
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
224
|
+
name: "paymasterVerificationGasLimit",
|
|
225
|
+
type: "uint256",
|
|
226
|
+
internalType: "uint256"
|
|
274
227
|
},
|
|
275
228
|
{
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
229
|
+
name: "paymasterPostOpGasLimit",
|
|
230
|
+
type: "uint256",
|
|
231
|
+
internalType: "uint256"
|
|
279
232
|
},
|
|
280
233
|
{
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
234
|
+
name: "preVerificationGas",
|
|
235
|
+
type: "uint256",
|
|
236
|
+
internalType: "uint256"
|
|
284
237
|
},
|
|
285
238
|
{
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
239
|
+
name: "paymaster",
|
|
240
|
+
type: "address",
|
|
241
|
+
internalType: "address"
|
|
289
242
|
},
|
|
290
243
|
{
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
244
|
+
name: "maxFeePerGas",
|
|
245
|
+
type: "uint256",
|
|
246
|
+
internalType: "uint256"
|
|
294
247
|
},
|
|
295
248
|
{
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
249
|
+
name: "maxPriorityFeePerGas",
|
|
250
|
+
type: "uint256",
|
|
251
|
+
internalType: "uint256"
|
|
299
252
|
}
|
|
300
253
|
]
|
|
301
254
|
},
|
|
302
255
|
{
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
256
|
+
name: "userOpHash",
|
|
257
|
+
type: "bytes32",
|
|
258
|
+
internalType: "bytes32"
|
|
306
259
|
},
|
|
307
260
|
{
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
261
|
+
name: "prefund",
|
|
262
|
+
type: "uint256",
|
|
263
|
+
internalType: "uint256"
|
|
311
264
|
},
|
|
312
265
|
{
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
266
|
+
name: "contextOffset",
|
|
267
|
+
type: "uint256",
|
|
268
|
+
internalType: "uint256"
|
|
316
269
|
},
|
|
317
270
|
{
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
271
|
+
name: "preOpGas",
|
|
272
|
+
type: "uint256",
|
|
273
|
+
internalType: "uint256"
|
|
321
274
|
}
|
|
322
275
|
]
|
|
323
276
|
}
|
|
324
277
|
],
|
|
325
|
-
|
|
278
|
+
outputs: [
|
|
326
279
|
{
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
280
|
+
name: "validationData",
|
|
281
|
+
type: "uint256",
|
|
282
|
+
internalType: "uint256"
|
|
330
283
|
},
|
|
331
284
|
{
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
285
|
+
name: "paymasterValidationData",
|
|
286
|
+
type: "uint256",
|
|
287
|
+
internalType: "uint256"
|
|
335
288
|
},
|
|
336
289
|
{
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
290
|
+
name: "paymasterVerificationGasLimit",
|
|
291
|
+
type: "uint256",
|
|
292
|
+
internalType: "uint256"
|
|
340
293
|
}
|
|
341
294
|
],
|
|
342
|
-
|
|
295
|
+
stateMutability: "nonpayable"
|
|
343
296
|
},
|
|
344
297
|
{
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
298
|
+
type: "function",
|
|
299
|
+
name: "_validatePrepayment",
|
|
300
|
+
inputs: [
|
|
301
|
+
{ name: "opIndex", type: "uint256", internalType: "uint256" },
|
|
348
302
|
{
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
{
|
|
354
|
-
"name": "userOp",
|
|
355
|
-
"type": "tuple",
|
|
356
|
-
"internalType": "struct PackedUserOperation",
|
|
357
|
-
"components": [
|
|
303
|
+
name: "userOp",
|
|
304
|
+
type: "tuple",
|
|
305
|
+
internalType: "struct PackedUserOperation",
|
|
306
|
+
components: [
|
|
358
307
|
{
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
308
|
+
name: "sender",
|
|
309
|
+
type: "address",
|
|
310
|
+
internalType: "address"
|
|
362
311
|
},
|
|
312
|
+
{ name: "nonce", type: "uint256", internalType: "uint256" },
|
|
313
|
+
{ name: "initCode", type: "bytes", internalType: "bytes" },
|
|
314
|
+
{ name: "callData", type: "bytes", internalType: "bytes" },
|
|
363
315
|
{
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
316
|
+
name: "accountGasLimits",
|
|
317
|
+
type: "bytes32",
|
|
318
|
+
internalType: "bytes32"
|
|
367
319
|
},
|
|
368
320
|
{
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
321
|
+
name: "preVerificationGas",
|
|
322
|
+
type: "uint256",
|
|
323
|
+
internalType: "uint256"
|
|
372
324
|
},
|
|
373
325
|
{
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
326
|
+
name: "gasFees",
|
|
327
|
+
type: "bytes32",
|
|
328
|
+
internalType: "bytes32"
|
|
377
329
|
},
|
|
378
330
|
{
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
331
|
+
name: "paymasterAndData",
|
|
332
|
+
type: "bytes",
|
|
333
|
+
internalType: "bytes"
|
|
382
334
|
},
|
|
383
|
-
{
|
|
384
|
-
"name": "preVerificationGas",
|
|
385
|
-
"type": "uint256",
|
|
386
|
-
"internalType": "uint256"
|
|
387
|
-
},
|
|
388
|
-
{
|
|
389
|
-
"name": "gasFees",
|
|
390
|
-
"type": "bytes32",
|
|
391
|
-
"internalType": "bytes32"
|
|
392
|
-
},
|
|
393
|
-
{
|
|
394
|
-
"name": "paymasterAndData",
|
|
395
|
-
"type": "bytes",
|
|
396
|
-
"internalType": "bytes"
|
|
397
|
-
},
|
|
398
|
-
{
|
|
399
|
-
"name": "signature",
|
|
400
|
-
"type": "bytes",
|
|
401
|
-
"internalType": "bytes"
|
|
402
|
-
}
|
|
335
|
+
{ name: "signature", type: "bytes", internalType: "bytes" }
|
|
403
336
|
]
|
|
404
337
|
},
|
|
405
338
|
{
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
339
|
+
name: "outOpInfo",
|
|
340
|
+
type: "tuple",
|
|
341
|
+
internalType: "struct EntryPoint.UserOpInfo",
|
|
342
|
+
components: [
|
|
410
343
|
{
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
344
|
+
name: "mUserOp",
|
|
345
|
+
type: "tuple",
|
|
346
|
+
internalType: "struct EntryPoint.MemoryUserOp",
|
|
347
|
+
components: [
|
|
415
348
|
{
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
349
|
+
name: "sender",
|
|
350
|
+
type: "address",
|
|
351
|
+
internalType: "address"
|
|
419
352
|
},
|
|
420
353
|
{
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
354
|
+
name: "nonce",
|
|
355
|
+
type: "uint256",
|
|
356
|
+
internalType: "uint256"
|
|
424
357
|
},
|
|
425
358
|
{
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
|
|
359
|
+
name: "verificationGasLimit",
|
|
360
|
+
type: "uint256",
|
|
361
|
+
internalType: "uint256"
|
|
429
362
|
},
|
|
430
363
|
{
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
364
|
+
name: "callGasLimit",
|
|
365
|
+
type: "uint256",
|
|
366
|
+
internalType: "uint256"
|
|
434
367
|
},
|
|
435
368
|
{
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
|
|
369
|
+
name: "paymasterVerificationGasLimit",
|
|
370
|
+
type: "uint256",
|
|
371
|
+
internalType: "uint256"
|
|
439
372
|
},
|
|
440
373
|
{
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
|
|
374
|
+
name: "paymasterPostOpGasLimit",
|
|
375
|
+
type: "uint256",
|
|
376
|
+
internalType: "uint256"
|
|
444
377
|
},
|
|
445
378
|
{
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
|
|
379
|
+
name: "preVerificationGas",
|
|
380
|
+
type: "uint256",
|
|
381
|
+
internalType: "uint256"
|
|
449
382
|
},
|
|
450
383
|
{
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
|
|
384
|
+
name: "paymaster",
|
|
385
|
+
type: "address",
|
|
386
|
+
internalType: "address"
|
|
454
387
|
},
|
|
455
388
|
{
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
|
|
389
|
+
name: "maxFeePerGas",
|
|
390
|
+
type: "uint256",
|
|
391
|
+
internalType: "uint256"
|
|
459
392
|
},
|
|
460
393
|
{
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
|
|
394
|
+
name: "maxPriorityFeePerGas",
|
|
395
|
+
type: "uint256",
|
|
396
|
+
internalType: "uint256"
|
|
464
397
|
}
|
|
465
398
|
]
|
|
466
399
|
},
|
|
467
400
|
{
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
|
|
401
|
+
name: "userOpHash",
|
|
402
|
+
type: "bytes32",
|
|
403
|
+
internalType: "bytes32"
|
|
471
404
|
},
|
|
472
405
|
{
|
|
473
|
-
|
|
474
|
-
|
|
475
|
-
|
|
406
|
+
name: "prefund",
|
|
407
|
+
type: "uint256",
|
|
408
|
+
internalType: "uint256"
|
|
476
409
|
},
|
|
477
410
|
{
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
|
|
411
|
+
name: "contextOffset",
|
|
412
|
+
type: "uint256",
|
|
413
|
+
internalType: "uint256"
|
|
481
414
|
},
|
|
482
415
|
{
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
|
|
416
|
+
name: "preOpGas",
|
|
417
|
+
type: "uint256",
|
|
418
|
+
internalType: "uint256"
|
|
486
419
|
}
|
|
487
420
|
]
|
|
488
421
|
}
|
|
489
422
|
],
|
|
490
|
-
|
|
423
|
+
outputs: [
|
|
491
424
|
{
|
|
492
|
-
|
|
493
|
-
|
|
494
|
-
|
|
425
|
+
name: "validationData",
|
|
426
|
+
type: "uint256",
|
|
427
|
+
internalType: "uint256"
|
|
495
428
|
},
|
|
496
429
|
{
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
|
|
430
|
+
name: "paymasterValidationData",
|
|
431
|
+
type: "uint256",
|
|
432
|
+
internalType: "uint256"
|
|
500
433
|
},
|
|
501
434
|
{
|
|
502
|
-
|
|
503
|
-
|
|
504
|
-
|
|
435
|
+
name: "paymasterVerificationGasLimit",
|
|
436
|
+
type: "uint256",
|
|
437
|
+
internalType: "uint256"
|
|
505
438
|
}
|
|
506
439
|
],
|
|
507
|
-
|
|
440
|
+
stateMutability: "nonpayable"
|
|
508
441
|
},
|
|
509
442
|
{
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
{
|
|
514
|
-
"name": "unstakeDelaySec",
|
|
515
|
-
"type": "uint32",
|
|
516
|
-
"internalType": "uint32"
|
|
517
|
-
}
|
|
443
|
+
type: "function",
|
|
444
|
+
name: "addStake",
|
|
445
|
+
inputs: [
|
|
446
|
+
{ name: "unstakeDelaySec", type: "uint32", internalType: "uint32" }
|
|
518
447
|
],
|
|
519
|
-
|
|
520
|
-
|
|
448
|
+
outputs: [],
|
|
449
|
+
stateMutability: "payable"
|
|
521
450
|
},
|
|
522
451
|
{
|
|
523
|
-
|
|
524
|
-
|
|
525
|
-
|
|
526
|
-
|
|
527
|
-
|
|
528
|
-
"type": "address",
|
|
529
|
-
"internalType": "address"
|
|
530
|
-
}
|
|
531
|
-
],
|
|
532
|
-
"outputs": [
|
|
533
|
-
{
|
|
534
|
-
"name": "",
|
|
535
|
-
"type": "uint256",
|
|
536
|
-
"internalType": "uint256"
|
|
537
|
-
}
|
|
538
|
-
],
|
|
539
|
-
"stateMutability": "view"
|
|
452
|
+
type: "function",
|
|
453
|
+
name: "balanceOf",
|
|
454
|
+
inputs: [{ name: "account", type: "address", internalType: "address" }],
|
|
455
|
+
outputs: [{ name: "", type: "uint256", internalType: "uint256" }],
|
|
456
|
+
stateMutability: "view"
|
|
540
457
|
},
|
|
541
458
|
{
|
|
542
|
-
|
|
543
|
-
|
|
544
|
-
|
|
459
|
+
type: "function",
|
|
460
|
+
name: "binarySearchGasLimit",
|
|
461
|
+
inputs: [
|
|
545
462
|
{
|
|
546
|
-
|
|
547
|
-
|
|
548
|
-
|
|
549
|
-
|
|
463
|
+
name: "queuedUserOps",
|
|
464
|
+
type: "tuple[]",
|
|
465
|
+
internalType: "struct SimulationArgs[]",
|
|
466
|
+
components: [
|
|
550
467
|
{
|
|
551
|
-
|
|
552
|
-
|
|
553
|
-
|
|
554
|
-
|
|
468
|
+
name: "op",
|
|
469
|
+
type: "tuple",
|
|
470
|
+
internalType: "struct PackedUserOperation",
|
|
471
|
+
components: [
|
|
555
472
|
{
|
|
556
|
-
|
|
557
|
-
|
|
558
|
-
|
|
473
|
+
name: "sender",
|
|
474
|
+
type: "address",
|
|
475
|
+
internalType: "address"
|
|
559
476
|
},
|
|
560
477
|
{
|
|
561
|
-
|
|
562
|
-
|
|
563
|
-
|
|
478
|
+
name: "nonce",
|
|
479
|
+
type: "uint256",
|
|
480
|
+
internalType: "uint256"
|
|
564
481
|
},
|
|
565
482
|
{
|
|
566
|
-
|
|
567
|
-
|
|
568
|
-
|
|
483
|
+
name: "initCode",
|
|
484
|
+
type: "bytes",
|
|
485
|
+
internalType: "bytes"
|
|
569
486
|
},
|
|
570
487
|
{
|
|
571
|
-
|
|
572
|
-
|
|
573
|
-
|
|
488
|
+
name: "callData",
|
|
489
|
+
type: "bytes",
|
|
490
|
+
internalType: "bytes"
|
|
574
491
|
},
|
|
575
492
|
{
|
|
576
|
-
|
|
577
|
-
|
|
578
|
-
|
|
493
|
+
name: "accountGasLimits",
|
|
494
|
+
type: "bytes32",
|
|
495
|
+
internalType: "bytes32"
|
|
579
496
|
},
|
|
580
497
|
{
|
|
581
|
-
|
|
582
|
-
|
|
583
|
-
|
|
498
|
+
name: "preVerificationGas",
|
|
499
|
+
type: "uint256",
|
|
500
|
+
internalType: "uint256"
|
|
584
501
|
},
|
|
585
502
|
{
|
|
586
|
-
|
|
587
|
-
|
|
588
|
-
|
|
503
|
+
name: "gasFees",
|
|
504
|
+
type: "bytes32",
|
|
505
|
+
internalType: "bytes32"
|
|
589
506
|
},
|
|
590
507
|
{
|
|
591
|
-
|
|
592
|
-
|
|
593
|
-
|
|
508
|
+
name: "paymasterAndData",
|
|
509
|
+
type: "bytes",
|
|
510
|
+
internalType: "bytes"
|
|
594
511
|
},
|
|
595
512
|
{
|
|
596
|
-
|
|
597
|
-
|
|
598
|
-
|
|
513
|
+
name: "signature",
|
|
514
|
+
type: "bytes",
|
|
515
|
+
internalType: "bytes"
|
|
599
516
|
}
|
|
600
517
|
]
|
|
601
518
|
},
|
|
602
519
|
{
|
|
603
|
-
|
|
604
|
-
|
|
605
|
-
|
|
520
|
+
name: "target",
|
|
521
|
+
type: "address",
|
|
522
|
+
internalType: "address"
|
|
606
523
|
},
|
|
607
524
|
{
|
|
608
|
-
|
|
609
|
-
|
|
610
|
-
|
|
525
|
+
name: "targetCallData",
|
|
526
|
+
type: "bytes",
|
|
527
|
+
internalType: "bytes"
|
|
611
528
|
}
|
|
612
529
|
]
|
|
613
530
|
},
|
|
614
531
|
{
|
|
615
|
-
|
|
616
|
-
|
|
617
|
-
|
|
618
|
-
|
|
532
|
+
name: "targetUserOp",
|
|
533
|
+
type: "tuple",
|
|
534
|
+
internalType: "struct SimulationArgs",
|
|
535
|
+
components: [
|
|
619
536
|
{
|
|
620
|
-
|
|
621
|
-
|
|
622
|
-
|
|
623
|
-
|
|
537
|
+
name: "op",
|
|
538
|
+
type: "tuple",
|
|
539
|
+
internalType: "struct PackedUserOperation",
|
|
540
|
+
components: [
|
|
624
541
|
{
|
|
625
|
-
|
|
626
|
-
|
|
627
|
-
|
|
542
|
+
name: "sender",
|
|
543
|
+
type: "address",
|
|
544
|
+
internalType: "address"
|
|
628
545
|
},
|
|
629
546
|
{
|
|
630
|
-
|
|
631
|
-
|
|
632
|
-
|
|
547
|
+
name: "nonce",
|
|
548
|
+
type: "uint256",
|
|
549
|
+
internalType: "uint256"
|
|
633
550
|
},
|
|
634
551
|
{
|
|
635
|
-
|
|
636
|
-
|
|
637
|
-
|
|
552
|
+
name: "initCode",
|
|
553
|
+
type: "bytes",
|
|
554
|
+
internalType: "bytes"
|
|
638
555
|
},
|
|
639
556
|
{
|
|
640
|
-
|
|
641
|
-
|
|
642
|
-
|
|
557
|
+
name: "callData",
|
|
558
|
+
type: "bytes",
|
|
559
|
+
internalType: "bytes"
|
|
643
560
|
},
|
|
644
561
|
{
|
|
645
|
-
|
|
646
|
-
|
|
647
|
-
|
|
562
|
+
name: "accountGasLimits",
|
|
563
|
+
type: "bytes32",
|
|
564
|
+
internalType: "bytes32"
|
|
648
565
|
},
|
|
649
566
|
{
|
|
650
|
-
|
|
651
|
-
|
|
652
|
-
|
|
567
|
+
name: "preVerificationGas",
|
|
568
|
+
type: "uint256",
|
|
569
|
+
internalType: "uint256"
|
|
653
570
|
},
|
|
654
571
|
{
|
|
655
|
-
|
|
656
|
-
|
|
657
|
-
|
|
572
|
+
name: "gasFees",
|
|
573
|
+
type: "bytes32",
|
|
574
|
+
internalType: "bytes32"
|
|
658
575
|
},
|
|
659
576
|
{
|
|
660
|
-
|
|
661
|
-
|
|
662
|
-
|
|
577
|
+
name: "paymasterAndData",
|
|
578
|
+
type: "bytes",
|
|
579
|
+
internalType: "bytes"
|
|
663
580
|
},
|
|
664
581
|
{
|
|
665
|
-
|
|
666
|
-
|
|
667
|
-
|
|
582
|
+
name: "signature",
|
|
583
|
+
type: "bytes",
|
|
584
|
+
internalType: "bytes"
|
|
668
585
|
}
|
|
669
586
|
]
|
|
670
587
|
},
|
|
671
588
|
{
|
|
672
|
-
|
|
673
|
-
|
|
674
|
-
|
|
589
|
+
name: "target",
|
|
590
|
+
type: "address",
|
|
591
|
+
internalType: "address"
|
|
675
592
|
},
|
|
676
593
|
{
|
|
677
|
-
|
|
678
|
-
|
|
679
|
-
|
|
594
|
+
name: "targetCallData",
|
|
595
|
+
type: "bytes",
|
|
596
|
+
internalType: "bytes"
|
|
680
597
|
}
|
|
681
598
|
]
|
|
682
599
|
},
|
|
600
|
+
{ name: "entryPoint", type: "address", internalType: "address" },
|
|
601
|
+
{ name: "initialMinGas", type: "uint256", internalType: "uint256" },
|
|
683
602
|
{
|
|
684
|
-
|
|
685
|
-
|
|
686
|
-
|
|
687
|
-
},
|
|
688
|
-
{
|
|
689
|
-
"name": "initialMinGas",
|
|
690
|
-
"type": "uint256",
|
|
691
|
-
"internalType": "uint256"
|
|
692
|
-
},
|
|
693
|
-
{
|
|
694
|
-
"name": "toleranceDelta",
|
|
695
|
-
"type": "uint256",
|
|
696
|
-
"internalType": "uint256"
|
|
603
|
+
name: "toleranceDelta",
|
|
604
|
+
type: "uint256",
|
|
605
|
+
internalType: "uint256"
|
|
697
606
|
},
|
|
698
|
-
{
|
|
699
|
-
|
|
700
|
-
"type": "uint256",
|
|
701
|
-
"internalType": "uint256"
|
|
702
|
-
}
|
|
607
|
+
{ name: "gasAllowance", type: "uint256", internalType: "uint256" },
|
|
608
|
+
{ name: "payload", type: "bytes", internalType: "bytes" }
|
|
703
609
|
],
|
|
704
|
-
|
|
610
|
+
outputs: [
|
|
705
611
|
{
|
|
706
|
-
|
|
707
|
-
|
|
708
|
-
|
|
709
|
-
|
|
612
|
+
name: "",
|
|
613
|
+
type: "tuple",
|
|
614
|
+
internalType: "struct IEntryPointSimulations.TargetCallResult",
|
|
615
|
+
components: [
|
|
710
616
|
{
|
|
711
|
-
|
|
712
|
-
|
|
713
|
-
|
|
617
|
+
name: "gasUsed",
|
|
618
|
+
type: "uint256",
|
|
619
|
+
internalType: "uint256"
|
|
714
620
|
},
|
|
715
|
-
{
|
|
716
|
-
|
|
717
|
-
"type": "bool",
|
|
718
|
-
"internalType": "bool"
|
|
719
|
-
},
|
|
720
|
-
{
|
|
721
|
-
"name": "returnData",
|
|
722
|
-
"type": "bytes",
|
|
723
|
-
"internalType": "bytes"
|
|
724
|
-
}
|
|
621
|
+
{ name: "success", type: "bool", internalType: "bool" },
|
|
622
|
+
{ name: "returnData", type: "bytes", internalType: "bytes" }
|
|
725
623
|
]
|
|
726
624
|
}
|
|
727
625
|
],
|
|
728
|
-
|
|
626
|
+
stateMutability: "nonpayable"
|
|
729
627
|
},
|
|
730
628
|
{
|
|
731
|
-
|
|
732
|
-
|
|
733
|
-
|
|
629
|
+
type: "function",
|
|
630
|
+
name: "binarySearchPaymasterVerificationGasLimit",
|
|
631
|
+
inputs: [
|
|
734
632
|
{
|
|
735
|
-
|
|
736
|
-
|
|
737
|
-
|
|
738
|
-
|
|
633
|
+
name: "queuedUserOps",
|
|
634
|
+
type: "tuple[]",
|
|
635
|
+
internalType: "struct SimulationArgs[]",
|
|
636
|
+
components: [
|
|
739
637
|
{
|
|
740
|
-
|
|
741
|
-
|
|
742
|
-
|
|
743
|
-
|
|
638
|
+
name: "op",
|
|
639
|
+
type: "tuple",
|
|
640
|
+
internalType: "struct PackedUserOperation",
|
|
641
|
+
components: [
|
|
744
642
|
{
|
|
745
|
-
|
|
746
|
-
|
|
747
|
-
|
|
643
|
+
name: "sender",
|
|
644
|
+
type: "address",
|
|
645
|
+
internalType: "address"
|
|
748
646
|
},
|
|
749
647
|
{
|
|
750
|
-
|
|
751
|
-
|
|
752
|
-
|
|
648
|
+
name: "nonce",
|
|
649
|
+
type: "uint256",
|
|
650
|
+
internalType: "uint256"
|
|
753
651
|
},
|
|
754
652
|
{
|
|
755
|
-
|
|
756
|
-
|
|
757
|
-
|
|
653
|
+
name: "initCode",
|
|
654
|
+
type: "bytes",
|
|
655
|
+
internalType: "bytes"
|
|
758
656
|
},
|
|
759
657
|
{
|
|
760
|
-
|
|
761
|
-
|
|
762
|
-
|
|
658
|
+
name: "callData",
|
|
659
|
+
type: "bytes",
|
|
660
|
+
internalType: "bytes"
|
|
763
661
|
},
|
|
764
662
|
{
|
|
765
|
-
|
|
766
|
-
|
|
767
|
-
|
|
663
|
+
name: "accountGasLimits",
|
|
664
|
+
type: "bytes32",
|
|
665
|
+
internalType: "bytes32"
|
|
768
666
|
},
|
|
769
667
|
{
|
|
770
|
-
|
|
771
|
-
|
|
772
|
-
|
|
668
|
+
name: "preVerificationGas",
|
|
669
|
+
type: "uint256",
|
|
670
|
+
internalType: "uint256"
|
|
773
671
|
},
|
|
774
672
|
{
|
|
775
|
-
|
|
776
|
-
|
|
777
|
-
|
|
673
|
+
name: "gasFees",
|
|
674
|
+
type: "bytes32",
|
|
675
|
+
internalType: "bytes32"
|
|
778
676
|
},
|
|
779
677
|
{
|
|
780
|
-
|
|
781
|
-
|
|
782
|
-
|
|
678
|
+
name: "paymasterAndData",
|
|
679
|
+
type: "bytes",
|
|
680
|
+
internalType: "bytes"
|
|
783
681
|
},
|
|
784
682
|
{
|
|
785
|
-
|
|
786
|
-
|
|
787
|
-
|
|
683
|
+
name: "signature",
|
|
684
|
+
type: "bytes",
|
|
685
|
+
internalType: "bytes"
|
|
788
686
|
}
|
|
789
687
|
]
|
|
790
688
|
},
|
|
791
689
|
{
|
|
792
|
-
|
|
793
|
-
|
|
794
|
-
|
|
690
|
+
name: "target",
|
|
691
|
+
type: "address",
|
|
692
|
+
internalType: "address"
|
|
795
693
|
},
|
|
796
694
|
{
|
|
797
|
-
|
|
798
|
-
|
|
799
|
-
|
|
695
|
+
name: "targetCallData",
|
|
696
|
+
type: "bytes",
|
|
697
|
+
internalType: "bytes"
|
|
800
698
|
}
|
|
801
699
|
]
|
|
802
700
|
},
|
|
803
701
|
{
|
|
804
|
-
|
|
805
|
-
|
|
806
|
-
|
|
807
|
-
|
|
702
|
+
name: "targetUserOp",
|
|
703
|
+
type: "tuple",
|
|
704
|
+
internalType: "struct SimulationArgs",
|
|
705
|
+
components: [
|
|
808
706
|
{
|
|
809
|
-
|
|
810
|
-
|
|
811
|
-
|
|
812
|
-
|
|
707
|
+
name: "op",
|
|
708
|
+
type: "tuple",
|
|
709
|
+
internalType: "struct PackedUserOperation",
|
|
710
|
+
components: [
|
|
813
711
|
{
|
|
814
|
-
|
|
815
|
-
|
|
816
|
-
|
|
712
|
+
name: "sender",
|
|
713
|
+
type: "address",
|
|
714
|
+
internalType: "address"
|
|
817
715
|
},
|
|
818
716
|
{
|
|
819
|
-
|
|
820
|
-
|
|
821
|
-
|
|
717
|
+
name: "nonce",
|
|
718
|
+
type: "uint256",
|
|
719
|
+
internalType: "uint256"
|
|
822
720
|
},
|
|
823
721
|
{
|
|
824
|
-
|
|
825
|
-
|
|
826
|
-
|
|
722
|
+
name: "initCode",
|
|
723
|
+
type: "bytes",
|
|
724
|
+
internalType: "bytes"
|
|
827
725
|
},
|
|
828
726
|
{
|
|
829
|
-
|
|
830
|
-
|
|
831
|
-
|
|
727
|
+
name: "callData",
|
|
728
|
+
type: "bytes",
|
|
729
|
+
internalType: "bytes"
|
|
832
730
|
},
|
|
833
731
|
{
|
|
834
|
-
|
|
835
|
-
|
|
836
|
-
|
|
732
|
+
name: "accountGasLimits",
|
|
733
|
+
type: "bytes32",
|
|
734
|
+
internalType: "bytes32"
|
|
837
735
|
},
|
|
838
736
|
{
|
|
839
|
-
|
|
840
|
-
|
|
841
|
-
|
|
737
|
+
name: "preVerificationGas",
|
|
738
|
+
type: "uint256",
|
|
739
|
+
internalType: "uint256"
|
|
842
740
|
},
|
|
843
741
|
{
|
|
844
|
-
|
|
845
|
-
|
|
846
|
-
|
|
742
|
+
name: "gasFees",
|
|
743
|
+
type: "bytes32",
|
|
744
|
+
internalType: "bytes32"
|
|
847
745
|
},
|
|
848
746
|
{
|
|
849
|
-
|
|
850
|
-
|
|
851
|
-
|
|
747
|
+
name: "paymasterAndData",
|
|
748
|
+
type: "bytes",
|
|
749
|
+
internalType: "bytes"
|
|
852
750
|
},
|
|
853
751
|
{
|
|
854
|
-
|
|
855
|
-
|
|
856
|
-
|
|
752
|
+
name: "signature",
|
|
753
|
+
type: "bytes",
|
|
754
|
+
internalType: "bytes"
|
|
857
755
|
}
|
|
858
756
|
]
|
|
859
757
|
},
|
|
860
758
|
{
|
|
861
|
-
|
|
862
|
-
|
|
863
|
-
|
|
759
|
+
name: "target",
|
|
760
|
+
type: "address",
|
|
761
|
+
internalType: "address"
|
|
864
762
|
},
|
|
865
763
|
{
|
|
866
|
-
|
|
867
|
-
|
|
868
|
-
|
|
764
|
+
name: "targetCallData",
|
|
765
|
+
type: "bytes",
|
|
766
|
+
internalType: "bytes"
|
|
869
767
|
}
|
|
870
768
|
]
|
|
871
769
|
},
|
|
770
|
+
{ name: "entryPoint", type: "address", internalType: "address" },
|
|
771
|
+
{ name: "initialMinGas", type: "uint256", internalType: "uint256" },
|
|
872
772
|
{
|
|
873
|
-
|
|
874
|
-
|
|
875
|
-
|
|
773
|
+
name: "toleranceDelta",
|
|
774
|
+
type: "uint256",
|
|
775
|
+
internalType: "uint256"
|
|
876
776
|
},
|
|
877
|
-
{
|
|
878
|
-
"name": "initialMinGas",
|
|
879
|
-
"type": "uint256",
|
|
880
|
-
"internalType": "uint256"
|
|
881
|
-
},
|
|
882
|
-
{
|
|
883
|
-
"name": "toleranceDelta",
|
|
884
|
-
"type": "uint256",
|
|
885
|
-
"internalType": "uint256"
|
|
886
|
-
},
|
|
887
|
-
{
|
|
888
|
-
"name": "gasAllowance",
|
|
889
|
-
"type": "uint256",
|
|
890
|
-
"internalType": "uint256"
|
|
891
|
-
}
|
|
777
|
+
{ name: "gasAllowance", type: "uint256", internalType: "uint256" }
|
|
892
778
|
],
|
|
893
|
-
|
|
779
|
+
outputs: [
|
|
894
780
|
{
|
|
895
|
-
|
|
896
|
-
|
|
897
|
-
|
|
898
|
-
|
|
899
|
-
{
|
|
900
|
-
"name": "gasUsed",
|
|
901
|
-
"type": "uint256",
|
|
902
|
-
"internalType": "uint256"
|
|
903
|
-
},
|
|
781
|
+
name: "",
|
|
782
|
+
type: "tuple",
|
|
783
|
+
internalType: "struct IEntryPointSimulations.TargetCallResult",
|
|
784
|
+
components: [
|
|
904
785
|
{
|
|
905
|
-
|
|
906
|
-
|
|
907
|
-
|
|
786
|
+
name: "gasUsed",
|
|
787
|
+
type: "uint256",
|
|
788
|
+
internalType: "uint256"
|
|
908
789
|
},
|
|
909
|
-
{
|
|
910
|
-
|
|
911
|
-
"type": "bytes",
|
|
912
|
-
"internalType": "bytes"
|
|
913
|
-
}
|
|
790
|
+
{ name: "success", type: "bool", internalType: "bool" },
|
|
791
|
+
{ name: "returnData", type: "bytes", internalType: "bytes" }
|
|
914
792
|
]
|
|
915
793
|
}
|
|
916
794
|
],
|
|
917
|
-
|
|
795
|
+
stateMutability: "nonpayable"
|
|
918
796
|
},
|
|
919
797
|
{
|
|
920
|
-
|
|
921
|
-
|
|
922
|
-
|
|
798
|
+
type: "function",
|
|
799
|
+
name: "binarySearchVerificationGasLimit",
|
|
800
|
+
inputs: [
|
|
923
801
|
{
|
|
924
|
-
|
|
925
|
-
|
|
926
|
-
|
|
927
|
-
|
|
802
|
+
name: "queuedUserOps",
|
|
803
|
+
type: "tuple[]",
|
|
804
|
+
internalType: "struct SimulationArgs[]",
|
|
805
|
+
components: [
|
|
928
806
|
{
|
|
929
|
-
|
|
930
|
-
|
|
931
|
-
|
|
932
|
-
|
|
807
|
+
name: "op",
|
|
808
|
+
type: "tuple",
|
|
809
|
+
internalType: "struct PackedUserOperation",
|
|
810
|
+
components: [
|
|
933
811
|
{
|
|
934
|
-
|
|
935
|
-
|
|
936
|
-
|
|
812
|
+
name: "sender",
|
|
813
|
+
type: "address",
|
|
814
|
+
internalType: "address"
|
|
937
815
|
},
|
|
938
816
|
{
|
|
939
|
-
|
|
940
|
-
|
|
941
|
-
|
|
817
|
+
name: "nonce",
|
|
818
|
+
type: "uint256",
|
|
819
|
+
internalType: "uint256"
|
|
942
820
|
},
|
|
943
821
|
{
|
|
944
|
-
|
|
945
|
-
|
|
946
|
-
|
|
822
|
+
name: "initCode",
|
|
823
|
+
type: "bytes",
|
|
824
|
+
internalType: "bytes"
|
|
947
825
|
},
|
|
948
826
|
{
|
|
949
|
-
|
|
950
|
-
|
|
951
|
-
|
|
827
|
+
name: "callData",
|
|
828
|
+
type: "bytes",
|
|
829
|
+
internalType: "bytes"
|
|
952
830
|
},
|
|
953
831
|
{
|
|
954
|
-
|
|
955
|
-
|
|
956
|
-
|
|
832
|
+
name: "accountGasLimits",
|
|
833
|
+
type: "bytes32",
|
|
834
|
+
internalType: "bytes32"
|
|
957
835
|
},
|
|
958
836
|
{
|
|
959
|
-
|
|
960
|
-
|
|
961
|
-
|
|
837
|
+
name: "preVerificationGas",
|
|
838
|
+
type: "uint256",
|
|
839
|
+
internalType: "uint256"
|
|
962
840
|
},
|
|
963
841
|
{
|
|
964
|
-
|
|
965
|
-
|
|
966
|
-
|
|
842
|
+
name: "gasFees",
|
|
843
|
+
type: "bytes32",
|
|
844
|
+
internalType: "bytes32"
|
|
967
845
|
},
|
|
968
846
|
{
|
|
969
|
-
|
|
970
|
-
|
|
971
|
-
|
|
847
|
+
name: "paymasterAndData",
|
|
848
|
+
type: "bytes",
|
|
849
|
+
internalType: "bytes"
|
|
972
850
|
},
|
|
973
851
|
{
|
|
974
|
-
|
|
975
|
-
|
|
976
|
-
|
|
852
|
+
name: "signature",
|
|
853
|
+
type: "bytes",
|
|
854
|
+
internalType: "bytes"
|
|
977
855
|
}
|
|
978
856
|
]
|
|
979
857
|
},
|
|
980
858
|
{
|
|
981
|
-
|
|
982
|
-
|
|
983
|
-
|
|
859
|
+
name: "target",
|
|
860
|
+
type: "address",
|
|
861
|
+
internalType: "address"
|
|
984
862
|
},
|
|
985
863
|
{
|
|
986
|
-
|
|
987
|
-
|
|
988
|
-
|
|
864
|
+
name: "targetCallData",
|
|
865
|
+
type: "bytes",
|
|
866
|
+
internalType: "bytes"
|
|
989
867
|
}
|
|
990
868
|
]
|
|
991
869
|
},
|
|
992
870
|
{
|
|
993
|
-
|
|
994
|
-
|
|
995
|
-
|
|
996
|
-
|
|
871
|
+
name: "targetUserOp",
|
|
872
|
+
type: "tuple",
|
|
873
|
+
internalType: "struct SimulationArgs",
|
|
874
|
+
components: [
|
|
997
875
|
{
|
|
998
|
-
|
|
999
|
-
|
|
1000
|
-
|
|
1001
|
-
|
|
876
|
+
name: "op",
|
|
877
|
+
type: "tuple",
|
|
878
|
+
internalType: "struct PackedUserOperation",
|
|
879
|
+
components: [
|
|
1002
880
|
{
|
|
1003
|
-
|
|
1004
|
-
|
|
1005
|
-
|
|
881
|
+
name: "sender",
|
|
882
|
+
type: "address",
|
|
883
|
+
internalType: "address"
|
|
1006
884
|
},
|
|
1007
885
|
{
|
|
1008
|
-
|
|
1009
|
-
|
|
1010
|
-
|
|
886
|
+
name: "nonce",
|
|
887
|
+
type: "uint256",
|
|
888
|
+
internalType: "uint256"
|
|
1011
889
|
},
|
|
1012
890
|
{
|
|
1013
|
-
|
|
1014
|
-
|
|
1015
|
-
|
|
891
|
+
name: "initCode",
|
|
892
|
+
type: "bytes",
|
|
893
|
+
internalType: "bytes"
|
|
1016
894
|
},
|
|
1017
895
|
{
|
|
1018
|
-
|
|
1019
|
-
|
|
1020
|
-
|
|
896
|
+
name: "callData",
|
|
897
|
+
type: "bytes",
|
|
898
|
+
internalType: "bytes"
|
|
1021
899
|
},
|
|
1022
900
|
{
|
|
1023
|
-
|
|
1024
|
-
|
|
1025
|
-
|
|
901
|
+
name: "accountGasLimits",
|
|
902
|
+
type: "bytes32",
|
|
903
|
+
internalType: "bytes32"
|
|
1026
904
|
},
|
|
1027
905
|
{
|
|
1028
|
-
|
|
1029
|
-
|
|
1030
|
-
|
|
906
|
+
name: "preVerificationGas",
|
|
907
|
+
type: "uint256",
|
|
908
|
+
internalType: "uint256"
|
|
1031
909
|
},
|
|
1032
910
|
{
|
|
1033
|
-
|
|
1034
|
-
|
|
1035
|
-
|
|
911
|
+
name: "gasFees",
|
|
912
|
+
type: "bytes32",
|
|
913
|
+
internalType: "bytes32"
|
|
1036
914
|
},
|
|
1037
915
|
{
|
|
1038
|
-
|
|
1039
|
-
|
|
1040
|
-
|
|
916
|
+
name: "paymasterAndData",
|
|
917
|
+
type: "bytes",
|
|
918
|
+
internalType: "bytes"
|
|
1041
919
|
},
|
|
1042
920
|
{
|
|
1043
|
-
|
|
1044
|
-
|
|
1045
|
-
|
|
921
|
+
name: "signature",
|
|
922
|
+
type: "bytes",
|
|
923
|
+
internalType: "bytes"
|
|
1046
924
|
}
|
|
1047
925
|
]
|
|
1048
926
|
},
|
|
1049
927
|
{
|
|
1050
|
-
|
|
1051
|
-
|
|
1052
|
-
|
|
928
|
+
name: "target",
|
|
929
|
+
type: "address",
|
|
930
|
+
internalType: "address"
|
|
1053
931
|
},
|
|
1054
932
|
{
|
|
1055
|
-
|
|
1056
|
-
|
|
1057
|
-
|
|
933
|
+
name: "targetCallData",
|
|
934
|
+
type: "bytes",
|
|
935
|
+
internalType: "bytes"
|
|
1058
936
|
}
|
|
1059
937
|
]
|
|
1060
938
|
},
|
|
939
|
+
{ name: "entryPoint", type: "address", internalType: "address" },
|
|
940
|
+
{ name: "initialMinGas", type: "uint256", internalType: "uint256" },
|
|
1061
941
|
{
|
|
1062
|
-
|
|
1063
|
-
|
|
1064
|
-
|
|
1065
|
-
},
|
|
1066
|
-
{
|
|
1067
|
-
"name": "initialMinGas",
|
|
1068
|
-
"type": "uint256",
|
|
1069
|
-
"internalType": "uint256"
|
|
1070
|
-
},
|
|
1071
|
-
{
|
|
1072
|
-
"name": "toleranceDelta",
|
|
1073
|
-
"type": "uint256",
|
|
1074
|
-
"internalType": "uint256"
|
|
942
|
+
name: "toleranceDelta",
|
|
943
|
+
type: "uint256",
|
|
944
|
+
internalType: "uint256"
|
|
1075
945
|
},
|
|
1076
|
-
{
|
|
1077
|
-
"name": "gasAllowance",
|
|
1078
|
-
"type": "uint256",
|
|
1079
|
-
"internalType": "uint256"
|
|
1080
|
-
}
|
|
946
|
+
{ name: "gasAllowance", type: "uint256", internalType: "uint256" }
|
|
1081
947
|
],
|
|
1082
|
-
|
|
948
|
+
outputs: [
|
|
1083
949
|
{
|
|
1084
|
-
|
|
1085
|
-
|
|
1086
|
-
|
|
1087
|
-
|
|
950
|
+
name: "",
|
|
951
|
+
type: "tuple",
|
|
952
|
+
internalType: "struct IEntryPointSimulations.TargetCallResult",
|
|
953
|
+
components: [
|
|
1088
954
|
{
|
|
1089
|
-
|
|
1090
|
-
|
|
1091
|
-
|
|
955
|
+
name: "gasUsed",
|
|
956
|
+
type: "uint256",
|
|
957
|
+
internalType: "uint256"
|
|
1092
958
|
},
|
|
1093
|
-
{
|
|
1094
|
-
|
|
1095
|
-
"type": "bool",
|
|
1096
|
-
"internalType": "bool"
|
|
1097
|
-
},
|
|
1098
|
-
{
|
|
1099
|
-
"name": "returnData",
|
|
1100
|
-
"type": "bytes",
|
|
1101
|
-
"internalType": "bytes"
|
|
1102
|
-
}
|
|
959
|
+
{ name: "success", type: "bool", internalType: "bool" },
|
|
960
|
+
{ name: "returnData", type: "bytes", internalType: "bytes" }
|
|
1103
961
|
]
|
|
1104
962
|
}
|
|
1105
963
|
],
|
|
1106
|
-
|
|
964
|
+
stateMutability: "nonpayable"
|
|
1107
965
|
},
|
|
1108
966
|
{
|
|
1109
|
-
|
|
1110
|
-
|
|
1111
|
-
|
|
1112
|
-
|
|
1113
|
-
|
|
1114
|
-
"type": "address",
|
|
1115
|
-
"internalType": "address"
|
|
1116
|
-
}
|
|
1117
|
-
],
|
|
1118
|
-
"outputs": [],
|
|
1119
|
-
"stateMutability": "payable"
|
|
967
|
+
type: "function",
|
|
968
|
+
name: "depositTo",
|
|
969
|
+
inputs: [{ name: "account", type: "address", internalType: "address" }],
|
|
970
|
+
outputs: [],
|
|
971
|
+
stateMutability: "payable"
|
|
1120
972
|
},
|
|
1121
973
|
{
|
|
1122
|
-
|
|
1123
|
-
|
|
1124
|
-
|
|
1125
|
-
|
|
1126
|
-
|
|
1127
|
-
|
|
1128
|
-
|
|
1129
|
-
}
|
|
974
|
+
type: "function",
|
|
975
|
+
name: "deposits",
|
|
976
|
+
inputs: [{ name: "", type: "address", internalType: "address" }],
|
|
977
|
+
outputs: [
|
|
978
|
+
{ name: "deposit", type: "uint256", internalType: "uint256" },
|
|
979
|
+
{ name: "staked", type: "bool", internalType: "bool" },
|
|
980
|
+
{ name: "stake", type: "uint112", internalType: "uint112" },
|
|
981
|
+
{ name: "unstakeDelaySec", type: "uint32", internalType: "uint32" },
|
|
982
|
+
{ name: "withdrawTime", type: "uint48", internalType: "uint48" }
|
|
1130
983
|
],
|
|
1131
|
-
"
|
|
1132
|
-
{
|
|
1133
|
-
"name": "deposit",
|
|
1134
|
-
"type": "uint256",
|
|
1135
|
-
"internalType": "uint256"
|
|
1136
|
-
},
|
|
1137
|
-
{
|
|
1138
|
-
"name": "staked",
|
|
1139
|
-
"type": "bool",
|
|
1140
|
-
"internalType": "bool"
|
|
1141
|
-
},
|
|
1142
|
-
{
|
|
1143
|
-
"name": "stake",
|
|
1144
|
-
"type": "uint112",
|
|
1145
|
-
"internalType": "uint112"
|
|
1146
|
-
},
|
|
1147
|
-
{
|
|
1148
|
-
"name": "unstakeDelaySec",
|
|
1149
|
-
"type": "uint32",
|
|
1150
|
-
"internalType": "uint32"
|
|
1151
|
-
},
|
|
1152
|
-
{
|
|
1153
|
-
"name": "withdrawTime",
|
|
1154
|
-
"type": "uint48",
|
|
1155
|
-
"internalType": "uint48"
|
|
1156
|
-
}
|
|
1157
|
-
],
|
|
1158
|
-
"stateMutability": "view"
|
|
984
|
+
stateMutability: "view"
|
|
1159
985
|
},
|
|
1160
986
|
{
|
|
1161
|
-
|
|
1162
|
-
|
|
1163
|
-
|
|
987
|
+
type: "function",
|
|
988
|
+
name: "getDepositInfo",
|
|
989
|
+
inputs: [{ name: "account", type: "address", internalType: "address" }],
|
|
990
|
+
outputs: [
|
|
1164
991
|
{
|
|
1165
|
-
|
|
1166
|
-
|
|
1167
|
-
|
|
1168
|
-
|
|
1169
|
-
],
|
|
1170
|
-
"outputs": [
|
|
1171
|
-
{
|
|
1172
|
-
"name": "info",
|
|
1173
|
-
"type": "tuple",
|
|
1174
|
-
"internalType": "struct IStakeManager.DepositInfo",
|
|
1175
|
-
"components": [
|
|
1176
|
-
{
|
|
1177
|
-
"name": "deposit",
|
|
1178
|
-
"type": "uint256",
|
|
1179
|
-
"internalType": "uint256"
|
|
1180
|
-
},
|
|
992
|
+
name: "info",
|
|
993
|
+
type: "tuple",
|
|
994
|
+
internalType: "struct IStakeManager.DepositInfo",
|
|
995
|
+
components: [
|
|
1181
996
|
{
|
|
1182
|
-
|
|
1183
|
-
|
|
1184
|
-
|
|
997
|
+
name: "deposit",
|
|
998
|
+
type: "uint256",
|
|
999
|
+
internalType: "uint256"
|
|
1185
1000
|
},
|
|
1001
|
+
{ name: "staked", type: "bool", internalType: "bool" },
|
|
1002
|
+
{ name: "stake", type: "uint112", internalType: "uint112" },
|
|
1186
1003
|
{
|
|
1187
|
-
|
|
1188
|
-
|
|
1189
|
-
|
|
1004
|
+
name: "unstakeDelaySec",
|
|
1005
|
+
type: "uint32",
|
|
1006
|
+
internalType: "uint32"
|
|
1190
1007
|
},
|
|
1191
1008
|
{
|
|
1192
|
-
|
|
1193
|
-
|
|
1194
|
-
|
|
1195
|
-
},
|
|
1196
|
-
{
|
|
1197
|
-
"name": "withdrawTime",
|
|
1198
|
-
"type": "uint48",
|
|
1199
|
-
"internalType": "uint48"
|
|
1009
|
+
name: "withdrawTime",
|
|
1010
|
+
type: "uint48",
|
|
1011
|
+
internalType: "uint48"
|
|
1200
1012
|
}
|
|
1201
1013
|
]
|
|
1202
1014
|
}
|
|
1203
1015
|
],
|
|
1204
|
-
|
|
1016
|
+
stateMutability: "view"
|
|
1205
1017
|
},
|
|
1206
1018
|
{
|
|
1207
|
-
|
|
1208
|
-
|
|
1209
|
-
|
|
1210
|
-
{
|
|
1211
|
-
|
|
1212
|
-
"type": "address",
|
|
1213
|
-
"internalType": "address"
|
|
1214
|
-
},
|
|
1215
|
-
{
|
|
1216
|
-
"name": "key",
|
|
1217
|
-
"type": "uint192",
|
|
1218
|
-
"internalType": "uint192"
|
|
1219
|
-
}
|
|
1019
|
+
type: "function",
|
|
1020
|
+
name: "getNonce",
|
|
1021
|
+
inputs: [
|
|
1022
|
+
{ name: "sender", type: "address", internalType: "address" },
|
|
1023
|
+
{ name: "key", type: "uint192", internalType: "uint192" }
|
|
1220
1024
|
],
|
|
1221
|
-
|
|
1222
|
-
|
|
1223
|
-
"name": "nonce",
|
|
1224
|
-
"type": "uint256",
|
|
1225
|
-
"internalType": "uint256"
|
|
1226
|
-
}
|
|
1227
|
-
],
|
|
1228
|
-
"stateMutability": "view"
|
|
1025
|
+
outputs: [{ name: "nonce", type: "uint256", internalType: "uint256" }],
|
|
1026
|
+
stateMutability: "view"
|
|
1229
1027
|
},
|
|
1230
1028
|
{
|
|
1231
|
-
|
|
1232
|
-
|
|
1233
|
-
|
|
1029
|
+
type: "function",
|
|
1030
|
+
name: "getUserOpHash",
|
|
1031
|
+
inputs: [
|
|
1234
1032
|
{
|
|
1235
|
-
|
|
1236
|
-
|
|
1237
|
-
|
|
1238
|
-
|
|
1239
|
-
{
|
|
1240
|
-
"name": "sender",
|
|
1241
|
-
"type": "address",
|
|
1242
|
-
"internalType": "address"
|
|
1243
|
-
},
|
|
1244
|
-
{
|
|
1245
|
-
"name": "nonce",
|
|
1246
|
-
"type": "uint256",
|
|
1247
|
-
"internalType": "uint256"
|
|
1248
|
-
},
|
|
1249
|
-
{
|
|
1250
|
-
"name": "initCode",
|
|
1251
|
-
"type": "bytes",
|
|
1252
|
-
"internalType": "bytes"
|
|
1253
|
-
},
|
|
1033
|
+
name: "userOp",
|
|
1034
|
+
type: "tuple",
|
|
1035
|
+
internalType: "struct PackedUserOperation",
|
|
1036
|
+
components: [
|
|
1254
1037
|
{
|
|
1255
|
-
|
|
1256
|
-
|
|
1257
|
-
|
|
1038
|
+
name: "sender",
|
|
1039
|
+
type: "address",
|
|
1040
|
+
internalType: "address"
|
|
1258
1041
|
},
|
|
1042
|
+
{ name: "nonce", type: "uint256", internalType: "uint256" },
|
|
1043
|
+
{ name: "initCode", type: "bytes", internalType: "bytes" },
|
|
1044
|
+
{ name: "callData", type: "bytes", internalType: "bytes" },
|
|
1259
1045
|
{
|
|
1260
|
-
|
|
1261
|
-
|
|
1262
|
-
|
|
1046
|
+
name: "accountGasLimits",
|
|
1047
|
+
type: "bytes32",
|
|
1048
|
+
internalType: "bytes32"
|
|
1263
1049
|
},
|
|
1264
1050
|
{
|
|
1265
|
-
|
|
1266
|
-
|
|
1267
|
-
|
|
1051
|
+
name: "preVerificationGas",
|
|
1052
|
+
type: "uint256",
|
|
1053
|
+
internalType: "uint256"
|
|
1268
1054
|
},
|
|
1269
1055
|
{
|
|
1270
|
-
|
|
1271
|
-
|
|
1272
|
-
|
|
1056
|
+
name: "gasFees",
|
|
1057
|
+
type: "bytes32",
|
|
1058
|
+
internalType: "bytes32"
|
|
1273
1059
|
},
|
|
1274
1060
|
{
|
|
1275
|
-
|
|
1276
|
-
|
|
1277
|
-
|
|
1061
|
+
name: "paymasterAndData",
|
|
1062
|
+
type: "bytes",
|
|
1063
|
+
internalType: "bytes"
|
|
1278
1064
|
},
|
|
1279
|
-
{
|
|
1280
|
-
"name": "signature",
|
|
1281
|
-
"type": "bytes",
|
|
1282
|
-
"internalType": "bytes"
|
|
1283
|
-
}
|
|
1065
|
+
{ name: "signature", type: "bytes", internalType: "bytes" }
|
|
1284
1066
|
]
|
|
1285
1067
|
}
|
|
1286
1068
|
],
|
|
1287
|
-
|
|
1288
|
-
|
|
1289
|
-
"name": "",
|
|
1290
|
-
"type": "bytes32",
|
|
1291
|
-
"internalType": "bytes32"
|
|
1292
|
-
}
|
|
1293
|
-
],
|
|
1294
|
-
"stateMutability": "view"
|
|
1069
|
+
outputs: [{ name: "", type: "bytes32", internalType: "bytes32" }],
|
|
1070
|
+
stateMutability: "view"
|
|
1295
1071
|
},
|
|
1296
1072
|
{
|
|
1297
|
-
|
|
1298
|
-
|
|
1299
|
-
|
|
1300
|
-
|
|
1301
|
-
|
|
1302
|
-
"type": "uint192",
|
|
1303
|
-
"internalType": "uint192"
|
|
1304
|
-
}
|
|
1305
|
-
],
|
|
1306
|
-
"outputs": [],
|
|
1307
|
-
"stateMutability": "nonpayable"
|
|
1073
|
+
type: "function",
|
|
1074
|
+
name: "incrementNonce",
|
|
1075
|
+
inputs: [{ name: "key", type: "uint192", internalType: "uint192" }],
|
|
1076
|
+
outputs: [],
|
|
1077
|
+
stateMutability: "nonpayable"
|
|
1308
1078
|
},
|
|
1309
1079
|
{
|
|
1310
|
-
|
|
1311
|
-
|
|
1312
|
-
|
|
1313
|
-
{
|
|
1314
|
-
"name": "callData",
|
|
1315
|
-
"type": "bytes",
|
|
1316
|
-
"internalType": "bytes"
|
|
1317
|
-
},
|
|
1080
|
+
type: "function",
|
|
1081
|
+
name: "innerHandleOp",
|
|
1082
|
+
inputs: [
|
|
1083
|
+
{ name: "callData", type: "bytes", internalType: "bytes" },
|
|
1318
1084
|
{
|
|
1319
|
-
|
|
1320
|
-
|
|
1321
|
-
|
|
1322
|
-
|
|
1085
|
+
name: "opInfo",
|
|
1086
|
+
type: "tuple",
|
|
1087
|
+
internalType: "struct EntryPoint.UserOpInfo",
|
|
1088
|
+
components: [
|
|
1323
1089
|
{
|
|
1324
|
-
|
|
1325
|
-
|
|
1326
|
-
|
|
1327
|
-
|
|
1090
|
+
name: "mUserOp",
|
|
1091
|
+
type: "tuple",
|
|
1092
|
+
internalType: "struct EntryPoint.MemoryUserOp",
|
|
1093
|
+
components: [
|
|
1328
1094
|
{
|
|
1329
|
-
|
|
1330
|
-
|
|
1331
|
-
|
|
1095
|
+
name: "sender",
|
|
1096
|
+
type: "address",
|
|
1097
|
+
internalType: "address"
|
|
1332
1098
|
},
|
|
1333
1099
|
{
|
|
1334
|
-
|
|
1335
|
-
|
|
1336
|
-
|
|
1100
|
+
name: "nonce",
|
|
1101
|
+
type: "uint256",
|
|
1102
|
+
internalType: "uint256"
|
|
1337
1103
|
},
|
|
1338
1104
|
{
|
|
1339
|
-
|
|
1340
|
-
|
|
1341
|
-
|
|
1105
|
+
name: "verificationGasLimit",
|
|
1106
|
+
type: "uint256",
|
|
1107
|
+
internalType: "uint256"
|
|
1342
1108
|
},
|
|
1343
1109
|
{
|
|
1344
|
-
|
|
1345
|
-
|
|
1346
|
-
|
|
1110
|
+
name: "callGasLimit",
|
|
1111
|
+
type: "uint256",
|
|
1112
|
+
internalType: "uint256"
|
|
1347
1113
|
},
|
|
1348
1114
|
{
|
|
1349
|
-
|
|
1350
|
-
|
|
1351
|
-
|
|
1115
|
+
name: "paymasterVerificationGasLimit",
|
|
1116
|
+
type: "uint256",
|
|
1117
|
+
internalType: "uint256"
|
|
1352
1118
|
},
|
|
1353
1119
|
{
|
|
1354
|
-
|
|
1355
|
-
|
|
1356
|
-
|
|
1120
|
+
name: "paymasterPostOpGasLimit",
|
|
1121
|
+
type: "uint256",
|
|
1122
|
+
internalType: "uint256"
|
|
1357
1123
|
},
|
|
1358
1124
|
{
|
|
1359
|
-
|
|
1360
|
-
|
|
1361
|
-
|
|
1125
|
+
name: "preVerificationGas",
|
|
1126
|
+
type: "uint256",
|
|
1127
|
+
internalType: "uint256"
|
|
1362
1128
|
},
|
|
1363
1129
|
{
|
|
1364
|
-
|
|
1365
|
-
|
|
1366
|
-
|
|
1130
|
+
name: "paymaster",
|
|
1131
|
+
type: "address",
|
|
1132
|
+
internalType: "address"
|
|
1367
1133
|
},
|
|
1368
1134
|
{
|
|
1369
|
-
|
|
1370
|
-
|
|
1371
|
-
|
|
1135
|
+
name: "maxFeePerGas",
|
|
1136
|
+
type: "uint256",
|
|
1137
|
+
internalType: "uint256"
|
|
1372
1138
|
},
|
|
1373
1139
|
{
|
|
1374
|
-
|
|
1375
|
-
|
|
1376
|
-
|
|
1140
|
+
name: "maxPriorityFeePerGas",
|
|
1141
|
+
type: "uint256",
|
|
1142
|
+
internalType: "uint256"
|
|
1377
1143
|
}
|
|
1378
1144
|
]
|
|
1379
1145
|
},
|
|
1380
1146
|
{
|
|
1381
|
-
|
|
1382
|
-
|
|
1383
|
-
|
|
1147
|
+
name: "userOpHash",
|
|
1148
|
+
type: "bytes32",
|
|
1149
|
+
internalType: "bytes32"
|
|
1384
1150
|
},
|
|
1385
1151
|
{
|
|
1386
|
-
|
|
1387
|
-
|
|
1388
|
-
|
|
1152
|
+
name: "prefund",
|
|
1153
|
+
type: "uint256",
|
|
1154
|
+
internalType: "uint256"
|
|
1389
1155
|
},
|
|
1390
1156
|
{
|
|
1391
|
-
|
|
1392
|
-
|
|
1393
|
-
|
|
1157
|
+
name: "contextOffset",
|
|
1158
|
+
type: "uint256",
|
|
1159
|
+
internalType: "uint256"
|
|
1394
1160
|
},
|
|
1395
1161
|
{
|
|
1396
|
-
|
|
1397
|
-
|
|
1398
|
-
|
|
1162
|
+
name: "preOpGas",
|
|
1163
|
+
type: "uint256",
|
|
1164
|
+
internalType: "uint256"
|
|
1399
1165
|
}
|
|
1400
1166
|
]
|
|
1401
1167
|
},
|
|
1402
|
-
{
|
|
1403
|
-
|
|
1404
|
-
"type": "bytes",
|
|
1405
|
-
"internalType": "bytes"
|
|
1406
|
-
},
|
|
1407
|
-
{
|
|
1408
|
-
"name": "preGas",
|
|
1409
|
-
"type": "uint256",
|
|
1410
|
-
"internalType": "uint256"
|
|
1411
|
-
}
|
|
1168
|
+
{ name: "context", type: "bytes", internalType: "bytes" },
|
|
1169
|
+
{ name: "preGas", type: "uint256", internalType: "uint256" }
|
|
1412
1170
|
],
|
|
1413
|
-
|
|
1171
|
+
outputs: [
|
|
1172
|
+
{ name: "actualGasCost", type: "uint256", internalType: "uint256" },
|
|
1414
1173
|
{
|
|
1415
|
-
|
|
1416
|
-
|
|
1417
|
-
|
|
1418
|
-
},
|
|
1419
|
-
{
|
|
1420
|
-
"name": "paymasterPostOpGasLimit",
|
|
1421
|
-
"type": "uint256",
|
|
1422
|
-
"internalType": "uint256"
|
|
1174
|
+
name: "paymasterPostOpGasLimit",
|
|
1175
|
+
type: "uint256",
|
|
1176
|
+
internalType: "uint256"
|
|
1423
1177
|
}
|
|
1424
1178
|
],
|
|
1425
|
-
|
|
1179
|
+
stateMutability: "nonpayable"
|
|
1426
1180
|
},
|
|
1427
1181
|
{
|
|
1428
|
-
|
|
1429
|
-
|
|
1430
|
-
|
|
1431
|
-
{
|
|
1432
|
-
|
|
1433
|
-
"type": "address",
|
|
1434
|
-
"internalType": "address"
|
|
1435
|
-
},
|
|
1436
|
-
{
|
|
1437
|
-
"name": "",
|
|
1438
|
-
"type": "uint192",
|
|
1439
|
-
"internalType": "uint192"
|
|
1440
|
-
}
|
|
1441
|
-
],
|
|
1442
|
-
"outputs": [
|
|
1443
|
-
{
|
|
1444
|
-
"name": "",
|
|
1445
|
-
"type": "uint256",
|
|
1446
|
-
"internalType": "uint256"
|
|
1447
|
-
}
|
|
1182
|
+
type: "function",
|
|
1183
|
+
name: "nonceSequenceNumber",
|
|
1184
|
+
inputs: [
|
|
1185
|
+
{ name: "", type: "address", internalType: "address" },
|
|
1186
|
+
{ name: "", type: "uint192", internalType: "uint192" }
|
|
1448
1187
|
],
|
|
1449
|
-
"
|
|
1188
|
+
outputs: [{ name: "", type: "uint256", internalType: "uint256" }],
|
|
1189
|
+
stateMutability: "view"
|
|
1450
1190
|
},
|
|
1451
1191
|
{
|
|
1452
|
-
|
|
1453
|
-
|
|
1454
|
-
|
|
1455
|
-
{
|
|
1456
|
-
|
|
1457
|
-
|
|
1458
|
-
"internalType": "address"
|
|
1459
|
-
},
|
|
1460
|
-
{
|
|
1461
|
-
"name": "payload",
|
|
1462
|
-
"type": "bytes",
|
|
1463
|
-
"internalType": "bytes"
|
|
1464
|
-
},
|
|
1465
|
-
{
|
|
1466
|
-
"name": "gas",
|
|
1467
|
-
"type": "uint256",
|
|
1468
|
-
"internalType": "uint256"
|
|
1469
|
-
}
|
|
1192
|
+
type: "function",
|
|
1193
|
+
name: "simulateCall",
|
|
1194
|
+
inputs: [
|
|
1195
|
+
{ name: "entryPoint", type: "address", internalType: "address" },
|
|
1196
|
+
{ name: "payload", type: "bytes", internalType: "bytes" },
|
|
1197
|
+
{ name: "gas", type: "uint256", internalType: "uint256" }
|
|
1470
1198
|
],
|
|
1471
|
-
|
|
1472
|
-
{
|
|
1473
|
-
|
|
1474
|
-
"type": "bool",
|
|
1475
|
-
"internalType": "bool"
|
|
1476
|
-
},
|
|
1477
|
-
{
|
|
1478
|
-
"name": "result",
|
|
1479
|
-
"type": "bytes",
|
|
1480
|
-
"internalType": "bytes"
|
|
1481
|
-
}
|
|
1199
|
+
outputs: [
|
|
1200
|
+
{ name: "success", type: "bool", internalType: "bool" },
|
|
1201
|
+
{ name: "result", type: "bytes", internalType: "bytes" }
|
|
1482
1202
|
],
|
|
1483
|
-
|
|
1203
|
+
stateMutability: "nonpayable"
|
|
1484
1204
|
},
|
|
1485
1205
|
{
|
|
1486
|
-
|
|
1487
|
-
|
|
1488
|
-
|
|
1489
|
-
{
|
|
1490
|
-
|
|
1491
|
-
|
|
1492
|
-
"internalType": "address"
|
|
1493
|
-
},
|
|
1494
|
-
{
|
|
1495
|
-
"name": "data",
|
|
1496
|
-
"type": "bytes",
|
|
1497
|
-
"internalType": "bytes"
|
|
1498
|
-
},
|
|
1499
|
-
{
|
|
1500
|
-
"name": "gas",
|
|
1501
|
-
"type": "uint256",
|
|
1502
|
-
"internalType": "uint256"
|
|
1503
|
-
}
|
|
1206
|
+
type: "function",
|
|
1207
|
+
name: "simulateCallAndRevert",
|
|
1208
|
+
inputs: [
|
|
1209
|
+
{ name: "target", type: "address", internalType: "address" },
|
|
1210
|
+
{ name: "data", type: "bytes", internalType: "bytes" },
|
|
1211
|
+
{ name: "gas", type: "uint256", internalType: "uint256" }
|
|
1504
1212
|
],
|
|
1505
|
-
|
|
1506
|
-
|
|
1213
|
+
outputs: [],
|
|
1214
|
+
stateMutability: "nonpayable"
|
|
1507
1215
|
},
|
|
1508
1216
|
{
|
|
1509
|
-
|
|
1510
|
-
|
|
1511
|
-
|
|
1217
|
+
type: "function",
|
|
1218
|
+
name: "simulateCallData",
|
|
1219
|
+
inputs: [
|
|
1512
1220
|
{
|
|
1513
|
-
|
|
1514
|
-
|
|
1515
|
-
|
|
1516
|
-
|
|
1221
|
+
name: "queuedUserOps",
|
|
1222
|
+
type: "tuple[]",
|
|
1223
|
+
internalType: "struct SimulationArgs[]",
|
|
1224
|
+
components: [
|
|
1517
1225
|
{
|
|
1518
|
-
|
|
1519
|
-
|
|
1520
|
-
|
|
1226
|
+
name: "op",
|
|
1227
|
+
type: "tuple",
|
|
1228
|
+
internalType: "struct PackedUserOperation",
|
|
1229
|
+
components: [
|
|
1230
|
+
{
|
|
1231
|
+
name: "sender",
|
|
1232
|
+
type: "address",
|
|
1233
|
+
internalType: "address"
|
|
1234
|
+
},
|
|
1235
|
+
{
|
|
1236
|
+
name: "nonce",
|
|
1237
|
+
type: "uint256",
|
|
1238
|
+
internalType: "uint256"
|
|
1239
|
+
},
|
|
1240
|
+
{
|
|
1241
|
+
name: "initCode",
|
|
1242
|
+
type: "bytes",
|
|
1243
|
+
internalType: "bytes"
|
|
1244
|
+
},
|
|
1245
|
+
{
|
|
1246
|
+
name: "callData",
|
|
1247
|
+
type: "bytes",
|
|
1248
|
+
internalType: "bytes"
|
|
1249
|
+
},
|
|
1250
|
+
{
|
|
1251
|
+
name: "accountGasLimits",
|
|
1252
|
+
type: "bytes32",
|
|
1253
|
+
internalType: "bytes32"
|
|
1254
|
+
},
|
|
1255
|
+
{
|
|
1256
|
+
name: "preVerificationGas",
|
|
1257
|
+
type: "uint256",
|
|
1258
|
+
internalType: "uint256"
|
|
1259
|
+
},
|
|
1260
|
+
{
|
|
1261
|
+
name: "gasFees",
|
|
1262
|
+
type: "bytes32",
|
|
1263
|
+
internalType: "bytes32"
|
|
1264
|
+
},
|
|
1265
|
+
{
|
|
1266
|
+
name: "paymasterAndData",
|
|
1267
|
+
type: "bytes",
|
|
1268
|
+
internalType: "bytes"
|
|
1269
|
+
},
|
|
1270
|
+
{
|
|
1271
|
+
name: "signature",
|
|
1272
|
+
type: "bytes",
|
|
1273
|
+
internalType: "bytes"
|
|
1274
|
+
}
|
|
1275
|
+
]
|
|
1276
|
+
},
|
|
1277
|
+
{
|
|
1278
|
+
name: "target",
|
|
1279
|
+
type: "address",
|
|
1280
|
+
internalType: "address"
|
|
1521
1281
|
},
|
|
1522
1282
|
{
|
|
1523
|
-
|
|
1524
|
-
|
|
1525
|
-
|
|
1283
|
+
name: "targetCallData",
|
|
1284
|
+
type: "bytes",
|
|
1285
|
+
internalType: "bytes"
|
|
1286
|
+
}
|
|
1287
|
+
]
|
|
1288
|
+
},
|
|
1289
|
+
{
|
|
1290
|
+
name: "targetUserOp",
|
|
1291
|
+
type: "tuple",
|
|
1292
|
+
internalType: "struct SimulationArgs",
|
|
1293
|
+
components: [
|
|
1294
|
+
{
|
|
1295
|
+
name: "op",
|
|
1296
|
+
type: "tuple",
|
|
1297
|
+
internalType: "struct PackedUserOperation",
|
|
1298
|
+
components: [
|
|
1299
|
+
{
|
|
1300
|
+
name: "sender",
|
|
1301
|
+
type: "address",
|
|
1302
|
+
internalType: "address"
|
|
1303
|
+
},
|
|
1304
|
+
{
|
|
1305
|
+
name: "nonce",
|
|
1306
|
+
type: "uint256",
|
|
1307
|
+
internalType: "uint256"
|
|
1308
|
+
},
|
|
1309
|
+
{
|
|
1310
|
+
name: "initCode",
|
|
1311
|
+
type: "bytes",
|
|
1312
|
+
internalType: "bytes"
|
|
1313
|
+
},
|
|
1314
|
+
{
|
|
1315
|
+
name: "callData",
|
|
1316
|
+
type: "bytes",
|
|
1317
|
+
internalType: "bytes"
|
|
1318
|
+
},
|
|
1319
|
+
{
|
|
1320
|
+
name: "accountGasLimits",
|
|
1321
|
+
type: "bytes32",
|
|
1322
|
+
internalType: "bytes32"
|
|
1323
|
+
},
|
|
1324
|
+
{
|
|
1325
|
+
name: "preVerificationGas",
|
|
1326
|
+
type: "uint256",
|
|
1327
|
+
internalType: "uint256"
|
|
1328
|
+
},
|
|
1329
|
+
{
|
|
1330
|
+
name: "gasFees",
|
|
1331
|
+
type: "bytes32",
|
|
1332
|
+
internalType: "bytes32"
|
|
1333
|
+
},
|
|
1334
|
+
{
|
|
1335
|
+
name: "paymasterAndData",
|
|
1336
|
+
type: "bytes",
|
|
1337
|
+
internalType: "bytes"
|
|
1338
|
+
},
|
|
1339
|
+
{
|
|
1340
|
+
name: "signature",
|
|
1341
|
+
type: "bytes",
|
|
1342
|
+
internalType: "bytes"
|
|
1343
|
+
}
|
|
1344
|
+
]
|
|
1526
1345
|
},
|
|
1527
1346
|
{
|
|
1528
|
-
|
|
1529
|
-
|
|
1530
|
-
|
|
1347
|
+
name: "target",
|
|
1348
|
+
type: "address",
|
|
1349
|
+
internalType: "address"
|
|
1531
1350
|
},
|
|
1532
1351
|
{
|
|
1533
|
-
|
|
1534
|
-
|
|
1535
|
-
|
|
1352
|
+
name: "targetCallData",
|
|
1353
|
+
type: "bytes",
|
|
1354
|
+
internalType: "bytes"
|
|
1355
|
+
}
|
|
1356
|
+
]
|
|
1357
|
+
},
|
|
1358
|
+
{ name: "entryPoint", type: "address", internalType: "address" },
|
|
1359
|
+
{ name: "initialMinGas", type: "uint256", internalType: "uint256" },
|
|
1360
|
+
{
|
|
1361
|
+
name: "toleranceDelta",
|
|
1362
|
+
type: "uint256",
|
|
1363
|
+
internalType: "uint256"
|
|
1364
|
+
},
|
|
1365
|
+
{ name: "gasAllowance", type: "uint256", internalType: "uint256" }
|
|
1366
|
+
],
|
|
1367
|
+
outputs: [
|
|
1368
|
+
{
|
|
1369
|
+
name: "",
|
|
1370
|
+
type: "tuple",
|
|
1371
|
+
internalType: "struct IEntryPointSimulations.TargetCallResult",
|
|
1372
|
+
components: [
|
|
1373
|
+
{
|
|
1374
|
+
name: "gasUsed",
|
|
1375
|
+
type: "uint256",
|
|
1376
|
+
internalType: "uint256"
|
|
1536
1377
|
},
|
|
1378
|
+
{ name: "success", type: "bool", internalType: "bool" },
|
|
1379
|
+
{ name: "returnData", type: "bytes", internalType: "bytes" }
|
|
1380
|
+
]
|
|
1381
|
+
}
|
|
1382
|
+
],
|
|
1383
|
+
stateMutability: "nonpayable"
|
|
1384
|
+
},
|
|
1385
|
+
{
|
|
1386
|
+
type: "function",
|
|
1387
|
+
name: "simulateHandleOp",
|
|
1388
|
+
inputs: [
|
|
1389
|
+
{
|
|
1390
|
+
name: "op",
|
|
1391
|
+
type: "tuple",
|
|
1392
|
+
internalType: "struct PackedUserOperation",
|
|
1393
|
+
components: [
|
|
1537
1394
|
{
|
|
1538
|
-
|
|
1539
|
-
|
|
1540
|
-
|
|
1395
|
+
name: "sender",
|
|
1396
|
+
type: "address",
|
|
1397
|
+
internalType: "address"
|
|
1541
1398
|
},
|
|
1399
|
+
{ name: "nonce", type: "uint256", internalType: "uint256" },
|
|
1400
|
+
{ name: "initCode", type: "bytes", internalType: "bytes" },
|
|
1401
|
+
{ name: "callData", type: "bytes", internalType: "bytes" },
|
|
1542
1402
|
{
|
|
1543
|
-
|
|
1544
|
-
|
|
1545
|
-
|
|
1403
|
+
name: "accountGasLimits",
|
|
1404
|
+
type: "bytes32",
|
|
1405
|
+
internalType: "bytes32"
|
|
1546
1406
|
},
|
|
1547
1407
|
{
|
|
1548
|
-
|
|
1549
|
-
|
|
1550
|
-
|
|
1408
|
+
name: "preVerificationGas",
|
|
1409
|
+
type: "uint256",
|
|
1410
|
+
internalType: "uint256"
|
|
1551
1411
|
},
|
|
1552
1412
|
{
|
|
1553
|
-
|
|
1554
|
-
|
|
1555
|
-
|
|
1413
|
+
name: "gasFees",
|
|
1414
|
+
type: "bytes32",
|
|
1415
|
+
internalType: "bytes32"
|
|
1556
1416
|
},
|
|
1557
1417
|
{
|
|
1558
|
-
|
|
1559
|
-
|
|
1560
|
-
|
|
1561
|
-
}
|
|
1418
|
+
name: "paymasterAndData",
|
|
1419
|
+
type: "bytes",
|
|
1420
|
+
internalType: "bytes"
|
|
1421
|
+
},
|
|
1422
|
+
{ name: "signature", type: "bytes", internalType: "bytes" }
|
|
1562
1423
|
]
|
|
1563
1424
|
}
|
|
1564
1425
|
],
|
|
1565
|
-
|
|
1426
|
+
outputs: [
|
|
1566
1427
|
{
|
|
1567
|
-
|
|
1568
|
-
|
|
1569
|
-
|
|
1570
|
-
|
|
1571
|
-
{
|
|
1572
|
-
"name": "preOpGas",
|
|
1573
|
-
"type": "uint256",
|
|
1574
|
-
"internalType": "uint256"
|
|
1575
|
-
},
|
|
1428
|
+
name: "",
|
|
1429
|
+
type: "tuple",
|
|
1430
|
+
internalType: "struct IEntryPointSimulations.ExecutionResult",
|
|
1431
|
+
components: [
|
|
1576
1432
|
{
|
|
1577
|
-
|
|
1578
|
-
|
|
1579
|
-
|
|
1433
|
+
name: "preOpGas",
|
|
1434
|
+
type: "uint256",
|
|
1435
|
+
internalType: "uint256"
|
|
1580
1436
|
},
|
|
1437
|
+
{ name: "paid", type: "uint256", internalType: "uint256" },
|
|
1581
1438
|
{
|
|
1582
|
-
|
|
1583
|
-
|
|
1584
|
-
|
|
1439
|
+
name: "accountValidationData",
|
|
1440
|
+
type: "uint256",
|
|
1441
|
+
internalType: "uint256"
|
|
1585
1442
|
},
|
|
1586
1443
|
{
|
|
1587
|
-
|
|
1588
|
-
|
|
1589
|
-
|
|
1444
|
+
name: "paymasterValidationData",
|
|
1445
|
+
type: "uint256",
|
|
1446
|
+
internalType: "uint256"
|
|
1590
1447
|
},
|
|
1591
1448
|
{
|
|
1592
|
-
|
|
1593
|
-
|
|
1594
|
-
|
|
1449
|
+
name: "paymasterVerificationGasLimit",
|
|
1450
|
+
type: "uint256",
|
|
1451
|
+
internalType: "uint256"
|
|
1595
1452
|
},
|
|
1596
1453
|
{
|
|
1597
|
-
|
|
1598
|
-
|
|
1599
|
-
|
|
1454
|
+
name: "paymasterPostOpGasLimit",
|
|
1455
|
+
type: "uint256",
|
|
1456
|
+
internalType: "uint256"
|
|
1600
1457
|
},
|
|
1601
1458
|
{
|
|
1602
|
-
|
|
1603
|
-
|
|
1604
|
-
|
|
1459
|
+
name: "targetSuccess",
|
|
1460
|
+
type: "bool",
|
|
1461
|
+
internalType: "bool"
|
|
1605
1462
|
},
|
|
1606
1463
|
{
|
|
1607
|
-
|
|
1608
|
-
|
|
1609
|
-
|
|
1464
|
+
name: "targetResult",
|
|
1465
|
+
type: "bytes",
|
|
1466
|
+
internalType: "bytes"
|
|
1610
1467
|
}
|
|
1611
1468
|
]
|
|
1612
1469
|
}
|
|
1613
1470
|
],
|
|
1614
|
-
|
|
1471
|
+
stateMutability: "nonpayable"
|
|
1615
1472
|
},
|
|
1616
1473
|
{
|
|
1617
|
-
|
|
1618
|
-
|
|
1619
|
-
|
|
1474
|
+
type: "function",
|
|
1475
|
+
name: "simulateHandleOpBulk",
|
|
1476
|
+
inputs: [
|
|
1620
1477
|
{
|
|
1621
|
-
|
|
1622
|
-
|
|
1623
|
-
|
|
1624
|
-
|
|
1625
|
-
{
|
|
1626
|
-
"name": "sender",
|
|
1627
|
-
"type": "address",
|
|
1628
|
-
"internalType": "address"
|
|
1629
|
-
},
|
|
1630
|
-
{
|
|
1631
|
-
"name": "nonce",
|
|
1632
|
-
"type": "uint256",
|
|
1633
|
-
"internalType": "uint256"
|
|
1634
|
-
},
|
|
1478
|
+
name: "ops",
|
|
1479
|
+
type: "tuple[]",
|
|
1480
|
+
internalType: "struct PackedUserOperation[]",
|
|
1481
|
+
components: [
|
|
1635
1482
|
{
|
|
1636
|
-
|
|
1637
|
-
|
|
1638
|
-
|
|
1483
|
+
name: "sender",
|
|
1484
|
+
type: "address",
|
|
1485
|
+
internalType: "address"
|
|
1639
1486
|
},
|
|
1487
|
+
{ name: "nonce", type: "uint256", internalType: "uint256" },
|
|
1488
|
+
{ name: "initCode", type: "bytes", internalType: "bytes" },
|
|
1489
|
+
{ name: "callData", type: "bytes", internalType: "bytes" },
|
|
1640
1490
|
{
|
|
1641
|
-
|
|
1642
|
-
|
|
1643
|
-
|
|
1491
|
+
name: "accountGasLimits",
|
|
1492
|
+
type: "bytes32",
|
|
1493
|
+
internalType: "bytes32"
|
|
1644
1494
|
},
|
|
1645
1495
|
{
|
|
1646
|
-
|
|
1647
|
-
|
|
1648
|
-
|
|
1496
|
+
name: "preVerificationGas",
|
|
1497
|
+
type: "uint256",
|
|
1498
|
+
internalType: "uint256"
|
|
1649
1499
|
},
|
|
1650
1500
|
{
|
|
1651
|
-
|
|
1652
|
-
|
|
1653
|
-
|
|
1501
|
+
name: "gasFees",
|
|
1502
|
+
type: "bytes32",
|
|
1503
|
+
internalType: "bytes32"
|
|
1654
1504
|
},
|
|
1655
1505
|
{
|
|
1656
|
-
|
|
1657
|
-
|
|
1658
|
-
|
|
1506
|
+
name: "paymasterAndData",
|
|
1507
|
+
type: "bytes",
|
|
1508
|
+
internalType: "bytes"
|
|
1659
1509
|
},
|
|
1660
|
-
{
|
|
1661
|
-
"name": "paymasterAndData",
|
|
1662
|
-
"type": "bytes",
|
|
1663
|
-
"internalType": "bytes"
|
|
1664
|
-
},
|
|
1665
|
-
{
|
|
1666
|
-
"name": "signature",
|
|
1667
|
-
"type": "bytes",
|
|
1668
|
-
"internalType": "bytes"
|
|
1669
|
-
}
|
|
1510
|
+
{ name: "signature", type: "bytes", internalType: "bytes" }
|
|
1670
1511
|
]
|
|
1671
1512
|
}
|
|
1672
1513
|
],
|
|
1673
|
-
|
|
1514
|
+
outputs: [
|
|
1674
1515
|
{
|
|
1675
|
-
|
|
1676
|
-
|
|
1677
|
-
|
|
1678
|
-
|
|
1516
|
+
name: "",
|
|
1517
|
+
type: "tuple[]",
|
|
1518
|
+
internalType: "struct IEntryPointSimulations.ExecutionResult[]",
|
|
1519
|
+
components: [
|
|
1679
1520
|
{
|
|
1680
|
-
|
|
1681
|
-
|
|
1682
|
-
|
|
1521
|
+
name: "preOpGas",
|
|
1522
|
+
type: "uint256",
|
|
1523
|
+
internalType: "uint256"
|
|
1683
1524
|
},
|
|
1525
|
+
{ name: "paid", type: "uint256", internalType: "uint256" },
|
|
1684
1526
|
{
|
|
1685
|
-
|
|
1686
|
-
|
|
1687
|
-
|
|
1527
|
+
name: "accountValidationData",
|
|
1528
|
+
type: "uint256",
|
|
1529
|
+
internalType: "uint256"
|
|
1688
1530
|
},
|
|
1689
1531
|
{
|
|
1690
|
-
|
|
1691
|
-
|
|
1692
|
-
|
|
1532
|
+
name: "paymasterValidationData",
|
|
1533
|
+
type: "uint256",
|
|
1534
|
+
internalType: "uint256"
|
|
1693
1535
|
},
|
|
1694
1536
|
{
|
|
1695
|
-
|
|
1696
|
-
|
|
1697
|
-
|
|
1537
|
+
name: "paymasterVerificationGasLimit",
|
|
1538
|
+
type: "uint256",
|
|
1539
|
+
internalType: "uint256"
|
|
1698
1540
|
},
|
|
1699
1541
|
{
|
|
1700
|
-
|
|
1701
|
-
|
|
1702
|
-
|
|
1542
|
+
name: "paymasterPostOpGasLimit",
|
|
1543
|
+
type: "uint256",
|
|
1544
|
+
internalType: "uint256"
|
|
1703
1545
|
},
|
|
1704
1546
|
{
|
|
1705
|
-
|
|
1706
|
-
|
|
1707
|
-
|
|
1547
|
+
name: "targetSuccess",
|
|
1548
|
+
type: "bool",
|
|
1549
|
+
internalType: "bool"
|
|
1708
1550
|
},
|
|
1709
1551
|
{
|
|
1710
|
-
|
|
1711
|
-
|
|
1712
|
-
|
|
1713
|
-
},
|
|
1714
|
-
{
|
|
1715
|
-
"name": "targetResult",
|
|
1716
|
-
"type": "bytes",
|
|
1717
|
-
"internalType": "bytes"
|
|
1552
|
+
name: "targetResult",
|
|
1553
|
+
type: "bytes",
|
|
1554
|
+
internalType: "bytes"
|
|
1718
1555
|
}
|
|
1719
1556
|
]
|
|
1720
1557
|
}
|
|
1721
1558
|
],
|
|
1722
|
-
|
|
1559
|
+
stateMutability: "nonpayable"
|
|
1723
1560
|
},
|
|
1724
1561
|
{
|
|
1725
|
-
|
|
1726
|
-
|
|
1727
|
-
|
|
1562
|
+
type: "function",
|
|
1563
|
+
name: "simulateHandleOpLast",
|
|
1564
|
+
inputs: [
|
|
1728
1565
|
{
|
|
1729
|
-
|
|
1730
|
-
|
|
1731
|
-
|
|
1732
|
-
|
|
1733
|
-
{
|
|
1734
|
-
"name": "sender",
|
|
1735
|
-
"type": "address",
|
|
1736
|
-
"internalType": "address"
|
|
1737
|
-
},
|
|
1738
|
-
{
|
|
1739
|
-
"name": "nonce",
|
|
1740
|
-
"type": "uint256",
|
|
1741
|
-
"internalType": "uint256"
|
|
1742
|
-
},
|
|
1743
|
-
{
|
|
1744
|
-
"name": "initCode",
|
|
1745
|
-
"type": "bytes",
|
|
1746
|
-
"internalType": "bytes"
|
|
1747
|
-
},
|
|
1566
|
+
name: "ops",
|
|
1567
|
+
type: "tuple[]",
|
|
1568
|
+
internalType: "struct PackedUserOperation[]",
|
|
1569
|
+
components: [
|
|
1748
1570
|
{
|
|
1749
|
-
|
|
1750
|
-
|
|
1751
|
-
|
|
1571
|
+
name: "sender",
|
|
1572
|
+
type: "address",
|
|
1573
|
+
internalType: "address"
|
|
1752
1574
|
},
|
|
1575
|
+
{ name: "nonce", type: "uint256", internalType: "uint256" },
|
|
1576
|
+
{ name: "initCode", type: "bytes", internalType: "bytes" },
|
|
1577
|
+
{ name: "callData", type: "bytes", internalType: "bytes" },
|
|
1753
1578
|
{
|
|
1754
|
-
|
|
1755
|
-
|
|
1756
|
-
|
|
1579
|
+
name: "accountGasLimits",
|
|
1580
|
+
type: "bytes32",
|
|
1581
|
+
internalType: "bytes32"
|
|
1757
1582
|
},
|
|
1758
1583
|
{
|
|
1759
|
-
|
|
1760
|
-
|
|
1761
|
-
|
|
1584
|
+
name: "preVerificationGas",
|
|
1585
|
+
type: "uint256",
|
|
1586
|
+
internalType: "uint256"
|
|
1762
1587
|
},
|
|
1763
1588
|
{
|
|
1764
|
-
|
|
1765
|
-
|
|
1766
|
-
|
|
1589
|
+
name: "gasFees",
|
|
1590
|
+
type: "bytes32",
|
|
1591
|
+
internalType: "bytes32"
|
|
1767
1592
|
},
|
|
1768
1593
|
{
|
|
1769
|
-
|
|
1770
|
-
|
|
1771
|
-
|
|
1594
|
+
name: "paymasterAndData",
|
|
1595
|
+
type: "bytes",
|
|
1596
|
+
internalType: "bytes"
|
|
1772
1597
|
},
|
|
1773
|
-
{
|
|
1774
|
-
"name": "signature",
|
|
1775
|
-
"type": "bytes",
|
|
1776
|
-
"internalType": "bytes"
|
|
1777
|
-
}
|
|
1598
|
+
{ name: "signature", type: "bytes", internalType: "bytes" }
|
|
1778
1599
|
]
|
|
1779
1600
|
}
|
|
1780
1601
|
],
|
|
1781
|
-
|
|
1602
|
+
outputs: [
|
|
1782
1603
|
{
|
|
1783
|
-
|
|
1784
|
-
|
|
1785
|
-
|
|
1786
|
-
|
|
1604
|
+
name: "",
|
|
1605
|
+
type: "tuple",
|
|
1606
|
+
internalType: "struct IEntryPointSimulations.ExecutionResult",
|
|
1607
|
+
components: [
|
|
1787
1608
|
{
|
|
1788
|
-
|
|
1789
|
-
|
|
1790
|
-
|
|
1609
|
+
name: "preOpGas",
|
|
1610
|
+
type: "uint256",
|
|
1611
|
+
internalType: "uint256"
|
|
1791
1612
|
},
|
|
1613
|
+
{ name: "paid", type: "uint256", internalType: "uint256" },
|
|
1792
1614
|
{
|
|
1793
|
-
|
|
1794
|
-
|
|
1795
|
-
|
|
1615
|
+
name: "accountValidationData",
|
|
1616
|
+
type: "uint256",
|
|
1617
|
+
internalType: "uint256"
|
|
1796
1618
|
},
|
|
1797
1619
|
{
|
|
1798
|
-
|
|
1799
|
-
|
|
1800
|
-
|
|
1620
|
+
name: "paymasterValidationData",
|
|
1621
|
+
type: "uint256",
|
|
1622
|
+
internalType: "uint256"
|
|
1801
1623
|
},
|
|
1802
1624
|
{
|
|
1803
|
-
|
|
1804
|
-
|
|
1805
|
-
|
|
1625
|
+
name: "paymasterVerificationGasLimit",
|
|
1626
|
+
type: "uint256",
|
|
1627
|
+
internalType: "uint256"
|
|
1806
1628
|
},
|
|
1807
1629
|
{
|
|
1808
|
-
|
|
1809
|
-
|
|
1810
|
-
|
|
1630
|
+
name: "paymasterPostOpGasLimit",
|
|
1631
|
+
type: "uint256",
|
|
1632
|
+
internalType: "uint256"
|
|
1811
1633
|
},
|
|
1812
1634
|
{
|
|
1813
|
-
|
|
1814
|
-
|
|
1815
|
-
|
|
1635
|
+
name: "targetSuccess",
|
|
1636
|
+
type: "bool",
|
|
1637
|
+
internalType: "bool"
|
|
1816
1638
|
},
|
|
1817
1639
|
{
|
|
1818
|
-
|
|
1819
|
-
|
|
1820
|
-
|
|
1821
|
-
},
|
|
1822
|
-
{
|
|
1823
|
-
"name": "targetResult",
|
|
1824
|
-
"type": "bytes",
|
|
1825
|
-
"internalType": "bytes"
|
|
1640
|
+
name: "targetResult",
|
|
1641
|
+
type: "bytes",
|
|
1642
|
+
internalType: "bytes"
|
|
1826
1643
|
}
|
|
1827
1644
|
]
|
|
1828
1645
|
}
|
|
1829
1646
|
],
|
|
1830
|
-
|
|
1647
|
+
stateMutability: "nonpayable"
|
|
1831
1648
|
},
|
|
1832
1649
|
{
|
|
1833
|
-
|
|
1834
|
-
|
|
1835
|
-
|
|
1650
|
+
type: "function",
|
|
1651
|
+
name: "simulateValidation",
|
|
1652
|
+
inputs: [
|
|
1836
1653
|
{
|
|
1837
|
-
|
|
1838
|
-
|
|
1839
|
-
|
|
1840
|
-
|
|
1654
|
+
name: "userOp",
|
|
1655
|
+
type: "tuple",
|
|
1656
|
+
internalType: "struct PackedUserOperation",
|
|
1657
|
+
components: [
|
|
1841
1658
|
{
|
|
1842
|
-
|
|
1843
|
-
|
|
1844
|
-
|
|
1659
|
+
name: "sender",
|
|
1660
|
+
type: "address",
|
|
1661
|
+
internalType: "address"
|
|
1845
1662
|
},
|
|
1663
|
+
{ name: "nonce", type: "uint256", internalType: "uint256" },
|
|
1664
|
+
{ name: "initCode", type: "bytes", internalType: "bytes" },
|
|
1665
|
+
{ name: "callData", type: "bytes", internalType: "bytes" },
|
|
1846
1666
|
{
|
|
1847
|
-
|
|
1848
|
-
|
|
1849
|
-
|
|
1667
|
+
name: "accountGasLimits",
|
|
1668
|
+
type: "bytes32",
|
|
1669
|
+
internalType: "bytes32"
|
|
1850
1670
|
},
|
|
1851
1671
|
{
|
|
1852
|
-
|
|
1853
|
-
|
|
1854
|
-
|
|
1672
|
+
name: "preVerificationGas",
|
|
1673
|
+
type: "uint256",
|
|
1674
|
+
internalType: "uint256"
|
|
1855
1675
|
},
|
|
1856
1676
|
{
|
|
1857
|
-
|
|
1858
|
-
|
|
1859
|
-
|
|
1677
|
+
name: "gasFees",
|
|
1678
|
+
type: "bytes32",
|
|
1679
|
+
internalType: "bytes32"
|
|
1860
1680
|
},
|
|
1861
1681
|
{
|
|
1862
|
-
|
|
1863
|
-
|
|
1864
|
-
|
|
1682
|
+
name: "paymasterAndData",
|
|
1683
|
+
type: "bytes",
|
|
1684
|
+
internalType: "bytes"
|
|
1865
1685
|
},
|
|
1866
|
-
{
|
|
1867
|
-
"name": "preVerificationGas",
|
|
1868
|
-
"type": "uint256",
|
|
1869
|
-
"internalType": "uint256"
|
|
1870
|
-
},
|
|
1871
|
-
{
|
|
1872
|
-
"name": "gasFees",
|
|
1873
|
-
"type": "bytes32",
|
|
1874
|
-
"internalType": "bytes32"
|
|
1875
|
-
},
|
|
1876
|
-
{
|
|
1877
|
-
"name": "paymasterAndData",
|
|
1878
|
-
"type": "bytes",
|
|
1879
|
-
"internalType": "bytes"
|
|
1880
|
-
},
|
|
1881
|
-
{
|
|
1882
|
-
"name": "signature",
|
|
1883
|
-
"type": "bytes",
|
|
1884
|
-
"internalType": "bytes"
|
|
1885
|
-
}
|
|
1686
|
+
{ name: "signature", type: "bytes", internalType: "bytes" }
|
|
1886
1687
|
]
|
|
1887
1688
|
}
|
|
1888
1689
|
],
|
|
1889
|
-
|
|
1690
|
+
outputs: [
|
|
1890
1691
|
{
|
|
1891
|
-
|
|
1892
|
-
|
|
1893
|
-
|
|
1894
|
-
|
|
1692
|
+
name: "",
|
|
1693
|
+
type: "tuple",
|
|
1694
|
+
internalType: "struct IEntryPointSimulations.ValidationResult",
|
|
1695
|
+
components: [
|
|
1895
1696
|
{
|
|
1896
|
-
|
|
1897
|
-
|
|
1898
|
-
|
|
1899
|
-
|
|
1697
|
+
name: "returnInfo",
|
|
1698
|
+
type: "tuple",
|
|
1699
|
+
internalType: "struct IEntryPoint.ReturnInfo",
|
|
1700
|
+
components: [
|
|
1900
1701
|
{
|
|
1901
|
-
|
|
1902
|
-
|
|
1903
|
-
|
|
1702
|
+
name: "preOpGas",
|
|
1703
|
+
type: "uint256",
|
|
1704
|
+
internalType: "uint256"
|
|
1904
1705
|
},
|
|
1905
1706
|
{
|
|
1906
|
-
|
|
1907
|
-
|
|
1908
|
-
|
|
1707
|
+
name: "prefund",
|
|
1708
|
+
type: "uint256",
|
|
1709
|
+
internalType: "uint256"
|
|
1909
1710
|
},
|
|
1910
1711
|
{
|
|
1911
|
-
|
|
1912
|
-
|
|
1913
|
-
|
|
1712
|
+
name: "accountValidationData",
|
|
1713
|
+
type: "uint256",
|
|
1714
|
+
internalType: "uint256"
|
|
1914
1715
|
},
|
|
1915
1716
|
{
|
|
1916
|
-
|
|
1917
|
-
|
|
1918
|
-
|
|
1717
|
+
name: "paymasterValidationData",
|
|
1718
|
+
type: "uint256",
|
|
1719
|
+
internalType: "uint256"
|
|
1919
1720
|
},
|
|
1920
1721
|
{
|
|
1921
|
-
|
|
1922
|
-
|
|
1923
|
-
|
|
1722
|
+
name: "paymasterContext",
|
|
1723
|
+
type: "bytes",
|
|
1724
|
+
internalType: "bytes"
|
|
1924
1725
|
}
|
|
1925
1726
|
]
|
|
1926
1727
|
},
|
|
1927
1728
|
{
|
|
1928
|
-
|
|
1929
|
-
|
|
1930
|
-
|
|
1931
|
-
|
|
1729
|
+
name: "senderInfo",
|
|
1730
|
+
type: "tuple",
|
|
1731
|
+
internalType: "struct IStakeManager.StakeInfo",
|
|
1732
|
+
components: [
|
|
1932
1733
|
{
|
|
1933
|
-
|
|
1934
|
-
|
|
1935
|
-
|
|
1734
|
+
name: "stake",
|
|
1735
|
+
type: "uint256",
|
|
1736
|
+
internalType: "uint256"
|
|
1936
1737
|
},
|
|
1937
1738
|
{
|
|
1938
|
-
|
|
1939
|
-
|
|
1940
|
-
|
|
1739
|
+
name: "unstakeDelaySec",
|
|
1740
|
+
type: "uint256",
|
|
1741
|
+
internalType: "uint256"
|
|
1941
1742
|
}
|
|
1942
1743
|
]
|
|
1943
1744
|
},
|
|
1944
1745
|
{
|
|
1945
|
-
|
|
1946
|
-
|
|
1947
|
-
|
|
1948
|
-
|
|
1746
|
+
name: "factoryInfo",
|
|
1747
|
+
type: "tuple",
|
|
1748
|
+
internalType: "struct IStakeManager.StakeInfo",
|
|
1749
|
+
components: [
|
|
1949
1750
|
{
|
|
1950
|
-
|
|
1951
|
-
|
|
1952
|
-
|
|
1751
|
+
name: "stake",
|
|
1752
|
+
type: "uint256",
|
|
1753
|
+
internalType: "uint256"
|
|
1953
1754
|
},
|
|
1954
1755
|
{
|
|
1955
|
-
|
|
1956
|
-
|
|
1957
|
-
|
|
1756
|
+
name: "unstakeDelaySec",
|
|
1757
|
+
type: "uint256",
|
|
1758
|
+
internalType: "uint256"
|
|
1958
1759
|
}
|
|
1959
1760
|
]
|
|
1960
1761
|
},
|
|
1961
1762
|
{
|
|
1962
|
-
|
|
1963
|
-
|
|
1964
|
-
|
|
1965
|
-
|
|
1763
|
+
name: "paymasterInfo",
|
|
1764
|
+
type: "tuple",
|
|
1765
|
+
internalType: "struct IStakeManager.StakeInfo",
|
|
1766
|
+
components: [
|
|
1966
1767
|
{
|
|
1967
|
-
|
|
1968
|
-
|
|
1969
|
-
|
|
1768
|
+
name: "stake",
|
|
1769
|
+
type: "uint256",
|
|
1770
|
+
internalType: "uint256"
|
|
1970
1771
|
},
|
|
1971
1772
|
{
|
|
1972
|
-
|
|
1973
|
-
|
|
1974
|
-
|
|
1773
|
+
name: "unstakeDelaySec",
|
|
1774
|
+
type: "uint256",
|
|
1775
|
+
internalType: "uint256"
|
|
1975
1776
|
}
|
|
1976
1777
|
]
|
|
1977
1778
|
},
|
|
1978
1779
|
{
|
|
1979
|
-
|
|
1980
|
-
|
|
1981
|
-
|
|
1982
|
-
|
|
1780
|
+
name: "aggregatorInfo",
|
|
1781
|
+
type: "tuple",
|
|
1782
|
+
internalType: "struct IEntryPoint.AggregatorStakeInfo",
|
|
1783
|
+
components: [
|
|
1983
1784
|
{
|
|
1984
|
-
|
|
1985
|
-
|
|
1986
|
-
|
|
1785
|
+
name: "aggregator",
|
|
1786
|
+
type: "address",
|
|
1787
|
+
internalType: "address"
|
|
1987
1788
|
},
|
|
1988
1789
|
{
|
|
1989
|
-
|
|
1990
|
-
|
|
1991
|
-
|
|
1992
|
-
|
|
1790
|
+
name: "stakeInfo",
|
|
1791
|
+
type: "tuple",
|
|
1792
|
+
internalType: "struct IStakeManager.StakeInfo",
|
|
1793
|
+
components: [
|
|
1993
1794
|
{
|
|
1994
|
-
|
|
1995
|
-
|
|
1996
|
-
|
|
1795
|
+
name: "stake",
|
|
1796
|
+
type: "uint256",
|
|
1797
|
+
internalType: "uint256"
|
|
1997
1798
|
},
|
|
1998
1799
|
{
|
|
1999
|
-
|
|
2000
|
-
|
|
2001
|
-
|
|
1800
|
+
name: "unstakeDelaySec",
|
|
1801
|
+
type: "uint256",
|
|
1802
|
+
internalType: "uint256"
|
|
2002
1803
|
}
|
|
2003
1804
|
]
|
|
2004
1805
|
}
|
|
@@ -2007,178 +1808,162 @@ exports.EntryPointV07SimulationsAbi = [
|
|
|
2007
1808
|
]
|
|
2008
1809
|
}
|
|
2009
1810
|
],
|
|
2010
|
-
|
|
1811
|
+
stateMutability: "nonpayable"
|
|
2011
1812
|
},
|
|
2012
1813
|
{
|
|
2013
|
-
|
|
2014
|
-
|
|
2015
|
-
|
|
1814
|
+
type: "function",
|
|
1815
|
+
name: "simulateValidationBulk",
|
|
1816
|
+
inputs: [
|
|
2016
1817
|
{
|
|
2017
|
-
|
|
2018
|
-
|
|
2019
|
-
|
|
2020
|
-
|
|
2021
|
-
{
|
|
2022
|
-
"name": "sender",
|
|
2023
|
-
"type": "address",
|
|
2024
|
-
"internalType": "address"
|
|
2025
|
-
},
|
|
2026
|
-
{
|
|
2027
|
-
"name": "nonce",
|
|
2028
|
-
"type": "uint256",
|
|
2029
|
-
"internalType": "uint256"
|
|
2030
|
-
},
|
|
1818
|
+
name: "userOps",
|
|
1819
|
+
type: "tuple[]",
|
|
1820
|
+
internalType: "struct PackedUserOperation[]",
|
|
1821
|
+
components: [
|
|
2031
1822
|
{
|
|
2032
|
-
|
|
2033
|
-
|
|
2034
|
-
|
|
1823
|
+
name: "sender",
|
|
1824
|
+
type: "address",
|
|
1825
|
+
internalType: "address"
|
|
2035
1826
|
},
|
|
1827
|
+
{ name: "nonce", type: "uint256", internalType: "uint256" },
|
|
1828
|
+
{ name: "initCode", type: "bytes", internalType: "bytes" },
|
|
1829
|
+
{ name: "callData", type: "bytes", internalType: "bytes" },
|
|
2036
1830
|
{
|
|
2037
|
-
|
|
2038
|
-
|
|
2039
|
-
|
|
1831
|
+
name: "accountGasLimits",
|
|
1832
|
+
type: "bytes32",
|
|
1833
|
+
internalType: "bytes32"
|
|
2040
1834
|
},
|
|
2041
1835
|
{
|
|
2042
|
-
|
|
2043
|
-
|
|
2044
|
-
|
|
1836
|
+
name: "preVerificationGas",
|
|
1837
|
+
type: "uint256",
|
|
1838
|
+
internalType: "uint256"
|
|
2045
1839
|
},
|
|
2046
1840
|
{
|
|
2047
|
-
|
|
2048
|
-
|
|
2049
|
-
|
|
1841
|
+
name: "gasFees",
|
|
1842
|
+
type: "bytes32",
|
|
1843
|
+
internalType: "bytes32"
|
|
2050
1844
|
},
|
|
2051
1845
|
{
|
|
2052
|
-
|
|
2053
|
-
|
|
2054
|
-
|
|
1846
|
+
name: "paymasterAndData",
|
|
1847
|
+
type: "bytes",
|
|
1848
|
+
internalType: "bytes"
|
|
2055
1849
|
},
|
|
2056
|
-
{
|
|
2057
|
-
"name": "paymasterAndData",
|
|
2058
|
-
"type": "bytes",
|
|
2059
|
-
"internalType": "bytes"
|
|
2060
|
-
},
|
|
2061
|
-
{
|
|
2062
|
-
"name": "signature",
|
|
2063
|
-
"type": "bytes",
|
|
2064
|
-
"internalType": "bytes"
|
|
2065
|
-
}
|
|
1850
|
+
{ name: "signature", type: "bytes", internalType: "bytes" }
|
|
2066
1851
|
]
|
|
2067
1852
|
}
|
|
2068
1853
|
],
|
|
2069
|
-
|
|
1854
|
+
outputs: [
|
|
2070
1855
|
{
|
|
2071
|
-
|
|
2072
|
-
|
|
2073
|
-
|
|
2074
|
-
|
|
1856
|
+
name: "",
|
|
1857
|
+
type: "tuple[]",
|
|
1858
|
+
internalType: "struct IEntryPointSimulations.ValidationResult[]",
|
|
1859
|
+
components: [
|
|
2075
1860
|
{
|
|
2076
|
-
|
|
2077
|
-
|
|
2078
|
-
|
|
2079
|
-
|
|
1861
|
+
name: "returnInfo",
|
|
1862
|
+
type: "tuple",
|
|
1863
|
+
internalType: "struct IEntryPoint.ReturnInfo",
|
|
1864
|
+
components: [
|
|
2080
1865
|
{
|
|
2081
|
-
|
|
2082
|
-
|
|
2083
|
-
|
|
1866
|
+
name: "preOpGas",
|
|
1867
|
+
type: "uint256",
|
|
1868
|
+
internalType: "uint256"
|
|
2084
1869
|
},
|
|
2085
1870
|
{
|
|
2086
|
-
|
|
2087
|
-
|
|
2088
|
-
|
|
1871
|
+
name: "prefund",
|
|
1872
|
+
type: "uint256",
|
|
1873
|
+
internalType: "uint256"
|
|
2089
1874
|
},
|
|
2090
1875
|
{
|
|
2091
|
-
|
|
2092
|
-
|
|
2093
|
-
|
|
1876
|
+
name: "accountValidationData",
|
|
1877
|
+
type: "uint256",
|
|
1878
|
+
internalType: "uint256"
|
|
2094
1879
|
},
|
|
2095
1880
|
{
|
|
2096
|
-
|
|
2097
|
-
|
|
2098
|
-
|
|
1881
|
+
name: "paymasterValidationData",
|
|
1882
|
+
type: "uint256",
|
|
1883
|
+
internalType: "uint256"
|
|
2099
1884
|
},
|
|
2100
1885
|
{
|
|
2101
|
-
|
|
2102
|
-
|
|
2103
|
-
|
|
1886
|
+
name: "paymasterContext",
|
|
1887
|
+
type: "bytes",
|
|
1888
|
+
internalType: "bytes"
|
|
2104
1889
|
}
|
|
2105
1890
|
]
|
|
2106
1891
|
},
|
|
2107
1892
|
{
|
|
2108
|
-
|
|
2109
|
-
|
|
2110
|
-
|
|
2111
|
-
|
|
1893
|
+
name: "senderInfo",
|
|
1894
|
+
type: "tuple",
|
|
1895
|
+
internalType: "struct IStakeManager.StakeInfo",
|
|
1896
|
+
components: [
|
|
2112
1897
|
{
|
|
2113
|
-
|
|
2114
|
-
|
|
2115
|
-
|
|
1898
|
+
name: "stake",
|
|
1899
|
+
type: "uint256",
|
|
1900
|
+
internalType: "uint256"
|
|
2116
1901
|
},
|
|
2117
1902
|
{
|
|
2118
|
-
|
|
2119
|
-
|
|
2120
|
-
|
|
1903
|
+
name: "unstakeDelaySec",
|
|
1904
|
+
type: "uint256",
|
|
1905
|
+
internalType: "uint256"
|
|
2121
1906
|
}
|
|
2122
1907
|
]
|
|
2123
1908
|
},
|
|
2124
1909
|
{
|
|
2125
|
-
|
|
2126
|
-
|
|
2127
|
-
|
|
2128
|
-
|
|
1910
|
+
name: "factoryInfo",
|
|
1911
|
+
type: "tuple",
|
|
1912
|
+
internalType: "struct IStakeManager.StakeInfo",
|
|
1913
|
+
components: [
|
|
2129
1914
|
{
|
|
2130
|
-
|
|
2131
|
-
|
|
2132
|
-
|
|
1915
|
+
name: "stake",
|
|
1916
|
+
type: "uint256",
|
|
1917
|
+
internalType: "uint256"
|
|
2133
1918
|
},
|
|
2134
1919
|
{
|
|
2135
|
-
|
|
2136
|
-
|
|
2137
|
-
|
|
1920
|
+
name: "unstakeDelaySec",
|
|
1921
|
+
type: "uint256",
|
|
1922
|
+
internalType: "uint256"
|
|
2138
1923
|
}
|
|
2139
1924
|
]
|
|
2140
1925
|
},
|
|
2141
1926
|
{
|
|
2142
|
-
|
|
2143
|
-
|
|
2144
|
-
|
|
2145
|
-
|
|
1927
|
+
name: "paymasterInfo",
|
|
1928
|
+
type: "tuple",
|
|
1929
|
+
internalType: "struct IStakeManager.StakeInfo",
|
|
1930
|
+
components: [
|
|
2146
1931
|
{
|
|
2147
|
-
|
|
2148
|
-
|
|
2149
|
-
|
|
1932
|
+
name: "stake",
|
|
1933
|
+
type: "uint256",
|
|
1934
|
+
internalType: "uint256"
|
|
2150
1935
|
},
|
|
2151
1936
|
{
|
|
2152
|
-
|
|
2153
|
-
|
|
2154
|
-
|
|
1937
|
+
name: "unstakeDelaySec",
|
|
1938
|
+
type: "uint256",
|
|
1939
|
+
internalType: "uint256"
|
|
2155
1940
|
}
|
|
2156
1941
|
]
|
|
2157
1942
|
},
|
|
2158
1943
|
{
|
|
2159
|
-
|
|
2160
|
-
|
|
2161
|
-
|
|
2162
|
-
|
|
1944
|
+
name: "aggregatorInfo",
|
|
1945
|
+
type: "tuple",
|
|
1946
|
+
internalType: "struct IEntryPoint.AggregatorStakeInfo",
|
|
1947
|
+
components: [
|
|
2163
1948
|
{
|
|
2164
|
-
|
|
2165
|
-
|
|
2166
|
-
|
|
1949
|
+
name: "aggregator",
|
|
1950
|
+
type: "address",
|
|
1951
|
+
internalType: "address"
|
|
2167
1952
|
},
|
|
2168
1953
|
{
|
|
2169
|
-
|
|
2170
|
-
|
|
2171
|
-
|
|
2172
|
-
|
|
1954
|
+
name: "stakeInfo",
|
|
1955
|
+
type: "tuple",
|
|
1956
|
+
internalType: "struct IStakeManager.StakeInfo",
|
|
1957
|
+
components: [
|
|
2173
1958
|
{
|
|
2174
|
-
|
|
2175
|
-
|
|
2176
|
-
|
|
1959
|
+
name: "stake",
|
|
1960
|
+
type: "uint256",
|
|
1961
|
+
internalType: "uint256"
|
|
2177
1962
|
},
|
|
2178
1963
|
{
|
|
2179
|
-
|
|
2180
|
-
|
|
2181
|
-
|
|
1964
|
+
name: "unstakeDelaySec",
|
|
1965
|
+
type: "uint256",
|
|
1966
|
+
internalType: "uint256"
|
|
2182
1967
|
}
|
|
2183
1968
|
]
|
|
2184
1969
|
}
|
|
@@ -2187,178 +1972,162 @@ exports.EntryPointV07SimulationsAbi = [
|
|
|
2187
1972
|
]
|
|
2188
1973
|
}
|
|
2189
1974
|
],
|
|
2190
|
-
|
|
1975
|
+
stateMutability: "nonpayable"
|
|
2191
1976
|
},
|
|
2192
1977
|
{
|
|
2193
|
-
|
|
2194
|
-
|
|
2195
|
-
|
|
1978
|
+
type: "function",
|
|
1979
|
+
name: "simulateValidationLast",
|
|
1980
|
+
inputs: [
|
|
2196
1981
|
{
|
|
2197
|
-
|
|
2198
|
-
|
|
2199
|
-
|
|
2200
|
-
|
|
2201
|
-
{
|
|
2202
|
-
"name": "sender",
|
|
2203
|
-
"type": "address",
|
|
2204
|
-
"internalType": "address"
|
|
2205
|
-
},
|
|
2206
|
-
{
|
|
2207
|
-
"name": "nonce",
|
|
2208
|
-
"type": "uint256",
|
|
2209
|
-
"internalType": "uint256"
|
|
2210
|
-
},
|
|
2211
|
-
{
|
|
2212
|
-
"name": "initCode",
|
|
2213
|
-
"type": "bytes",
|
|
2214
|
-
"internalType": "bytes"
|
|
2215
|
-
},
|
|
1982
|
+
name: "userOps",
|
|
1983
|
+
type: "tuple[]",
|
|
1984
|
+
internalType: "struct PackedUserOperation[]",
|
|
1985
|
+
components: [
|
|
2216
1986
|
{
|
|
2217
|
-
|
|
2218
|
-
|
|
2219
|
-
|
|
1987
|
+
name: "sender",
|
|
1988
|
+
type: "address",
|
|
1989
|
+
internalType: "address"
|
|
2220
1990
|
},
|
|
1991
|
+
{ name: "nonce", type: "uint256", internalType: "uint256" },
|
|
1992
|
+
{ name: "initCode", type: "bytes", internalType: "bytes" },
|
|
1993
|
+
{ name: "callData", type: "bytes", internalType: "bytes" },
|
|
2221
1994
|
{
|
|
2222
|
-
|
|
2223
|
-
|
|
2224
|
-
|
|
1995
|
+
name: "accountGasLimits",
|
|
1996
|
+
type: "bytes32",
|
|
1997
|
+
internalType: "bytes32"
|
|
2225
1998
|
},
|
|
2226
1999
|
{
|
|
2227
|
-
|
|
2228
|
-
|
|
2229
|
-
|
|
2000
|
+
name: "preVerificationGas",
|
|
2001
|
+
type: "uint256",
|
|
2002
|
+
internalType: "uint256"
|
|
2230
2003
|
},
|
|
2231
2004
|
{
|
|
2232
|
-
|
|
2233
|
-
|
|
2234
|
-
|
|
2005
|
+
name: "gasFees",
|
|
2006
|
+
type: "bytes32",
|
|
2007
|
+
internalType: "bytes32"
|
|
2235
2008
|
},
|
|
2236
2009
|
{
|
|
2237
|
-
|
|
2238
|
-
|
|
2239
|
-
|
|
2010
|
+
name: "paymasterAndData",
|
|
2011
|
+
type: "bytes",
|
|
2012
|
+
internalType: "bytes"
|
|
2240
2013
|
},
|
|
2241
|
-
{
|
|
2242
|
-
"name": "signature",
|
|
2243
|
-
"type": "bytes",
|
|
2244
|
-
"internalType": "bytes"
|
|
2245
|
-
}
|
|
2014
|
+
{ name: "signature", type: "bytes", internalType: "bytes" }
|
|
2246
2015
|
]
|
|
2247
2016
|
}
|
|
2248
2017
|
],
|
|
2249
|
-
|
|
2018
|
+
outputs: [
|
|
2250
2019
|
{
|
|
2251
|
-
|
|
2252
|
-
|
|
2253
|
-
|
|
2254
|
-
|
|
2020
|
+
name: "",
|
|
2021
|
+
type: "tuple",
|
|
2022
|
+
internalType: "struct IEntryPointSimulations.ValidationResult",
|
|
2023
|
+
components: [
|
|
2255
2024
|
{
|
|
2256
|
-
|
|
2257
|
-
|
|
2258
|
-
|
|
2259
|
-
|
|
2025
|
+
name: "returnInfo",
|
|
2026
|
+
type: "tuple",
|
|
2027
|
+
internalType: "struct IEntryPoint.ReturnInfo",
|
|
2028
|
+
components: [
|
|
2260
2029
|
{
|
|
2261
|
-
|
|
2262
|
-
|
|
2263
|
-
|
|
2030
|
+
name: "preOpGas",
|
|
2031
|
+
type: "uint256",
|
|
2032
|
+
internalType: "uint256"
|
|
2264
2033
|
},
|
|
2265
2034
|
{
|
|
2266
|
-
|
|
2267
|
-
|
|
2268
|
-
|
|
2035
|
+
name: "prefund",
|
|
2036
|
+
type: "uint256",
|
|
2037
|
+
internalType: "uint256"
|
|
2269
2038
|
},
|
|
2270
2039
|
{
|
|
2271
|
-
|
|
2272
|
-
|
|
2273
|
-
|
|
2040
|
+
name: "accountValidationData",
|
|
2041
|
+
type: "uint256",
|
|
2042
|
+
internalType: "uint256"
|
|
2274
2043
|
},
|
|
2275
2044
|
{
|
|
2276
|
-
|
|
2277
|
-
|
|
2278
|
-
|
|
2045
|
+
name: "paymasterValidationData",
|
|
2046
|
+
type: "uint256",
|
|
2047
|
+
internalType: "uint256"
|
|
2279
2048
|
},
|
|
2280
2049
|
{
|
|
2281
|
-
|
|
2282
|
-
|
|
2283
|
-
|
|
2050
|
+
name: "paymasterContext",
|
|
2051
|
+
type: "bytes",
|
|
2052
|
+
internalType: "bytes"
|
|
2284
2053
|
}
|
|
2285
2054
|
]
|
|
2286
2055
|
},
|
|
2287
2056
|
{
|
|
2288
|
-
|
|
2289
|
-
|
|
2290
|
-
|
|
2291
|
-
|
|
2057
|
+
name: "senderInfo",
|
|
2058
|
+
type: "tuple",
|
|
2059
|
+
internalType: "struct IStakeManager.StakeInfo",
|
|
2060
|
+
components: [
|
|
2292
2061
|
{
|
|
2293
|
-
|
|
2294
|
-
|
|
2295
|
-
|
|
2062
|
+
name: "stake",
|
|
2063
|
+
type: "uint256",
|
|
2064
|
+
internalType: "uint256"
|
|
2296
2065
|
},
|
|
2297
2066
|
{
|
|
2298
|
-
|
|
2299
|
-
|
|
2300
|
-
|
|
2067
|
+
name: "unstakeDelaySec",
|
|
2068
|
+
type: "uint256",
|
|
2069
|
+
internalType: "uint256"
|
|
2301
2070
|
}
|
|
2302
2071
|
]
|
|
2303
2072
|
},
|
|
2304
2073
|
{
|
|
2305
|
-
|
|
2306
|
-
|
|
2307
|
-
|
|
2308
|
-
|
|
2074
|
+
name: "factoryInfo",
|
|
2075
|
+
type: "tuple",
|
|
2076
|
+
internalType: "struct IStakeManager.StakeInfo",
|
|
2077
|
+
components: [
|
|
2309
2078
|
{
|
|
2310
|
-
|
|
2311
|
-
|
|
2312
|
-
|
|
2079
|
+
name: "stake",
|
|
2080
|
+
type: "uint256",
|
|
2081
|
+
internalType: "uint256"
|
|
2313
2082
|
},
|
|
2314
2083
|
{
|
|
2315
|
-
|
|
2316
|
-
|
|
2317
|
-
|
|
2084
|
+
name: "unstakeDelaySec",
|
|
2085
|
+
type: "uint256",
|
|
2086
|
+
internalType: "uint256"
|
|
2318
2087
|
}
|
|
2319
2088
|
]
|
|
2320
2089
|
},
|
|
2321
2090
|
{
|
|
2322
|
-
|
|
2323
|
-
|
|
2324
|
-
|
|
2325
|
-
|
|
2091
|
+
name: "paymasterInfo",
|
|
2092
|
+
type: "tuple",
|
|
2093
|
+
internalType: "struct IStakeManager.StakeInfo",
|
|
2094
|
+
components: [
|
|
2326
2095
|
{
|
|
2327
|
-
|
|
2328
|
-
|
|
2329
|
-
|
|
2096
|
+
name: "stake",
|
|
2097
|
+
type: "uint256",
|
|
2098
|
+
internalType: "uint256"
|
|
2330
2099
|
},
|
|
2331
2100
|
{
|
|
2332
|
-
|
|
2333
|
-
|
|
2334
|
-
|
|
2101
|
+
name: "unstakeDelaySec",
|
|
2102
|
+
type: "uint256",
|
|
2103
|
+
internalType: "uint256"
|
|
2335
2104
|
}
|
|
2336
2105
|
]
|
|
2337
2106
|
},
|
|
2338
2107
|
{
|
|
2339
|
-
|
|
2340
|
-
|
|
2341
|
-
|
|
2342
|
-
|
|
2108
|
+
name: "aggregatorInfo",
|
|
2109
|
+
type: "tuple",
|
|
2110
|
+
internalType: "struct IEntryPoint.AggregatorStakeInfo",
|
|
2111
|
+
components: [
|
|
2343
2112
|
{
|
|
2344
|
-
|
|
2345
|
-
|
|
2346
|
-
|
|
2113
|
+
name: "aggregator",
|
|
2114
|
+
type: "address",
|
|
2115
|
+
internalType: "address"
|
|
2347
2116
|
},
|
|
2348
2117
|
{
|
|
2349
|
-
|
|
2350
|
-
|
|
2351
|
-
|
|
2352
|
-
|
|
2118
|
+
name: "stakeInfo",
|
|
2119
|
+
type: "tuple",
|
|
2120
|
+
internalType: "struct IStakeManager.StakeInfo",
|
|
2121
|
+
components: [
|
|
2353
2122
|
{
|
|
2354
|
-
|
|
2355
|
-
|
|
2356
|
-
|
|
2123
|
+
name: "stake",
|
|
2124
|
+
type: "uint256",
|
|
2125
|
+
internalType: "uint256"
|
|
2357
2126
|
},
|
|
2358
2127
|
{
|
|
2359
|
-
|
|
2360
|
-
|
|
2361
|
-
|
|
2128
|
+
name: "unstakeDelaySec",
|
|
2129
|
+
type: "uint256",
|
|
2130
|
+
internalType: "uint256"
|
|
2362
2131
|
}
|
|
2363
2132
|
]
|
|
2364
2133
|
}
|
|
@@ -2367,451 +2136,387 @@ exports.EntryPointV07SimulationsAbi = [
|
|
|
2367
2136
|
]
|
|
2368
2137
|
}
|
|
2369
2138
|
],
|
|
2370
|
-
|
|
2139
|
+
stateMutability: "nonpayable"
|
|
2371
2140
|
},
|
|
2372
2141
|
{
|
|
2373
|
-
|
|
2374
|
-
|
|
2375
|
-
|
|
2376
|
-
|
|
2377
|
-
|
|
2142
|
+
type: "function",
|
|
2143
|
+
name: "unlockStake",
|
|
2144
|
+
inputs: [],
|
|
2145
|
+
outputs: [],
|
|
2146
|
+
stateMutability: "nonpayable"
|
|
2378
2147
|
},
|
|
2379
2148
|
{
|
|
2380
|
-
|
|
2381
|
-
|
|
2382
|
-
|
|
2149
|
+
type: "function",
|
|
2150
|
+
name: "withdrawStake",
|
|
2151
|
+
inputs: [
|
|
2383
2152
|
{
|
|
2384
|
-
|
|
2385
|
-
|
|
2386
|
-
|
|
2153
|
+
name: "withdrawAddress",
|
|
2154
|
+
type: "address",
|
|
2155
|
+
internalType: "address payable"
|
|
2387
2156
|
}
|
|
2388
2157
|
],
|
|
2389
|
-
|
|
2390
|
-
|
|
2158
|
+
outputs: [],
|
|
2159
|
+
stateMutability: "nonpayable"
|
|
2391
2160
|
},
|
|
2392
2161
|
{
|
|
2393
|
-
|
|
2394
|
-
|
|
2395
|
-
|
|
2162
|
+
type: "function",
|
|
2163
|
+
name: "withdrawTo",
|
|
2164
|
+
inputs: [
|
|
2396
2165
|
{
|
|
2397
|
-
|
|
2398
|
-
|
|
2399
|
-
|
|
2166
|
+
name: "withdrawAddress",
|
|
2167
|
+
type: "address",
|
|
2168
|
+
internalType: "address payable"
|
|
2400
2169
|
},
|
|
2401
|
-
{
|
|
2402
|
-
"name": "withdrawAmount",
|
|
2403
|
-
"type": "uint256",
|
|
2404
|
-
"internalType": "uint256"
|
|
2405
|
-
}
|
|
2170
|
+
{ name: "withdrawAmount", type: "uint256", internalType: "uint256" }
|
|
2406
2171
|
],
|
|
2407
|
-
|
|
2408
|
-
|
|
2172
|
+
outputs: [],
|
|
2173
|
+
stateMutability: "nonpayable"
|
|
2409
2174
|
},
|
|
2410
2175
|
{
|
|
2411
|
-
|
|
2412
|
-
|
|
2413
|
-
|
|
2414
|
-
{
|
|
2415
|
-
|
|
2416
|
-
|
|
2417
|
-
|
|
2418
|
-
|
|
2176
|
+
type: "event",
|
|
2177
|
+
name: "AccountDeployed",
|
|
2178
|
+
inputs: [
|
|
2179
|
+
{
|
|
2180
|
+
name: "userOpHash",
|
|
2181
|
+
type: "bytes32",
|
|
2182
|
+
indexed: true,
|
|
2183
|
+
internalType: "bytes32"
|
|
2419
2184
|
},
|
|
2420
2185
|
{
|
|
2421
|
-
|
|
2422
|
-
|
|
2423
|
-
|
|
2424
|
-
|
|
2186
|
+
name: "sender",
|
|
2187
|
+
type: "address",
|
|
2188
|
+
indexed: true,
|
|
2189
|
+
internalType: "address"
|
|
2425
2190
|
},
|
|
2426
2191
|
{
|
|
2427
|
-
|
|
2428
|
-
|
|
2429
|
-
|
|
2430
|
-
|
|
2192
|
+
name: "factory",
|
|
2193
|
+
type: "address",
|
|
2194
|
+
indexed: false,
|
|
2195
|
+
internalType: "address"
|
|
2431
2196
|
},
|
|
2432
2197
|
{
|
|
2433
|
-
|
|
2434
|
-
|
|
2435
|
-
|
|
2436
|
-
|
|
2198
|
+
name: "paymaster",
|
|
2199
|
+
type: "address",
|
|
2200
|
+
indexed: false,
|
|
2201
|
+
internalType: "address"
|
|
2437
2202
|
}
|
|
2438
2203
|
],
|
|
2439
|
-
|
|
2440
|
-
},
|
|
2441
|
-
{
|
|
2442
|
-
"type": "event",
|
|
2443
|
-
"name": "BeforeExecution",
|
|
2444
|
-
"inputs": [],
|
|
2445
|
-
"anonymous": false
|
|
2204
|
+
anonymous: false
|
|
2446
2205
|
},
|
|
2206
|
+
{ type: "event", name: "BeforeExecution", inputs: [], anonymous: false },
|
|
2447
2207
|
{
|
|
2448
|
-
|
|
2449
|
-
|
|
2450
|
-
|
|
2451
|
-
{
|
|
2452
|
-
|
|
2453
|
-
|
|
2454
|
-
|
|
2455
|
-
|
|
2208
|
+
type: "event",
|
|
2209
|
+
name: "Deposited",
|
|
2210
|
+
inputs: [
|
|
2211
|
+
{
|
|
2212
|
+
name: "account",
|
|
2213
|
+
type: "address",
|
|
2214
|
+
indexed: true,
|
|
2215
|
+
internalType: "address"
|
|
2456
2216
|
},
|
|
2457
2217
|
{
|
|
2458
|
-
|
|
2459
|
-
|
|
2460
|
-
|
|
2461
|
-
|
|
2218
|
+
name: "totalDeposit",
|
|
2219
|
+
type: "uint256",
|
|
2220
|
+
indexed: false,
|
|
2221
|
+
internalType: "uint256"
|
|
2462
2222
|
}
|
|
2463
2223
|
],
|
|
2464
|
-
|
|
2224
|
+
anonymous: false
|
|
2465
2225
|
},
|
|
2466
2226
|
{
|
|
2467
|
-
|
|
2468
|
-
|
|
2469
|
-
|
|
2470
|
-
{
|
|
2471
|
-
|
|
2472
|
-
|
|
2473
|
-
|
|
2474
|
-
|
|
2227
|
+
type: "event",
|
|
2228
|
+
name: "PostOpRevertReason",
|
|
2229
|
+
inputs: [
|
|
2230
|
+
{
|
|
2231
|
+
name: "userOpHash",
|
|
2232
|
+
type: "bytes32",
|
|
2233
|
+
indexed: true,
|
|
2234
|
+
internalType: "bytes32"
|
|
2475
2235
|
},
|
|
2476
2236
|
{
|
|
2477
|
-
|
|
2478
|
-
|
|
2479
|
-
|
|
2480
|
-
|
|
2237
|
+
name: "sender",
|
|
2238
|
+
type: "address",
|
|
2239
|
+
indexed: true,
|
|
2240
|
+
internalType: "address"
|
|
2481
2241
|
},
|
|
2482
2242
|
{
|
|
2483
|
-
|
|
2484
|
-
|
|
2485
|
-
|
|
2486
|
-
|
|
2243
|
+
name: "nonce",
|
|
2244
|
+
type: "uint256",
|
|
2245
|
+
indexed: false,
|
|
2246
|
+
internalType: "uint256"
|
|
2487
2247
|
},
|
|
2488
2248
|
{
|
|
2489
|
-
|
|
2490
|
-
|
|
2491
|
-
|
|
2492
|
-
|
|
2249
|
+
name: "revertReason",
|
|
2250
|
+
type: "bytes",
|
|
2251
|
+
indexed: false,
|
|
2252
|
+
internalType: "bytes"
|
|
2493
2253
|
}
|
|
2494
2254
|
],
|
|
2495
|
-
|
|
2255
|
+
anonymous: false
|
|
2496
2256
|
},
|
|
2497
2257
|
{
|
|
2498
|
-
|
|
2499
|
-
|
|
2500
|
-
|
|
2501
|
-
{
|
|
2502
|
-
|
|
2503
|
-
|
|
2504
|
-
|
|
2505
|
-
|
|
2258
|
+
type: "event",
|
|
2259
|
+
name: "SignatureAggregatorChanged",
|
|
2260
|
+
inputs: [
|
|
2261
|
+
{
|
|
2262
|
+
name: "aggregator",
|
|
2263
|
+
type: "address",
|
|
2264
|
+
indexed: true,
|
|
2265
|
+
internalType: "address"
|
|
2506
2266
|
}
|
|
2507
2267
|
],
|
|
2508
|
-
|
|
2268
|
+
anonymous: false
|
|
2509
2269
|
},
|
|
2510
2270
|
{
|
|
2511
|
-
|
|
2512
|
-
|
|
2513
|
-
|
|
2514
|
-
{
|
|
2515
|
-
|
|
2516
|
-
|
|
2517
|
-
|
|
2518
|
-
|
|
2271
|
+
type: "event",
|
|
2272
|
+
name: "StakeLocked",
|
|
2273
|
+
inputs: [
|
|
2274
|
+
{
|
|
2275
|
+
name: "account",
|
|
2276
|
+
type: "address",
|
|
2277
|
+
indexed: true,
|
|
2278
|
+
internalType: "address"
|
|
2519
2279
|
},
|
|
2520
2280
|
{
|
|
2521
|
-
|
|
2522
|
-
|
|
2523
|
-
|
|
2524
|
-
|
|
2281
|
+
name: "totalStaked",
|
|
2282
|
+
type: "uint256",
|
|
2283
|
+
indexed: false,
|
|
2284
|
+
internalType: "uint256"
|
|
2525
2285
|
},
|
|
2526
2286
|
{
|
|
2527
|
-
|
|
2528
|
-
|
|
2529
|
-
|
|
2530
|
-
|
|
2287
|
+
name: "unstakeDelaySec",
|
|
2288
|
+
type: "uint256",
|
|
2289
|
+
indexed: false,
|
|
2290
|
+
internalType: "uint256"
|
|
2531
2291
|
}
|
|
2532
2292
|
],
|
|
2533
|
-
|
|
2293
|
+
anonymous: false
|
|
2534
2294
|
},
|
|
2535
2295
|
{
|
|
2536
|
-
|
|
2537
|
-
|
|
2538
|
-
|
|
2539
|
-
{
|
|
2540
|
-
|
|
2541
|
-
|
|
2542
|
-
|
|
2543
|
-
|
|
2296
|
+
type: "event",
|
|
2297
|
+
name: "StakeUnlocked",
|
|
2298
|
+
inputs: [
|
|
2299
|
+
{
|
|
2300
|
+
name: "account",
|
|
2301
|
+
type: "address",
|
|
2302
|
+
indexed: true,
|
|
2303
|
+
internalType: "address"
|
|
2544
2304
|
},
|
|
2545
2305
|
{
|
|
2546
|
-
|
|
2547
|
-
|
|
2548
|
-
|
|
2549
|
-
|
|
2306
|
+
name: "withdrawTime",
|
|
2307
|
+
type: "uint256",
|
|
2308
|
+
indexed: false,
|
|
2309
|
+
internalType: "uint256"
|
|
2550
2310
|
}
|
|
2551
2311
|
],
|
|
2552
|
-
|
|
2312
|
+
anonymous: false
|
|
2553
2313
|
},
|
|
2554
2314
|
{
|
|
2555
|
-
|
|
2556
|
-
|
|
2557
|
-
|
|
2558
|
-
{
|
|
2559
|
-
|
|
2560
|
-
|
|
2561
|
-
|
|
2562
|
-
|
|
2315
|
+
type: "event",
|
|
2316
|
+
name: "StakeWithdrawn",
|
|
2317
|
+
inputs: [
|
|
2318
|
+
{
|
|
2319
|
+
name: "account",
|
|
2320
|
+
type: "address",
|
|
2321
|
+
indexed: true,
|
|
2322
|
+
internalType: "address"
|
|
2563
2323
|
},
|
|
2564
2324
|
{
|
|
2565
|
-
|
|
2566
|
-
|
|
2567
|
-
|
|
2568
|
-
|
|
2325
|
+
name: "withdrawAddress",
|
|
2326
|
+
type: "address",
|
|
2327
|
+
indexed: false,
|
|
2328
|
+
internalType: "address"
|
|
2569
2329
|
},
|
|
2570
2330
|
{
|
|
2571
|
-
|
|
2572
|
-
|
|
2573
|
-
|
|
2574
|
-
|
|
2331
|
+
name: "amount",
|
|
2332
|
+
type: "uint256",
|
|
2333
|
+
indexed: false,
|
|
2334
|
+
internalType: "uint256"
|
|
2575
2335
|
}
|
|
2576
2336
|
],
|
|
2577
|
-
|
|
2337
|
+
anonymous: false
|
|
2578
2338
|
},
|
|
2579
2339
|
{
|
|
2580
|
-
|
|
2581
|
-
|
|
2582
|
-
|
|
2583
|
-
{
|
|
2584
|
-
|
|
2585
|
-
|
|
2586
|
-
|
|
2587
|
-
|
|
2340
|
+
type: "event",
|
|
2341
|
+
name: "UserOperationEvent",
|
|
2342
|
+
inputs: [
|
|
2343
|
+
{
|
|
2344
|
+
name: "userOpHash",
|
|
2345
|
+
type: "bytes32",
|
|
2346
|
+
indexed: true,
|
|
2347
|
+
internalType: "bytes32"
|
|
2588
2348
|
},
|
|
2589
2349
|
{
|
|
2590
|
-
|
|
2591
|
-
|
|
2592
|
-
|
|
2593
|
-
|
|
2350
|
+
name: "sender",
|
|
2351
|
+
type: "address",
|
|
2352
|
+
indexed: true,
|
|
2353
|
+
internalType: "address"
|
|
2594
2354
|
},
|
|
2595
2355
|
{
|
|
2596
|
-
|
|
2597
|
-
|
|
2598
|
-
|
|
2599
|
-
|
|
2356
|
+
name: "paymaster",
|
|
2357
|
+
type: "address",
|
|
2358
|
+
indexed: true,
|
|
2359
|
+
internalType: "address"
|
|
2600
2360
|
},
|
|
2601
2361
|
{
|
|
2602
|
-
|
|
2603
|
-
|
|
2604
|
-
|
|
2605
|
-
|
|
2362
|
+
name: "nonce",
|
|
2363
|
+
type: "uint256",
|
|
2364
|
+
indexed: false,
|
|
2365
|
+
internalType: "uint256"
|
|
2606
2366
|
},
|
|
2607
2367
|
{
|
|
2608
|
-
|
|
2609
|
-
|
|
2610
|
-
|
|
2611
|
-
|
|
2368
|
+
name: "success",
|
|
2369
|
+
type: "bool",
|
|
2370
|
+
indexed: false,
|
|
2371
|
+
internalType: "bool"
|
|
2612
2372
|
},
|
|
2613
2373
|
{
|
|
2614
|
-
|
|
2615
|
-
|
|
2616
|
-
|
|
2617
|
-
|
|
2374
|
+
name: "actualGasCost",
|
|
2375
|
+
type: "uint256",
|
|
2376
|
+
indexed: false,
|
|
2377
|
+
internalType: "uint256"
|
|
2618
2378
|
},
|
|
2619
2379
|
{
|
|
2620
|
-
|
|
2621
|
-
|
|
2622
|
-
|
|
2623
|
-
|
|
2380
|
+
name: "actualGasUsed",
|
|
2381
|
+
type: "uint256",
|
|
2382
|
+
indexed: false,
|
|
2383
|
+
internalType: "uint256"
|
|
2624
2384
|
}
|
|
2625
2385
|
],
|
|
2626
|
-
|
|
2386
|
+
anonymous: false
|
|
2627
2387
|
},
|
|
2628
2388
|
{
|
|
2629
|
-
|
|
2630
|
-
|
|
2631
|
-
|
|
2632
|
-
{
|
|
2633
|
-
|
|
2634
|
-
|
|
2635
|
-
|
|
2636
|
-
|
|
2389
|
+
type: "event",
|
|
2390
|
+
name: "UserOperationPrefundTooLow",
|
|
2391
|
+
inputs: [
|
|
2392
|
+
{
|
|
2393
|
+
name: "userOpHash",
|
|
2394
|
+
type: "bytes32",
|
|
2395
|
+
indexed: true,
|
|
2396
|
+
internalType: "bytes32"
|
|
2637
2397
|
},
|
|
2638
2398
|
{
|
|
2639
|
-
|
|
2640
|
-
|
|
2641
|
-
|
|
2642
|
-
|
|
2399
|
+
name: "sender",
|
|
2400
|
+
type: "address",
|
|
2401
|
+
indexed: true,
|
|
2402
|
+
internalType: "address"
|
|
2643
2403
|
},
|
|
2644
2404
|
{
|
|
2645
|
-
|
|
2646
|
-
|
|
2647
|
-
|
|
2648
|
-
|
|
2405
|
+
name: "nonce",
|
|
2406
|
+
type: "uint256",
|
|
2407
|
+
indexed: false,
|
|
2408
|
+
internalType: "uint256"
|
|
2649
2409
|
}
|
|
2650
2410
|
],
|
|
2651
|
-
|
|
2411
|
+
anonymous: false
|
|
2652
2412
|
},
|
|
2653
2413
|
{
|
|
2654
|
-
|
|
2655
|
-
|
|
2656
|
-
|
|
2657
|
-
{
|
|
2658
|
-
|
|
2659
|
-
|
|
2660
|
-
|
|
2661
|
-
|
|
2414
|
+
type: "event",
|
|
2415
|
+
name: "UserOperationRevertReason",
|
|
2416
|
+
inputs: [
|
|
2417
|
+
{
|
|
2418
|
+
name: "userOpHash",
|
|
2419
|
+
type: "bytes32",
|
|
2420
|
+
indexed: true,
|
|
2421
|
+
internalType: "bytes32"
|
|
2662
2422
|
},
|
|
2663
2423
|
{
|
|
2664
|
-
|
|
2665
|
-
|
|
2666
|
-
|
|
2667
|
-
|
|
2424
|
+
name: "sender",
|
|
2425
|
+
type: "address",
|
|
2426
|
+
indexed: true,
|
|
2427
|
+
internalType: "address"
|
|
2668
2428
|
},
|
|
2669
2429
|
{
|
|
2670
|
-
|
|
2671
|
-
|
|
2672
|
-
|
|
2673
|
-
|
|
2430
|
+
name: "nonce",
|
|
2431
|
+
type: "uint256",
|
|
2432
|
+
indexed: false,
|
|
2433
|
+
internalType: "uint256"
|
|
2674
2434
|
},
|
|
2675
2435
|
{
|
|
2676
|
-
|
|
2677
|
-
|
|
2678
|
-
|
|
2679
|
-
|
|
2436
|
+
name: "revertReason",
|
|
2437
|
+
type: "bytes",
|
|
2438
|
+
indexed: false,
|
|
2439
|
+
internalType: "bytes"
|
|
2680
2440
|
}
|
|
2681
2441
|
],
|
|
2682
|
-
|
|
2442
|
+
anonymous: false
|
|
2683
2443
|
},
|
|
2684
2444
|
{
|
|
2685
|
-
|
|
2686
|
-
|
|
2687
|
-
|
|
2688
|
-
{
|
|
2689
|
-
|
|
2690
|
-
|
|
2691
|
-
|
|
2692
|
-
|
|
2445
|
+
type: "event",
|
|
2446
|
+
name: "Withdrawn",
|
|
2447
|
+
inputs: [
|
|
2448
|
+
{
|
|
2449
|
+
name: "account",
|
|
2450
|
+
type: "address",
|
|
2451
|
+
indexed: true,
|
|
2452
|
+
internalType: "address"
|
|
2693
2453
|
},
|
|
2694
2454
|
{
|
|
2695
|
-
|
|
2696
|
-
|
|
2697
|
-
|
|
2698
|
-
|
|
2455
|
+
name: "withdrawAddress",
|
|
2456
|
+
type: "address",
|
|
2457
|
+
indexed: false,
|
|
2458
|
+
internalType: "address"
|
|
2699
2459
|
},
|
|
2700
2460
|
{
|
|
2701
|
-
|
|
2702
|
-
|
|
2703
|
-
|
|
2704
|
-
|
|
2461
|
+
name: "amount",
|
|
2462
|
+
type: "uint256",
|
|
2463
|
+
indexed: false,
|
|
2464
|
+
internalType: "uint256"
|
|
2705
2465
|
}
|
|
2706
2466
|
],
|
|
2707
|
-
|
|
2467
|
+
anonymous: false
|
|
2708
2468
|
},
|
|
2709
2469
|
{
|
|
2710
|
-
|
|
2711
|
-
|
|
2712
|
-
|
|
2713
|
-
{
|
|
2714
|
-
|
|
2715
|
-
"type": "uint256",
|
|
2716
|
-
"internalType": "uint256"
|
|
2717
|
-
},
|
|
2718
|
-
{
|
|
2719
|
-
"name": "reason",
|
|
2720
|
-
"type": "string",
|
|
2721
|
-
"internalType": "string"
|
|
2722
|
-
}
|
|
2470
|
+
type: "error",
|
|
2471
|
+
name: "FailedOp",
|
|
2472
|
+
inputs: [
|
|
2473
|
+
{ name: "opIndex", type: "uint256", internalType: "uint256" },
|
|
2474
|
+
{ name: "reason", type: "string", internalType: "string" }
|
|
2723
2475
|
]
|
|
2724
2476
|
},
|
|
2725
2477
|
{
|
|
2726
|
-
|
|
2727
|
-
|
|
2728
|
-
|
|
2729
|
-
{
|
|
2730
|
-
|
|
2731
|
-
|
|
2732
|
-
"internalType": "uint256"
|
|
2733
|
-
},
|
|
2734
|
-
{
|
|
2735
|
-
"name": "reason",
|
|
2736
|
-
"type": "string",
|
|
2737
|
-
"internalType": "string"
|
|
2738
|
-
},
|
|
2739
|
-
{
|
|
2740
|
-
"name": "inner",
|
|
2741
|
-
"type": "bytes",
|
|
2742
|
-
"internalType": "bytes"
|
|
2743
|
-
}
|
|
2478
|
+
type: "error",
|
|
2479
|
+
name: "FailedOpWithRevert",
|
|
2480
|
+
inputs: [
|
|
2481
|
+
{ name: "opIndex", type: "uint256", internalType: "uint256" },
|
|
2482
|
+
{ name: "reason", type: "string", internalType: "string" },
|
|
2483
|
+
{ name: "inner", type: "bytes", internalType: "bytes" }
|
|
2744
2484
|
]
|
|
2745
2485
|
},
|
|
2746
2486
|
{
|
|
2747
|
-
|
|
2748
|
-
|
|
2749
|
-
|
|
2750
|
-
{
|
|
2751
|
-
"name": "returnData",
|
|
2752
|
-
"type": "bytes",
|
|
2753
|
-
"internalType": "bytes"
|
|
2754
|
-
}
|
|
2755
|
-
]
|
|
2487
|
+
type: "error",
|
|
2488
|
+
name: "PostOpReverted",
|
|
2489
|
+
inputs: [{ name: "returnData", type: "bytes", internalType: "bytes" }]
|
|
2756
2490
|
},
|
|
2491
|
+
{ type: "error", name: "ReentrancyGuardReentrantCall", inputs: [] },
|
|
2757
2492
|
{
|
|
2758
|
-
|
|
2759
|
-
|
|
2760
|
-
|
|
2493
|
+
type: "error",
|
|
2494
|
+
name: "SenderAddressResult",
|
|
2495
|
+
inputs: [{ name: "sender", type: "address", internalType: "address" }]
|
|
2761
2496
|
},
|
|
2762
2497
|
{
|
|
2763
|
-
|
|
2764
|
-
|
|
2765
|
-
|
|
2766
|
-
{
|
|
2767
|
-
"name": "sender",
|
|
2768
|
-
"type": "address",
|
|
2769
|
-
"internalType": "address"
|
|
2770
|
-
}
|
|
2771
|
-
]
|
|
2772
|
-
},
|
|
2773
|
-
{
|
|
2774
|
-
"type": "error",
|
|
2775
|
-
"name": "SignatureValidationFailed",
|
|
2776
|
-
"inputs": [
|
|
2777
|
-
{
|
|
2778
|
-
"name": "aggregator",
|
|
2779
|
-
"type": "address",
|
|
2780
|
-
"internalType": "address"
|
|
2781
|
-
}
|
|
2498
|
+
type: "error",
|
|
2499
|
+
name: "SignatureValidationFailed",
|
|
2500
|
+
inputs: [
|
|
2501
|
+
{ name: "aggregator", type: "address", internalType: "address" }
|
|
2782
2502
|
]
|
|
2783
2503
|
},
|
|
2784
2504
|
{
|
|
2785
|
-
|
|
2786
|
-
|
|
2787
|
-
|
|
2788
|
-
{
|
|
2789
|
-
|
|
2790
|
-
|
|
2791
|
-
"internalType": "uint256"
|
|
2792
|
-
},
|
|
2793
|
-
{
|
|
2794
|
-
"name": "minGas",
|
|
2795
|
-
"type": "uint256",
|
|
2796
|
-
"internalType": "uint256"
|
|
2797
|
-
},
|
|
2798
|
-
{
|
|
2799
|
-
"name": "maxGas",
|
|
2800
|
-
"type": "uint256",
|
|
2801
|
-
"internalType": "uint256"
|
|
2802
|
-
}
|
|
2505
|
+
type: "error",
|
|
2506
|
+
name: "SimulationOutOfGas",
|
|
2507
|
+
inputs: [
|
|
2508
|
+
{ name: "optimalGas", type: "uint256", internalType: "uint256" },
|
|
2509
|
+
{ name: "minGas", type: "uint256", internalType: "uint256" },
|
|
2510
|
+
{ name: "maxGas", type: "uint256", internalType: "uint256" }
|
|
2803
2511
|
]
|
|
2804
2512
|
},
|
|
2805
2513
|
{
|
|
2806
|
-
|
|
2807
|
-
|
|
2808
|
-
|
|
2809
|
-
{
|
|
2810
|
-
"name": "remainingGas",
|
|
2811
|
-
"type": "uint256",
|
|
2812
|
-
"internalType": "uint256"
|
|
2813
|
-
}
|
|
2514
|
+
type: "error",
|
|
2515
|
+
name: "innerCallResult",
|
|
2516
|
+
inputs: [
|
|
2517
|
+
{ name: "remainingGas", type: "uint256", internalType: "uint256" }
|
|
2814
2518
|
]
|
|
2815
2519
|
}
|
|
2816
2520
|
];
|
|
2521
|
+
exports.ENTRY_POINT_SIMULATIONS_CREATECALL = "0x313233340000000000000000000000000000000000000000000000000000000060808060405234610085576149d08181016001600160401b0381118382101761006f578291610400833903906000f0801561006357600080546001600160a01b0319166001600160a01b0392909216919091179055604051610375908161008b8239f35b6040513d6000823e3d90fd5b634e487b7160e01b600052604160045260246000fd5b600080fdfe60406080815260048036101561001457600080fd5b6000803560e01c63c18f52261461002a57600080fd5b346102825782600319360112610282576001600160a01b03600435818116939084900361027e57602492833567ffffffffffffffff80821161027e573660238301121561027e57816004013591610080836102bd565b9261008d8a519485610285565b808452602095888786019260051b8401019236841161027a57898101925b8484106101fb575050505050508051946100dc6100c7876102bd565b966100d48a519889610285565b8088526102bd565b601f199790880185855b8281106101eb57505050835b8984518210156101905790878680878761014f8f8d61014360019a61011d8b60609b8a541698610315565b5190805197889485019763428557b160e11b8952850152604484015260648301906102d5565b03908101845283610285565b82885a935193f115610178575b610166828b610315565b52610171818a610315565b50016100f2565b508a513d81810189018d52808252878983013e61015c565b805187815289518189018190528792600582901b83018101918c8b01918b9085015b8287106101bf5785850386f35b9091929382806101db600193603f198a820301865288516102d5565b96019201960195929190926101b2565b606082828c0101520186906100e6565b833586811161027657820136604382011215610276578b8101356044888211610264578f5192610234601f8401601f19168e0185610285565b82845236828483010111610260578c838196948296948f940183860137830101528152019301926100ab565b8b80fd5b634e487b7160e01b8b52604186528d8bfd5b8880fd5b8680fd5b8280fd5b80fd5b90601f8019910116810190811067ffffffffffffffff8211176102a757604052565b634e487b7160e01b600052604160045260246000fd5b67ffffffffffffffff81116102a75760051b60200190565b919082519283825260005b848110610301575050826000602080949584010152601f8019910116010190565b6020818301810151848301820152016102e0565b80518210156103295760209160051b010190565b634e487b7160e01b600052603260045260246000fdfea2646970667358221220ed8436f6b510411fd3e10745f3f0263a07ebd1140eed9265d864fde12e4648c264736f6c6343000817003360c08060405234620000e35760016002556101608181016001600160401b03811183821017620000cd57829162004870833903906000f08015620000c1576080523060a0526200004e620000e8565b6000815260208101906000825280602062000068620000e8565b600081520152600380546001600160a01b03191690555160045551600555604051614767908162000109823960805181505060a0518181816116eb015281816124890152818161266501528181612fa7015261311d0152f35b6040513d6000823e3d90fd5b634e487b7160e01b600052604160045260246000fd5b600080fd5b60408051919082016001600160401b03811183821017620000cd5760405256fe60806040526004361015610023575b361561001957600080fd5b610021612f52565b005b60003560e01c80630396cb60146101d357806303d1dcaf146101ce5780630bd28e3b146101c95780630da82661146101c45780630dbfc6bd146101bf5780631b2e01b8146101ba578063205c2878146101b557806321e60b37146101b057806322cdde4c146101ab578063263934db146101a657806330ec25d1146101a157806335567e1a1461019c57806344403473146101975780635287ce12146101925780635787f48b1461018d5780635895273b1461018857806369683cfa1461018357806370a082311461017e57806376ad6123146101795780637f75516614610174578063b760faf91461016f578063bb9fe6bf1461016a578063c23a5cea14610165578063c3bce00914610160578063f7e426e81461015b578063fc7e286d146101565763fe2171cb0361000e5761184b565b6117cc565b6116a4565b61165e565b61157d565b611495565b61146a565b611256565b6111fd565b6111c0565b610ffd565b610fd0565b610fb0565b610ea3565b610e57565b610d95565b610d1a565b610c03565b610be3565b610b33565b610957565b6108f4565b610879565b6106d8565b6104f4565b610462565b60203660031901126102fa5763ffffffff600435818116918282036102fa577fa5ae833d0bb1dcd632d98a8b70973e8516812898e19bf27b70071ebc8dc52c01916102d76102f59261025861023a3360018060a01b03166000526000602052604060002090565b9661024681151561189b565b6001880154928360781c1611156118e7565b6102b16102736001600160701b039283349160081c16611966565b9661027f881515611973565b61028b838911156119b4565b5491610295610604565b9283526001602084015287166001600160701b03166040830152565b63ffffffff831660608201526000608082018190523381526020819052604090206119f1565b6040805194855263ffffffff90911660208501523393918291820190565b0390a2005b600080fd5b9181601f840112156102fa578235916001600160401b0383116102fa576020808501948460051b0101116102fa57565b6001600160a01b038116036102fa57565b6024359061034d8261032f565b565b610104359061034d8261032f565b6044359061034d8261032f565b610124359061034d8261032f565b359061034d8261032f565b906003199060c0828401126102fa576001600160401b036004358181116102fa57846103b1916004016102ff565b949094936024359283116102fa57826060920301126102fa57600401906044356103da8161032f565b90606435906084359060a43590565b60005b8381106103fc5750506000910152565b81810151838201526020016103ec565b90602091610425815180928185528580860191016103e9565b601f01601f1916010190565b6080604061045f9360208452805160208501526020810151151582850152015191606080820152019061040c565b90565b346102fa576104da6104ce61047636610383565b94610485949194939293611a7e565b5061048e611a9f565b966104c961049c8480611b22565b6104bb6040519a8b926321e60b3760e01b602085015260248401611c4e565b03601f1981018a52896105e3565b612f5b565b60405191829182610431565b0390f35b602435906001600160c01b03821682036102fa57565b346102fa5760203660031901126102fa576004356001600160c01b03811681036102fa573360009081526001602090815260408083206001600160c01b039094168352929052206105458154611d19565b9055005b634e487b7160e01b600052604160045260246000fd5b60a081019081106001600160401b0382111761057a57604052565b610549565b6001600160401b03811161057a57604052565b606081019081106001600160401b0382111761057a57604052565b604081019081106001600160401b0382111761057a57604052565b602081019081106001600160401b0382111761057a57604052565b90601f801991011681019081106001600160401b0382111761057a57604052565b6040519061034d8261055f565b6040519061014082018281106001600160401b0382111761057a57604052565b6040519061034d82610592565b6040519061010082018281106001600160401b0382111761057a57604052565b6040519061034d826105ad565b6001600160401b03811161057a57601f01601f191660200190565b9291926106928261066b565b916106a060405193846105e3565b8294818452818301116102fa578281602093846000960137010152565b9080601f830112156102fa5781602061045f93359101610686565b346102fa576102203660031901126102fa576001600160401b036004358181116102fa5761070a9036906004016106bd565b366023190191906101c083126102fa576101406040519361072a8561055f565b126102fa57610737610611565b61073f610340565b815260443560208201526064356040820152608435606082015260a435608082015260c43560a082015260e43560c082015261077961034f565b60e0820152610124356101008201526101443561012082015283526101643560208401526101843560408401526101a43560608401526101c43560808401526101e4359182116102fa576040926107d76107e29336906004016106bd565b906102043592611d3f565b82519182526020820152f35b60206003198201126102fa57600435906001600160401b0382116102fa57610818916004016102ff565b9091565b9061045f9160e061010091805184526020810151602085015260408101516040850152606081015160608501526080810151608085015260a081015160a085015260c0810151151560c08501520151918160e0820152019061040c565b346102fa5761089061088a366107ee565b90611f5d565b60405160209160208201926020835281518094526040830193602060408260051b8601019301916000955b8287106108c85785850386f35b9091929382806108e4600193603f198a8203018652885161081c565b96019201960195929190926108bb565b346102fa5760403660031901126102fa57602061094e6004356109168161032f565b61091e6104de565b6001600160a01b0390911660009081526001845260408082206001600160c01b0390931682526020929092522090565b54604051908152f35b346102fa5760403660031901126102fa576004356109748161032f565b60243590600091338352826020526040832091825492838311610a0057848080808681966109fd966109a6838c611fc2565b9055604080516001600160a01b03831681526020810184905233917fd1c19fbcd4551a5edfb66d43d2e337c04837afda3482b42bdf569a8fccdae5fb91a26001600160a01b03165af16109f7611fe2565b50612012565b80f35b60405162461bcd60e51b815260206004820152601960248201527f576974686472617720616d6f756e7420746f6f206c61726765000000000000006044820152606490fd5b90816101209103126102fa5790565b6102006003198201126102fa57600435916024356001600160401b0381116102fa5782610a8391600401610a45565b91604319016101c081126102fa5761014060405191610aa18361055f565b126102fa57610aae610611565b610ab661035d565b81526064356020820152608435604082015260a435606082015260c435608082015260e43560a08201526101043560c0820152610af161036a565b60e0820152610144356101008201526101643561012082015281526101843560208201526101a43560408201526101c43560608201526101e435608082015290565b346102fa576060610b4336610a54565b9190600092805191610b7683610100604082015160608301510160808301510160a08301510160c0830151019101510290565b60e0909301516001600160a01b0316610ba2575b85856040519060008252602082015260006040820152f35b610bae94505a93613691565b905038808080610b8a565b60206003198201126102fa57600435906001600160401b0382116102fa5761045f91600401610a45565b346102fa576020610bfb610bf636610bb9565b612053565b604051908152f35b346102fa57610c2f610c14366107ee565b809291610c1f611e79565b50610c2982611ec7565b50611f5d565b6000198201918211610c5d576104da91610c4891611f49565b5160405191829160208352602083019061081c565b611933565b9061045f9060e06080610cb4816101408751908087528151908701526020810151610160870152604081015161018087015260608101516101a0870152015160a06101c08601526101e085019061040c565b60208087015180518683015201516040850152946040810151805160608601526020015160808501526060810151805160a08601526020015160c0850152015191019080516001600160a01b031682526020908101518051828401520151604090910152565b346102fa57610d31610d2b366107ee565b906121ec565b60405160209160208201926020835281518094526040830193602060408260051b8601019301916000955b828710610d695785850386f35b909192938280610d85600193603f198a82030186528851610c62565b9601920196019592919092610d5c565b346102fa5760403660031901126102fa576020600435610db48161032f565b610dbc6104de565b6001600160a01b0390911660009081526001835260408082206001600160c01b03841683526020529020546040805192901b67ffffffffffffffff1916178152f35b60606003198201126102fa57600435610e168161032f565b916024356001600160401b03928382116102fa57806023830112156102fa5781600401359384116102fa57602484830101116102fa57602401919060443590565b346102fa57610e6536610dfe565b90806040519384378201908260008095819585838097520393f1610e87611fe2565b9015610e91575080f35b8051918215610ea05750602001fd5b80fd5b346102fa5760203660031901126102fa576104da6080600435610ec58161032f565b60409182918251610ed58161055f565b60009281848093528260208201528286820152826060820152015260018060a01b03168152806020522090610f5e65ffffffffffff6001835194610f188661055f565b80548652015460ff8116151560208601526001600160701b038160081c168486015263ffffffff8160781c16606086015260981c16608084019065ffffffffffff169052565b5191829182919091608065ffffffffffff8160a0840195805185526020810151151560208601526001600160701b03604082015116604086015263ffffffff6060820151166060860152015116910152565b346102fa576104da6104ce610fc436610383565b959490949391936123d7565b346102fa576104da610fe9610fe436610bb9565b6127f3565b60405191829160208352602083019061081c565b346102fa5761100b36610a54565b9190915a9281519361101d8583613926565b61102682612053565b602084015260408501519361106a6001600160781b038660c08901511760608901511760808901511760a08901511761010089015117610120890151171115612929565b61109586610100604082015160608301510160808301510160a08301510160c0830151019101510290565b946110c56110c16110a95a89898988613c29565b89516020909a015190996001600160a01b0316613d3c565b1590565b611174575a8303116111235750926111069260806111019360a061110d975a9560408601526060808601525a9003910135019101525a90611fc2565b612975565b6064900490565b6040805192835260006020840152820152606090f35b60408051631101335b60e11b815260048101929092526024820152601e60448201527f41413236206f76657220766572696669636174696f6e4761734c696d697400006064820152608490fd5b0390fd5b60408051631101335b60e11b8152600481018490526024810191909152601a6044820152794141323520696e76616c6964206163636f756e74206e6f6e636560301b6064820152608490fd5b346102fa5760203660031901126102fa576004356111dd8161032f565b60018060a01b031660005260006020526020604060002054604051908152f35b346102fa576104da6104ce61121136610383565b94611220949194939293611a7e565b50611229611a9f565b966104c96112378480611b22565b6104bb6040519a8b926334b41e7d60e11b602085015260248401611c4e565b346102fa5761126436610a54565b91906000925a918151926112788483613926565b61128182612053565b60208401526040840151946112c56001600160781b038760c08801511760608801511760808801511760a08801511761010088015117610120880151171115612929565b6112f085610100604082015160608301510160808301510160a08301510160c0830151019101510290565b6112fd8782878786613c29565b865190979061131e906110c1906001600160a01b031660208a015190613d3c565b61141e575a8403116113cf576060915a60e097909701516001600160a01b0316611392575b509360806111069460a0611101956104da999561137599604087015260608601525a9003910135019101525a90611fc2565b604051938493846040919493926060820195825260208201520152565b8198506104da9692508460a0611101956113bd6080948a96876111069b886113759e51015193613691565b9c90969a509498509550509450611343565b60408051631101335b60e11b8152600481018490526024810191909152601e60448201527f41413236206f76657220766572696669636174696f6e4761734c696d697400006064820152608490fd5b60408051631101335b60e11b8152600481018590526024810191909152601a6044820152794141323520696e76616c6964206163636f756e74206e6f6e636560301b6064820152608490fd5b60203660031901126102fa576100216004356114858161032f565b612b68565b60009103126102fa57565b346102fa57600080600319360112610ea0573381528060205260016040822001805463ffffffff8160781c1690811561154b57611510916114db60ff6114e99316612bbf565b65ffffffffffff4216612bff565b825460ff65ffffffffffff60981b01191665ffffffffffff60981b609883901b1617909255565b60405165ffffffffffff91909116815233907ffa9b3c14cc825c412c9ed81b3ba365a5b459439403f18829e572ed53a4180f0a90602090a280f35b60405162461bcd60e51b815260206004820152600a6024820152691b9bdd081cdd185ad95960b21b6044820152606490fd5b346102fa5760203660031901126102fa5760043561159a8161032f565b3360009081526020819052604090206109fd90600101916116028354936115f165ffffffffffff6001600160701b038760081c16966115da881515612c19565b60981c166115e9811515612c5c565b421015612ca8565b8054610100600160c81b0319169055565b604080516001600160a01b03831681526020810185905233917fb7c918e0e249f999e965cafeb6c664271b3f4317d296461500e71da39f0cbda391a2600080808095819460018060a01b03165af1611658611fe2565b50612cf4565b346102fa576104da61167761167236610bb9565b612db9565b604051918291602083526020830190610c62565b60409061045f939215158152816020820152019061040c565b346102fa576116b236610dfe565b6060936000936001600160a01b03939184169290833b156102fa5760008094611714966040519788968795869363428557b160e11b85527f00000000000000000000000000000000000000000000000000000000000000001660048501612f1f565b0393f190816117b3575b506117ae57505061172d611fe2565b61173f61173a8251611fa4565b6122f7565b9060045b8151811015611788578061176a61175c60019385612f41565b516001600160f81b03191690565b61178161177683611fa4565b9160001a9186612f41565b5301611743565b505061179d9060208082518301019101612395565b905b6104da6040519283928361168b565b61179f565b806117c06117c69261057f565b8061148a565b3861171e565b346102fa5760203660031901126102fa576004356117e98161032f565b60018060a01b0316600052600060205260a0604060002065ffffffffffff6001825492015460405192835260ff8116151560208401526001600160701b038160081c16604084015263ffffffff8160781c16606084015260981c166080820152f35b346102fa5761186d61185c366107ee565b809291611867612165565b506121ec565b6000198201918211610c5d576104da9161188691611f49565b51604051918291602083526020830190610c62565b156118a257565b60405162461bcd60e51b815260206004820152601a60248201527f6d757374207370656369667920756e7374616b652064656c61790000000000006044820152606490fd5b156118ee57565b60405162461bcd60e51b815260206004820152601c60248201527f63616e6e6f7420646563726561736520756e7374616b652074696d65000000006044820152606490fd5b634e487b7160e01b600052601160045260246000fd5b906113888201809211610c5d57565b9060018201809211610c5d57565b91908201809211610c5d57565b1561197a57565b60405162461bcd60e51b81526020600482015260126024820152711b9bc81cdd185ad9481cdc1958da599a595960721b6044820152606490fd5b156119bb57565b60405162461bcd60e51b815260206004820152600e60248201526d7374616b65206f766572666c6f7760901b6044820152606490fd5b9065ffffffffffff6080600161034d948451815501926020810151151584546effffffffffffffffffffffffffff00604084015160081b169060ff63ffffffff60781b606086015160781b169316906cffffffffffffffffffffffffff60981b16171717845501511681549065ffffffffffff60981b9060981b169065ffffffffffff60981b1916179055565b60405190611a8b82610592565b606060408360008152600060208201520152565b60405190611aac8261055f565b6040516101408101836001600160401b0382118383101761057a5760809160405260009283815283602082015283604082015283606082015283838201528360a08201528360c08201528360e0820152836101008201528361012082015281528260208201528260408201528260608201520152565b90359061011e19813603018212156102fa570190565b9035601e19823603018112156102fa5701602081359101916001600160401b0382116102fa5781360383136102fa57565b908060209392818452848401376000828201840152601f01601f1916010190565b61045f91611c2f611bf6611bdb610120611bb485611ba788610378565b6001600160a01b03169052565b60208601356020860152611bcb6040870187611b38565b9091806040880152860191611b69565b611be86060860186611b38565b908583036060870152611b69565b6080840135608084015260a084013560a084015260c084013560c0840152611c2160e0850185611b38565b9084830360e0860152611b69565b91611c406101009182810190611b38565b929091818503910152611b69565b906080611c706101e09295949561020060008652806020870152850190611b8a565b855180516001600160a01b0316604086015290959060208101516060860152604081015183860152606081015160a08601528281015160c086015260a081015160e086015260c081015190610100918287015260e081015191611ce0610120938489019060018060a01b03169052565b8101516101408701520151610160850152602081015161018085015260408101516101a085015260608101516101c08501520151910152565b6000198114610c5d5760010190565b60409061045f93928152816020820152019061040c565b9190805193606085015194611d57603f5a0260061c90565b61271060a083015188010111611e2157610818956000958051611d87575b5050505a90036080820151019261329b565b8251611da1926110c19290916001600160a01b03166131c5565b611dad575b8080611d75565b909350611db86131d7565b8051611dca575b505060019238611da6565b602083810151835193909101516040516001600160a01b039094169391927f1c4fada7374c0a9ee8841fc38afe82932dc0f8e69012e927f061a8bae611a20192918291611e179183611d28565b0390a33880611dbf565b60408051631101335b60e11b8152600060048201526024810191909152600f60448201526e41413935206f7574206f662067617360881b6064820152608490fd5b6001600160401b03811161057a5760051b60200190565b6040519061010082018281106001600160401b0382111761057a57604052606060e083600080825280602083015280604083015280848301528060808301528060a083015260c08201520152565b90611ed182611e62565b611ede60405191826105e3565b8281528092611eef601f1991611e62565b019060005b828110611f0057505050565b602090611f0b611e79565b82828501015201611ef4565b634e487b7160e01b600052603260045260246000fd5b90821015611f445761045f9160051b810190611b22565b611f17565b8051821015611f445760209160051b010190565b611f6682611ec7565b9160005b818110611f775750505090565b80611f88610fe46001938587611f2d565b611f928287611f49565b52611f9d8186611f49565b5001611f6a565b600319810191908211610c5d57565b600019810191908211610c5d57565b91908203918211610c5d57565b60405190611fdc826105c8565b60008252565b3d1561200d573d90611ff38261066b565b9161200160405193846105e3565b82523d6000602084013e565b606090565b1561201957565b60405162461bcd60e51b81526020600482015260126024820152716661696c656420746f20776974686472617760701b6044820152606490fd5b61206060408201826122ad565b9081604051918237209061207760608201826122ad565b9081604051918237209161210361209a61209460e08501856122ad565b90614726565b6040805185356001600160a01b031660208083019182528701359282019290925260608101949094526080808501969096529484013560a08085019190915284013560c0808501919091529093013560e083015261010082019290925291908290610120820190565b0391612117601f19938481018352826105e3565b5190206040805160208101928352309181019190915246606082015260809283018152909161214690826105e3565b51902090565b60405190612159826105ad565b60006020838281520152565b604051906121728261055f565b8160405161217f8161055f565b600081526000602082015260006040820152600060608201526060608082015281526121a961214c565b60208201526121b661214c565b60408201526121c361214c565b60608201526080604051916121d7836105ad565b600083526121e361214c565b60208401520152565b6121f582611e62565b9161220360405193846105e3565b808352601f1961221282611e62565b0160005b81811061225c57505060005b81811061222f5750505090565b806122406116726001938587611f2d565b61224a8287611f49565b526122558186611f49565b5001612222565b602090612267612165565b82828801015201612216565b908092918237016000815290565b9190811015611f445760051b81013590605e19813603018212156102fa570190565b3561045f8161032f565b903590601e19813603018212156102fa57018035906001600160401b0382116102fa576020019181360383136102fa57565b6040516122eb816105c8565b60008152906000368137565b906123018261066b565b61230e60405191826105e3565b828152809261231f601f199161066b565b0190602036910137565b93929161234e9060409260018060a01b0316865260606020870152606086019061040c565b930152565b81601f820112156102fa5780516123698161066b565b9261237760405194856105e3565b818452602082840101116102fa5761045f91602080850191016103e9565b9190916040818403126102fa57805180151581036102fa579260208201516001600160401b0381116102fa5761045f9201612353565b6040513d6000823e3d90fd5b9693959194966123e5611a7e565b5060005b828110612731575050506123fd8480611b22565b9460209161240c8387016122a3565b946124416124296124226040998a8101906122ad565b3691610686565b98612432611a9f565b9061243c8161382c565b61298b565b506001600160a01b0392915050868216156127085788600088878b8815612605575050505050600193612484612475611fcf565b919592949b93919b5b86611966565b9081907f0000000000000000000000000000000000000000000000000000000000000000169b5b846124b68885611fc2565b106125da575a6124c588611949565b116125b15791869593918a95938e8d8f8c6124e28f9d8890611966565b60011c9a8b8451938493634440347360e01b90850152602484019261250693612329565b03601f198101825261251890826105e3565b5a9151631efc84dd60e31b81529b8c9283926125379260048501612329565b03815a6000948591f19889156125ac57600090819a612586575b50156125715750505061256384611fb3565b95915b9390929495916124ab565b93965094612580919750611958565b94612566565b906125a4929a503d8091833e61259c81836105e3565b810190612395565b989038612551565b6123cb565b508951637162685f60e11b81526004810191909152602481018690526044810191909152606490fd5b9998509950509392505096506125ff92506125f3610631565b95865285019015159052565b82015290565b61265f9498508397939291612634612642925a9b5a9151958694634440347360e01b9086015260248501612329565b03601f1981018352826105e3565b5a8c51631efc84dd60e31b81529485928392908d60048501612329565b038183887f0000000000000000000000000000000000000000000000000000000000000000165af19182156125ac578580936126e7575b5050816126a586975a90611fc2565b9580156126bf575050612484909b93919b9592949561247e565b979b50999850505098505050506125ff91506126d9610631565b946000865285019015159052565b909195506126ff92503d8091833e61259c81836105e3565b90933880612696565b9850505050935050506127196122df565b906000612724610631565b9381855284015282015290565b60019061273c611a9f565b61276761274a838787612281565b9161275d6127588480611b22565b61382c565b61243c8380611b22565b5050506020810161278661277a826122a3565b6001600160a01b031690565b156127ce576000916127b98361279c81946122a3565b926127ac604091828101906122ad565b9390915180948193612273565b03925af1506127c6611fe2565b505b016123e9565b50506127c8565b604051906127e2826105ad565b6002825261060f60f31b6020830152565b6127fb611e79565b50600280541461291757600280556080612813611a9f565b9161281d8161382c565b612827838261298b565b926000929192905a908760608101519161284460608201826122ad565b6003811161290e575b638dd7712f60e01b966001600160e01b03191687036128f55750506128a76128ac9560208401516128936040519485936020850152604060248501526064840190611b8a565b90604483015203601f1981018352826105e3565b611d3f565b9490955b0151946128bb61063e565b958652602086015260408501526060840152608083015260a0820152600060c08201526128e66127d5565b60e082015261045f6001600255565b61290696506128a792503691610686565b9490956128b0565b8135965061284d565b604051633ee5aeb560e01b8152600490fd5b1561293057565b60405162461bcd60e51b815260206004820152601860248201527f41413934206761732076616c756573206f766572666c6f7700000000000000006044820152606490fd5b90607382029180830460731490151715610c5d57565b90916000915a9380519161299f8382613926565b6129a881612053565b60208301526040830151956129ec6001600160781b038860c08701511760608701511760808701511760a08701511761010087015117610120870151171115612929565b612a1784610100604082015160608301510160808301510160a08301510160c0830151019101510290565b612a2388828686613a84565b8551909890612a44906110c1906001600160a01b0316602089015190613d3c565b612b1c575a830311612acd576060905a60e096909601516001600160a01b0316612a97575b6111019360a061045f9794879460809460406111069a015260608601525a9003910135019101525a90611fc2565b965050928260806111019360a061045f97612abb84611106995101518c878661350e565b9b909598509350949750509350612a69565b60408051631101335b60e11b8152600060048201526024810191909152601e60448201527f41413236206f76657220766572696669636174696f6e4761734c696d697400006064820152608490fd5b60408051631101335b60e11b8152600060048201526024810191909152601a6044820152794141323520696e76616c6964206163636f756e74206e6f6e636560301b6064820152608490fd5b6001805b60058110612bb85750507f2da466a7b24304f47e87fa2e1e5a81b9831ce54fec19055ce277ca2f39ba42c46020612ba33484613f7c565b6040519081526001600160a01b0390931692a2565b8101612b6c565b15612bc657565b60405162461bcd60e51b8152602060048201526011602482015270616c726561647920756e7374616b696e6760781b6044820152606490fd5b91909165ffffffffffff80809416911601918211610c5d57565b15612c2057565b60405162461bcd60e51b81526020600482015260146024820152734e6f207374616b6520746f20776974686472617760601b6044820152606490fd5b15612c6357565b60405162461bcd60e51b815260206004820152601d60248201527f6d7573742063616c6c20756e6c6f636b5374616b6528292066697273740000006044820152606490fd5b15612caf57565b60405162461bcd60e51b815260206004820152601b60248201527f5374616b65207769746864726177616c206973206e6f742064756500000000006044820152606490fd5b15612cfb57565b60405162461bcd60e51b815260206004820152601860248201527f6661696c656420746f207769746864726177207374616b6500000000000000006044820152606490fd5b906014116102fa5790601490565b6bffffffffffffffffffffffff199035818116939260148110612d7057505050565b60140360031b82901b16169150565b60405190612d8c826105ad565b6003546001600160a01b03168252604051602083612da9836105ad565b6004548352600554828401520152565b612dc1612165565b50612dca611a9f565b90612dd48161382c565b612dde828261298b565b50919092612dec8385613d7c565b805160e00151612e09906001600160a01b0316613e82565b613e82565b815151909290612e3990612e25906001600160a01b0316613e82565b91612e2e61214c565b5060408101906122ad565b9060148210612f1357612e5b612e55612e6193612e0493612d40565b90612d4e565b60601c90565b9160018060a01b038616946080820151966060604084015193015192612e85610604565b9889526020890152604088015260608701526080860152612ea4612d7f565b9380151580612f08575b612ed6575b50612ebc610604565b948552602085015260408401526060830152608082015290565b909350612ee281613e82565b612efc612eed61065e565b6001600160a01b039093168352565b60208201529238612eb3565b506001811415612eae565b5050612e616000613e82565b6001600160a01b03909116815260406020820181905261045f93910191611b69565b908151811015611f44570160200190565b61034d33612b68565b91612f7d61275892612f83949a95999a98969798612f77611a7e565b50613ec4565b80611b22565b600083156130f15750600190612fa5612f9a611fcf565b959291935b85611966565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169581905b84612fde8885611fc2565b106130c7575a612fed88611949565b1161309d57918695939160009593868b8b8e61301561300f886130359f611966565b60011c90565b9a8b936040519e8f9586948593631efc84dd60e31b855260048501612329565b03925af19889156125ac57600090819a61307f575b501561306a5750505061305c84611fb3565b95915b939092949591612fd3565b93965094613079919750611958565b9461305f565b90613095929a503d8091833e61259c81836105e3565b98903861304a565b50604051637162685f60e11b81526004810191909152602481018690526044810191909152606490fd5b9650965050919550506130e991506130dd610631565b93845215156020840152565b604082015290565b925090613118915a91845a60405180968192631efc84dd60e31b83528c8c60048501612329565b0381837f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03165af19384156125ac578580956131a1575b5050839461316681945a90611fc2565b94811561317e575050612fa590959291939495612f9f565b965096505095505050506130e9613193610631565b600081529215156020840152565b909194506131ba9295503d8091833e61259c81836105e3565b939093923880613156565b9060009283809360208451940192f190565b3d6108008082116131fe575b50604051906020818301016040528082526000602083013e90565b9050386131e3565b6003111561321057565b634e487b7160e01b600052602160045260246000fd5b909493929460038110156132105760609261324e91835260806020840152608083019061040c565b9460408201520152565b9060a061045f926000815260606020820152601460608201527310504d4c081c1bdcdd13dc081c995d995c9d195960621b6080820152816040820152019061040c565b9093916000935a928651926132af84613f52565b60e08501519091906001600160a01b0316808061339457505084516001600160a01b03169050925b5a8603019360a06060820151910151019060808901918251860390818111613380575b505084029160408901928351948186106000146133565750508061331f600292613206565b0361333b57505061034d9250809561333681614064565b613fa3565b9150915061034d925a90039051019051856133368297614064565b9061034d9750809a945061336f92935080950390613f7c565b5061337981613206565b1590614004565b6064919003600a02049094019338806132fa565b949180516133a4575b50506132d7565b6133ad85613206565b600285031561339d57909198505a9160a087015191813b156102fa57859285600080948e6133f484604051998a9889978895637c627b2160e01b8752029160048601613226565b0393f19081613432575b506134275761117061340e6131d7565b6040516365c8fd4d60e01b815291829160048301613258565b5a900396388061339d565b806117c061343f9261057f565b386133fe565b91906040838203126102fa5782516001600160401b0381116102fa5760209161346f918501612353565b92015190565b61348d60409295949395606083526060830190611b8a565b9460208201520152565b9060a061045f926000815260606020820152600d60608201526c10504cccc81c995d995c9d1959609a1b6080820152816040820152019061040c565b60a09061045f9392815260606020820152600d60608201526c10504cccc81c995d995c9d1959609a1b6080820152816040820152019061040c565b939192905a815160e001516001600160a01b031660008181526020819052604090208054979296929083891061364257602060009586928661356d9c039055015191604051998a95869485936314add44b60e21b855260048501613475565b03926001600160a01b031686f1938460009160009661361b575b506135b0576111706135976131d7565b6040516365c8fd4d60e01b815291829160048301613497565b93925a9003116135bc57565b60408051631101335b60e11b8152600060048201526024810191909152602760448201527f41413336206f766572207061796d6173746572566572696669636174696f6e47606482015266185cd31a5b5a5d60ca1b608482015260a490fd5b90955061363b91503d806000833e61363381836105e3565b810190613445565b9438613587565b60408051631101335b60e11b8152600060048201526024810191909152601e60448201527f41413331207061796d6173746572206465706f73697420746f6f206c6f7700006064820152608490fd5b93909294915a815160e001516001600160a01b0316600081815260208190526040902091959092909180548981106137c5578990039055602001516040516314add44b60e21b81529697600093889390928492869284926136f6929160048501613475565b03926001600160a01b031686f193846000916000966137a6575b5061373b578561371e6131d7565b6040516365c8fd4d60e01b815291829161117091600484016134d3565b9491925a9003116137495750565b60408051631101335b60e11b815260048101929092526024820152602760448201527f41413336206f766572207061796d6173746572566572696669636174696f6e47606482015266185cd31a5b5a5d60ca1b608482015260a490fd5b9095506137be91503d806000833e61363381836105e3565b9438613710565b60408051631101335b60e11b8152600481018b90526024810191909152601e60448201527f41413331207061796d6173746572206465706f73697420746f6f206c6f7700006064820152608490fd5b90604061045f9260008152816020820152019061040c565b6040516135a560f21b602082019081523060601b6022830152600160f81b6036830152601782526138b4929190613862826105ad565b60018060a01b0391519020166bffffffffffffffffffffffff60a01b600654161760065561389360408201826122ad565b90506138ac6138a1836122a3565b9260e08101906122ad565b9290916140a6565b80516138bd5750565b604051631101335b60e11b81529081906111709060048301613814565b156138e157565b60405162461bcd60e51b815260206004820152601d60248201527f4141393320696e76616c6964207061796d6173746572416e64446174610000006044820152606490fd5b6139ab90613943613936826122a3565b6001600160a01b03168452565b602081013560208401526139676080820135906001600160801b038260801c921690565b6060850152604084015260a081013560c084015261399560c0820135906001600160801b038260801c921690565b61010085015261012084015260e08101906122ad565b9081156139e7576139cf8260e0926139ca603461034d979610156138da565b614160565b60a085015260808401526001600160a01b0316910152565b505060a081600060e0819401528260808201520152565b908160209103126102fa575190565b9060a061045f926000815260606020820152600d60608201526c10504c8cc81c995d995c9d1959609a1b6080820152816040820152019061040c565b60a09061045f9392815260606020820152600d60608201526c10504c8cc81c995d995c9d1959609a1b6080820152816040820152019061040c565b9093926020613b0b91865193613acb60e0613aa5875160018060a01b031690565b96613abd613ab660408601866122ad565b908d6141b7565b01516001600160a01b031690565b6001600160a01b039081161598600093919291908a613bec575b8501516040516306608bdf60e21b81529687958694600094938693929160048501613475565b0393881690f160009181613bbb575b50613b4357611170613b2a6131d7565b6040516365c8fd4d60e01b815291829160048301613a0d565b93613b4c575050565b6001600160a01b03166000908152602081905260409020908154808211613b7257039055565b60408051631101335b60e11b8152600060048201526024810191909152601760448201527610504c8c48191a591b89dd081c185e481c1c99599d5b99604a1b6064820152608490fd5b613bde91925060203d602011613be5575b613bd681836105e3565b8101906139fe565b9038613b1a565b503d613bcc565b6001600160a01b038816600090815260208190526040812054919550919089811115613c20575085825b9591925050613ae5565b86908a03613c16565b949291936020613c6691865193613acb60e0613c4b875160018060a01b031690565b96613abd8b8d613c5e60408801886122ad565b929091614412565b0393881690f160009181613d1b575b50613ca05785613c836131d7565b6040516365c8fd4d60e01b81529182916111709160048401613a49565b949293613cac57505050565b6001600160a01b0316600090815260208190526040902091825490818311613cd45750039055565b60408051631101335b60e11b815260048101929092526024820152601760448201527610504c8c48191a591b89dd081c185e481c1c99599d5b99604a1b6064820152608490fd5b613d3591925060203d602011613be557613bd681836105e3565b9038613c75565b6001600160a01b0316600090815260016020908152604080832084821c845290915290208054916001600160401b0391613d7584611d19565b9055161490565b613d859061464c565b6001600160a01b0392918316613e3f57613df057613da29061464c565b5016613daa57565b60408051631101335b60e11b8152600060048201526024810191909152601460448201527320a0999a1039b4b3b730ba3ab9329032b93937b960611b6064820152608490fd5b60408051631101335b60e11b8152600060048201526024810191909152601760448201527f414132322065787069726564206f72206e6f74206475650000000000000000006064820152608490fd5b6084604051631101335b60e11b81526000600482015260406024820152601460448201527320a0991a1039b4b3b730ba3ab9329032b93937b960611b6064820152fd5b90613e8b61214c565b9160018060a01b0316600052600060205263ffffffff6001604060002001546001600160701b038160081c16845260781c166020830152565b60005b828110613ed357505050565b600190613ede611a9f565b613eec61274a838787612281565b505050602081013590613efe8261032f565b838060a01b03821615613f4b576000918291613f198261032f565b82613f29604092838101906122ad565b8093519384928337810182815203925af150613f43611fe2565b505b01613ec7565b5050613f45565b610120610100820151910151808214613f7857480180821015613f73575090565b905090565b5090565b60018060a01b0316600052600060205260406000208054918201809211610c5d5781905590565b9190917f49628fd1471006c1482da88028e9ce4dbb080b815c9b0344d39e5a8e6ec1419f6080602083015192519460018060a01b03946020868851169660e089015116970151916040519283526000602084015260408301526060820152a4565b9060807f49628fd1471006c1482da88028e9ce4dbb080b815c9b0344d39e5a8e6ec1419f91602084015193519560018060a01b03956020878951169760e08a015116980151926040519384521515602084015260408301526060820152a4565b60208101519051907f67b4fa9642f42120bf031f3051d1824b0fe25627945b27b8a6a65d5761d5482e60208060018060a01b03855116940151604051908152a3565b929192159081614156575b5061411b5760148110156140ca575b505061045f611fcf565b6014116102fa573560601c3b156140e25738806140c0565b6040516140ee816105ad565b601b81527f41413330207061796d6173746572206e6f74206465706c6f7965640000000000602082015290565b5050604051614129816105ad565b601981527f41413230206163636f756e74206e6f74206465706c6f79656400000000000000602082015290565b90503b15386140b1565b90806014116102fa57806024116102fa576034116102fa57803560601c916024601483013560801c92013560801c90565b908160209103126102fa575161045f8161032f565b91602061045f938181520191611b69565b90826141c257505050565b8151516001600160a01b031692833b6143c3576006546001600160a01b03929060009084169360206040958688510151875180958193632b870d1b60e11b8352826142118b8b600484016141a6565b0393f19182156125ac57600092614392575b5080821696871561434657168096036142fa573b156142ae57612e5b612e557fd51a9c61267aa6196961883ecf5ff2da6619c37dac0fa92122513fb32c032d2d949361426e93612d40565b6020840151935160e001516142a9906001600160a01b03165b92516001600160a01b0392831681529190921660208201529081906040820190565b0390a3565b8251631101335b60e11b81526000600482015260406024820152602060448201527f4141313520696e6974436f6465206d757374206372656174652073656e6465726064820152608490fd5b8351631101335b60e11b81526000600482015260406024820152602060448201527f4141313420696e6974436f6465206d7573742072657475726e2073656e6465726064820152608490fd5b8551631101335b60e11b81526000600482015260406024820152601b60448201527f4141313320696e6974436f6465206661696c6564206f72204f4f4700000000006064820152608490fd5b6143b591925060203d6020116143bc575b6143ad81836105e3565b810190614191565b9038614223565b503d6143a3565b60408051631101335b60e11b8152600060048201526024810191909152601f60448201527f414131302073656e64657220616c726561647920636f6e7374727563746564006064820152608490fd5b90919280614421575b50505050565b8251516001600160a01b031693843b6145fd576006546001600160a01b03939060009085169460206040968789510151885180958193632b870d1b60e11b8352826144708c8c600484016141a6565b0393f19182156125ac576000926145dc575b508082169788156145905716809703614544573b156144f75750612e5b612e557fd51a9c61267aa6196961883ecf5ff2da6619c37dac0fa92122513fb32c032d2d94936144ce93612d40565b6020840151935160e001516144eb906001600160a01b0316614287565b0390a33880808061441b565b8351631101335b60e11b8152600481019190915260406024820152602060448201527f4141313520696e6974436f6465206d757374206372656174652073656e6465726064820152608490fd5b8451631101335b60e11b81526004810183905260406024820152602060448201527f4141313420696e6974436f6465206d7573742072657475726e2073656e6465726064820152608490fd5b8651631101335b60e11b81526004810185905260406024820152601b60448201527f4141313320696e6974436f6465206661696c6564206f72204f4f4700000000006064820152608490fd5b6145f691925060203d6020116143bc576143ad81836105e3565b9038614482565b60408051631101335b60e11b8152600481018590526024810191909152601f60448201527f414131302073656e64657220616c726561647920636f6e7374727563746564006064820152608490fd5b801561471d5760006040805161466181610592565b828152826020820152015265ffffffffffff90818160a01c16918215614713575b506146f5906146dc6146d16040519461469a86610592565b6001600160a01b03841686526146bf602087019460d01c859065ffffffffffff169052565b65ffffffffffff166040860181905290565b65ffffffffffff1690565b42119081156146f8575b5091516001600160a01b031690565b91565b5161470b915065ffffffffffff166146d1565b4210386146e6565b91506146f5614682565b50600090600090565b81604051918237209056fea2646970667358221220f17ba8be36e41aeb3ca1005b09255e534c238bfe6627316bff7f5ad4c94bce7e64736f6c634300081700336080806040523461001657610144908161001c8239f35b600080fdfe6080600436101561000f57600080fd5b6000803560e01c63570e1a361461002557600080fd5b3461010b57602036600319011261010b576004359167ffffffffffffffff9081841161010757366023850112156101075783600401358281116101035736602482870101116101035780601411610103576013198101928084116100ef57600b8201601f19908116603f01168301908111838210176100ef5792846024819482600c60209a968b9960405286845289840196603889018837830101525193013560601c5af190805191156100e7575b506040516001600160a01b039091168152f35b9050386100d4565b634e487b7160e01b85526041600452602485fd5b8380fd5b8280fd5b80fdfea26469706673582212200cb757f1fdb608281be803e114ca10044ba5d6804f8fe7715f297793ec636d0564736f6c63430008170033";
|
|
2817
2522
|
//# sourceMappingURL=EntryPointSimulationsV7.js.map
|