viem 2.0.0-rc.1 → 2.0.0-rc.2
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/errors/version.js +1 -1
- package/_esm/errors/version.js +1 -1
- package/_types/chains/celo/chainConfig.d.ts +65 -65
- package/_types/chains/celo/formatters.d.ts +65 -65
- package/_types/chains/definitions/base.d.ts +50 -50
- package/_types/chains/definitions/baseGoerli.d.ts +50 -50
- package/_types/chains/definitions/baseSepolia.d.ts +50 -50
- package/_types/chains/definitions/celo.d.ts +65 -65
- package/_types/chains/definitions/celoAlfajores.d.ts +65 -65
- package/_types/chains/definitions/celoCannoli.d.ts +65 -65
- package/_types/chains/definitions/optimism.d.ts +50 -50
- package/_types/chains/definitions/optimismGoerli.d.ts +50 -50
- package/_types/chains/definitions/optimismSepolia.d.ts +50 -50
- package/_types/chains/definitions/pgn.d.ts +50 -50
- package/_types/chains/definitions/pgnTestnet.d.ts +50 -50
- package/_types/chains/definitions/zkSync.d.ts +3 -3
- package/_types/chains/definitions/zkSyncSepoliaTestnet.d.ts +3 -3
- package/_types/chains/definitions/zkSyncTestnet.d.ts +3 -3
- package/_types/chains/definitions/zora.d.ts +50 -50
- package/_types/chains/definitions/zoraSepolia.d.ts +50 -50
- package/_types/chains/definitions/zoraTestnet.d.ts +50 -50
- package/_types/chains/index.d.ts +1 -1
- package/_types/chains/index.d.ts.map +1 -1
- package/_types/chains/opStack/chainConfig.d.ts +50 -50
- package/_types/chains/opStack/formatters.d.ts +50 -50
- package/_types/chains/zksync/chainConfig.d.ts +3 -3
- package/_types/chains/zksync/formatters.d.ts +3 -3
- 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/chains/index.ts +8 -1
- package/errors/version.ts +1 -1
- package/package.json +34 -12
@@ -89,12 +89,8 @@ export declare const optimism: {
|
|
89
89
|
readonly transaction: {
|
90
90
|
exclude: [] | undefined;
|
91
91
|
format: (args: ({
|
92
|
-
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
93
|
-
blockHash?: `0x${string}` | null | undefined;
|
94
|
-
gasPrice?: `0x${string}` | undefined;
|
95
|
-
maxFeePerGas?: `0x${string}` | undefined;
|
96
|
-
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
97
92
|
yParity?: `0x${string}` | undefined;
|
93
|
+
blockHash?: `0x${string}` | null | undefined;
|
98
94
|
blockNumber?: `0x${string}` | null | undefined;
|
99
95
|
from?: `0x${string}` | undefined;
|
100
96
|
gas?: `0x${string}` | undefined;
|
@@ -107,6 +103,10 @@ export declare const optimism: {
|
|
107
103
|
transactionIndex?: `0x${string}` | null | undefined;
|
108
104
|
v?: `0x${string}` | undefined;
|
109
105
|
value?: `0x${string}` | undefined;
|
106
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
107
|
+
gasPrice?: `0x${string}` | undefined;
|
108
|
+
maxFeePerGas?: `0x${string}` | undefined;
|
109
|
+
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
110
110
|
accessList?: undefined;
|
111
111
|
chainId?: `0x${string}` | undefined;
|
112
112
|
} & import("../index.js").Omit<import("../index.js").PartialBy<import("../../index.js").TransactionLegacy<`0x${string}`, `0x${string}`, boolean, "0x0">, "yParity">, "typeHex"> & {
|
@@ -114,12 +114,8 @@ export declare const optimism: {
|
|
114
114
|
mint?: undefined;
|
115
115
|
sourceHash?: undefined;
|
116
116
|
}) | ({
|
117
|
-
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
118
|
-
blockHash?: `0x${string}` | null | undefined;
|
119
|
-
gasPrice?: `0x${string}` | undefined;
|
120
|
-
maxFeePerGas?: `0x${string}` | undefined;
|
121
|
-
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
122
117
|
yParity?: `0x${string}` | undefined;
|
118
|
+
blockHash?: `0x${string}` | null | undefined;
|
123
119
|
blockNumber?: `0x${string}` | null | undefined;
|
124
120
|
from?: `0x${string}` | undefined;
|
125
121
|
gas?: `0x${string}` | undefined;
|
@@ -132,6 +128,10 @@ export declare const optimism: {
|
|
132
128
|
transactionIndex?: `0x${string}` | null | undefined;
|
133
129
|
v?: `0x${string}` | undefined;
|
134
130
|
value?: `0x${string}` | undefined;
|
131
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
132
|
+
gasPrice?: `0x${string}` | undefined;
|
133
|
+
maxFeePerGas?: `0x${string}` | undefined;
|
134
|
+
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
135
135
|
accessList?: undefined;
|
136
136
|
chainId?: `0x${string}` | undefined;
|
137
137
|
} & Omit<import("../../index.js").TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & import("../../index.js").FeeValuesEIP1559<`0x${string}`> & {
|
@@ -140,12 +140,8 @@ export declare const optimism: {
|
|
140
140
|
sourceHash: `0x${string}`;
|
141
141
|
type: "0x7e";
|
142
142
|
}) | ({
|
143
|
-
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
144
|
-
blockHash?: `0x${string}` | null | undefined;
|
145
|
-
gasPrice?: `0x${string}` | undefined;
|
146
|
-
maxFeePerGas?: `0x${string}` | undefined;
|
147
|
-
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
148
143
|
yParity?: `0x${string}` | undefined;
|
144
|
+
blockHash?: `0x${string}` | null | undefined;
|
149
145
|
blockNumber?: `0x${string}` | null | undefined;
|
150
146
|
from?: `0x${string}` | undefined;
|
151
147
|
gas?: `0x${string}` | undefined;
|
@@ -158,6 +154,10 @@ export declare const optimism: {
|
|
158
154
|
transactionIndex?: `0x${string}` | null | undefined;
|
159
155
|
v?: `0x${string}` | undefined;
|
160
156
|
value?: `0x${string}` | undefined;
|
157
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
158
|
+
gasPrice?: `0x${string}` | undefined;
|
159
|
+
maxFeePerGas?: `0x${string}` | undefined;
|
160
|
+
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
161
161
|
accessList?: import("../../index.js").AccessList | undefined;
|
162
162
|
chainId?: `0x${string}` | undefined;
|
163
163
|
} & import("../index.js").Omit<import("../index.js").PartialBy<import("../../index.js").TransactionLegacy<`0x${string}`, `0x${string}`, boolean, "0x0">, "yParity">, "typeHex"> & {
|
@@ -165,12 +165,8 @@ export declare const optimism: {
|
|
165
165
|
mint?: undefined;
|
166
166
|
sourceHash?: undefined;
|
167
167
|
}) | ({
|
168
|
-
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
169
|
-
blockHash?: `0x${string}` | null | undefined;
|
170
|
-
gasPrice?: `0x${string}` | undefined;
|
171
|
-
maxFeePerGas?: `0x${string}` | undefined;
|
172
|
-
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
173
168
|
yParity?: `0x${string}` | undefined;
|
169
|
+
blockHash?: `0x${string}` | null | undefined;
|
174
170
|
blockNumber?: `0x${string}` | null | undefined;
|
175
171
|
from?: `0x${string}` | undefined;
|
176
172
|
gas?: `0x${string}` | undefined;
|
@@ -183,6 +179,10 @@ export declare const optimism: {
|
|
183
179
|
transactionIndex?: `0x${string}` | null | undefined;
|
184
180
|
v?: `0x${string}` | undefined;
|
185
181
|
value?: `0x${string}` | undefined;
|
182
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
183
|
+
gasPrice?: `0x${string}` | undefined;
|
184
|
+
maxFeePerGas?: `0x${string}` | undefined;
|
185
|
+
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
186
186
|
accessList?: import("../../index.js").AccessList | undefined;
|
187
187
|
chainId?: `0x${string}` | undefined;
|
188
188
|
} & import("../index.js").Omit<import("../index.js").PartialBy<import("../../index.js").TransactionEIP2930<`0x${string}`, `0x${string}`, boolean, "0x1">, "yParity">, "typeHex"> & {
|
@@ -190,12 +190,8 @@ export declare const optimism: {
|
|
190
190
|
mint?: undefined;
|
191
191
|
sourceHash?: undefined;
|
192
192
|
}) | ({
|
193
|
-
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
194
|
-
blockHash?: `0x${string}` | null | undefined;
|
195
|
-
gasPrice?: `0x${string}` | undefined;
|
196
|
-
maxFeePerGas?: `0x${string}` | undefined;
|
197
|
-
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
198
193
|
yParity?: `0x${string}` | undefined;
|
194
|
+
blockHash?: `0x${string}` | null | undefined;
|
199
195
|
blockNumber?: `0x${string}` | null | undefined;
|
200
196
|
from?: `0x${string}` | undefined;
|
201
197
|
gas?: `0x${string}` | undefined;
|
@@ -208,6 +204,10 @@ export declare const optimism: {
|
|
208
204
|
transactionIndex?: `0x${string}` | null | undefined;
|
209
205
|
v?: `0x${string}` | undefined;
|
210
206
|
value?: `0x${string}` | undefined;
|
207
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
208
|
+
gasPrice?: `0x${string}` | undefined;
|
209
|
+
maxFeePerGas?: `0x${string}` | undefined;
|
210
|
+
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
211
211
|
accessList?: import("../../index.js").AccessList | undefined;
|
212
212
|
chainId?: `0x${string}` | undefined;
|
213
213
|
} & import("../index.js").Omit<import("../index.js").PartialBy<import("../../index.js").TransactionEIP1559<`0x${string}`, `0x${string}`, boolean, "0x2">, "yParity">, "typeHex"> & {
|
@@ -215,12 +215,8 @@ export declare const optimism: {
|
|
215
215
|
mint?: undefined;
|
216
216
|
sourceHash?: undefined;
|
217
217
|
}) | ({
|
218
|
-
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
219
|
-
blockHash?: `0x${string}` | null | undefined;
|
220
|
-
gasPrice?: `0x${string}` | undefined;
|
221
|
-
maxFeePerGas?: `0x${string}` | undefined;
|
222
|
-
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
223
218
|
yParity?: `0x${string}` | undefined;
|
219
|
+
blockHash?: `0x${string}` | null | undefined;
|
224
220
|
blockNumber?: `0x${string}` | null | undefined;
|
225
221
|
from?: `0x${string}` | undefined;
|
226
222
|
gas?: `0x${string}` | undefined;
|
@@ -233,6 +229,10 @@ export declare const optimism: {
|
|
233
229
|
transactionIndex?: `0x${string}` | null | undefined;
|
234
230
|
v?: `0x${string}` | undefined;
|
235
231
|
value?: `0x${string}` | undefined;
|
232
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
233
|
+
gasPrice?: `0x${string}` | undefined;
|
234
|
+
maxFeePerGas?: `0x${string}` | undefined;
|
235
|
+
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
236
236
|
accessList?: import("../../index.js").AccessList | undefined;
|
237
237
|
chainId?: `0x${string}` | undefined;
|
238
238
|
} & Omit<import("../../index.js").TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & import("../../index.js").FeeValuesEIP1559<`0x${string}`> & {
|
@@ -241,12 +241,8 @@ export declare const optimism: {
|
|
241
241
|
sourceHash: `0x${string}`;
|
242
242
|
type: "0x7e";
|
243
243
|
}) | ({
|
244
|
-
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
245
|
-
blockHash?: `0x${string}` | null | undefined;
|
246
|
-
gasPrice?: `0x${string}` | undefined;
|
247
|
-
maxFeePerGas?: `0x${string}` | undefined;
|
248
|
-
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
249
244
|
yParity?: `0x${string}` | undefined;
|
245
|
+
blockHash?: `0x${string}` | null | undefined;
|
250
246
|
blockNumber?: `0x${string}` | null | undefined;
|
251
247
|
from?: `0x${string}` | undefined;
|
252
248
|
gas?: `0x${string}` | undefined;
|
@@ -259,6 +255,10 @@ export declare const optimism: {
|
|
259
255
|
transactionIndex?: `0x${string}` | null | undefined;
|
260
256
|
v?: `0x${string}` | undefined;
|
261
257
|
value?: `0x${string}` | undefined;
|
258
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
259
|
+
gasPrice?: `0x${string}` | undefined;
|
260
|
+
maxFeePerGas?: `0x${string}` | undefined;
|
261
|
+
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
262
262
|
accessList?: import("../../index.js").AccessList | undefined;
|
263
263
|
chainId?: `0x${string}` | undefined;
|
264
264
|
} & import("../index.js").Omit<import("../index.js").PartialBy<import("../../index.js").TransactionLegacy<`0x${string}`, `0x${string}`, boolean, "0x0">, "yParity">, "typeHex"> & {
|
@@ -266,12 +266,8 @@ export declare const optimism: {
|
|
266
266
|
mint?: undefined;
|
267
267
|
sourceHash?: undefined;
|
268
268
|
}) | ({
|
269
|
-
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
270
|
-
blockHash?: `0x${string}` | null | undefined;
|
271
|
-
gasPrice?: `0x${string}` | undefined;
|
272
|
-
maxFeePerGas?: `0x${string}` | undefined;
|
273
|
-
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
274
269
|
yParity?: `0x${string}` | undefined;
|
270
|
+
blockHash?: `0x${string}` | null | undefined;
|
275
271
|
blockNumber?: `0x${string}` | null | undefined;
|
276
272
|
from?: `0x${string}` | undefined;
|
277
273
|
gas?: `0x${string}` | undefined;
|
@@ -284,6 +280,10 @@ export declare const optimism: {
|
|
284
280
|
transactionIndex?: `0x${string}` | null | undefined;
|
285
281
|
v?: `0x${string}` | undefined;
|
286
282
|
value?: `0x${string}` | undefined;
|
283
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
284
|
+
gasPrice?: `0x${string}` | undefined;
|
285
|
+
maxFeePerGas?: `0x${string}` | undefined;
|
286
|
+
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
287
287
|
accessList?: import("../../index.js").AccessList | undefined;
|
288
288
|
chainId?: `0x${string}` | undefined;
|
289
289
|
} & import("../index.js").Omit<import("../index.js").PartialBy<import("../../index.js").TransactionEIP2930<`0x${string}`, `0x${string}`, boolean, "0x1">, "yParity">, "typeHex"> & {
|
@@ -291,12 +291,8 @@ export declare const optimism: {
|
|
291
291
|
mint?: undefined;
|
292
292
|
sourceHash?: undefined;
|
293
293
|
}) | ({
|
294
|
-
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
295
|
-
blockHash?: `0x${string}` | null | undefined;
|
296
|
-
gasPrice?: `0x${string}` | undefined;
|
297
|
-
maxFeePerGas?: `0x${string}` | undefined;
|
298
|
-
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
299
294
|
yParity?: `0x${string}` | undefined;
|
295
|
+
blockHash?: `0x${string}` | null | undefined;
|
300
296
|
blockNumber?: `0x${string}` | null | undefined;
|
301
297
|
from?: `0x${string}` | undefined;
|
302
298
|
gas?: `0x${string}` | undefined;
|
@@ -309,6 +305,10 @@ export declare const optimism: {
|
|
309
305
|
transactionIndex?: `0x${string}` | null | undefined;
|
310
306
|
v?: `0x${string}` | undefined;
|
311
307
|
value?: `0x${string}` | undefined;
|
308
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
309
|
+
gasPrice?: `0x${string}` | undefined;
|
310
|
+
maxFeePerGas?: `0x${string}` | undefined;
|
311
|
+
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
312
312
|
accessList?: import("../../index.js").AccessList | undefined;
|
313
313
|
chainId?: `0x${string}` | undefined;
|
314
314
|
} & import("../index.js").Omit<import("../index.js").PartialBy<import("../../index.js").TransactionEIP1559<`0x${string}`, `0x${string}`, boolean, "0x2">, "yParity">, "typeHex"> & {
|
@@ -316,12 +316,8 @@ export declare const optimism: {
|
|
316
316
|
mint?: undefined;
|
317
317
|
sourceHash?: undefined;
|
318
318
|
}) | ({
|
319
|
-
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
320
|
-
blockHash?: `0x${string}` | null | undefined;
|
321
|
-
gasPrice?: `0x${string}` | undefined;
|
322
|
-
maxFeePerGas?: `0x${string}` | undefined;
|
323
|
-
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
324
319
|
yParity?: `0x${string}` | undefined;
|
320
|
+
blockHash?: `0x${string}` | null | undefined;
|
325
321
|
blockNumber?: `0x${string}` | null | undefined;
|
326
322
|
from?: `0x${string}` | undefined;
|
327
323
|
gas?: `0x${string}` | undefined;
|
@@ -334,6 +330,10 @@ export declare const optimism: {
|
|
334
330
|
transactionIndex?: `0x${string}` | null | undefined;
|
335
331
|
v?: `0x${string}` | undefined;
|
336
332
|
value?: `0x${string}` | undefined;
|
333
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
334
|
+
gasPrice?: `0x${string}` | undefined;
|
335
|
+
maxFeePerGas?: `0x${string}` | undefined;
|
336
|
+
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
337
337
|
accessList?: import("../../index.js").AccessList | undefined;
|
338
338
|
chainId?: `0x${string}` | undefined;
|
339
339
|
} & Omit<import("../../index.js").TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & import("../../index.js").FeeValuesEIP1559<`0x${string}`> & {
|
@@ -89,12 +89,8 @@ export declare const optimismGoerli: {
|
|
89
89
|
readonly transaction: {
|
90
90
|
exclude: [] | undefined;
|
91
91
|
format: (args: ({
|
92
|
-
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
93
|
-
blockHash?: `0x${string}` | null | undefined;
|
94
|
-
gasPrice?: `0x${string}` | undefined;
|
95
|
-
maxFeePerGas?: `0x${string}` | undefined;
|
96
|
-
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
97
92
|
yParity?: `0x${string}` | undefined;
|
93
|
+
blockHash?: `0x${string}` | null | undefined;
|
98
94
|
blockNumber?: `0x${string}` | null | undefined;
|
99
95
|
from?: `0x${string}` | undefined;
|
100
96
|
gas?: `0x${string}` | undefined;
|
@@ -107,6 +103,10 @@ export declare const optimismGoerli: {
|
|
107
103
|
transactionIndex?: `0x${string}` | null | undefined;
|
108
104
|
v?: `0x${string}` | undefined;
|
109
105
|
value?: `0x${string}` | undefined;
|
106
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
107
|
+
gasPrice?: `0x${string}` | undefined;
|
108
|
+
maxFeePerGas?: `0x${string}` | undefined;
|
109
|
+
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
110
110
|
accessList?: undefined;
|
111
111
|
chainId?: `0x${string}` | undefined;
|
112
112
|
} & import("../index.js").Omit<import("../index.js").PartialBy<import("../../index.js").TransactionLegacy<`0x${string}`, `0x${string}`, boolean, "0x0">, "yParity">, "typeHex"> & {
|
@@ -114,12 +114,8 @@ export declare const optimismGoerli: {
|
|
114
114
|
mint?: undefined;
|
115
115
|
sourceHash?: undefined;
|
116
116
|
}) | ({
|
117
|
-
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
118
|
-
blockHash?: `0x${string}` | null | undefined;
|
119
|
-
gasPrice?: `0x${string}` | undefined;
|
120
|
-
maxFeePerGas?: `0x${string}` | undefined;
|
121
|
-
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
122
117
|
yParity?: `0x${string}` | undefined;
|
118
|
+
blockHash?: `0x${string}` | null | undefined;
|
123
119
|
blockNumber?: `0x${string}` | null | undefined;
|
124
120
|
from?: `0x${string}` | undefined;
|
125
121
|
gas?: `0x${string}` | undefined;
|
@@ -132,6 +128,10 @@ export declare const optimismGoerli: {
|
|
132
128
|
transactionIndex?: `0x${string}` | null | undefined;
|
133
129
|
v?: `0x${string}` | undefined;
|
134
130
|
value?: `0x${string}` | undefined;
|
131
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
132
|
+
gasPrice?: `0x${string}` | undefined;
|
133
|
+
maxFeePerGas?: `0x${string}` | undefined;
|
134
|
+
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
135
135
|
accessList?: undefined;
|
136
136
|
chainId?: `0x${string}` | undefined;
|
137
137
|
} & Omit<import("../../index.js").TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & import("../../index.js").FeeValuesEIP1559<`0x${string}`> & {
|
@@ -140,12 +140,8 @@ export declare const optimismGoerli: {
|
|
140
140
|
sourceHash: `0x${string}`;
|
141
141
|
type: "0x7e";
|
142
142
|
}) | ({
|
143
|
-
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
144
|
-
blockHash?: `0x${string}` | null | undefined;
|
145
|
-
gasPrice?: `0x${string}` | undefined;
|
146
|
-
maxFeePerGas?: `0x${string}` | undefined;
|
147
|
-
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
148
143
|
yParity?: `0x${string}` | undefined;
|
144
|
+
blockHash?: `0x${string}` | null | undefined;
|
149
145
|
blockNumber?: `0x${string}` | null | undefined;
|
150
146
|
from?: `0x${string}` | undefined;
|
151
147
|
gas?: `0x${string}` | undefined;
|
@@ -158,6 +154,10 @@ export declare const optimismGoerli: {
|
|
158
154
|
transactionIndex?: `0x${string}` | null | undefined;
|
159
155
|
v?: `0x${string}` | undefined;
|
160
156
|
value?: `0x${string}` | undefined;
|
157
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
158
|
+
gasPrice?: `0x${string}` | undefined;
|
159
|
+
maxFeePerGas?: `0x${string}` | undefined;
|
160
|
+
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
161
161
|
accessList?: import("../../index.js").AccessList | undefined;
|
162
162
|
chainId?: `0x${string}` | undefined;
|
163
163
|
} & import("../index.js").Omit<import("../index.js").PartialBy<import("../../index.js").TransactionLegacy<`0x${string}`, `0x${string}`, boolean, "0x0">, "yParity">, "typeHex"> & {
|
@@ -165,12 +165,8 @@ export declare const optimismGoerli: {
|
|
165
165
|
mint?: undefined;
|
166
166
|
sourceHash?: undefined;
|
167
167
|
}) | ({
|
168
|
-
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
169
|
-
blockHash?: `0x${string}` | null | undefined;
|
170
|
-
gasPrice?: `0x${string}` | undefined;
|
171
|
-
maxFeePerGas?: `0x${string}` | undefined;
|
172
|
-
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
173
168
|
yParity?: `0x${string}` | undefined;
|
169
|
+
blockHash?: `0x${string}` | null | undefined;
|
174
170
|
blockNumber?: `0x${string}` | null | undefined;
|
175
171
|
from?: `0x${string}` | undefined;
|
176
172
|
gas?: `0x${string}` | undefined;
|
@@ -183,6 +179,10 @@ export declare const optimismGoerli: {
|
|
183
179
|
transactionIndex?: `0x${string}` | null | undefined;
|
184
180
|
v?: `0x${string}` | undefined;
|
185
181
|
value?: `0x${string}` | undefined;
|
182
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
183
|
+
gasPrice?: `0x${string}` | undefined;
|
184
|
+
maxFeePerGas?: `0x${string}` | undefined;
|
185
|
+
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
186
186
|
accessList?: import("../../index.js").AccessList | undefined;
|
187
187
|
chainId?: `0x${string}` | undefined;
|
188
188
|
} & import("../index.js").Omit<import("../index.js").PartialBy<import("../../index.js").TransactionEIP2930<`0x${string}`, `0x${string}`, boolean, "0x1">, "yParity">, "typeHex"> & {
|
@@ -190,12 +190,8 @@ export declare const optimismGoerli: {
|
|
190
190
|
mint?: undefined;
|
191
191
|
sourceHash?: undefined;
|
192
192
|
}) | ({
|
193
|
-
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
194
|
-
blockHash?: `0x${string}` | null | undefined;
|
195
|
-
gasPrice?: `0x${string}` | undefined;
|
196
|
-
maxFeePerGas?: `0x${string}` | undefined;
|
197
|
-
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
198
193
|
yParity?: `0x${string}` | undefined;
|
194
|
+
blockHash?: `0x${string}` | null | undefined;
|
199
195
|
blockNumber?: `0x${string}` | null | undefined;
|
200
196
|
from?: `0x${string}` | undefined;
|
201
197
|
gas?: `0x${string}` | undefined;
|
@@ -208,6 +204,10 @@ export declare const optimismGoerli: {
|
|
208
204
|
transactionIndex?: `0x${string}` | null | undefined;
|
209
205
|
v?: `0x${string}` | undefined;
|
210
206
|
value?: `0x${string}` | undefined;
|
207
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
208
|
+
gasPrice?: `0x${string}` | undefined;
|
209
|
+
maxFeePerGas?: `0x${string}` | undefined;
|
210
|
+
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
211
211
|
accessList?: import("../../index.js").AccessList | undefined;
|
212
212
|
chainId?: `0x${string}` | undefined;
|
213
213
|
} & import("../index.js").Omit<import("../index.js").PartialBy<import("../../index.js").TransactionEIP1559<`0x${string}`, `0x${string}`, boolean, "0x2">, "yParity">, "typeHex"> & {
|
@@ -215,12 +215,8 @@ export declare const optimismGoerli: {
|
|
215
215
|
mint?: undefined;
|
216
216
|
sourceHash?: undefined;
|
217
217
|
}) | ({
|
218
|
-
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
219
|
-
blockHash?: `0x${string}` | null | undefined;
|
220
|
-
gasPrice?: `0x${string}` | undefined;
|
221
|
-
maxFeePerGas?: `0x${string}` | undefined;
|
222
|
-
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
223
218
|
yParity?: `0x${string}` | undefined;
|
219
|
+
blockHash?: `0x${string}` | null | undefined;
|
224
220
|
blockNumber?: `0x${string}` | null | undefined;
|
225
221
|
from?: `0x${string}` | undefined;
|
226
222
|
gas?: `0x${string}` | undefined;
|
@@ -233,6 +229,10 @@ export declare const optimismGoerli: {
|
|
233
229
|
transactionIndex?: `0x${string}` | null | undefined;
|
234
230
|
v?: `0x${string}` | undefined;
|
235
231
|
value?: `0x${string}` | undefined;
|
232
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
233
|
+
gasPrice?: `0x${string}` | undefined;
|
234
|
+
maxFeePerGas?: `0x${string}` | undefined;
|
235
|
+
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
236
236
|
accessList?: import("../../index.js").AccessList | undefined;
|
237
237
|
chainId?: `0x${string}` | undefined;
|
238
238
|
} & Omit<import("../../index.js").TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & import("../../index.js").FeeValuesEIP1559<`0x${string}`> & {
|
@@ -241,12 +241,8 @@ export declare const optimismGoerli: {
|
|
241
241
|
sourceHash: `0x${string}`;
|
242
242
|
type: "0x7e";
|
243
243
|
}) | ({
|
244
|
-
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
245
|
-
blockHash?: `0x${string}` | null | undefined;
|
246
|
-
gasPrice?: `0x${string}` | undefined;
|
247
|
-
maxFeePerGas?: `0x${string}` | undefined;
|
248
|
-
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
249
244
|
yParity?: `0x${string}` | undefined;
|
245
|
+
blockHash?: `0x${string}` | null | undefined;
|
250
246
|
blockNumber?: `0x${string}` | null | undefined;
|
251
247
|
from?: `0x${string}` | undefined;
|
252
248
|
gas?: `0x${string}` | undefined;
|
@@ -259,6 +255,10 @@ export declare const optimismGoerli: {
|
|
259
255
|
transactionIndex?: `0x${string}` | null | undefined;
|
260
256
|
v?: `0x${string}` | undefined;
|
261
257
|
value?: `0x${string}` | undefined;
|
258
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
259
|
+
gasPrice?: `0x${string}` | undefined;
|
260
|
+
maxFeePerGas?: `0x${string}` | undefined;
|
261
|
+
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
262
262
|
accessList?: import("../../index.js").AccessList | undefined;
|
263
263
|
chainId?: `0x${string}` | undefined;
|
264
264
|
} & import("../index.js").Omit<import("../index.js").PartialBy<import("../../index.js").TransactionLegacy<`0x${string}`, `0x${string}`, boolean, "0x0">, "yParity">, "typeHex"> & {
|
@@ -266,12 +266,8 @@ export declare const optimismGoerli: {
|
|
266
266
|
mint?: undefined;
|
267
267
|
sourceHash?: undefined;
|
268
268
|
}) | ({
|
269
|
-
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
270
|
-
blockHash?: `0x${string}` | null | undefined;
|
271
|
-
gasPrice?: `0x${string}` | undefined;
|
272
|
-
maxFeePerGas?: `0x${string}` | undefined;
|
273
|
-
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
274
269
|
yParity?: `0x${string}` | undefined;
|
270
|
+
blockHash?: `0x${string}` | null | undefined;
|
275
271
|
blockNumber?: `0x${string}` | null | undefined;
|
276
272
|
from?: `0x${string}` | undefined;
|
277
273
|
gas?: `0x${string}` | undefined;
|
@@ -284,6 +280,10 @@ export declare const optimismGoerli: {
|
|
284
280
|
transactionIndex?: `0x${string}` | null | undefined;
|
285
281
|
v?: `0x${string}` | undefined;
|
286
282
|
value?: `0x${string}` | undefined;
|
283
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
284
|
+
gasPrice?: `0x${string}` | undefined;
|
285
|
+
maxFeePerGas?: `0x${string}` | undefined;
|
286
|
+
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
287
287
|
accessList?: import("../../index.js").AccessList | undefined;
|
288
288
|
chainId?: `0x${string}` | undefined;
|
289
289
|
} & import("../index.js").Omit<import("../index.js").PartialBy<import("../../index.js").TransactionEIP2930<`0x${string}`, `0x${string}`, boolean, "0x1">, "yParity">, "typeHex"> & {
|
@@ -291,12 +291,8 @@ export declare const optimismGoerli: {
|
|
291
291
|
mint?: undefined;
|
292
292
|
sourceHash?: undefined;
|
293
293
|
}) | ({
|
294
|
-
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
295
|
-
blockHash?: `0x${string}` | null | undefined;
|
296
|
-
gasPrice?: `0x${string}` | undefined;
|
297
|
-
maxFeePerGas?: `0x${string}` | undefined;
|
298
|
-
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
299
294
|
yParity?: `0x${string}` | undefined;
|
295
|
+
blockHash?: `0x${string}` | null | undefined;
|
300
296
|
blockNumber?: `0x${string}` | null | undefined;
|
301
297
|
from?: `0x${string}` | undefined;
|
302
298
|
gas?: `0x${string}` | undefined;
|
@@ -309,6 +305,10 @@ export declare const optimismGoerli: {
|
|
309
305
|
transactionIndex?: `0x${string}` | null | undefined;
|
310
306
|
v?: `0x${string}` | undefined;
|
311
307
|
value?: `0x${string}` | undefined;
|
308
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
309
|
+
gasPrice?: `0x${string}` | undefined;
|
310
|
+
maxFeePerGas?: `0x${string}` | undefined;
|
311
|
+
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
312
312
|
accessList?: import("../../index.js").AccessList | undefined;
|
313
313
|
chainId?: `0x${string}` | undefined;
|
314
314
|
} & import("../index.js").Omit<import("../index.js").PartialBy<import("../../index.js").TransactionEIP1559<`0x${string}`, `0x${string}`, boolean, "0x2">, "yParity">, "typeHex"> & {
|
@@ -316,12 +316,8 @@ export declare const optimismGoerli: {
|
|
316
316
|
mint?: undefined;
|
317
317
|
sourceHash?: undefined;
|
318
318
|
}) | ({
|
319
|
-
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
320
|
-
blockHash?: `0x${string}` | null | undefined;
|
321
|
-
gasPrice?: `0x${string}` | undefined;
|
322
|
-
maxFeePerGas?: `0x${string}` | undefined;
|
323
|
-
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
324
319
|
yParity?: `0x${string}` | undefined;
|
320
|
+
blockHash?: `0x${string}` | null | undefined;
|
325
321
|
blockNumber?: `0x${string}` | null | undefined;
|
326
322
|
from?: `0x${string}` | undefined;
|
327
323
|
gas?: `0x${string}` | undefined;
|
@@ -334,6 +330,10 @@ export declare const optimismGoerli: {
|
|
334
330
|
transactionIndex?: `0x${string}` | null | undefined;
|
335
331
|
v?: `0x${string}` | undefined;
|
336
332
|
value?: `0x${string}` | undefined;
|
333
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
334
|
+
gasPrice?: `0x${string}` | undefined;
|
335
|
+
maxFeePerGas?: `0x${string}` | undefined;
|
336
|
+
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
337
337
|
accessList?: import("../../index.js").AccessList | undefined;
|
338
338
|
chainId?: `0x${string}` | undefined;
|
339
339
|
} & Omit<import("../../index.js").TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & import("../../index.js").FeeValuesEIP1559<`0x${string}`> & {
|