viem 2.0.0-alpha.14 → 2.0.0-alpha.15
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/_cjs/actions/public/simulateContract.js.map +1 -1
- package/_cjs/errors/version.js +1 -1
- package/_esm/actions/public/simulateContract.js.map +1 -1
- package/_esm/errors/version.js +1 -1
- package/_types/actions/public/simulateContract.d.ts +1 -1
- package/_types/actions/public/simulateContract.d.ts.map +1 -1
- package/_types/chains/celo/formatters.d.ts +90 -90
- package/_types/chains/definitions/base.d.ts +270 -270
- package/_types/chains/definitions/baseGoerli.d.ts +270 -270
- package/_types/chains/definitions/celo.d.ts +270 -270
- package/_types/chains/definitions/celoAlfajores.d.ts +270 -270
- package/_types/chains/definitions/celoCannoli.d.ts +270 -270
- package/_types/chains/definitions/optimism.d.ts +270 -270
- package/_types/chains/definitions/optimismGoerli.d.ts +270 -270
- package/_types/chains/definitions/optimismSepolia.d.ts +270 -270
- package/_types/chains/definitions/zora.d.ts +270 -270
- package/_types/chains/definitions/zoraTestnet.d.ts +270 -270
- package/_types/chains/optimism/formatters.d.ts +90 -90
- package/_types/errors/version.d.ts +1 -1
- package/_types/utils/formatters/transaction.d.ts +1 -1
- package/_types/utils/formatters/transactionRequest.d.ts +1 -1
- package/actions/public/simulateContract.ts +4 -1
- package/errors/version.ts +1 -1
- package/package.json +1 -1
@@ -73,48 +73,48 @@ export declare const optimism: {
|
|
73
73
|
readonly transaction: {
|
74
74
|
exclude: [] | undefined;
|
75
75
|
format: (args: ({
|
76
|
-
|
76
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
77
|
+
gas?: `0x${string}` | undefined;
|
78
|
+
value?: `0x${string}` | undefined;
|
77
79
|
gasPrice?: `0x${string}` | undefined;
|
78
80
|
maxFeePerGas?: `0x${string}` | undefined;
|
79
81
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
80
|
-
gas?: `0x${string}` | undefined;
|
81
|
-
nonce?: `0x${string}` | undefined;
|
82
|
-
to?: `0x${string}` | null | undefined;
|
83
|
-
value?: `0x${string}` | undefined;
|
84
|
-
accessList?: undefined;
|
85
|
-
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
86
|
-
hash?: `0x${string}` | undefined;
|
87
82
|
blockHash?: `0x${string}` | null | undefined;
|
88
83
|
blockNumber?: `0x${string}` | null | undefined;
|
89
|
-
|
84
|
+
from?: `0x${string}` | undefined;
|
85
|
+
hash?: `0x${string}` | undefined;
|
90
86
|
input?: `0x${string}` | undefined;
|
87
|
+
nonce?: `0x${string}` | undefined;
|
91
88
|
r?: `0x${string}` | undefined;
|
92
89
|
s?: `0x${string}` | undefined;
|
90
|
+
to?: `0x${string}` | null | undefined;
|
91
|
+
transactionIndex?: `0x${string}` | null | undefined;
|
93
92
|
v?: `0x${string}` | undefined;
|
93
|
+
accessList?: undefined;
|
94
94
|
chainId?: `0x${string}` | undefined;
|
95
95
|
} & import("../index.js").Omit<import("../../index.js").TransactionLegacy<`0x${string}`, `0x${string}`, boolean, "0x0">, "typeHex"> & {
|
96
96
|
isSystemTx?: undefined;
|
97
97
|
mint?: undefined;
|
98
98
|
sourceHash?: undefined;
|
99
99
|
}) | ({
|
100
|
-
|
100
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
101
|
+
gas?: `0x${string}` | undefined;
|
102
|
+
value?: `0x${string}` | undefined;
|
101
103
|
gasPrice?: `0x${string}` | undefined;
|
102
104
|
maxFeePerGas?: `0x${string}` | undefined;
|
103
105
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
104
|
-
gas?: `0x${string}` | undefined;
|
105
|
-
nonce?: `0x${string}` | undefined;
|
106
|
-
to?: `0x${string}` | null | undefined;
|
107
|
-
value?: `0x${string}` | undefined;
|
108
|
-
accessList?: undefined;
|
109
|
-
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
110
|
-
hash?: `0x${string}` | undefined;
|
111
106
|
blockHash?: `0x${string}` | null | undefined;
|
112
107
|
blockNumber?: `0x${string}` | null | undefined;
|
113
|
-
|
108
|
+
from?: `0x${string}` | undefined;
|
109
|
+
hash?: `0x${string}` | undefined;
|
114
110
|
input?: `0x${string}` | undefined;
|
111
|
+
nonce?: `0x${string}` | undefined;
|
115
112
|
r?: `0x${string}` | undefined;
|
116
113
|
s?: `0x${string}` | undefined;
|
114
|
+
to?: `0x${string}` | null | undefined;
|
115
|
+
transactionIndex?: `0x${string}` | null | undefined;
|
117
116
|
v?: `0x${string}` | undefined;
|
117
|
+
accessList?: undefined;
|
118
118
|
chainId?: `0x${string}` | undefined;
|
119
119
|
} & Omit<import("../../index.js").TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & import("../../index.js").FeeValuesEIP1559<`0x${string}`> & {
|
120
120
|
isSystemTx?: boolean | undefined;
|
@@ -122,96 +122,96 @@ export declare const optimism: {
|
|
122
122
|
sourceHash: `0x${string}`;
|
123
123
|
type: "0x7e";
|
124
124
|
}) | ({
|
125
|
-
|
125
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
126
|
+
gas?: `0x${string}` | undefined;
|
127
|
+
value?: `0x${string}` | undefined;
|
126
128
|
gasPrice?: `0x${string}` | undefined;
|
127
129
|
maxFeePerGas?: `0x${string}` | undefined;
|
128
130
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
129
|
-
gas?: `0x${string}` | undefined;
|
130
|
-
nonce?: `0x${string}` | undefined;
|
131
|
-
to?: `0x${string}` | null | undefined;
|
132
|
-
value?: `0x${string}` | undefined;
|
133
|
-
accessList?: import("../../index.js").AccessList | undefined;
|
134
|
-
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
135
|
-
hash?: `0x${string}` | undefined;
|
136
131
|
blockHash?: `0x${string}` | null | undefined;
|
137
132
|
blockNumber?: `0x${string}` | null | undefined;
|
138
|
-
|
133
|
+
from?: `0x${string}` | undefined;
|
134
|
+
hash?: `0x${string}` | undefined;
|
139
135
|
input?: `0x${string}` | undefined;
|
136
|
+
nonce?: `0x${string}` | undefined;
|
140
137
|
r?: `0x${string}` | undefined;
|
141
138
|
s?: `0x${string}` | undefined;
|
139
|
+
to?: `0x${string}` | null | undefined;
|
140
|
+
transactionIndex?: `0x${string}` | null | undefined;
|
142
141
|
v?: `0x${string}` | undefined;
|
142
|
+
accessList?: import("../../index.js").AccessList | undefined;
|
143
143
|
chainId?: `0x${string}` | undefined;
|
144
144
|
} & import("../index.js").Omit<import("../../index.js").TransactionLegacy<`0x${string}`, `0x${string}`, boolean, "0x0">, "typeHex"> & {
|
145
145
|
isSystemTx?: undefined;
|
146
146
|
mint?: undefined;
|
147
147
|
sourceHash?: undefined;
|
148
148
|
}) | ({
|
149
|
-
|
149
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
150
|
+
gas?: `0x${string}` | undefined;
|
151
|
+
value?: `0x${string}` | undefined;
|
150
152
|
gasPrice?: `0x${string}` | undefined;
|
151
153
|
maxFeePerGas?: `0x${string}` | undefined;
|
152
154
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
153
|
-
gas?: `0x${string}` | undefined;
|
154
|
-
nonce?: `0x${string}` | undefined;
|
155
|
-
to?: `0x${string}` | null | undefined;
|
156
|
-
value?: `0x${string}` | undefined;
|
157
|
-
accessList?: import("../../index.js").AccessList | undefined;
|
158
|
-
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
159
|
-
hash?: `0x${string}` | undefined;
|
160
155
|
blockHash?: `0x${string}` | null | undefined;
|
161
156
|
blockNumber?: `0x${string}` | null | undefined;
|
162
|
-
|
157
|
+
from?: `0x${string}` | undefined;
|
158
|
+
hash?: `0x${string}` | undefined;
|
163
159
|
input?: `0x${string}` | undefined;
|
160
|
+
nonce?: `0x${string}` | undefined;
|
164
161
|
r?: `0x${string}` | undefined;
|
165
162
|
s?: `0x${string}` | undefined;
|
163
|
+
to?: `0x${string}` | null | undefined;
|
164
|
+
transactionIndex?: `0x${string}` | null | undefined;
|
166
165
|
v?: `0x${string}` | undefined;
|
166
|
+
accessList?: import("../../index.js").AccessList | undefined;
|
167
167
|
chainId?: `0x${string}` | undefined;
|
168
168
|
} & import("../index.js").Omit<import("../../index.js").TransactionEIP2930<`0x${string}`, `0x${string}`, boolean, "0x1">, "typeHex"> & {
|
169
169
|
isSystemTx?: undefined;
|
170
170
|
mint?: undefined;
|
171
171
|
sourceHash?: undefined;
|
172
172
|
}) | ({
|
173
|
-
|
173
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
174
|
+
gas?: `0x${string}` | undefined;
|
175
|
+
value?: `0x${string}` | undefined;
|
174
176
|
gasPrice?: `0x${string}` | undefined;
|
175
177
|
maxFeePerGas?: `0x${string}` | undefined;
|
176
178
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
177
|
-
gas?: `0x${string}` | undefined;
|
178
|
-
nonce?: `0x${string}` | undefined;
|
179
|
-
to?: `0x${string}` | null | undefined;
|
180
|
-
value?: `0x${string}` | undefined;
|
181
|
-
accessList?: import("../../index.js").AccessList | undefined;
|
182
|
-
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
183
|
-
hash?: `0x${string}` | undefined;
|
184
179
|
blockHash?: `0x${string}` | null | undefined;
|
185
180
|
blockNumber?: `0x${string}` | null | undefined;
|
186
|
-
|
181
|
+
from?: `0x${string}` | undefined;
|
182
|
+
hash?: `0x${string}` | undefined;
|
187
183
|
input?: `0x${string}` | undefined;
|
184
|
+
nonce?: `0x${string}` | undefined;
|
188
185
|
r?: `0x${string}` | undefined;
|
189
186
|
s?: `0x${string}` | undefined;
|
187
|
+
to?: `0x${string}` | null | undefined;
|
188
|
+
transactionIndex?: `0x${string}` | null | undefined;
|
190
189
|
v?: `0x${string}` | undefined;
|
190
|
+
accessList?: import("../../index.js").AccessList | undefined;
|
191
191
|
chainId?: `0x${string}` | undefined;
|
192
192
|
} & import("../index.js").Omit<import("../../index.js").TransactionEIP1559<`0x${string}`, `0x${string}`, boolean, "0x2">, "typeHex"> & {
|
193
193
|
isSystemTx?: undefined;
|
194
194
|
mint?: undefined;
|
195
195
|
sourceHash?: undefined;
|
196
196
|
}) | ({
|
197
|
-
|
197
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
198
|
+
gas?: `0x${string}` | undefined;
|
199
|
+
value?: `0x${string}` | undefined;
|
198
200
|
gasPrice?: `0x${string}` | undefined;
|
199
201
|
maxFeePerGas?: `0x${string}` | undefined;
|
200
202
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
201
|
-
gas?: `0x${string}` | undefined;
|
202
|
-
nonce?: `0x${string}` | undefined;
|
203
|
-
to?: `0x${string}` | null | undefined;
|
204
|
-
value?: `0x${string}` | undefined;
|
205
|
-
accessList?: import("../../index.js").AccessList | undefined;
|
206
|
-
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
207
|
-
hash?: `0x${string}` | undefined;
|
208
203
|
blockHash?: `0x${string}` | null | undefined;
|
209
204
|
blockNumber?: `0x${string}` | null | undefined;
|
210
|
-
|
205
|
+
from?: `0x${string}` | undefined;
|
206
|
+
hash?: `0x${string}` | undefined;
|
211
207
|
input?: `0x${string}` | undefined;
|
208
|
+
nonce?: `0x${string}` | undefined;
|
212
209
|
r?: `0x${string}` | undefined;
|
213
210
|
s?: `0x${string}` | undefined;
|
211
|
+
to?: `0x${string}` | null | undefined;
|
212
|
+
transactionIndex?: `0x${string}` | null | undefined;
|
214
213
|
v?: `0x${string}` | undefined;
|
214
|
+
accessList?: import("../../index.js").AccessList | undefined;
|
215
215
|
chainId?: `0x${string}` | undefined;
|
216
216
|
} & Omit<import("../../index.js").TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & import("../../index.js").FeeValuesEIP1559<`0x${string}`> & {
|
217
217
|
isSystemTx?: boolean | undefined;
|
@@ -219,96 +219,96 @@ export declare const optimism: {
|
|
219
219
|
sourceHash: `0x${string}`;
|
220
220
|
type: "0x7e";
|
221
221
|
}) | ({
|
222
|
-
|
222
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
223
|
+
gas?: `0x${string}` | undefined;
|
224
|
+
value?: `0x${string}` | undefined;
|
223
225
|
gasPrice?: `0x${string}` | undefined;
|
224
226
|
maxFeePerGas?: `0x${string}` | undefined;
|
225
227
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
226
|
-
gas?: `0x${string}` | undefined;
|
227
|
-
nonce?: `0x${string}` | undefined;
|
228
|
-
to?: `0x${string}` | null | undefined;
|
229
|
-
value?: `0x${string}` | undefined;
|
230
|
-
accessList?: import("../../index.js").AccessList | undefined;
|
231
|
-
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
232
|
-
hash?: `0x${string}` | undefined;
|
233
228
|
blockHash?: `0x${string}` | null | undefined;
|
234
229
|
blockNumber?: `0x${string}` | null | undefined;
|
235
|
-
|
230
|
+
from?: `0x${string}` | undefined;
|
231
|
+
hash?: `0x${string}` | undefined;
|
236
232
|
input?: `0x${string}` | undefined;
|
233
|
+
nonce?: `0x${string}` | undefined;
|
237
234
|
r?: `0x${string}` | undefined;
|
238
235
|
s?: `0x${string}` | undefined;
|
236
|
+
to?: `0x${string}` | null | undefined;
|
237
|
+
transactionIndex?: `0x${string}` | null | undefined;
|
239
238
|
v?: `0x${string}` | undefined;
|
239
|
+
accessList?: import("../../index.js").AccessList | undefined;
|
240
240
|
chainId?: `0x${string}` | undefined;
|
241
241
|
} & import("../index.js").Omit<import("../../index.js").TransactionLegacy<`0x${string}`, `0x${string}`, boolean, "0x0">, "typeHex"> & {
|
242
242
|
isSystemTx?: undefined;
|
243
243
|
mint?: undefined;
|
244
244
|
sourceHash?: undefined;
|
245
245
|
}) | ({
|
246
|
-
|
246
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
247
|
+
gas?: `0x${string}` | undefined;
|
248
|
+
value?: `0x${string}` | undefined;
|
247
249
|
gasPrice?: `0x${string}` | undefined;
|
248
250
|
maxFeePerGas?: `0x${string}` | undefined;
|
249
251
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
250
|
-
gas?: `0x${string}` | undefined;
|
251
|
-
nonce?: `0x${string}` | undefined;
|
252
|
-
to?: `0x${string}` | null | undefined;
|
253
|
-
value?: `0x${string}` | undefined;
|
254
|
-
accessList?: import("../../index.js").AccessList | undefined;
|
255
|
-
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
256
|
-
hash?: `0x${string}` | undefined;
|
257
252
|
blockHash?: `0x${string}` | null | undefined;
|
258
253
|
blockNumber?: `0x${string}` | null | undefined;
|
259
|
-
|
254
|
+
from?: `0x${string}` | undefined;
|
255
|
+
hash?: `0x${string}` | undefined;
|
260
256
|
input?: `0x${string}` | undefined;
|
257
|
+
nonce?: `0x${string}` | undefined;
|
261
258
|
r?: `0x${string}` | undefined;
|
262
259
|
s?: `0x${string}` | undefined;
|
260
|
+
to?: `0x${string}` | null | undefined;
|
261
|
+
transactionIndex?: `0x${string}` | null | undefined;
|
263
262
|
v?: `0x${string}` | undefined;
|
263
|
+
accessList?: import("../../index.js").AccessList | undefined;
|
264
264
|
chainId?: `0x${string}` | undefined;
|
265
265
|
} & import("../index.js").Omit<import("../../index.js").TransactionEIP2930<`0x${string}`, `0x${string}`, boolean, "0x1">, "typeHex"> & {
|
266
266
|
isSystemTx?: undefined;
|
267
267
|
mint?: undefined;
|
268
268
|
sourceHash?: undefined;
|
269
269
|
}) | ({
|
270
|
-
|
270
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
271
|
+
gas?: `0x${string}` | undefined;
|
272
|
+
value?: `0x${string}` | undefined;
|
271
273
|
gasPrice?: `0x${string}` | undefined;
|
272
274
|
maxFeePerGas?: `0x${string}` | undefined;
|
273
275
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
274
|
-
gas?: `0x${string}` | undefined;
|
275
|
-
nonce?: `0x${string}` | undefined;
|
276
|
-
to?: `0x${string}` | null | undefined;
|
277
|
-
value?: `0x${string}` | undefined;
|
278
|
-
accessList?: import("../../index.js").AccessList | undefined;
|
279
|
-
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
280
|
-
hash?: `0x${string}` | undefined;
|
281
276
|
blockHash?: `0x${string}` | null | undefined;
|
282
277
|
blockNumber?: `0x${string}` | null | undefined;
|
283
|
-
|
278
|
+
from?: `0x${string}` | undefined;
|
279
|
+
hash?: `0x${string}` | undefined;
|
284
280
|
input?: `0x${string}` | undefined;
|
281
|
+
nonce?: `0x${string}` | undefined;
|
285
282
|
r?: `0x${string}` | undefined;
|
286
283
|
s?: `0x${string}` | undefined;
|
284
|
+
to?: `0x${string}` | null | undefined;
|
285
|
+
transactionIndex?: `0x${string}` | null | undefined;
|
287
286
|
v?: `0x${string}` | undefined;
|
287
|
+
accessList?: import("../../index.js").AccessList | undefined;
|
288
288
|
chainId?: `0x${string}` | undefined;
|
289
289
|
} & import("../index.js").Omit<import("../../index.js").TransactionEIP1559<`0x${string}`, `0x${string}`, boolean, "0x2">, "typeHex"> & {
|
290
290
|
isSystemTx?: undefined;
|
291
291
|
mint?: undefined;
|
292
292
|
sourceHash?: undefined;
|
293
293
|
}) | ({
|
294
|
-
|
294
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
295
|
+
gas?: `0x${string}` | undefined;
|
296
|
+
value?: `0x${string}` | undefined;
|
295
297
|
gasPrice?: `0x${string}` | undefined;
|
296
298
|
maxFeePerGas?: `0x${string}` | undefined;
|
297
299
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
298
|
-
gas?: `0x${string}` | undefined;
|
299
|
-
nonce?: `0x${string}` | undefined;
|
300
|
-
to?: `0x${string}` | null | undefined;
|
301
|
-
value?: `0x${string}` | undefined;
|
302
|
-
accessList?: import("../../index.js").AccessList | undefined;
|
303
|
-
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
304
|
-
hash?: `0x${string}` | undefined;
|
305
300
|
blockHash?: `0x${string}` | null | undefined;
|
306
301
|
blockNumber?: `0x${string}` | null | undefined;
|
307
|
-
|
302
|
+
from?: `0x${string}` | undefined;
|
303
|
+
hash?: `0x${string}` | undefined;
|
308
304
|
input?: `0x${string}` | undefined;
|
305
|
+
nonce?: `0x${string}` | undefined;
|
309
306
|
r?: `0x${string}` | undefined;
|
310
307
|
s?: `0x${string}` | undefined;
|
308
|
+
to?: `0x${string}` | null | undefined;
|
309
|
+
transactionIndex?: `0x${string}` | null | undefined;
|
311
310
|
v?: `0x${string}` | undefined;
|
311
|
+
accessList?: import("../../index.js").AccessList | undefined;
|
312
312
|
chainId?: `0x${string}` | undefined;
|
313
313
|
} & Omit<import("../../index.js").TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & import("../../index.js").FeeValuesEIP1559<`0x${string}`> & {
|
314
314
|
isSystemTx?: boolean | undefined;
|
@@ -569,48 +569,48 @@ export declare const optimism: {
|
|
569
569
|
readonly transaction: {
|
570
570
|
exclude: [] | undefined;
|
571
571
|
format: (args: ({
|
572
|
-
|
572
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
573
|
+
gas?: `0x${string}` | undefined;
|
574
|
+
value?: `0x${string}` | undefined;
|
573
575
|
gasPrice?: `0x${string}` | undefined;
|
574
576
|
maxFeePerGas?: `0x${string}` | undefined;
|
575
577
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
576
|
-
gas?: `0x${string}` | undefined;
|
577
|
-
nonce?: `0x${string}` | undefined;
|
578
|
-
to?: `0x${string}` | null | undefined;
|
579
|
-
value?: `0x${string}` | undefined;
|
580
|
-
accessList?: undefined;
|
581
|
-
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
582
|
-
hash?: `0x${string}` | undefined;
|
583
578
|
blockHash?: `0x${string}` | null | undefined;
|
584
579
|
blockNumber?: `0x${string}` | null | undefined;
|
585
|
-
|
580
|
+
from?: `0x${string}` | undefined;
|
581
|
+
hash?: `0x${string}` | undefined;
|
586
582
|
input?: `0x${string}` | undefined;
|
583
|
+
nonce?: `0x${string}` | undefined;
|
587
584
|
r?: `0x${string}` | undefined;
|
588
585
|
s?: `0x${string}` | undefined;
|
586
|
+
to?: `0x${string}` | null | undefined;
|
587
|
+
transactionIndex?: `0x${string}` | null | undefined;
|
589
588
|
v?: `0x${string}` | undefined;
|
589
|
+
accessList?: undefined;
|
590
590
|
chainId?: `0x${string}` | undefined;
|
591
591
|
} & import("../index.js").Omit<import("../../index.js").TransactionLegacy<`0x${string}`, `0x${string}`, boolean, "0x0">, "typeHex"> & {
|
592
592
|
isSystemTx?: undefined;
|
593
593
|
mint?: undefined;
|
594
594
|
sourceHash?: undefined;
|
595
595
|
}) | ({
|
596
|
-
|
596
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
597
|
+
gas?: `0x${string}` | undefined;
|
598
|
+
value?: `0x${string}` | undefined;
|
597
599
|
gasPrice?: `0x${string}` | undefined;
|
598
600
|
maxFeePerGas?: `0x${string}` | undefined;
|
599
601
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
600
|
-
gas?: `0x${string}` | undefined;
|
601
|
-
nonce?: `0x${string}` | undefined;
|
602
|
-
to?: `0x${string}` | null | undefined;
|
603
|
-
value?: `0x${string}` | undefined;
|
604
|
-
accessList?: undefined;
|
605
|
-
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
606
|
-
hash?: `0x${string}` | undefined;
|
607
602
|
blockHash?: `0x${string}` | null | undefined;
|
608
603
|
blockNumber?: `0x${string}` | null | undefined;
|
609
|
-
|
604
|
+
from?: `0x${string}` | undefined;
|
605
|
+
hash?: `0x${string}` | undefined;
|
610
606
|
input?: `0x${string}` | undefined;
|
607
|
+
nonce?: `0x${string}` | undefined;
|
611
608
|
r?: `0x${string}` | undefined;
|
612
609
|
s?: `0x${string}` | undefined;
|
610
|
+
to?: `0x${string}` | null | undefined;
|
611
|
+
transactionIndex?: `0x${string}` | null | undefined;
|
613
612
|
v?: `0x${string}` | undefined;
|
613
|
+
accessList?: undefined;
|
614
614
|
chainId?: `0x${string}` | undefined;
|
615
615
|
} & Omit<import("../../index.js").TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & import("../../index.js").FeeValuesEIP1559<`0x${string}`> & {
|
616
616
|
isSystemTx?: boolean | undefined;
|
@@ -618,96 +618,96 @@ export declare const optimism: {
|
|
618
618
|
sourceHash: `0x${string}`;
|
619
619
|
type: "0x7e";
|
620
620
|
}) | ({
|
621
|
-
|
621
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
622
|
+
gas?: `0x${string}` | undefined;
|
623
|
+
value?: `0x${string}` | undefined;
|
622
624
|
gasPrice?: `0x${string}` | undefined;
|
623
625
|
maxFeePerGas?: `0x${string}` | undefined;
|
624
626
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
625
|
-
gas?: `0x${string}` | undefined;
|
626
|
-
nonce?: `0x${string}` | undefined;
|
627
|
-
to?: `0x${string}` | null | undefined;
|
628
|
-
value?: `0x${string}` | undefined;
|
629
|
-
accessList?: import("../../index.js").AccessList | undefined;
|
630
|
-
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
631
|
-
hash?: `0x${string}` | undefined;
|
632
627
|
blockHash?: `0x${string}` | null | undefined;
|
633
628
|
blockNumber?: `0x${string}` | null | undefined;
|
634
|
-
|
629
|
+
from?: `0x${string}` | undefined;
|
630
|
+
hash?: `0x${string}` | undefined;
|
635
631
|
input?: `0x${string}` | undefined;
|
632
|
+
nonce?: `0x${string}` | undefined;
|
636
633
|
r?: `0x${string}` | undefined;
|
637
634
|
s?: `0x${string}` | undefined;
|
635
|
+
to?: `0x${string}` | null | undefined;
|
636
|
+
transactionIndex?: `0x${string}` | null | undefined;
|
638
637
|
v?: `0x${string}` | undefined;
|
638
|
+
accessList?: import("../../index.js").AccessList | undefined;
|
639
639
|
chainId?: `0x${string}` | undefined;
|
640
640
|
} & import("../index.js").Omit<import("../../index.js").TransactionLegacy<`0x${string}`, `0x${string}`, boolean, "0x0">, "typeHex"> & {
|
641
641
|
isSystemTx?: undefined;
|
642
642
|
mint?: undefined;
|
643
643
|
sourceHash?: undefined;
|
644
644
|
}) | ({
|
645
|
-
|
645
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
646
|
+
gas?: `0x${string}` | undefined;
|
647
|
+
value?: `0x${string}` | undefined;
|
646
648
|
gasPrice?: `0x${string}` | undefined;
|
647
649
|
maxFeePerGas?: `0x${string}` | undefined;
|
648
650
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
649
|
-
gas?: `0x${string}` | undefined;
|
650
|
-
nonce?: `0x${string}` | undefined;
|
651
|
-
to?: `0x${string}` | null | undefined;
|
652
|
-
value?: `0x${string}` | undefined;
|
653
|
-
accessList?: import("../../index.js").AccessList | undefined;
|
654
|
-
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
655
|
-
hash?: `0x${string}` | undefined;
|
656
651
|
blockHash?: `0x${string}` | null | undefined;
|
657
652
|
blockNumber?: `0x${string}` | null | undefined;
|
658
|
-
|
653
|
+
from?: `0x${string}` | undefined;
|
654
|
+
hash?: `0x${string}` | undefined;
|
659
655
|
input?: `0x${string}` | undefined;
|
656
|
+
nonce?: `0x${string}` | undefined;
|
660
657
|
r?: `0x${string}` | undefined;
|
661
658
|
s?: `0x${string}` | undefined;
|
659
|
+
to?: `0x${string}` | null | undefined;
|
660
|
+
transactionIndex?: `0x${string}` | null | undefined;
|
662
661
|
v?: `0x${string}` | undefined;
|
662
|
+
accessList?: import("../../index.js").AccessList | undefined;
|
663
663
|
chainId?: `0x${string}` | undefined;
|
664
664
|
} & import("../index.js").Omit<import("../../index.js").TransactionEIP2930<`0x${string}`, `0x${string}`, boolean, "0x1">, "typeHex"> & {
|
665
665
|
isSystemTx?: undefined;
|
666
666
|
mint?: undefined;
|
667
667
|
sourceHash?: undefined;
|
668
668
|
}) | ({
|
669
|
-
|
669
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
670
|
+
gas?: `0x${string}` | undefined;
|
671
|
+
value?: `0x${string}` | undefined;
|
670
672
|
gasPrice?: `0x${string}` | undefined;
|
671
673
|
maxFeePerGas?: `0x${string}` | undefined;
|
672
674
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
673
|
-
gas?: `0x${string}` | undefined;
|
674
|
-
nonce?: `0x${string}` | undefined;
|
675
|
-
to?: `0x${string}` | null | undefined;
|
676
|
-
value?: `0x${string}` | undefined;
|
677
|
-
accessList?: import("../../index.js").AccessList | undefined;
|
678
|
-
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
679
|
-
hash?: `0x${string}` | undefined;
|
680
675
|
blockHash?: `0x${string}` | null | undefined;
|
681
676
|
blockNumber?: `0x${string}` | null | undefined;
|
682
|
-
|
677
|
+
from?: `0x${string}` | undefined;
|
678
|
+
hash?: `0x${string}` | undefined;
|
683
679
|
input?: `0x${string}` | undefined;
|
680
|
+
nonce?: `0x${string}` | undefined;
|
684
681
|
r?: `0x${string}` | undefined;
|
685
682
|
s?: `0x${string}` | undefined;
|
683
|
+
to?: `0x${string}` | null | undefined;
|
684
|
+
transactionIndex?: `0x${string}` | null | undefined;
|
686
685
|
v?: `0x${string}` | undefined;
|
686
|
+
accessList?: import("../../index.js").AccessList | undefined;
|
687
687
|
chainId?: `0x${string}` | undefined;
|
688
688
|
} & import("../index.js").Omit<import("../../index.js").TransactionEIP1559<`0x${string}`, `0x${string}`, boolean, "0x2">, "typeHex"> & {
|
689
689
|
isSystemTx?: undefined;
|
690
690
|
mint?: undefined;
|
691
691
|
sourceHash?: undefined;
|
692
692
|
}) | ({
|
693
|
-
|
693
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
694
|
+
gas?: `0x${string}` | undefined;
|
695
|
+
value?: `0x${string}` | undefined;
|
694
696
|
gasPrice?: `0x${string}` | undefined;
|
695
697
|
maxFeePerGas?: `0x${string}` | undefined;
|
696
698
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
697
|
-
gas?: `0x${string}` | undefined;
|
698
|
-
nonce?: `0x${string}` | undefined;
|
699
|
-
to?: `0x${string}` | null | undefined;
|
700
|
-
value?: `0x${string}` | undefined;
|
701
|
-
accessList?: import("../../index.js").AccessList | undefined;
|
702
|
-
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
703
|
-
hash?: `0x${string}` | undefined;
|
704
699
|
blockHash?: `0x${string}` | null | undefined;
|
705
700
|
blockNumber?: `0x${string}` | null | undefined;
|
706
|
-
|
701
|
+
from?: `0x${string}` | undefined;
|
702
|
+
hash?: `0x${string}` | undefined;
|
707
703
|
input?: `0x${string}` | undefined;
|
704
|
+
nonce?: `0x${string}` | undefined;
|
708
705
|
r?: `0x${string}` | undefined;
|
709
706
|
s?: `0x${string}` | undefined;
|
707
|
+
to?: `0x${string}` | null | undefined;
|
708
|
+
transactionIndex?: `0x${string}` | null | undefined;
|
710
709
|
v?: `0x${string}` | undefined;
|
710
|
+
accessList?: import("../../index.js").AccessList | undefined;
|
711
711
|
chainId?: `0x${string}` | undefined;
|
712
712
|
} & Omit<import("../../index.js").TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & import("../../index.js").FeeValuesEIP1559<`0x${string}`> & {
|
713
713
|
isSystemTx?: boolean | undefined;
|
@@ -715,96 +715,96 @@ export declare const optimism: {
|
|
715
715
|
sourceHash: `0x${string}`;
|
716
716
|
type: "0x7e";
|
717
717
|
}) | ({
|
718
|
-
|
718
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
719
|
+
gas?: `0x${string}` | undefined;
|
720
|
+
value?: `0x${string}` | undefined;
|
719
721
|
gasPrice?: `0x${string}` | undefined;
|
720
722
|
maxFeePerGas?: `0x${string}` | undefined;
|
721
723
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
722
|
-
gas?: `0x${string}` | undefined;
|
723
|
-
nonce?: `0x${string}` | undefined;
|
724
|
-
to?: `0x${string}` | null | undefined;
|
725
|
-
value?: `0x${string}` | undefined;
|
726
|
-
accessList?: import("../../index.js").AccessList | undefined;
|
727
|
-
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
728
|
-
hash?: `0x${string}` | undefined;
|
729
724
|
blockHash?: `0x${string}` | null | undefined;
|
730
725
|
blockNumber?: `0x${string}` | null | undefined;
|
731
|
-
|
726
|
+
from?: `0x${string}` | undefined;
|
727
|
+
hash?: `0x${string}` | undefined;
|
732
728
|
input?: `0x${string}` | undefined;
|
729
|
+
nonce?: `0x${string}` | undefined;
|
733
730
|
r?: `0x${string}` | undefined;
|
734
731
|
s?: `0x${string}` | undefined;
|
732
|
+
to?: `0x${string}` | null | undefined;
|
733
|
+
transactionIndex?: `0x${string}` | null | undefined;
|
735
734
|
v?: `0x${string}` | undefined;
|
735
|
+
accessList?: import("../../index.js").AccessList | undefined;
|
736
736
|
chainId?: `0x${string}` | undefined;
|
737
737
|
} & import("../index.js").Omit<import("../../index.js").TransactionLegacy<`0x${string}`, `0x${string}`, boolean, "0x0">, "typeHex"> & {
|
738
738
|
isSystemTx?: undefined;
|
739
739
|
mint?: undefined;
|
740
740
|
sourceHash?: undefined;
|
741
741
|
}) | ({
|
742
|
-
|
742
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
743
|
+
gas?: `0x${string}` | undefined;
|
744
|
+
value?: `0x${string}` | undefined;
|
743
745
|
gasPrice?: `0x${string}` | undefined;
|
744
746
|
maxFeePerGas?: `0x${string}` | undefined;
|
745
747
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
746
|
-
gas?: `0x${string}` | undefined;
|
747
|
-
nonce?: `0x${string}` | undefined;
|
748
|
-
to?: `0x${string}` | null | undefined;
|
749
|
-
value?: `0x${string}` | undefined;
|
750
|
-
accessList?: import("../../index.js").AccessList | undefined;
|
751
|
-
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
752
|
-
hash?: `0x${string}` | undefined;
|
753
748
|
blockHash?: `0x${string}` | null | undefined;
|
754
749
|
blockNumber?: `0x${string}` | null | undefined;
|
755
|
-
|
750
|
+
from?: `0x${string}` | undefined;
|
751
|
+
hash?: `0x${string}` | undefined;
|
756
752
|
input?: `0x${string}` | undefined;
|
753
|
+
nonce?: `0x${string}` | undefined;
|
757
754
|
r?: `0x${string}` | undefined;
|
758
755
|
s?: `0x${string}` | undefined;
|
756
|
+
to?: `0x${string}` | null | undefined;
|
757
|
+
transactionIndex?: `0x${string}` | null | undefined;
|
759
758
|
v?: `0x${string}` | undefined;
|
759
|
+
accessList?: import("../../index.js").AccessList | undefined;
|
760
760
|
chainId?: `0x${string}` | undefined;
|
761
761
|
} & import("../index.js").Omit<import("../../index.js").TransactionEIP2930<`0x${string}`, `0x${string}`, boolean, "0x1">, "typeHex"> & {
|
762
762
|
isSystemTx?: undefined;
|
763
763
|
mint?: undefined;
|
764
764
|
sourceHash?: undefined;
|
765
765
|
}) | ({
|
766
|
-
|
766
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
767
|
+
gas?: `0x${string}` | undefined;
|
768
|
+
value?: `0x${string}` | undefined;
|
767
769
|
gasPrice?: `0x${string}` | undefined;
|
768
770
|
maxFeePerGas?: `0x${string}` | undefined;
|
769
771
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
770
|
-
gas?: `0x${string}` | undefined;
|
771
|
-
nonce?: `0x${string}` | undefined;
|
772
|
-
to?: `0x${string}` | null | undefined;
|
773
|
-
value?: `0x${string}` | undefined;
|
774
|
-
accessList?: import("../../index.js").AccessList | undefined;
|
775
|
-
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
776
|
-
hash?: `0x${string}` | undefined;
|
777
772
|
blockHash?: `0x${string}` | null | undefined;
|
778
773
|
blockNumber?: `0x${string}` | null | undefined;
|
779
|
-
|
774
|
+
from?: `0x${string}` | undefined;
|
775
|
+
hash?: `0x${string}` | undefined;
|
780
776
|
input?: `0x${string}` | undefined;
|
777
|
+
nonce?: `0x${string}` | undefined;
|
781
778
|
r?: `0x${string}` | undefined;
|
782
779
|
s?: `0x${string}` | undefined;
|
780
|
+
to?: `0x${string}` | null | undefined;
|
781
|
+
transactionIndex?: `0x${string}` | null | undefined;
|
783
782
|
v?: `0x${string}` | undefined;
|
783
|
+
accessList?: import("../../index.js").AccessList | undefined;
|
784
784
|
chainId?: `0x${string}` | undefined;
|
785
785
|
} & import("../index.js").Omit<import("../../index.js").TransactionEIP1559<`0x${string}`, `0x${string}`, boolean, "0x2">, "typeHex"> & {
|
786
786
|
isSystemTx?: undefined;
|
787
787
|
mint?: undefined;
|
788
788
|
sourceHash?: undefined;
|
789
789
|
}) | ({
|
790
|
-
|
790
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
791
|
+
gas?: `0x${string}` | undefined;
|
792
|
+
value?: `0x${string}` | undefined;
|
791
793
|
gasPrice?: `0x${string}` | undefined;
|
792
794
|
maxFeePerGas?: `0x${string}` | undefined;
|
793
795
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
794
|
-
gas?: `0x${string}` | undefined;
|
795
|
-
nonce?: `0x${string}` | undefined;
|
796
|
-
to?: `0x${string}` | null | undefined;
|
797
|
-
value?: `0x${string}` | undefined;
|
798
|
-
accessList?: import("../../index.js").AccessList | undefined;
|
799
|
-
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
800
|
-
hash?: `0x${string}` | undefined;
|
801
796
|
blockHash?: `0x${string}` | null | undefined;
|
802
797
|
blockNumber?: `0x${string}` | null | undefined;
|
803
|
-
|
798
|
+
from?: `0x${string}` | undefined;
|
799
|
+
hash?: `0x${string}` | undefined;
|
804
800
|
input?: `0x${string}` | undefined;
|
801
|
+
nonce?: `0x${string}` | undefined;
|
805
802
|
r?: `0x${string}` | undefined;
|
806
803
|
s?: `0x${string}` | undefined;
|
804
|
+
to?: `0x${string}` | null | undefined;
|
805
|
+
transactionIndex?: `0x${string}` | null | undefined;
|
807
806
|
v?: `0x${string}` | undefined;
|
807
|
+
accessList?: import("../../index.js").AccessList | undefined;
|
808
808
|
chainId?: `0x${string}` | undefined;
|
809
809
|
} & Omit<import("../../index.js").TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & import("../../index.js").FeeValuesEIP1559<`0x${string}`> & {
|
810
810
|
isSystemTx?: boolean | undefined;
|
@@ -1065,48 +1065,48 @@ export declare const optimism: {
|
|
1065
1065
|
readonly transaction: {
|
1066
1066
|
exclude: [] | undefined;
|
1067
1067
|
format: (args: ({
|
1068
|
-
|
1068
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
1069
|
+
gas?: `0x${string}` | undefined;
|
1070
|
+
value?: `0x${string}` | undefined;
|
1069
1071
|
gasPrice?: `0x${string}` | undefined;
|
1070
1072
|
maxFeePerGas?: `0x${string}` | undefined;
|
1071
1073
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
1072
|
-
gas?: `0x${string}` | undefined;
|
1073
|
-
nonce?: `0x${string}` | undefined;
|
1074
|
-
to?: `0x${string}` | null | undefined;
|
1075
|
-
value?: `0x${string}` | undefined;
|
1076
|
-
accessList?: undefined;
|
1077
|
-
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
1078
|
-
hash?: `0x${string}` | undefined;
|
1079
1074
|
blockHash?: `0x${string}` | null | undefined;
|
1080
1075
|
blockNumber?: `0x${string}` | null | undefined;
|
1081
|
-
|
1076
|
+
from?: `0x${string}` | undefined;
|
1077
|
+
hash?: `0x${string}` | undefined;
|
1082
1078
|
input?: `0x${string}` | undefined;
|
1079
|
+
nonce?: `0x${string}` | undefined;
|
1083
1080
|
r?: `0x${string}` | undefined;
|
1084
1081
|
s?: `0x${string}` | undefined;
|
1082
|
+
to?: `0x${string}` | null | undefined;
|
1083
|
+
transactionIndex?: `0x${string}` | null | undefined;
|
1085
1084
|
v?: `0x${string}` | undefined;
|
1085
|
+
accessList?: undefined;
|
1086
1086
|
chainId?: `0x${string}` | undefined;
|
1087
1087
|
} & import("../index.js").Omit<import("../../index.js").TransactionLegacy<`0x${string}`, `0x${string}`, boolean, "0x0">, "typeHex"> & {
|
1088
1088
|
isSystemTx?: undefined;
|
1089
1089
|
mint?: undefined;
|
1090
1090
|
sourceHash?: undefined;
|
1091
1091
|
}) | ({
|
1092
|
-
|
1092
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
1093
|
+
gas?: `0x${string}` | undefined;
|
1094
|
+
value?: `0x${string}` | undefined;
|
1093
1095
|
gasPrice?: `0x${string}` | undefined;
|
1094
1096
|
maxFeePerGas?: `0x${string}` | undefined;
|
1095
1097
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
1096
|
-
gas?: `0x${string}` | undefined;
|
1097
|
-
nonce?: `0x${string}` | undefined;
|
1098
|
-
to?: `0x${string}` | null | undefined;
|
1099
|
-
value?: `0x${string}` | undefined;
|
1100
|
-
accessList?: undefined;
|
1101
|
-
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
1102
|
-
hash?: `0x${string}` | undefined;
|
1103
1098
|
blockHash?: `0x${string}` | null | undefined;
|
1104
1099
|
blockNumber?: `0x${string}` | null | undefined;
|
1105
|
-
|
1100
|
+
from?: `0x${string}` | undefined;
|
1101
|
+
hash?: `0x${string}` | undefined;
|
1106
1102
|
input?: `0x${string}` | undefined;
|
1103
|
+
nonce?: `0x${string}` | undefined;
|
1107
1104
|
r?: `0x${string}` | undefined;
|
1108
1105
|
s?: `0x${string}` | undefined;
|
1106
|
+
to?: `0x${string}` | null | undefined;
|
1107
|
+
transactionIndex?: `0x${string}` | null | undefined;
|
1109
1108
|
v?: `0x${string}` | undefined;
|
1109
|
+
accessList?: undefined;
|
1110
1110
|
chainId?: `0x${string}` | undefined;
|
1111
1111
|
} & Omit<import("../../index.js").TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & import("../../index.js").FeeValuesEIP1559<`0x${string}`> & {
|
1112
1112
|
isSystemTx?: boolean | undefined;
|
@@ -1114,96 +1114,96 @@ export declare const optimism: {
|
|
1114
1114
|
sourceHash: `0x${string}`;
|
1115
1115
|
type: "0x7e";
|
1116
1116
|
}) | ({
|
1117
|
-
|
1117
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
1118
|
+
gas?: `0x${string}` | undefined;
|
1119
|
+
value?: `0x${string}` | undefined;
|
1118
1120
|
gasPrice?: `0x${string}` | undefined;
|
1119
1121
|
maxFeePerGas?: `0x${string}` | undefined;
|
1120
1122
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
1121
|
-
gas?: `0x${string}` | undefined;
|
1122
|
-
nonce?: `0x${string}` | undefined;
|
1123
|
-
to?: `0x${string}` | null | undefined;
|
1124
|
-
value?: `0x${string}` | undefined;
|
1125
|
-
accessList?: import("../../index.js").AccessList | undefined;
|
1126
|
-
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
1127
|
-
hash?: `0x${string}` | undefined;
|
1128
1123
|
blockHash?: `0x${string}` | null | undefined;
|
1129
1124
|
blockNumber?: `0x${string}` | null | undefined;
|
1130
|
-
|
1125
|
+
from?: `0x${string}` | undefined;
|
1126
|
+
hash?: `0x${string}` | undefined;
|
1131
1127
|
input?: `0x${string}` | undefined;
|
1128
|
+
nonce?: `0x${string}` | undefined;
|
1132
1129
|
r?: `0x${string}` | undefined;
|
1133
1130
|
s?: `0x${string}` | undefined;
|
1131
|
+
to?: `0x${string}` | null | undefined;
|
1132
|
+
transactionIndex?: `0x${string}` | null | undefined;
|
1134
1133
|
v?: `0x${string}` | undefined;
|
1134
|
+
accessList?: import("../../index.js").AccessList | undefined;
|
1135
1135
|
chainId?: `0x${string}` | undefined;
|
1136
1136
|
} & import("../index.js").Omit<import("../../index.js").TransactionLegacy<`0x${string}`, `0x${string}`, boolean, "0x0">, "typeHex"> & {
|
1137
1137
|
isSystemTx?: undefined;
|
1138
1138
|
mint?: undefined;
|
1139
1139
|
sourceHash?: undefined;
|
1140
1140
|
}) | ({
|
1141
|
-
|
1141
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
1142
|
+
gas?: `0x${string}` | undefined;
|
1143
|
+
value?: `0x${string}` | undefined;
|
1142
1144
|
gasPrice?: `0x${string}` | undefined;
|
1143
1145
|
maxFeePerGas?: `0x${string}` | undefined;
|
1144
1146
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
1145
|
-
gas?: `0x${string}` | undefined;
|
1146
|
-
nonce?: `0x${string}` | undefined;
|
1147
|
-
to?: `0x${string}` | null | undefined;
|
1148
|
-
value?: `0x${string}` | undefined;
|
1149
|
-
accessList?: import("../../index.js").AccessList | undefined;
|
1150
|
-
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
1151
|
-
hash?: `0x${string}` | undefined;
|
1152
1147
|
blockHash?: `0x${string}` | null | undefined;
|
1153
1148
|
blockNumber?: `0x${string}` | null | undefined;
|
1154
|
-
|
1149
|
+
from?: `0x${string}` | undefined;
|
1150
|
+
hash?: `0x${string}` | undefined;
|
1155
1151
|
input?: `0x${string}` | undefined;
|
1152
|
+
nonce?: `0x${string}` | undefined;
|
1156
1153
|
r?: `0x${string}` | undefined;
|
1157
1154
|
s?: `0x${string}` | undefined;
|
1155
|
+
to?: `0x${string}` | null | undefined;
|
1156
|
+
transactionIndex?: `0x${string}` | null | undefined;
|
1158
1157
|
v?: `0x${string}` | undefined;
|
1158
|
+
accessList?: import("../../index.js").AccessList | undefined;
|
1159
1159
|
chainId?: `0x${string}` | undefined;
|
1160
1160
|
} & import("../index.js").Omit<import("../../index.js").TransactionEIP2930<`0x${string}`, `0x${string}`, boolean, "0x1">, "typeHex"> & {
|
1161
1161
|
isSystemTx?: undefined;
|
1162
1162
|
mint?: undefined;
|
1163
1163
|
sourceHash?: undefined;
|
1164
1164
|
}) | ({
|
1165
|
-
|
1165
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
1166
|
+
gas?: `0x${string}` | undefined;
|
1167
|
+
value?: `0x${string}` | undefined;
|
1166
1168
|
gasPrice?: `0x${string}` | undefined;
|
1167
1169
|
maxFeePerGas?: `0x${string}` | undefined;
|
1168
1170
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
1169
|
-
gas?: `0x${string}` | undefined;
|
1170
|
-
nonce?: `0x${string}` | undefined;
|
1171
|
-
to?: `0x${string}` | null | undefined;
|
1172
|
-
value?: `0x${string}` | undefined;
|
1173
|
-
accessList?: import("../../index.js").AccessList | undefined;
|
1174
|
-
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
1175
|
-
hash?: `0x${string}` | undefined;
|
1176
1171
|
blockHash?: `0x${string}` | null | undefined;
|
1177
1172
|
blockNumber?: `0x${string}` | null | undefined;
|
1178
|
-
|
1173
|
+
from?: `0x${string}` | undefined;
|
1174
|
+
hash?: `0x${string}` | undefined;
|
1179
1175
|
input?: `0x${string}` | undefined;
|
1176
|
+
nonce?: `0x${string}` | undefined;
|
1180
1177
|
r?: `0x${string}` | undefined;
|
1181
1178
|
s?: `0x${string}` | undefined;
|
1179
|
+
to?: `0x${string}` | null | undefined;
|
1180
|
+
transactionIndex?: `0x${string}` | null | undefined;
|
1182
1181
|
v?: `0x${string}` | undefined;
|
1182
|
+
accessList?: import("../../index.js").AccessList | undefined;
|
1183
1183
|
chainId?: `0x${string}` | undefined;
|
1184
1184
|
} & import("../index.js").Omit<import("../../index.js").TransactionEIP1559<`0x${string}`, `0x${string}`, boolean, "0x2">, "typeHex"> & {
|
1185
1185
|
isSystemTx?: undefined;
|
1186
1186
|
mint?: undefined;
|
1187
1187
|
sourceHash?: undefined;
|
1188
1188
|
}) | ({
|
1189
|
-
|
1189
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
1190
|
+
gas?: `0x${string}` | undefined;
|
1191
|
+
value?: `0x${string}` | undefined;
|
1190
1192
|
gasPrice?: `0x${string}` | undefined;
|
1191
1193
|
maxFeePerGas?: `0x${string}` | undefined;
|
1192
1194
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
1193
|
-
gas?: `0x${string}` | undefined;
|
1194
|
-
nonce?: `0x${string}` | undefined;
|
1195
|
-
to?: `0x${string}` | null | undefined;
|
1196
|
-
value?: `0x${string}` | undefined;
|
1197
|
-
accessList?: import("../../index.js").AccessList | undefined;
|
1198
|
-
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
1199
|
-
hash?: `0x${string}` | undefined;
|
1200
1195
|
blockHash?: `0x${string}` | null | undefined;
|
1201
1196
|
blockNumber?: `0x${string}` | null | undefined;
|
1202
|
-
|
1197
|
+
from?: `0x${string}` | undefined;
|
1198
|
+
hash?: `0x${string}` | undefined;
|
1203
1199
|
input?: `0x${string}` | undefined;
|
1200
|
+
nonce?: `0x${string}` | undefined;
|
1204
1201
|
r?: `0x${string}` | undefined;
|
1205
1202
|
s?: `0x${string}` | undefined;
|
1203
|
+
to?: `0x${string}` | null | undefined;
|
1204
|
+
transactionIndex?: `0x${string}` | null | undefined;
|
1206
1205
|
v?: `0x${string}` | undefined;
|
1206
|
+
accessList?: import("../../index.js").AccessList | undefined;
|
1207
1207
|
chainId?: `0x${string}` | undefined;
|
1208
1208
|
} & Omit<import("../../index.js").TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & import("../../index.js").FeeValuesEIP1559<`0x${string}`> & {
|
1209
1209
|
isSystemTx?: boolean | undefined;
|
@@ -1211,96 +1211,96 @@ export declare const optimism: {
|
|
1211
1211
|
sourceHash: `0x${string}`;
|
1212
1212
|
type: "0x7e";
|
1213
1213
|
}) | ({
|
1214
|
-
|
1214
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
1215
|
+
gas?: `0x${string}` | undefined;
|
1216
|
+
value?: `0x${string}` | undefined;
|
1215
1217
|
gasPrice?: `0x${string}` | undefined;
|
1216
1218
|
maxFeePerGas?: `0x${string}` | undefined;
|
1217
1219
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
1218
|
-
gas?: `0x${string}` | undefined;
|
1219
|
-
nonce?: `0x${string}` | undefined;
|
1220
|
-
to?: `0x${string}` | null | undefined;
|
1221
|
-
value?: `0x${string}` | undefined;
|
1222
|
-
accessList?: import("../../index.js").AccessList | undefined;
|
1223
|
-
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
1224
|
-
hash?: `0x${string}` | undefined;
|
1225
1220
|
blockHash?: `0x${string}` | null | undefined;
|
1226
1221
|
blockNumber?: `0x${string}` | null | undefined;
|
1227
|
-
|
1222
|
+
from?: `0x${string}` | undefined;
|
1223
|
+
hash?: `0x${string}` | undefined;
|
1228
1224
|
input?: `0x${string}` | undefined;
|
1225
|
+
nonce?: `0x${string}` | undefined;
|
1229
1226
|
r?: `0x${string}` | undefined;
|
1230
1227
|
s?: `0x${string}` | undefined;
|
1228
|
+
to?: `0x${string}` | null | undefined;
|
1229
|
+
transactionIndex?: `0x${string}` | null | undefined;
|
1231
1230
|
v?: `0x${string}` | undefined;
|
1231
|
+
accessList?: import("../../index.js").AccessList | undefined;
|
1232
1232
|
chainId?: `0x${string}` | undefined;
|
1233
1233
|
} & import("../index.js").Omit<import("../../index.js").TransactionLegacy<`0x${string}`, `0x${string}`, boolean, "0x0">, "typeHex"> & {
|
1234
1234
|
isSystemTx?: undefined;
|
1235
1235
|
mint?: undefined;
|
1236
1236
|
sourceHash?: undefined;
|
1237
1237
|
}) | ({
|
1238
|
-
|
1238
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
1239
|
+
gas?: `0x${string}` | undefined;
|
1240
|
+
value?: `0x${string}` | undefined;
|
1239
1241
|
gasPrice?: `0x${string}` | undefined;
|
1240
1242
|
maxFeePerGas?: `0x${string}` | undefined;
|
1241
1243
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
1242
|
-
gas?: `0x${string}` | undefined;
|
1243
|
-
nonce?: `0x${string}` | undefined;
|
1244
|
-
to?: `0x${string}` | null | undefined;
|
1245
|
-
value?: `0x${string}` | undefined;
|
1246
|
-
accessList?: import("../../index.js").AccessList | undefined;
|
1247
|
-
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
1248
|
-
hash?: `0x${string}` | undefined;
|
1249
1244
|
blockHash?: `0x${string}` | null | undefined;
|
1250
1245
|
blockNumber?: `0x${string}` | null | undefined;
|
1251
|
-
|
1246
|
+
from?: `0x${string}` | undefined;
|
1247
|
+
hash?: `0x${string}` | undefined;
|
1252
1248
|
input?: `0x${string}` | undefined;
|
1249
|
+
nonce?: `0x${string}` | undefined;
|
1253
1250
|
r?: `0x${string}` | undefined;
|
1254
1251
|
s?: `0x${string}` | undefined;
|
1252
|
+
to?: `0x${string}` | null | undefined;
|
1253
|
+
transactionIndex?: `0x${string}` | null | undefined;
|
1255
1254
|
v?: `0x${string}` | undefined;
|
1255
|
+
accessList?: import("../../index.js").AccessList | undefined;
|
1256
1256
|
chainId?: `0x${string}` | undefined;
|
1257
1257
|
} & import("../index.js").Omit<import("../../index.js").TransactionEIP2930<`0x${string}`, `0x${string}`, boolean, "0x1">, "typeHex"> & {
|
1258
1258
|
isSystemTx?: undefined;
|
1259
1259
|
mint?: undefined;
|
1260
1260
|
sourceHash?: undefined;
|
1261
1261
|
}) | ({
|
1262
|
-
|
1262
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
1263
|
+
gas?: `0x${string}` | undefined;
|
1264
|
+
value?: `0x${string}` | undefined;
|
1263
1265
|
gasPrice?: `0x${string}` | undefined;
|
1264
1266
|
maxFeePerGas?: `0x${string}` | undefined;
|
1265
1267
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
1266
|
-
gas?: `0x${string}` | undefined;
|
1267
|
-
nonce?: `0x${string}` | undefined;
|
1268
|
-
to?: `0x${string}` | null | undefined;
|
1269
|
-
value?: `0x${string}` | undefined;
|
1270
|
-
accessList?: import("../../index.js").AccessList | undefined;
|
1271
|
-
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
1272
|
-
hash?: `0x${string}` | undefined;
|
1273
1268
|
blockHash?: `0x${string}` | null | undefined;
|
1274
1269
|
blockNumber?: `0x${string}` | null | undefined;
|
1275
|
-
|
1270
|
+
from?: `0x${string}` | undefined;
|
1271
|
+
hash?: `0x${string}` | undefined;
|
1276
1272
|
input?: `0x${string}` | undefined;
|
1273
|
+
nonce?: `0x${string}` | undefined;
|
1277
1274
|
r?: `0x${string}` | undefined;
|
1278
1275
|
s?: `0x${string}` | undefined;
|
1276
|
+
to?: `0x${string}` | null | undefined;
|
1277
|
+
transactionIndex?: `0x${string}` | null | undefined;
|
1279
1278
|
v?: `0x${string}` | undefined;
|
1279
|
+
accessList?: import("../../index.js").AccessList | undefined;
|
1280
1280
|
chainId?: `0x${string}` | undefined;
|
1281
1281
|
} & import("../index.js").Omit<import("../../index.js").TransactionEIP1559<`0x${string}`, `0x${string}`, boolean, "0x2">, "typeHex"> & {
|
1282
1282
|
isSystemTx?: undefined;
|
1283
1283
|
mint?: undefined;
|
1284
1284
|
sourceHash?: undefined;
|
1285
1285
|
}) | ({
|
1286
|
-
|
1286
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
1287
|
+
gas?: `0x${string}` | undefined;
|
1288
|
+
value?: `0x${string}` | undefined;
|
1287
1289
|
gasPrice?: `0x${string}` | undefined;
|
1288
1290
|
maxFeePerGas?: `0x${string}` | undefined;
|
1289
1291
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
1290
|
-
gas?: `0x${string}` | undefined;
|
1291
|
-
nonce?: `0x${string}` | undefined;
|
1292
|
-
to?: `0x${string}` | null | undefined;
|
1293
|
-
value?: `0x${string}` | undefined;
|
1294
|
-
accessList?: import("../../index.js").AccessList | undefined;
|
1295
|
-
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
1296
|
-
hash?: `0x${string}` | undefined;
|
1297
1292
|
blockHash?: `0x${string}` | null | undefined;
|
1298
1293
|
blockNumber?: `0x${string}` | null | undefined;
|
1299
|
-
|
1294
|
+
from?: `0x${string}` | undefined;
|
1295
|
+
hash?: `0x${string}` | undefined;
|
1300
1296
|
input?: `0x${string}` | undefined;
|
1297
|
+
nonce?: `0x${string}` | undefined;
|
1301
1298
|
r?: `0x${string}` | undefined;
|
1302
1299
|
s?: `0x${string}` | undefined;
|
1300
|
+
to?: `0x${string}` | null | undefined;
|
1301
|
+
transactionIndex?: `0x${string}` | null | undefined;
|
1303
1302
|
v?: `0x${string}` | undefined;
|
1303
|
+
accessList?: import("../../index.js").AccessList | undefined;
|
1304
1304
|
chainId?: `0x${string}` | undefined;
|
1305
1305
|
} & Omit<import("../../index.js").TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & import("../../index.js").FeeValuesEIP1559<`0x${string}`> & {
|
1306
1306
|
isSystemTx?: boolean | undefined;
|