@pimlico/alto 0.0.0-main.20250326T131157 → 0.0.0-main.20250326T205022
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/bundler.d.ts +12 -6
- package/esm/cli/config/bundler.js +2 -1
- package/esm/cli/config/bundler.js.map +1 -1
- package/esm/cli/config/options.js +8 -2
- package/esm/cli/config/options.js.map +1 -1
- package/esm/cli/deploySimulationsContract.d.ts +7 -2
- package/esm/cli/deploySimulationsContract.js +56 -19
- package/esm/cli/deploySimulationsContract.js.map +1 -1
- package/esm/cli/handler.js +21 -5
- package/esm/cli/handler.js.map +1 -1
- package/esm/executor/executorManager.js.map +1 -1
- package/esm/mempool/mempool.d.ts +38 -4
- package/esm/mempool/mempool.js +29 -4
- package/esm/mempool/mempool.js.map +1 -1
- package/esm/rpc/createMethodHandler.d.ts +1 -1
- package/esm/rpc/estimation/gasEstimationsV07.d.ts +5 -4
- package/esm/rpc/estimation/gasEstimationsV07.js +78 -31
- package/esm/rpc/estimation/gasEstimationsV07.js.map +1 -1
- package/esm/rpc/methods/debug_bundler_dumpMempool.d.ts +373 -44
- package/esm/rpc/methods/debug_bundler_getStakeStatus.js +11 -3
- package/esm/rpc/methods/debug_bundler_getStakeStatus.js.map +1 -1
- package/esm/rpc/methods/eth_estimateUserOperationGas.d.ts +686 -94
- package/esm/rpc/methods/eth_getUserOperationByHash.d.ts +671 -78
- package/esm/rpc/methods/eth_sendUserOperation.d.ts +336 -40
- package/esm/rpc/methods/eth_sendUserOperation.js +6 -1
- package/esm/rpc/methods/eth_sendUserOperation.js.map +1 -1
- package/esm/rpc/methods/pimlico_sendUserOperationNow.d.ts +336 -40
- package/esm/rpc/methods/pimlico_sendUserOperationNow.js +12 -2
- package/esm/rpc/methods/pimlico_sendUserOperationNow.js.map +1 -1
- package/esm/rpc/rpcHandler.js +20 -4
- package/esm/rpc/rpcHandler.js.map +1 -1
- package/esm/rpc/validation/SafeValidator.js +5 -2
- package/esm/rpc/validation/SafeValidator.js.map +1 -1
- package/esm/rpc/validation/TracerResultParserV07.js +42 -20
- package/esm/rpc/validation/TracerResultParserV07.js.map +1 -1
- package/esm/store/createMemoryOutstandingStore.js +12 -2
- package/esm/store/createMemoryOutstandingStore.js.map +1 -1
- package/esm/store/createMempoolStore.js +10 -8
- package/esm/store/createMempoolStore.js.map +1 -1
- package/esm/types/contracts/PimlicoEntryPointSimulations.d.ts +2 -1
- package/esm/types/contracts/PimlicoEntryPointSimulations.js +2 -1
- package/esm/types/contracts/PimlicoEntryPointSimulations.js.map +1 -1
- package/esm/types/schemas.d.ts +11240 -5385
- package/esm/types/schemas.js +90 -8
- package/esm/types/schemas.js.map +1 -1
- package/esm/utils/userop.d.ts +23 -3
- package/esm/utils/userop.js +85 -7
- package/esm/utils/userop.js.map +1 -1
- package/lib/cli/config/bundler.d.ts +12 -6
- package/lib/cli/config/bundler.js +2 -1
- package/lib/cli/config/bundler.js.map +1 -1
- package/lib/cli/config/options.js +8 -2
- package/lib/cli/config/options.js.map +1 -1
- package/lib/cli/deploySimulationsContract.d.ts +7 -2
- package/lib/cli/deploySimulationsContract.js +55 -18
- package/lib/cli/deploySimulationsContract.js.map +1 -1
- package/lib/cli/handler.js +21 -5
- package/lib/cli/handler.js.map +1 -1
- package/lib/executor/executorManager.js.map +1 -1
- package/lib/mempool/mempool.d.ts +38 -4
- package/lib/mempool/mempool.js +29 -4
- package/lib/mempool/mempool.js.map +1 -1
- package/lib/rpc/createMethodHandler.d.ts +1 -1
- package/lib/rpc/estimation/gasEstimationsV07.d.ts +5 -4
- package/lib/rpc/estimation/gasEstimationsV07.js +77 -30
- package/lib/rpc/estimation/gasEstimationsV07.js.map +1 -1
- package/lib/rpc/methods/debug_bundler_dumpMempool.d.ts +373 -44
- package/lib/rpc/methods/debug_bundler_getStakeStatus.js +10 -2
- package/lib/rpc/methods/debug_bundler_getStakeStatus.js.map +1 -1
- package/lib/rpc/methods/eth_estimateUserOperationGas.d.ts +686 -94
- package/lib/rpc/methods/eth_getUserOperationByHash.d.ts +671 -78
- package/lib/rpc/methods/eth_sendUserOperation.d.ts +336 -40
- package/lib/rpc/methods/eth_sendUserOperation.js +6 -1
- package/lib/rpc/methods/eth_sendUserOperation.js.map +1 -1
- package/lib/rpc/methods/pimlico_sendUserOperationNow.d.ts +336 -40
- package/lib/rpc/methods/pimlico_sendUserOperationNow.js +12 -2
- package/lib/rpc/methods/pimlico_sendUserOperationNow.js.map +1 -1
- package/lib/rpc/rpcHandler.js +20 -4
- package/lib/rpc/rpcHandler.js.map +1 -1
- package/lib/rpc/validation/SafeValidator.js +4 -1
- package/lib/rpc/validation/SafeValidator.js.map +1 -1
- package/lib/rpc/validation/TracerResultParserV07.js +41 -19
- package/lib/rpc/validation/TracerResultParserV07.js.map +1 -1
- package/lib/store/createMemoryOutstandingStore.js +12 -2
- package/lib/store/createMemoryOutstandingStore.js.map +1 -1
- package/lib/store/createMempoolStore.js +10 -8
- package/lib/store/createMempoolStore.js.map +1 -1
- package/lib/types/contracts/PimlicoEntryPointSimulations.d.ts +2 -1
- package/lib/types/contracts/PimlicoEntryPointSimulations.js +3 -2
- package/lib/types/contracts/PimlicoEntryPointSimulations.js.map +1 -1
- package/lib/types/schemas.d.ts +11240 -5385
- package/lib/types/schemas.js +90 -8
- package/lib/types/schemas.js.map +1 -1
- package/lib/utils/userop.d.ts +23 -3
- package/lib/utils/userop.js +87 -7
- package/lib/utils/userop.js.map +1 -1
- package/package.json +2 -2
|
@@ -21,7 +21,7 @@ export declare const ethGetUserOperationByHashHandler: {
|
|
|
21
21
|
nonce: import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodNumber]>, import("zod").ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
|
|
22
22
|
r: import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodString, `0x${string}`, string>, `0x${string}`, string>;
|
|
23
23
|
s: import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodString, `0x${string}`, string>, `0x${string}`, string>;
|
|
24
|
-
v: import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodNumber]>, import("zod").ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint
|
|
24
|
+
v: import("zod").ZodOptional<import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodNumber]>, import("zod").ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>;
|
|
25
25
|
yParity: import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodNumber]>, import("zod").ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
|
|
26
26
|
}, "strip", import("zod").ZodTypeAny, {
|
|
27
27
|
nonce: number;
|
|
@@ -29,23 +29,23 @@ export declare const ethGetUserOperationByHashHandler: {
|
|
|
29
29
|
chainId: number;
|
|
30
30
|
r: `0x${string}`;
|
|
31
31
|
s: `0x${string}`;
|
|
32
|
-
v: bigint;
|
|
33
32
|
yParity: number;
|
|
33
|
+
v?: bigint | undefined;
|
|
34
34
|
}, {
|
|
35
35
|
nonce: string | number | bigint;
|
|
36
36
|
contractAddress: string;
|
|
37
37
|
chainId: string | number | bigint;
|
|
38
38
|
r: string;
|
|
39
39
|
s: string;
|
|
40
|
-
v: string | number | bigint;
|
|
41
40
|
yParity: string | number | bigint;
|
|
41
|
+
v?: string | number | bigint | undefined;
|
|
42
42
|
}>, import("zod").ZodObject<{
|
|
43
43
|
address: import("zod").ZodEffects<import("zod").ZodString, `0x${string}`, string>;
|
|
44
44
|
chainId: import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodNumber]>, import("zod").ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
|
|
45
45
|
nonce: import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodNumber]>, import("zod").ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
|
|
46
46
|
r: import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodString, `0x${string}`, string>, `0x${string}`, string>;
|
|
47
47
|
s: import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodString, `0x${string}`, string>, `0x${string}`, string>;
|
|
48
|
-
v: import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodNumber]>, import("zod").ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint
|
|
48
|
+
v: import("zod").ZodOptional<import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodNumber]>, import("zod").ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>;
|
|
49
49
|
yParity: import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodNumber]>, import("zod").ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
|
|
50
50
|
}, "strip", import("zod").ZodTypeAny, {
|
|
51
51
|
address: `0x${string}`;
|
|
@@ -53,16 +53,16 @@ export declare const ethGetUserOperationByHashHandler: {
|
|
|
53
53
|
chainId: number;
|
|
54
54
|
r: `0x${string}`;
|
|
55
55
|
s: `0x${string}`;
|
|
56
|
-
v: bigint;
|
|
57
56
|
yParity: number;
|
|
57
|
+
v?: bigint | undefined;
|
|
58
58
|
}, {
|
|
59
59
|
address: string;
|
|
60
60
|
nonce: string | number | bigint;
|
|
61
61
|
chainId: string | number | bigint;
|
|
62
62
|
r: string;
|
|
63
63
|
s: string;
|
|
64
|
-
v: string | number | bigint;
|
|
65
64
|
yParity: string | number | bigint;
|
|
65
|
+
v?: string | number | bigint | undefined;
|
|
66
66
|
}>]>>>;
|
|
67
67
|
}, "strict", import("zod").ZodTypeAny, {
|
|
68
68
|
sender: `0x${string}`;
|
|
@@ -82,16 +82,16 @@ export declare const ethGetUserOperationByHashHandler: {
|
|
|
82
82
|
chainId: number;
|
|
83
83
|
r: `0x${string}`;
|
|
84
84
|
s: `0x${string}`;
|
|
85
|
-
v: bigint;
|
|
86
85
|
yParity: number;
|
|
86
|
+
v?: bigint | undefined;
|
|
87
87
|
} | {
|
|
88
88
|
address: `0x${string}`;
|
|
89
89
|
nonce: number;
|
|
90
90
|
chainId: number;
|
|
91
91
|
r: `0x${string}`;
|
|
92
92
|
s: `0x${string}`;
|
|
93
|
-
v: bigint;
|
|
94
93
|
yParity: number;
|
|
94
|
+
v?: bigint | undefined;
|
|
95
95
|
} | null | undefined;
|
|
96
96
|
}, {
|
|
97
97
|
sender: string;
|
|
@@ -111,16 +111,16 @@ export declare const ethGetUserOperationByHashHandler: {
|
|
|
111
111
|
chainId: string | number | bigint;
|
|
112
112
|
r: string;
|
|
113
113
|
s: string;
|
|
114
|
-
v: string | number | bigint;
|
|
115
114
|
yParity: string | number | bigint;
|
|
115
|
+
v?: string | number | bigint | undefined;
|
|
116
116
|
} | {
|
|
117
117
|
address: string;
|
|
118
118
|
nonce: string | number | bigint;
|
|
119
119
|
chainId: string | number | bigint;
|
|
120
120
|
r: string;
|
|
121
121
|
s: string;
|
|
122
|
-
v: string | number | bigint;
|
|
123
122
|
yParity: string | number | bigint;
|
|
123
|
+
v?: string | number | bigint | undefined;
|
|
124
124
|
} | null | undefined;
|
|
125
125
|
}>, {
|
|
126
126
|
sender: `0x${string}`;
|
|
@@ -140,16 +140,16 @@ export declare const ethGetUserOperationByHashHandler: {
|
|
|
140
140
|
chainId: number;
|
|
141
141
|
r: `0x${string}`;
|
|
142
142
|
s: `0x${string}`;
|
|
143
|
-
v: bigint;
|
|
144
143
|
yParity: number;
|
|
144
|
+
v?: bigint | undefined;
|
|
145
145
|
} | {
|
|
146
146
|
address: `0x${string}`;
|
|
147
147
|
nonce: number;
|
|
148
148
|
chainId: number;
|
|
149
149
|
r: `0x${string}`;
|
|
150
150
|
s: `0x${string}`;
|
|
151
|
-
v: bigint;
|
|
152
151
|
yParity: number;
|
|
152
|
+
v?: bigint | undefined;
|
|
153
153
|
} | null | undefined;
|
|
154
154
|
}, {
|
|
155
155
|
sender: string;
|
|
@@ -169,16 +169,16 @@ export declare const ethGetUserOperationByHashHandler: {
|
|
|
169
169
|
chainId: string | number | bigint;
|
|
170
170
|
r: string;
|
|
171
171
|
s: string;
|
|
172
|
-
v: string | number | bigint;
|
|
173
172
|
yParity: string | number | bigint;
|
|
173
|
+
v?: string | number | bigint | undefined;
|
|
174
174
|
} | {
|
|
175
175
|
address: string;
|
|
176
176
|
nonce: string | number | bigint;
|
|
177
177
|
chainId: string | number | bigint;
|
|
178
178
|
r: string;
|
|
179
179
|
s: string;
|
|
180
|
-
v: string | number | bigint;
|
|
181
180
|
yParity: string | number | bigint;
|
|
181
|
+
v?: string | number | bigint | undefined;
|
|
182
182
|
} | null | undefined;
|
|
183
183
|
}>, import("zod").ZodEffects<import("zod").ZodObject<{
|
|
184
184
|
sender: import("zod").ZodEffects<import("zod").ZodString, `0x${string}`, string>;
|
|
@@ -202,7 +202,7 @@ export declare const ethGetUserOperationByHashHandler: {
|
|
|
202
202
|
nonce: import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodNumber]>, import("zod").ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
|
|
203
203
|
r: import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodString, `0x${string}`, string>, `0x${string}`, string>;
|
|
204
204
|
s: import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodString, `0x${string}`, string>, `0x${string}`, string>;
|
|
205
|
-
v: import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodNumber]>, import("zod").ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint
|
|
205
|
+
v: import("zod").ZodOptional<import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodNumber]>, import("zod").ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>;
|
|
206
206
|
yParity: import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodNumber]>, import("zod").ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
|
|
207
207
|
}, "strip", import("zod").ZodTypeAny, {
|
|
208
208
|
nonce: number;
|
|
@@ -210,23 +210,23 @@ export declare const ethGetUserOperationByHashHandler: {
|
|
|
210
210
|
chainId: number;
|
|
211
211
|
r: `0x${string}`;
|
|
212
212
|
s: `0x${string}`;
|
|
213
|
-
v: bigint;
|
|
214
213
|
yParity: number;
|
|
214
|
+
v?: bigint | undefined;
|
|
215
215
|
}, {
|
|
216
216
|
nonce: string | number | bigint;
|
|
217
217
|
contractAddress: string;
|
|
218
218
|
chainId: string | number | bigint;
|
|
219
219
|
r: string;
|
|
220
220
|
s: string;
|
|
221
|
-
v: string | number | bigint;
|
|
222
221
|
yParity: string | number | bigint;
|
|
222
|
+
v?: string | number | bigint | undefined;
|
|
223
223
|
}>, import("zod").ZodObject<{
|
|
224
224
|
address: import("zod").ZodEffects<import("zod").ZodString, `0x${string}`, string>;
|
|
225
225
|
chainId: import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodNumber]>, import("zod").ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
|
|
226
226
|
nonce: import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodNumber]>, import("zod").ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
|
|
227
227
|
r: import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodString, `0x${string}`, string>, `0x${string}`, string>;
|
|
228
228
|
s: import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodString, `0x${string}`, string>, `0x${string}`, string>;
|
|
229
|
-
v: import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodNumber]>, import("zod").ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint
|
|
229
|
+
v: import("zod").ZodOptional<import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodNumber]>, import("zod").ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>;
|
|
230
230
|
yParity: import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodNumber]>, import("zod").ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
|
|
231
231
|
}, "strip", import("zod").ZodTypeAny, {
|
|
232
232
|
address: `0x${string}`;
|
|
@@ -234,16 +234,16 @@ export declare const ethGetUserOperationByHashHandler: {
|
|
|
234
234
|
chainId: number;
|
|
235
235
|
r: `0x${string}`;
|
|
236
236
|
s: `0x${string}`;
|
|
237
|
-
v: bigint;
|
|
238
237
|
yParity: number;
|
|
238
|
+
v?: bigint | undefined;
|
|
239
239
|
}, {
|
|
240
240
|
address: string;
|
|
241
241
|
nonce: string | number | bigint;
|
|
242
242
|
chainId: string | number | bigint;
|
|
243
243
|
r: string;
|
|
244
244
|
s: string;
|
|
245
|
-
v: string | number | bigint;
|
|
246
245
|
yParity: string | number | bigint;
|
|
246
|
+
v?: string | number | bigint | undefined;
|
|
247
247
|
}>]>>>;
|
|
248
248
|
}, "strict", import("zod").ZodTypeAny, {
|
|
249
249
|
sender: `0x${string}`;
|
|
@@ -267,16 +267,16 @@ export declare const ethGetUserOperationByHashHandler: {
|
|
|
267
267
|
chainId: number;
|
|
268
268
|
r: `0x${string}`;
|
|
269
269
|
s: `0x${string}`;
|
|
270
|
-
v: bigint;
|
|
271
270
|
yParity: number;
|
|
271
|
+
v?: bigint | undefined;
|
|
272
272
|
} | {
|
|
273
273
|
address: `0x${string}`;
|
|
274
274
|
nonce: number;
|
|
275
275
|
chainId: number;
|
|
276
276
|
r: `0x${string}`;
|
|
277
277
|
s: `0x${string}`;
|
|
278
|
-
v: bigint;
|
|
279
278
|
yParity: number;
|
|
279
|
+
v?: bigint | undefined;
|
|
280
280
|
} | null | undefined;
|
|
281
281
|
}, {
|
|
282
282
|
sender: string;
|
|
@@ -300,16 +300,16 @@ export declare const ethGetUserOperationByHashHandler: {
|
|
|
300
300
|
chainId: string | number | bigint;
|
|
301
301
|
r: string;
|
|
302
302
|
s: string;
|
|
303
|
-
v: string | number | bigint;
|
|
304
303
|
yParity: string | number | bigint;
|
|
304
|
+
v?: string | number | bigint | undefined;
|
|
305
305
|
} | {
|
|
306
306
|
address: string;
|
|
307
307
|
nonce: string | number | bigint;
|
|
308
308
|
chainId: string | number | bigint;
|
|
309
309
|
r: string;
|
|
310
310
|
s: string;
|
|
311
|
-
v: string | number | bigint;
|
|
312
311
|
yParity: string | number | bigint;
|
|
312
|
+
v?: string | number | bigint | undefined;
|
|
313
313
|
} | null | undefined;
|
|
314
314
|
}>, {
|
|
315
315
|
sender: `0x${string}`;
|
|
@@ -333,16 +333,16 @@ export declare const ethGetUserOperationByHashHandler: {
|
|
|
333
333
|
chainId: number;
|
|
334
334
|
r: `0x${string}`;
|
|
335
335
|
s: `0x${string}`;
|
|
336
|
-
v: bigint;
|
|
337
336
|
yParity: number;
|
|
337
|
+
v?: bigint | undefined;
|
|
338
338
|
} | {
|
|
339
339
|
address: `0x${string}`;
|
|
340
340
|
nonce: number;
|
|
341
341
|
chainId: number;
|
|
342
342
|
r: `0x${string}`;
|
|
343
343
|
s: `0x${string}`;
|
|
344
|
-
v: bigint;
|
|
345
344
|
yParity: number;
|
|
345
|
+
v?: bigint | undefined;
|
|
346
346
|
} | null | undefined;
|
|
347
347
|
}, {
|
|
348
348
|
sender: string;
|
|
@@ -366,16 +366,213 @@ export declare const ethGetUserOperationByHashHandler: {
|
|
|
366
366
|
chainId: string | number | bigint;
|
|
367
367
|
r: string;
|
|
368
368
|
s: string;
|
|
369
|
-
v: string | number | bigint;
|
|
370
369
|
yParity: string | number | bigint;
|
|
370
|
+
v?: string | number | bigint | undefined;
|
|
371
371
|
} | {
|
|
372
372
|
address: string;
|
|
373
373
|
nonce: string | number | bigint;
|
|
374
374
|
chainId: string | number | bigint;
|
|
375
375
|
r: string;
|
|
376
376
|
s: string;
|
|
377
|
-
v: string | number | bigint;
|
|
378
377
|
yParity: string | number | bigint;
|
|
378
|
+
v?: string | number | bigint | undefined;
|
|
379
|
+
} | null | undefined;
|
|
380
|
+
}>, import("zod").ZodEffects<import("zod").ZodObject<{
|
|
381
|
+
sender: import("zod").ZodEffects<import("zod").ZodString, `0x${string}`, string>;
|
|
382
|
+
nonce: import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodNumber]>, import("zod").ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
383
|
+
factory: import("zod").ZodEffects<import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodUnion<[import("zod").ZodEffects<import("zod").ZodString, `0x${string}`, string>, import("zod").ZodLiteral<"0x7702">]>>>, `0x${string}` | null, string | null | undefined>;
|
|
384
|
+
factoryData: import("zod").ZodEffects<import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodEffects<import("zod").ZodString, `0x${string}`, string>>>, `0x${string}` | null, string | null | undefined>;
|
|
385
|
+
callData: import("zod").ZodEffects<import("zod").ZodString, `0x${string}`, string>;
|
|
386
|
+
callGasLimit: import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodNumber]>, import("zod").ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
387
|
+
verificationGasLimit: import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodNumber]>, import("zod").ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
388
|
+
preVerificationGas: import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodNumber]>, import("zod").ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
389
|
+
maxFeePerGas: import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodNumber]>, import("zod").ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
390
|
+
maxPriorityFeePerGas: import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodNumber]>, import("zod").ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
391
|
+
paymaster: import("zod").ZodEffects<import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodEffects<import("zod").ZodString, `0x${string}`, string>>>, `0x${string}` | null, string | null | undefined>;
|
|
392
|
+
paymasterVerificationGasLimit: import("zod").ZodEffects<import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodNumber]>, import("zod").ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>>, bigint | null, string | number | bigint | null | undefined>;
|
|
393
|
+
paymasterPostOpGasLimit: import("zod").ZodEffects<import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodNumber]>, import("zod").ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>>, bigint | null, string | number | bigint | null | undefined>;
|
|
394
|
+
paymasterData: import("zod").ZodEffects<import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodEffects<import("zod").ZodString, `0x${string}`, string>>>, `0x${string}` | null, string | null | undefined>;
|
|
395
|
+
signature: import("zod").ZodEffects<import("zod").ZodString, `0x${string}`, string>;
|
|
396
|
+
eip7702Auth: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodObject<{
|
|
397
|
+
contractAddress: import("zod").ZodEffects<import("zod").ZodString, `0x${string}`, string>;
|
|
398
|
+
chainId: import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodNumber]>, import("zod").ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
|
|
399
|
+
nonce: import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodNumber]>, import("zod").ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
|
|
400
|
+
r: import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodString, `0x${string}`, string>, `0x${string}`, string>;
|
|
401
|
+
s: import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodString, `0x${string}`, string>, `0x${string}`, string>;
|
|
402
|
+
v: import("zod").ZodOptional<import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodNumber]>, import("zod").ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>;
|
|
403
|
+
yParity: import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodNumber]>, import("zod").ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
|
|
404
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
405
|
+
nonce: number;
|
|
406
|
+
contractAddress: `0x${string}`;
|
|
407
|
+
chainId: number;
|
|
408
|
+
r: `0x${string}`;
|
|
409
|
+
s: `0x${string}`;
|
|
410
|
+
yParity: number;
|
|
411
|
+
v?: bigint | undefined;
|
|
412
|
+
}, {
|
|
413
|
+
nonce: string | number | bigint;
|
|
414
|
+
contractAddress: string;
|
|
415
|
+
chainId: string | number | bigint;
|
|
416
|
+
r: string;
|
|
417
|
+
s: string;
|
|
418
|
+
yParity: string | number | bigint;
|
|
419
|
+
v?: string | number | bigint | undefined;
|
|
420
|
+
}>, import("zod").ZodObject<{
|
|
421
|
+
address: import("zod").ZodEffects<import("zod").ZodString, `0x${string}`, string>;
|
|
422
|
+
chainId: import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodNumber]>, import("zod").ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
|
|
423
|
+
nonce: import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodNumber]>, import("zod").ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
|
|
424
|
+
r: import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodString, `0x${string}`, string>, `0x${string}`, string>;
|
|
425
|
+
s: import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodString, `0x${string}`, string>, `0x${string}`, string>;
|
|
426
|
+
v: import("zod").ZodOptional<import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodNumber]>, import("zod").ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>;
|
|
427
|
+
yParity: import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodNumber]>, import("zod").ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
|
|
428
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
429
|
+
address: `0x${string}`;
|
|
430
|
+
nonce: number;
|
|
431
|
+
chainId: number;
|
|
432
|
+
r: `0x${string}`;
|
|
433
|
+
s: `0x${string}`;
|
|
434
|
+
yParity: number;
|
|
435
|
+
v?: bigint | undefined;
|
|
436
|
+
}, {
|
|
437
|
+
address: string;
|
|
438
|
+
nonce: string | number | bigint;
|
|
439
|
+
chainId: string | number | bigint;
|
|
440
|
+
r: string;
|
|
441
|
+
s: string;
|
|
442
|
+
yParity: string | number | bigint;
|
|
443
|
+
v?: string | number | bigint | undefined;
|
|
444
|
+
}>]>>>;
|
|
445
|
+
}, "strict", import("zod").ZodTypeAny, {
|
|
446
|
+
sender: `0x${string}`;
|
|
447
|
+
factory: `0x${string}` | null;
|
|
448
|
+
paymaster: `0x${string}` | null;
|
|
449
|
+
nonce: bigint;
|
|
450
|
+
callData: `0x${string}`;
|
|
451
|
+
callGasLimit: bigint;
|
|
452
|
+
verificationGasLimit: bigint;
|
|
453
|
+
preVerificationGas: bigint;
|
|
454
|
+
maxFeePerGas: bigint;
|
|
455
|
+
maxPriorityFeePerGas: bigint;
|
|
456
|
+
signature: `0x${string}`;
|
|
457
|
+
paymasterVerificationGasLimit: bigint | null;
|
|
458
|
+
paymasterPostOpGasLimit: bigint | null;
|
|
459
|
+
factoryData: `0x${string}` | null;
|
|
460
|
+
paymasterData: `0x${string}` | null;
|
|
461
|
+
eip7702Auth?: {
|
|
462
|
+
nonce: number;
|
|
463
|
+
contractAddress: `0x${string}`;
|
|
464
|
+
chainId: number;
|
|
465
|
+
r: `0x${string}`;
|
|
466
|
+
s: `0x${string}`;
|
|
467
|
+
yParity: number;
|
|
468
|
+
v?: bigint | undefined;
|
|
469
|
+
} | {
|
|
470
|
+
address: `0x${string}`;
|
|
471
|
+
nonce: number;
|
|
472
|
+
chainId: number;
|
|
473
|
+
r: `0x${string}`;
|
|
474
|
+
s: `0x${string}`;
|
|
475
|
+
yParity: number;
|
|
476
|
+
v?: bigint | undefined;
|
|
477
|
+
} | null | undefined;
|
|
478
|
+
}, {
|
|
479
|
+
sender: string;
|
|
480
|
+
nonce: string | number | bigint;
|
|
481
|
+
callData: string;
|
|
482
|
+
callGasLimit: string | number | bigint;
|
|
483
|
+
verificationGasLimit: string | number | bigint;
|
|
484
|
+
preVerificationGas: string | number | bigint;
|
|
485
|
+
maxFeePerGas: string | number | bigint;
|
|
486
|
+
maxPriorityFeePerGas: string | number | bigint;
|
|
487
|
+
signature: string;
|
|
488
|
+
factory?: string | null | undefined;
|
|
489
|
+
factoryData?: string | null | undefined;
|
|
490
|
+
paymaster?: string | null | undefined;
|
|
491
|
+
paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
|
|
492
|
+
paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
|
|
493
|
+
paymasterData?: string | null | undefined;
|
|
494
|
+
eip7702Auth?: {
|
|
495
|
+
nonce: string | number | bigint;
|
|
496
|
+
contractAddress: string;
|
|
497
|
+
chainId: string | number | bigint;
|
|
498
|
+
r: string;
|
|
499
|
+
s: string;
|
|
500
|
+
yParity: string | number | bigint;
|
|
501
|
+
v?: string | number | bigint | undefined;
|
|
502
|
+
} | {
|
|
503
|
+
address: string;
|
|
504
|
+
nonce: string | number | bigint;
|
|
505
|
+
chainId: string | number | bigint;
|
|
506
|
+
r: string;
|
|
507
|
+
s: string;
|
|
508
|
+
yParity: string | number | bigint;
|
|
509
|
+
v?: string | number | bigint | undefined;
|
|
510
|
+
} | null | undefined;
|
|
511
|
+
}>, {
|
|
512
|
+
sender: `0x${string}`;
|
|
513
|
+
factory: `0x${string}` | null;
|
|
514
|
+
paymaster: `0x${string}` | null;
|
|
515
|
+
nonce: bigint;
|
|
516
|
+
callData: `0x${string}`;
|
|
517
|
+
callGasLimit: bigint;
|
|
518
|
+
verificationGasLimit: bigint;
|
|
519
|
+
preVerificationGas: bigint;
|
|
520
|
+
maxFeePerGas: bigint;
|
|
521
|
+
maxPriorityFeePerGas: bigint;
|
|
522
|
+
signature: `0x${string}`;
|
|
523
|
+
paymasterVerificationGasLimit: bigint | null;
|
|
524
|
+
paymasterPostOpGasLimit: bigint | null;
|
|
525
|
+
factoryData: `0x${string}` | null;
|
|
526
|
+
paymasterData: `0x${string}` | null;
|
|
527
|
+
eip7702Auth?: {
|
|
528
|
+
nonce: number;
|
|
529
|
+
contractAddress: `0x${string}`;
|
|
530
|
+
chainId: number;
|
|
531
|
+
r: `0x${string}`;
|
|
532
|
+
s: `0x${string}`;
|
|
533
|
+
yParity: number;
|
|
534
|
+
v?: bigint | undefined;
|
|
535
|
+
} | {
|
|
536
|
+
address: `0x${string}`;
|
|
537
|
+
nonce: number;
|
|
538
|
+
chainId: number;
|
|
539
|
+
r: `0x${string}`;
|
|
540
|
+
s: `0x${string}`;
|
|
541
|
+
yParity: number;
|
|
542
|
+
v?: bigint | undefined;
|
|
543
|
+
} | null | undefined;
|
|
544
|
+
}, {
|
|
545
|
+
sender: string;
|
|
546
|
+
nonce: string | number | bigint;
|
|
547
|
+
callData: string;
|
|
548
|
+
callGasLimit: string | number | bigint;
|
|
549
|
+
verificationGasLimit: string | number | bigint;
|
|
550
|
+
preVerificationGas: string | number | bigint;
|
|
551
|
+
maxFeePerGas: string | number | bigint;
|
|
552
|
+
maxPriorityFeePerGas: string | number | bigint;
|
|
553
|
+
signature: string;
|
|
554
|
+
factory?: string | null | undefined;
|
|
555
|
+
factoryData?: string | null | undefined;
|
|
556
|
+
paymaster?: string | null | undefined;
|
|
557
|
+
paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
|
|
558
|
+
paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
|
|
559
|
+
paymasterData?: string | null | undefined;
|
|
560
|
+
eip7702Auth?: {
|
|
561
|
+
nonce: string | number | bigint;
|
|
562
|
+
contractAddress: string;
|
|
563
|
+
chainId: string | number | bigint;
|
|
564
|
+
r: string;
|
|
565
|
+
s: string;
|
|
566
|
+
yParity: string | number | bigint;
|
|
567
|
+
v?: string | number | bigint | undefined;
|
|
568
|
+
} | {
|
|
569
|
+
address: string;
|
|
570
|
+
nonce: string | number | bigint;
|
|
571
|
+
chainId: string | number | bigint;
|
|
572
|
+
r: string;
|
|
573
|
+
s: string;
|
|
574
|
+
yParity: string | number | bigint;
|
|
575
|
+
v?: string | number | bigint | undefined;
|
|
379
576
|
} | null | undefined;
|
|
380
577
|
}>]>;
|
|
381
578
|
entryPoint: import("zod").ZodEffects<import("zod").ZodString, `0x${string}`, string>;
|
|
@@ -402,16 +599,49 @@ export declare const ethGetUserOperationByHashHandler: {
|
|
|
402
599
|
chainId: number;
|
|
403
600
|
r: `0x${string}`;
|
|
404
601
|
s: `0x${string}`;
|
|
405
|
-
v: bigint;
|
|
406
602
|
yParity: number;
|
|
603
|
+
v?: bigint | undefined;
|
|
604
|
+
} | {
|
|
605
|
+
address: `0x${string}`;
|
|
606
|
+
nonce: number;
|
|
607
|
+
chainId: number;
|
|
608
|
+
r: `0x${string}`;
|
|
609
|
+
s: `0x${string}`;
|
|
610
|
+
yParity: number;
|
|
611
|
+
v?: bigint | undefined;
|
|
612
|
+
} | null | undefined;
|
|
613
|
+
} | {
|
|
614
|
+
sender: `0x${string}`;
|
|
615
|
+
factory: `0x${string}` | null;
|
|
616
|
+
paymaster: `0x${string}` | null;
|
|
617
|
+
nonce: bigint;
|
|
618
|
+
callData: `0x${string}`;
|
|
619
|
+
callGasLimit: bigint;
|
|
620
|
+
verificationGasLimit: bigint;
|
|
621
|
+
preVerificationGas: bigint;
|
|
622
|
+
maxFeePerGas: bigint;
|
|
623
|
+
maxPriorityFeePerGas: bigint;
|
|
624
|
+
signature: `0x${string}`;
|
|
625
|
+
paymasterVerificationGasLimit: bigint | null;
|
|
626
|
+
paymasterPostOpGasLimit: bigint | null;
|
|
627
|
+
factoryData: `0x${string}` | null;
|
|
628
|
+
paymasterData: `0x${string}` | null;
|
|
629
|
+
eip7702Auth?: {
|
|
630
|
+
nonce: number;
|
|
631
|
+
contractAddress: `0x${string}`;
|
|
632
|
+
chainId: number;
|
|
633
|
+
r: `0x${string}`;
|
|
634
|
+
s: `0x${string}`;
|
|
635
|
+
yParity: number;
|
|
636
|
+
v?: bigint | undefined;
|
|
407
637
|
} | {
|
|
408
638
|
address: `0x${string}`;
|
|
409
639
|
nonce: number;
|
|
410
640
|
chainId: number;
|
|
411
641
|
r: `0x${string}`;
|
|
412
642
|
s: `0x${string}`;
|
|
413
|
-
v: bigint;
|
|
414
643
|
yParity: number;
|
|
644
|
+
v?: bigint | undefined;
|
|
415
645
|
} | null | undefined;
|
|
416
646
|
} | {
|
|
417
647
|
sender: `0x${string}`;
|
|
@@ -435,16 +665,16 @@ export declare const ethGetUserOperationByHashHandler: {
|
|
|
435
665
|
chainId: number;
|
|
436
666
|
r: `0x${string}`;
|
|
437
667
|
s: `0x${string}`;
|
|
438
|
-
v: bigint;
|
|
439
668
|
yParity: number;
|
|
669
|
+
v?: bigint | undefined;
|
|
440
670
|
} | {
|
|
441
671
|
address: `0x${string}`;
|
|
442
672
|
nonce: number;
|
|
443
673
|
chainId: number;
|
|
444
674
|
r: `0x${string}`;
|
|
445
675
|
s: `0x${string}`;
|
|
446
|
-
v: bigint;
|
|
447
676
|
yParity: number;
|
|
677
|
+
v?: bigint | undefined;
|
|
448
678
|
} | null | undefined;
|
|
449
679
|
}) & ({
|
|
450
680
|
sender: `0x${string}`;
|
|
@@ -464,16 +694,16 @@ export declare const ethGetUserOperationByHashHandler: {
|
|
|
464
694
|
chainId: number;
|
|
465
695
|
r: `0x${string}`;
|
|
466
696
|
s: `0x${string}`;
|
|
467
|
-
v: bigint;
|
|
468
697
|
yParity: number;
|
|
698
|
+
v?: bigint | undefined;
|
|
469
699
|
} | {
|
|
470
700
|
address: `0x${string}`;
|
|
471
701
|
nonce: number;
|
|
472
702
|
chainId: number;
|
|
473
703
|
r: `0x${string}`;
|
|
474
704
|
s: `0x${string}`;
|
|
475
|
-
v: bigint;
|
|
476
705
|
yParity: number;
|
|
706
|
+
v?: bigint | undefined;
|
|
477
707
|
} | null | undefined;
|
|
478
708
|
} | {
|
|
479
709
|
sender: `0x${string}`;
|
|
@@ -497,16 +727,49 @@ export declare const ethGetUserOperationByHashHandler: {
|
|
|
497
727
|
chainId: number;
|
|
498
728
|
r: `0x${string}`;
|
|
499
729
|
s: `0x${string}`;
|
|
500
|
-
v: bigint;
|
|
501
730
|
yParity: number;
|
|
731
|
+
v?: bigint | undefined;
|
|
502
732
|
} | {
|
|
503
733
|
address: `0x${string}`;
|
|
504
734
|
nonce: number;
|
|
505
735
|
chainId: number;
|
|
506
736
|
r: `0x${string}`;
|
|
507
737
|
s: `0x${string}`;
|
|
508
|
-
v: bigint;
|
|
509
738
|
yParity: number;
|
|
739
|
+
v?: bigint | undefined;
|
|
740
|
+
} | null | undefined;
|
|
741
|
+
} | {
|
|
742
|
+
sender: `0x${string}`;
|
|
743
|
+
factory: `0x${string}` | null;
|
|
744
|
+
paymaster: `0x${string}` | null;
|
|
745
|
+
nonce: bigint;
|
|
746
|
+
callData: `0x${string}`;
|
|
747
|
+
callGasLimit: bigint;
|
|
748
|
+
verificationGasLimit: bigint;
|
|
749
|
+
preVerificationGas: bigint;
|
|
750
|
+
maxFeePerGas: bigint;
|
|
751
|
+
maxPriorityFeePerGas: bigint;
|
|
752
|
+
signature: `0x${string}`;
|
|
753
|
+
paymasterVerificationGasLimit: bigint | null;
|
|
754
|
+
paymasterPostOpGasLimit: bigint | null;
|
|
755
|
+
factoryData: `0x${string}` | null;
|
|
756
|
+
paymasterData: `0x${string}` | null;
|
|
757
|
+
eip7702Auth?: {
|
|
758
|
+
nonce: number;
|
|
759
|
+
contractAddress: `0x${string}`;
|
|
760
|
+
chainId: number;
|
|
761
|
+
r: `0x${string}`;
|
|
762
|
+
s: `0x${string}`;
|
|
763
|
+
yParity: number;
|
|
764
|
+
v?: bigint | undefined;
|
|
765
|
+
} | {
|
|
766
|
+
address: `0x${string}`;
|
|
767
|
+
nonce: number;
|
|
768
|
+
chainId: number;
|
|
769
|
+
r: `0x${string}`;
|
|
770
|
+
s: `0x${string}`;
|
|
771
|
+
yParity: number;
|
|
772
|
+
v?: bigint | undefined;
|
|
510
773
|
} | null | undefined;
|
|
511
774
|
} | undefined);
|
|
512
775
|
transactionHash: `0x${string}`;
|
|
@@ -532,16 +795,16 @@ export declare const ethGetUserOperationByHashHandler: {
|
|
|
532
795
|
chainId: string | number | bigint;
|
|
533
796
|
r: string;
|
|
534
797
|
s: string;
|
|
535
|
-
v: string | number | bigint;
|
|
536
798
|
yParity: string | number | bigint;
|
|
799
|
+
v?: string | number | bigint | undefined;
|
|
537
800
|
} | {
|
|
538
801
|
address: string;
|
|
539
802
|
nonce: string | number | bigint;
|
|
540
803
|
chainId: string | number | bigint;
|
|
541
804
|
r: string;
|
|
542
805
|
s: string;
|
|
543
|
-
v: string | number | bigint;
|
|
544
806
|
yParity: string | number | bigint;
|
|
807
|
+
v?: string | number | bigint | undefined;
|
|
545
808
|
} | null | undefined;
|
|
546
809
|
} | {
|
|
547
810
|
sender: string;
|
|
@@ -565,22 +828,82 @@ export declare const ethGetUserOperationByHashHandler: {
|
|
|
565
828
|
chainId: string | number | bigint;
|
|
566
829
|
r: string;
|
|
567
830
|
s: string;
|
|
568
|
-
v: string | number | bigint;
|
|
569
831
|
yParity: string | number | bigint;
|
|
832
|
+
v?: string | number | bigint | undefined;
|
|
570
833
|
} | {
|
|
571
834
|
address: string;
|
|
572
835
|
nonce: string | number | bigint;
|
|
573
836
|
chainId: string | number | bigint;
|
|
574
837
|
r: string;
|
|
575
838
|
s: string;
|
|
576
|
-
v: string | number | bigint;
|
|
577
839
|
yParity: string | number | bigint;
|
|
840
|
+
v?: string | number | bigint | undefined;
|
|
841
|
+
} | null | undefined;
|
|
842
|
+
} | {
|
|
843
|
+
sender: string;
|
|
844
|
+
nonce: string | number | bigint;
|
|
845
|
+
callData: string;
|
|
846
|
+
callGasLimit: string | number | bigint;
|
|
847
|
+
verificationGasLimit: string | number | bigint;
|
|
848
|
+
preVerificationGas: string | number | bigint;
|
|
849
|
+
maxFeePerGas: string | number | bigint;
|
|
850
|
+
maxPriorityFeePerGas: string | number | bigint;
|
|
851
|
+
signature: string;
|
|
852
|
+
factory?: string | null | undefined;
|
|
853
|
+
factoryData?: string | null | undefined;
|
|
854
|
+
paymaster?: string | null | undefined;
|
|
855
|
+
paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
|
|
856
|
+
paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
|
|
857
|
+
paymasterData?: string | null | undefined;
|
|
858
|
+
eip7702Auth?: {
|
|
859
|
+
nonce: string | number | bigint;
|
|
860
|
+
contractAddress: string;
|
|
861
|
+
chainId: string | number | bigint;
|
|
862
|
+
r: string;
|
|
863
|
+
s: string;
|
|
864
|
+
yParity: string | number | bigint;
|
|
865
|
+
v?: string | number | bigint | undefined;
|
|
866
|
+
} | {
|
|
867
|
+
address: string;
|
|
868
|
+
nonce: string | number | bigint;
|
|
869
|
+
chainId: string | number | bigint;
|
|
870
|
+
r: string;
|
|
871
|
+
s: string;
|
|
872
|
+
yParity: string | number | bigint;
|
|
873
|
+
v?: string | number | bigint | undefined;
|
|
578
874
|
} | null | undefined;
|
|
579
875
|
}) & ({
|
|
580
876
|
sender: string;
|
|
581
877
|
nonce: string | number | bigint;
|
|
582
|
-
initCode: string;
|
|
583
|
-
paymasterAndData: string;
|
|
878
|
+
initCode: string;
|
|
879
|
+
paymasterAndData: string;
|
|
880
|
+
callData: string;
|
|
881
|
+
callGasLimit: string | number | bigint;
|
|
882
|
+
verificationGasLimit: string | number | bigint;
|
|
883
|
+
preVerificationGas: string | number | bigint;
|
|
884
|
+
maxFeePerGas: string | number | bigint;
|
|
885
|
+
maxPriorityFeePerGas: string | number | bigint;
|
|
886
|
+
signature: string;
|
|
887
|
+
eip7702Auth?: {
|
|
888
|
+
nonce: string | number | bigint;
|
|
889
|
+
contractAddress: string;
|
|
890
|
+
chainId: string | number | bigint;
|
|
891
|
+
r: string;
|
|
892
|
+
s: string;
|
|
893
|
+
yParity: string | number | bigint;
|
|
894
|
+
v?: string | number | bigint | undefined;
|
|
895
|
+
} | {
|
|
896
|
+
address: string;
|
|
897
|
+
nonce: string | number | bigint;
|
|
898
|
+
chainId: string | number | bigint;
|
|
899
|
+
r: string;
|
|
900
|
+
s: string;
|
|
901
|
+
yParity: string | number | bigint;
|
|
902
|
+
v?: string | number | bigint | undefined;
|
|
903
|
+
} | null | undefined;
|
|
904
|
+
} | {
|
|
905
|
+
sender: string;
|
|
906
|
+
nonce: string | number | bigint;
|
|
584
907
|
callData: string;
|
|
585
908
|
callGasLimit: string | number | bigint;
|
|
586
909
|
verificationGasLimit: string | number | bigint;
|
|
@@ -588,22 +911,28 @@ export declare const ethGetUserOperationByHashHandler: {
|
|
|
588
911
|
maxFeePerGas: string | number | bigint;
|
|
589
912
|
maxPriorityFeePerGas: string | number | bigint;
|
|
590
913
|
signature: string;
|
|
914
|
+
factory?: string | null | undefined;
|
|
915
|
+
factoryData?: string | null | undefined;
|
|
916
|
+
paymaster?: string | null | undefined;
|
|
917
|
+
paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
|
|
918
|
+
paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
|
|
919
|
+
paymasterData?: string | null | undefined;
|
|
591
920
|
eip7702Auth?: {
|
|
592
921
|
nonce: string | number | bigint;
|
|
593
922
|
contractAddress: string;
|
|
594
923
|
chainId: string | number | bigint;
|
|
595
924
|
r: string;
|
|
596
925
|
s: string;
|
|
597
|
-
v: string | number | bigint;
|
|
598
926
|
yParity: string | number | bigint;
|
|
927
|
+
v?: string | number | bigint | undefined;
|
|
599
928
|
} | {
|
|
600
929
|
address: string;
|
|
601
930
|
nonce: string | number | bigint;
|
|
602
931
|
chainId: string | number | bigint;
|
|
603
932
|
r: string;
|
|
604
933
|
s: string;
|
|
605
|
-
v: string | number | bigint;
|
|
606
934
|
yParity: string | number | bigint;
|
|
935
|
+
v?: string | number | bigint | undefined;
|
|
607
936
|
} | null | undefined;
|
|
608
937
|
} | {
|
|
609
938
|
sender: string;
|
|
@@ -627,16 +956,16 @@ export declare const ethGetUserOperationByHashHandler: {
|
|
|
627
956
|
chainId: string | number | bigint;
|
|
628
957
|
r: string;
|
|
629
958
|
s: string;
|
|
630
|
-
v: string | number | bigint;
|
|
631
959
|
yParity: string | number | bigint;
|
|
960
|
+
v?: string | number | bigint | undefined;
|
|
632
961
|
} | {
|
|
633
962
|
address: string;
|
|
634
963
|
nonce: string | number | bigint;
|
|
635
964
|
chainId: string | number | bigint;
|
|
636
965
|
r: string;
|
|
637
966
|
s: string;
|
|
638
|
-
v: string | number | bigint;
|
|
639
967
|
yParity: string | number | bigint;
|
|
968
|
+
v?: string | number | bigint | undefined;
|
|
640
969
|
} | null | undefined;
|
|
641
970
|
} | undefined);
|
|
642
971
|
transactionHash: string;
|
|
@@ -664,16 +993,49 @@ export declare const ethGetUserOperationByHashHandler: {
|
|
|
664
993
|
chainId: number;
|
|
665
994
|
r: `0x${string}`;
|
|
666
995
|
s: `0x${string}`;
|
|
667
|
-
v: bigint;
|
|
668
996
|
yParity: number;
|
|
997
|
+
v?: bigint | undefined;
|
|
998
|
+
} | {
|
|
999
|
+
address: `0x${string}`;
|
|
1000
|
+
nonce: number;
|
|
1001
|
+
chainId: number;
|
|
1002
|
+
r: `0x${string}`;
|
|
1003
|
+
s: `0x${string}`;
|
|
1004
|
+
yParity: number;
|
|
1005
|
+
v?: bigint | undefined;
|
|
1006
|
+
} | null | undefined;
|
|
1007
|
+
} | {
|
|
1008
|
+
sender: `0x${string}`;
|
|
1009
|
+
factory: `0x${string}` | null;
|
|
1010
|
+
paymaster: `0x${string}` | null;
|
|
1011
|
+
nonce: bigint;
|
|
1012
|
+
callData: `0x${string}`;
|
|
1013
|
+
callGasLimit: bigint;
|
|
1014
|
+
verificationGasLimit: bigint;
|
|
1015
|
+
preVerificationGas: bigint;
|
|
1016
|
+
maxFeePerGas: bigint;
|
|
1017
|
+
maxPriorityFeePerGas: bigint;
|
|
1018
|
+
signature: `0x${string}`;
|
|
1019
|
+
paymasterVerificationGasLimit: bigint | null;
|
|
1020
|
+
paymasterPostOpGasLimit: bigint | null;
|
|
1021
|
+
factoryData: `0x${string}` | null;
|
|
1022
|
+
paymasterData: `0x${string}` | null;
|
|
1023
|
+
eip7702Auth?: {
|
|
1024
|
+
nonce: number;
|
|
1025
|
+
contractAddress: `0x${string}`;
|
|
1026
|
+
chainId: number;
|
|
1027
|
+
r: `0x${string}`;
|
|
1028
|
+
s: `0x${string}`;
|
|
1029
|
+
yParity: number;
|
|
1030
|
+
v?: bigint | undefined;
|
|
669
1031
|
} | {
|
|
670
1032
|
address: `0x${string}`;
|
|
671
1033
|
nonce: number;
|
|
672
1034
|
chainId: number;
|
|
673
1035
|
r: `0x${string}`;
|
|
674
1036
|
s: `0x${string}`;
|
|
675
|
-
v: bigint;
|
|
676
1037
|
yParity: number;
|
|
1038
|
+
v?: bigint | undefined;
|
|
677
1039
|
} | null | undefined;
|
|
678
1040
|
} | {
|
|
679
1041
|
sender: `0x${string}`;
|
|
@@ -697,16 +1059,16 @@ export declare const ethGetUserOperationByHashHandler: {
|
|
|
697
1059
|
chainId: number;
|
|
698
1060
|
r: `0x${string}`;
|
|
699
1061
|
s: `0x${string}`;
|
|
700
|
-
v: bigint;
|
|
701
1062
|
yParity: number;
|
|
1063
|
+
v?: bigint | undefined;
|
|
702
1064
|
} | {
|
|
703
1065
|
address: `0x${string}`;
|
|
704
1066
|
nonce: number;
|
|
705
1067
|
chainId: number;
|
|
706
1068
|
r: `0x${string}`;
|
|
707
1069
|
s: `0x${string}`;
|
|
708
|
-
v: bigint;
|
|
709
1070
|
yParity: number;
|
|
1071
|
+
v?: bigint | undefined;
|
|
710
1072
|
} | null | undefined;
|
|
711
1073
|
}) & ({
|
|
712
1074
|
sender: `0x${string}`;
|
|
@@ -726,16 +1088,49 @@ export declare const ethGetUserOperationByHashHandler: {
|
|
|
726
1088
|
chainId: number;
|
|
727
1089
|
r: `0x${string}`;
|
|
728
1090
|
s: `0x${string}`;
|
|
729
|
-
v: bigint;
|
|
730
1091
|
yParity: number;
|
|
1092
|
+
v?: bigint | undefined;
|
|
1093
|
+
} | {
|
|
1094
|
+
address: `0x${string}`;
|
|
1095
|
+
nonce: number;
|
|
1096
|
+
chainId: number;
|
|
1097
|
+
r: `0x${string}`;
|
|
1098
|
+
s: `0x${string}`;
|
|
1099
|
+
yParity: number;
|
|
1100
|
+
v?: bigint | undefined;
|
|
1101
|
+
} | null | undefined;
|
|
1102
|
+
} | {
|
|
1103
|
+
sender: `0x${string}`;
|
|
1104
|
+
factory: `0x${string}` | null;
|
|
1105
|
+
paymaster: `0x${string}` | null;
|
|
1106
|
+
nonce: bigint;
|
|
1107
|
+
callData: `0x${string}`;
|
|
1108
|
+
callGasLimit: bigint;
|
|
1109
|
+
verificationGasLimit: bigint;
|
|
1110
|
+
preVerificationGas: bigint;
|
|
1111
|
+
maxFeePerGas: bigint;
|
|
1112
|
+
maxPriorityFeePerGas: bigint;
|
|
1113
|
+
signature: `0x${string}`;
|
|
1114
|
+
paymasterVerificationGasLimit: bigint | null;
|
|
1115
|
+
paymasterPostOpGasLimit: bigint | null;
|
|
1116
|
+
factoryData: `0x${string}` | null;
|
|
1117
|
+
paymasterData: `0x${string}` | null;
|
|
1118
|
+
eip7702Auth?: {
|
|
1119
|
+
nonce: number;
|
|
1120
|
+
contractAddress: `0x${string}`;
|
|
1121
|
+
chainId: number;
|
|
1122
|
+
r: `0x${string}`;
|
|
1123
|
+
s: `0x${string}`;
|
|
1124
|
+
yParity: number;
|
|
1125
|
+
v?: bigint | undefined;
|
|
731
1126
|
} | {
|
|
732
1127
|
address: `0x${string}`;
|
|
733
1128
|
nonce: number;
|
|
734
1129
|
chainId: number;
|
|
735
1130
|
r: `0x${string}`;
|
|
736
1131
|
s: `0x${string}`;
|
|
737
|
-
v: bigint;
|
|
738
1132
|
yParity: number;
|
|
1133
|
+
v?: bigint | undefined;
|
|
739
1134
|
} | null | undefined;
|
|
740
1135
|
} | {
|
|
741
1136
|
sender: `0x${string}`;
|
|
@@ -759,16 +1154,16 @@ export declare const ethGetUserOperationByHashHandler: {
|
|
|
759
1154
|
chainId: number;
|
|
760
1155
|
r: `0x${string}`;
|
|
761
1156
|
s: `0x${string}`;
|
|
762
|
-
v: bigint;
|
|
763
1157
|
yParity: number;
|
|
1158
|
+
v?: bigint | undefined;
|
|
764
1159
|
} | {
|
|
765
1160
|
address: `0x${string}`;
|
|
766
1161
|
nonce: number;
|
|
767
1162
|
chainId: number;
|
|
768
1163
|
r: `0x${string}`;
|
|
769
1164
|
s: `0x${string}`;
|
|
770
|
-
v: bigint;
|
|
771
1165
|
yParity: number;
|
|
1166
|
+
v?: bigint | undefined;
|
|
772
1167
|
} | null | undefined;
|
|
773
1168
|
} | undefined);
|
|
774
1169
|
transactionHash: `0x${string}`;
|
|
@@ -798,16 +1193,49 @@ export declare const ethGetUserOperationByHashHandler: {
|
|
|
798
1193
|
chainId: string | number | bigint;
|
|
799
1194
|
r: string;
|
|
800
1195
|
s: string;
|
|
801
|
-
v: string | number | bigint;
|
|
802
1196
|
yParity: string | number | bigint;
|
|
1197
|
+
v?: string | number | bigint | undefined;
|
|
1198
|
+
} | {
|
|
1199
|
+
address: string;
|
|
1200
|
+
nonce: string | number | bigint;
|
|
1201
|
+
chainId: string | number | bigint;
|
|
1202
|
+
r: string;
|
|
1203
|
+
s: string;
|
|
1204
|
+
yParity: string | number | bigint;
|
|
1205
|
+
v?: string | number | bigint | undefined;
|
|
1206
|
+
} | null | undefined;
|
|
1207
|
+
} | {
|
|
1208
|
+
sender: string;
|
|
1209
|
+
nonce: string | number | bigint;
|
|
1210
|
+
callData: string;
|
|
1211
|
+
callGasLimit: string | number | bigint;
|
|
1212
|
+
verificationGasLimit: string | number | bigint;
|
|
1213
|
+
preVerificationGas: string | number | bigint;
|
|
1214
|
+
maxFeePerGas: string | number | bigint;
|
|
1215
|
+
maxPriorityFeePerGas: string | number | bigint;
|
|
1216
|
+
signature: string;
|
|
1217
|
+
factory?: string | null | undefined;
|
|
1218
|
+
factoryData?: string | null | undefined;
|
|
1219
|
+
paymaster?: string | null | undefined;
|
|
1220
|
+
paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
|
|
1221
|
+
paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
|
|
1222
|
+
paymasterData?: string | null | undefined;
|
|
1223
|
+
eip7702Auth?: {
|
|
1224
|
+
nonce: string | number | bigint;
|
|
1225
|
+
contractAddress: string;
|
|
1226
|
+
chainId: string | number | bigint;
|
|
1227
|
+
r: string;
|
|
1228
|
+
s: string;
|
|
1229
|
+
yParity: string | number | bigint;
|
|
1230
|
+
v?: string | number | bigint | undefined;
|
|
803
1231
|
} | {
|
|
804
1232
|
address: string;
|
|
805
1233
|
nonce: string | number | bigint;
|
|
806
1234
|
chainId: string | number | bigint;
|
|
807
1235
|
r: string;
|
|
808
1236
|
s: string;
|
|
809
|
-
v: string | number | bigint;
|
|
810
1237
|
yParity: string | number | bigint;
|
|
1238
|
+
v?: string | number | bigint | undefined;
|
|
811
1239
|
} | null | undefined;
|
|
812
1240
|
} | {
|
|
813
1241
|
sender: string;
|
|
@@ -831,16 +1259,16 @@ export declare const ethGetUserOperationByHashHandler: {
|
|
|
831
1259
|
chainId: string | number | bigint;
|
|
832
1260
|
r: string;
|
|
833
1261
|
s: string;
|
|
834
|
-
v: string | number | bigint;
|
|
835
1262
|
yParity: string | number | bigint;
|
|
1263
|
+
v?: string | number | bigint | undefined;
|
|
836
1264
|
} | {
|
|
837
1265
|
address: string;
|
|
838
1266
|
nonce: string | number | bigint;
|
|
839
1267
|
chainId: string | number | bigint;
|
|
840
1268
|
r: string;
|
|
841
1269
|
s: string;
|
|
842
|
-
v: string | number | bigint;
|
|
843
1270
|
yParity: string | number | bigint;
|
|
1271
|
+
v?: string | number | bigint | undefined;
|
|
844
1272
|
} | null | undefined;
|
|
845
1273
|
}) & ({
|
|
846
1274
|
sender: string;
|
|
@@ -860,16 +1288,49 @@ export declare const ethGetUserOperationByHashHandler: {
|
|
|
860
1288
|
chainId: string | number | bigint;
|
|
861
1289
|
r: string;
|
|
862
1290
|
s: string;
|
|
863
|
-
v: string | number | bigint;
|
|
864
1291
|
yParity: string | number | bigint;
|
|
1292
|
+
v?: string | number | bigint | undefined;
|
|
1293
|
+
} | {
|
|
1294
|
+
address: string;
|
|
1295
|
+
nonce: string | number | bigint;
|
|
1296
|
+
chainId: string | number | bigint;
|
|
1297
|
+
r: string;
|
|
1298
|
+
s: string;
|
|
1299
|
+
yParity: string | number | bigint;
|
|
1300
|
+
v?: string | number | bigint | undefined;
|
|
1301
|
+
} | null | undefined;
|
|
1302
|
+
} | {
|
|
1303
|
+
sender: string;
|
|
1304
|
+
nonce: string | number | bigint;
|
|
1305
|
+
callData: string;
|
|
1306
|
+
callGasLimit: string | number | bigint;
|
|
1307
|
+
verificationGasLimit: string | number | bigint;
|
|
1308
|
+
preVerificationGas: string | number | bigint;
|
|
1309
|
+
maxFeePerGas: string | number | bigint;
|
|
1310
|
+
maxPriorityFeePerGas: string | number | bigint;
|
|
1311
|
+
signature: string;
|
|
1312
|
+
factory?: string | null | undefined;
|
|
1313
|
+
factoryData?: string | null | undefined;
|
|
1314
|
+
paymaster?: string | null | undefined;
|
|
1315
|
+
paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
|
|
1316
|
+
paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
|
|
1317
|
+
paymasterData?: string | null | undefined;
|
|
1318
|
+
eip7702Auth?: {
|
|
1319
|
+
nonce: string | number | bigint;
|
|
1320
|
+
contractAddress: string;
|
|
1321
|
+
chainId: string | number | bigint;
|
|
1322
|
+
r: string;
|
|
1323
|
+
s: string;
|
|
1324
|
+
yParity: string | number | bigint;
|
|
1325
|
+
v?: string | number | bigint | undefined;
|
|
865
1326
|
} | {
|
|
866
1327
|
address: string;
|
|
867
1328
|
nonce: string | number | bigint;
|
|
868
1329
|
chainId: string | number | bigint;
|
|
869
1330
|
r: string;
|
|
870
1331
|
s: string;
|
|
871
|
-
v: string | number | bigint;
|
|
872
1332
|
yParity: string | number | bigint;
|
|
1333
|
+
v?: string | number | bigint | undefined;
|
|
873
1334
|
} | null | undefined;
|
|
874
1335
|
} | {
|
|
875
1336
|
sender: string;
|
|
@@ -893,16 +1354,16 @@ export declare const ethGetUserOperationByHashHandler: {
|
|
|
893
1354
|
chainId: string | number | bigint;
|
|
894
1355
|
r: string;
|
|
895
1356
|
s: string;
|
|
896
|
-
v: string | number | bigint;
|
|
897
1357
|
yParity: string | number | bigint;
|
|
1358
|
+
v?: string | number | bigint | undefined;
|
|
898
1359
|
} | {
|
|
899
1360
|
address: string;
|
|
900
1361
|
nonce: string | number | bigint;
|
|
901
1362
|
chainId: string | number | bigint;
|
|
902
1363
|
r: string;
|
|
903
1364
|
s: string;
|
|
904
|
-
v: string | number | bigint;
|
|
905
1365
|
yParity: string | number | bigint;
|
|
1366
|
+
v?: string | number | bigint | undefined;
|
|
906
1367
|
} | null | undefined;
|
|
907
1368
|
} | undefined);
|
|
908
1369
|
transactionHash: string;
|
|
@@ -937,16 +1398,49 @@ export declare const ethGetUserOperationByHashHandler: {
|
|
|
937
1398
|
chainId: number;
|
|
938
1399
|
r: `0x${string}`;
|
|
939
1400
|
s: `0x${string}`;
|
|
940
|
-
v: bigint;
|
|
941
1401
|
yParity: number;
|
|
1402
|
+
v?: bigint | undefined;
|
|
1403
|
+
} | {
|
|
1404
|
+
address: `0x${string}`;
|
|
1405
|
+
nonce: number;
|
|
1406
|
+
chainId: number;
|
|
1407
|
+
r: `0x${string}`;
|
|
1408
|
+
s: `0x${string}`;
|
|
1409
|
+
yParity: number;
|
|
1410
|
+
v?: bigint | undefined;
|
|
1411
|
+
} | null | undefined;
|
|
1412
|
+
} | {
|
|
1413
|
+
sender: `0x${string}`;
|
|
1414
|
+
factory: `0x${string}` | null;
|
|
1415
|
+
paymaster: `0x${string}` | null;
|
|
1416
|
+
nonce: bigint;
|
|
1417
|
+
callData: `0x${string}`;
|
|
1418
|
+
callGasLimit: bigint;
|
|
1419
|
+
verificationGasLimit: bigint;
|
|
1420
|
+
preVerificationGas: bigint;
|
|
1421
|
+
maxFeePerGas: bigint;
|
|
1422
|
+
maxPriorityFeePerGas: bigint;
|
|
1423
|
+
signature: `0x${string}`;
|
|
1424
|
+
paymasterVerificationGasLimit: bigint | null;
|
|
1425
|
+
paymasterPostOpGasLimit: bigint | null;
|
|
1426
|
+
factoryData: `0x${string}` | null;
|
|
1427
|
+
paymasterData: `0x${string}` | null;
|
|
1428
|
+
eip7702Auth?: {
|
|
1429
|
+
nonce: number;
|
|
1430
|
+
contractAddress: `0x${string}`;
|
|
1431
|
+
chainId: number;
|
|
1432
|
+
r: `0x${string}`;
|
|
1433
|
+
s: `0x${string}`;
|
|
1434
|
+
yParity: number;
|
|
1435
|
+
v?: bigint | undefined;
|
|
942
1436
|
} | {
|
|
943
1437
|
address: `0x${string}`;
|
|
944
1438
|
nonce: number;
|
|
945
1439
|
chainId: number;
|
|
946
1440
|
r: `0x${string}`;
|
|
947
1441
|
s: `0x${string}`;
|
|
948
|
-
v: bigint;
|
|
949
1442
|
yParity: number;
|
|
1443
|
+
v?: bigint | undefined;
|
|
950
1444
|
} | null | undefined;
|
|
951
1445
|
} | {
|
|
952
1446
|
sender: `0x${string}`;
|
|
@@ -970,16 +1464,16 @@ export declare const ethGetUserOperationByHashHandler: {
|
|
|
970
1464
|
chainId: number;
|
|
971
1465
|
r: `0x${string}`;
|
|
972
1466
|
s: `0x${string}`;
|
|
973
|
-
v: bigint;
|
|
974
1467
|
yParity: number;
|
|
1468
|
+
v?: bigint | undefined;
|
|
975
1469
|
} | {
|
|
976
1470
|
address: `0x${string}`;
|
|
977
1471
|
nonce: number;
|
|
978
1472
|
chainId: number;
|
|
979
1473
|
r: `0x${string}`;
|
|
980
1474
|
s: `0x${string}`;
|
|
981
|
-
v: bigint;
|
|
982
1475
|
yParity: number;
|
|
1476
|
+
v?: bigint | undefined;
|
|
983
1477
|
} | null | undefined;
|
|
984
1478
|
}) & ({
|
|
985
1479
|
sender: `0x${string}`;
|
|
@@ -999,16 +1493,49 @@ export declare const ethGetUserOperationByHashHandler: {
|
|
|
999
1493
|
chainId: number;
|
|
1000
1494
|
r: `0x${string}`;
|
|
1001
1495
|
s: `0x${string}`;
|
|
1002
|
-
v: bigint;
|
|
1003
1496
|
yParity: number;
|
|
1497
|
+
v?: bigint | undefined;
|
|
1498
|
+
} | {
|
|
1499
|
+
address: `0x${string}`;
|
|
1500
|
+
nonce: number;
|
|
1501
|
+
chainId: number;
|
|
1502
|
+
r: `0x${string}`;
|
|
1503
|
+
s: `0x${string}`;
|
|
1504
|
+
yParity: number;
|
|
1505
|
+
v?: bigint | undefined;
|
|
1506
|
+
} | null | undefined;
|
|
1507
|
+
} | {
|
|
1508
|
+
sender: `0x${string}`;
|
|
1509
|
+
factory: `0x${string}` | null;
|
|
1510
|
+
paymaster: `0x${string}` | null;
|
|
1511
|
+
nonce: bigint;
|
|
1512
|
+
callData: `0x${string}`;
|
|
1513
|
+
callGasLimit: bigint;
|
|
1514
|
+
verificationGasLimit: bigint;
|
|
1515
|
+
preVerificationGas: bigint;
|
|
1516
|
+
maxFeePerGas: bigint;
|
|
1517
|
+
maxPriorityFeePerGas: bigint;
|
|
1518
|
+
signature: `0x${string}`;
|
|
1519
|
+
paymasterVerificationGasLimit: bigint | null;
|
|
1520
|
+
paymasterPostOpGasLimit: bigint | null;
|
|
1521
|
+
factoryData: `0x${string}` | null;
|
|
1522
|
+
paymasterData: `0x${string}` | null;
|
|
1523
|
+
eip7702Auth?: {
|
|
1524
|
+
nonce: number;
|
|
1525
|
+
contractAddress: `0x${string}`;
|
|
1526
|
+
chainId: number;
|
|
1527
|
+
r: `0x${string}`;
|
|
1528
|
+
s: `0x${string}`;
|
|
1529
|
+
yParity: number;
|
|
1530
|
+
v?: bigint | undefined;
|
|
1004
1531
|
} | {
|
|
1005
1532
|
address: `0x${string}`;
|
|
1006
1533
|
nonce: number;
|
|
1007
1534
|
chainId: number;
|
|
1008
1535
|
r: `0x${string}`;
|
|
1009
1536
|
s: `0x${string}`;
|
|
1010
|
-
v: bigint;
|
|
1011
1537
|
yParity: number;
|
|
1538
|
+
v?: bigint | undefined;
|
|
1012
1539
|
} | null | undefined;
|
|
1013
1540
|
} | {
|
|
1014
1541
|
sender: `0x${string}`;
|
|
@@ -1032,16 +1559,16 @@ export declare const ethGetUserOperationByHashHandler: {
|
|
|
1032
1559
|
chainId: number;
|
|
1033
1560
|
r: `0x${string}`;
|
|
1034
1561
|
s: `0x${string}`;
|
|
1035
|
-
v: bigint;
|
|
1036
1562
|
yParity: number;
|
|
1563
|
+
v?: bigint | undefined;
|
|
1037
1564
|
} | {
|
|
1038
1565
|
address: `0x${string}`;
|
|
1039
1566
|
nonce: number;
|
|
1040
1567
|
chainId: number;
|
|
1041
1568
|
r: `0x${string}`;
|
|
1042
1569
|
s: `0x${string}`;
|
|
1043
|
-
v: bigint;
|
|
1044
1570
|
yParity: number;
|
|
1571
|
+
v?: bigint | undefined;
|
|
1045
1572
|
} | null | undefined;
|
|
1046
1573
|
} | undefined);
|
|
1047
1574
|
transactionHash: `0x${string}`;
|
|
@@ -1067,16 +1594,49 @@ export declare const ethGetUserOperationByHashHandler: {
|
|
|
1067
1594
|
chainId: number;
|
|
1068
1595
|
r: `0x${string}`;
|
|
1069
1596
|
s: `0x${string}`;
|
|
1070
|
-
v: bigint;
|
|
1071
1597
|
yParity: number;
|
|
1598
|
+
v?: bigint | undefined;
|
|
1599
|
+
} | {
|
|
1600
|
+
address: `0x${string}`;
|
|
1601
|
+
nonce: number;
|
|
1602
|
+
chainId: number;
|
|
1603
|
+
r: `0x${string}`;
|
|
1604
|
+
s: `0x${string}`;
|
|
1605
|
+
yParity: number;
|
|
1606
|
+
v?: bigint | undefined;
|
|
1607
|
+
} | null | undefined;
|
|
1608
|
+
} | {
|
|
1609
|
+
sender: `0x${string}`;
|
|
1610
|
+
factory: `0x${string}` | null;
|
|
1611
|
+
paymaster: `0x${string}` | null;
|
|
1612
|
+
nonce: bigint;
|
|
1613
|
+
callData: `0x${string}`;
|
|
1614
|
+
callGasLimit: bigint;
|
|
1615
|
+
verificationGasLimit: bigint;
|
|
1616
|
+
preVerificationGas: bigint;
|
|
1617
|
+
maxFeePerGas: bigint;
|
|
1618
|
+
maxPriorityFeePerGas: bigint;
|
|
1619
|
+
signature: `0x${string}`;
|
|
1620
|
+
paymasterVerificationGasLimit: bigint | null;
|
|
1621
|
+
paymasterPostOpGasLimit: bigint | null;
|
|
1622
|
+
factoryData: `0x${string}` | null;
|
|
1623
|
+
paymasterData: `0x${string}` | null;
|
|
1624
|
+
eip7702Auth?: {
|
|
1625
|
+
nonce: number;
|
|
1626
|
+
contractAddress: `0x${string}`;
|
|
1627
|
+
chainId: number;
|
|
1628
|
+
r: `0x${string}`;
|
|
1629
|
+
s: `0x${string}`;
|
|
1630
|
+
yParity: number;
|
|
1631
|
+
v?: bigint | undefined;
|
|
1072
1632
|
} | {
|
|
1073
1633
|
address: `0x${string}`;
|
|
1074
1634
|
nonce: number;
|
|
1075
1635
|
chainId: number;
|
|
1076
1636
|
r: `0x${string}`;
|
|
1077
1637
|
s: `0x${string}`;
|
|
1078
|
-
v: bigint;
|
|
1079
1638
|
yParity: number;
|
|
1639
|
+
v?: bigint | undefined;
|
|
1080
1640
|
} | null | undefined;
|
|
1081
1641
|
} | {
|
|
1082
1642
|
sender: `0x${string}`;
|
|
@@ -1100,16 +1660,16 @@ export declare const ethGetUserOperationByHashHandler: {
|
|
|
1100
1660
|
chainId: number;
|
|
1101
1661
|
r: `0x${string}`;
|
|
1102
1662
|
s: `0x${string}`;
|
|
1103
|
-
v: bigint;
|
|
1104
1663
|
yParity: number;
|
|
1664
|
+
v?: bigint | undefined;
|
|
1105
1665
|
} | {
|
|
1106
1666
|
address: `0x${string}`;
|
|
1107
1667
|
nonce: number;
|
|
1108
1668
|
chainId: number;
|
|
1109
1669
|
r: `0x${string}`;
|
|
1110
1670
|
s: `0x${string}`;
|
|
1111
|
-
v: bigint;
|
|
1112
1671
|
yParity: number;
|
|
1672
|
+
v?: bigint | undefined;
|
|
1113
1673
|
} | null | undefined;
|
|
1114
1674
|
}) & ({
|
|
1115
1675
|
sender: `0x${string}`;
|
|
@@ -1129,16 +1689,49 @@ export declare const ethGetUserOperationByHashHandler: {
|
|
|
1129
1689
|
chainId: number;
|
|
1130
1690
|
r: `0x${string}`;
|
|
1131
1691
|
s: `0x${string}`;
|
|
1132
|
-
v: bigint;
|
|
1133
1692
|
yParity: number;
|
|
1693
|
+
v?: bigint | undefined;
|
|
1694
|
+
} | {
|
|
1695
|
+
address: `0x${string}`;
|
|
1696
|
+
nonce: number;
|
|
1697
|
+
chainId: number;
|
|
1698
|
+
r: `0x${string}`;
|
|
1699
|
+
s: `0x${string}`;
|
|
1700
|
+
yParity: number;
|
|
1701
|
+
v?: bigint | undefined;
|
|
1702
|
+
} | null | undefined;
|
|
1703
|
+
} | {
|
|
1704
|
+
sender: `0x${string}`;
|
|
1705
|
+
factory: `0x${string}` | null;
|
|
1706
|
+
paymaster: `0x${string}` | null;
|
|
1707
|
+
nonce: bigint;
|
|
1708
|
+
callData: `0x${string}`;
|
|
1709
|
+
callGasLimit: bigint;
|
|
1710
|
+
verificationGasLimit: bigint;
|
|
1711
|
+
preVerificationGas: bigint;
|
|
1712
|
+
maxFeePerGas: bigint;
|
|
1713
|
+
maxPriorityFeePerGas: bigint;
|
|
1714
|
+
signature: `0x${string}`;
|
|
1715
|
+
paymasterVerificationGasLimit: bigint | null;
|
|
1716
|
+
paymasterPostOpGasLimit: bigint | null;
|
|
1717
|
+
factoryData: `0x${string}` | null;
|
|
1718
|
+
paymasterData: `0x${string}` | null;
|
|
1719
|
+
eip7702Auth?: {
|
|
1720
|
+
nonce: number;
|
|
1721
|
+
contractAddress: `0x${string}`;
|
|
1722
|
+
chainId: number;
|
|
1723
|
+
r: `0x${string}`;
|
|
1724
|
+
s: `0x${string}`;
|
|
1725
|
+
yParity: number;
|
|
1726
|
+
v?: bigint | undefined;
|
|
1134
1727
|
} | {
|
|
1135
1728
|
address: `0x${string}`;
|
|
1136
1729
|
nonce: number;
|
|
1137
1730
|
chainId: number;
|
|
1138
1731
|
r: `0x${string}`;
|
|
1139
1732
|
s: `0x${string}`;
|
|
1140
|
-
v: bigint;
|
|
1141
1733
|
yParity: number;
|
|
1734
|
+
v?: bigint | undefined;
|
|
1142
1735
|
} | null | undefined;
|
|
1143
1736
|
} | {
|
|
1144
1737
|
sender: `0x${string}`;
|
|
@@ -1162,16 +1755,16 @@ export declare const ethGetUserOperationByHashHandler: {
|
|
|
1162
1755
|
chainId: number;
|
|
1163
1756
|
r: `0x${string}`;
|
|
1164
1757
|
s: `0x${string}`;
|
|
1165
|
-
v: bigint;
|
|
1166
1758
|
yParity: number;
|
|
1759
|
+
v?: bigint | undefined;
|
|
1167
1760
|
} | {
|
|
1168
1761
|
address: `0x${string}`;
|
|
1169
1762
|
nonce: number;
|
|
1170
1763
|
chainId: number;
|
|
1171
1764
|
r: `0x${string}`;
|
|
1172
1765
|
s: `0x${string}`;
|
|
1173
|
-
v: bigint;
|
|
1174
1766
|
yParity: number;
|
|
1767
|
+
v?: bigint | undefined;
|
|
1175
1768
|
} | null | undefined;
|
|
1176
1769
|
} | undefined);
|
|
1177
1770
|
transactionHash: `0x${string}`;
|