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
@@ -90,12 +90,8 @@ export declare const base: {
|
|
90
90
|
readonly transaction: {
|
91
91
|
exclude: [] | undefined;
|
92
92
|
format: (args: ({
|
93
|
-
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
94
|
-
blockHash?: `0x${string}` | null | undefined;
|
95
|
-
gasPrice?: `0x${string}` | undefined;
|
96
|
-
maxFeePerGas?: `0x${string}` | undefined;
|
97
|
-
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
98
93
|
yParity?: `0x${string}` | undefined;
|
94
|
+
blockHash?: `0x${string}` | null | undefined;
|
99
95
|
blockNumber?: `0x${string}` | null | undefined;
|
100
96
|
from?: `0x${string}` | undefined;
|
101
97
|
gas?: `0x${string}` | undefined;
|
@@ -108,6 +104,10 @@ export declare const base: {
|
|
108
104
|
transactionIndex?: `0x${string}` | null | undefined;
|
109
105
|
v?: `0x${string}` | undefined;
|
110
106
|
value?: `0x${string}` | undefined;
|
107
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
108
|
+
gasPrice?: `0x${string}` | undefined;
|
109
|
+
maxFeePerGas?: `0x${string}` | undefined;
|
110
|
+
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
111
111
|
accessList?: undefined;
|
112
112
|
chainId?: `0x${string}` | undefined;
|
113
113
|
} & import("../index.js").Omit<import("../index.js").PartialBy<import("../../index.js").TransactionLegacy<`0x${string}`, `0x${string}`, boolean, "0x0">, "yParity">, "typeHex"> & {
|
@@ -115,12 +115,8 @@ export declare const base: {
|
|
115
115
|
mint?: undefined;
|
116
116
|
sourceHash?: undefined;
|
117
117
|
}) | ({
|
118
|
-
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
119
|
-
blockHash?: `0x${string}` | null | undefined;
|
120
|
-
gasPrice?: `0x${string}` | undefined;
|
121
|
-
maxFeePerGas?: `0x${string}` | undefined;
|
122
|
-
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
123
118
|
yParity?: `0x${string}` | undefined;
|
119
|
+
blockHash?: `0x${string}` | null | undefined;
|
124
120
|
blockNumber?: `0x${string}` | null | undefined;
|
125
121
|
from?: `0x${string}` | undefined;
|
126
122
|
gas?: `0x${string}` | undefined;
|
@@ -133,6 +129,10 @@ export declare const base: {
|
|
133
129
|
transactionIndex?: `0x${string}` | null | undefined;
|
134
130
|
v?: `0x${string}` | undefined;
|
135
131
|
value?: `0x${string}` | undefined;
|
132
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
133
|
+
gasPrice?: `0x${string}` | undefined;
|
134
|
+
maxFeePerGas?: `0x${string}` | undefined;
|
135
|
+
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
136
136
|
accessList?: undefined;
|
137
137
|
chainId?: `0x${string}` | undefined;
|
138
138
|
} & Omit<import("../../index.js").TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & import("../../index.js").FeeValuesEIP1559<`0x${string}`> & {
|
@@ -141,12 +141,8 @@ export declare const base: {
|
|
141
141
|
sourceHash: `0x${string}`;
|
142
142
|
type: "0x7e";
|
143
143
|
}) | ({
|
144
|
-
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
145
|
-
blockHash?: `0x${string}` | null | undefined;
|
146
|
-
gasPrice?: `0x${string}` | undefined;
|
147
|
-
maxFeePerGas?: `0x${string}` | undefined;
|
148
|
-
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
149
144
|
yParity?: `0x${string}` | undefined;
|
145
|
+
blockHash?: `0x${string}` | null | undefined;
|
150
146
|
blockNumber?: `0x${string}` | null | undefined;
|
151
147
|
from?: `0x${string}` | undefined;
|
152
148
|
gas?: `0x${string}` | undefined;
|
@@ -159,6 +155,10 @@ export declare const base: {
|
|
159
155
|
transactionIndex?: `0x${string}` | null | undefined;
|
160
156
|
v?: `0x${string}` | undefined;
|
161
157
|
value?: `0x${string}` | undefined;
|
158
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
159
|
+
gasPrice?: `0x${string}` | undefined;
|
160
|
+
maxFeePerGas?: `0x${string}` | undefined;
|
161
|
+
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
162
162
|
accessList?: import("../../index.js").AccessList | undefined;
|
163
163
|
chainId?: `0x${string}` | undefined;
|
164
164
|
} & import("../index.js").Omit<import("../index.js").PartialBy<import("../../index.js").TransactionLegacy<`0x${string}`, `0x${string}`, boolean, "0x0">, "yParity">, "typeHex"> & {
|
@@ -166,12 +166,8 @@ export declare const base: {
|
|
166
166
|
mint?: undefined;
|
167
167
|
sourceHash?: undefined;
|
168
168
|
}) | ({
|
169
|
-
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
170
|
-
blockHash?: `0x${string}` | null | undefined;
|
171
|
-
gasPrice?: `0x${string}` | undefined;
|
172
|
-
maxFeePerGas?: `0x${string}` | undefined;
|
173
|
-
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
174
169
|
yParity?: `0x${string}` | undefined;
|
170
|
+
blockHash?: `0x${string}` | null | undefined;
|
175
171
|
blockNumber?: `0x${string}` | null | undefined;
|
176
172
|
from?: `0x${string}` | undefined;
|
177
173
|
gas?: `0x${string}` | undefined;
|
@@ -184,6 +180,10 @@ export declare const base: {
|
|
184
180
|
transactionIndex?: `0x${string}` | null | undefined;
|
185
181
|
v?: `0x${string}` | undefined;
|
186
182
|
value?: `0x${string}` | undefined;
|
183
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
184
|
+
gasPrice?: `0x${string}` | undefined;
|
185
|
+
maxFeePerGas?: `0x${string}` | undefined;
|
186
|
+
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
187
187
|
accessList?: import("../../index.js").AccessList | undefined;
|
188
188
|
chainId?: `0x${string}` | undefined;
|
189
189
|
} & import("../index.js").Omit<import("../index.js").PartialBy<import("../../index.js").TransactionEIP2930<`0x${string}`, `0x${string}`, boolean, "0x1">, "yParity">, "typeHex"> & {
|
@@ -191,12 +191,8 @@ export declare const base: {
|
|
191
191
|
mint?: undefined;
|
192
192
|
sourceHash?: undefined;
|
193
193
|
}) | ({
|
194
|
-
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
195
|
-
blockHash?: `0x${string}` | null | undefined;
|
196
|
-
gasPrice?: `0x${string}` | undefined;
|
197
|
-
maxFeePerGas?: `0x${string}` | undefined;
|
198
|
-
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
199
194
|
yParity?: `0x${string}` | undefined;
|
195
|
+
blockHash?: `0x${string}` | null | undefined;
|
200
196
|
blockNumber?: `0x${string}` | null | undefined;
|
201
197
|
from?: `0x${string}` | undefined;
|
202
198
|
gas?: `0x${string}` | undefined;
|
@@ -209,6 +205,10 @@ export declare const base: {
|
|
209
205
|
transactionIndex?: `0x${string}` | null | undefined;
|
210
206
|
v?: `0x${string}` | undefined;
|
211
207
|
value?: `0x${string}` | undefined;
|
208
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
209
|
+
gasPrice?: `0x${string}` | undefined;
|
210
|
+
maxFeePerGas?: `0x${string}` | undefined;
|
211
|
+
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
212
212
|
accessList?: import("../../index.js").AccessList | undefined;
|
213
213
|
chainId?: `0x${string}` | undefined;
|
214
214
|
} & import("../index.js").Omit<import("../index.js").PartialBy<import("../../index.js").TransactionEIP1559<`0x${string}`, `0x${string}`, boolean, "0x2">, "yParity">, "typeHex"> & {
|
@@ -216,12 +216,8 @@ export declare const base: {
|
|
216
216
|
mint?: undefined;
|
217
217
|
sourceHash?: undefined;
|
218
218
|
}) | ({
|
219
|
-
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
220
|
-
blockHash?: `0x${string}` | null | undefined;
|
221
|
-
gasPrice?: `0x${string}` | undefined;
|
222
|
-
maxFeePerGas?: `0x${string}` | undefined;
|
223
|
-
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
224
219
|
yParity?: `0x${string}` | undefined;
|
220
|
+
blockHash?: `0x${string}` | null | undefined;
|
225
221
|
blockNumber?: `0x${string}` | null | undefined;
|
226
222
|
from?: `0x${string}` | undefined;
|
227
223
|
gas?: `0x${string}` | undefined;
|
@@ -234,6 +230,10 @@ export declare const base: {
|
|
234
230
|
transactionIndex?: `0x${string}` | null | undefined;
|
235
231
|
v?: `0x${string}` | undefined;
|
236
232
|
value?: `0x${string}` | undefined;
|
233
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
234
|
+
gasPrice?: `0x${string}` | undefined;
|
235
|
+
maxFeePerGas?: `0x${string}` | undefined;
|
236
|
+
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
237
237
|
accessList?: import("../../index.js").AccessList | undefined;
|
238
238
|
chainId?: `0x${string}` | undefined;
|
239
239
|
} & Omit<import("../../index.js").TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & import("../../index.js").FeeValuesEIP1559<`0x${string}`> & {
|
@@ -242,12 +242,8 @@ export declare const base: {
|
|
242
242
|
sourceHash: `0x${string}`;
|
243
243
|
type: "0x7e";
|
244
244
|
}) | ({
|
245
|
-
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
246
|
-
blockHash?: `0x${string}` | null | undefined;
|
247
|
-
gasPrice?: `0x${string}` | undefined;
|
248
|
-
maxFeePerGas?: `0x${string}` | undefined;
|
249
|
-
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
250
245
|
yParity?: `0x${string}` | undefined;
|
246
|
+
blockHash?: `0x${string}` | null | undefined;
|
251
247
|
blockNumber?: `0x${string}` | null | undefined;
|
252
248
|
from?: `0x${string}` | undefined;
|
253
249
|
gas?: `0x${string}` | undefined;
|
@@ -260,6 +256,10 @@ export declare const base: {
|
|
260
256
|
transactionIndex?: `0x${string}` | null | undefined;
|
261
257
|
v?: `0x${string}` | undefined;
|
262
258
|
value?: `0x${string}` | undefined;
|
259
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
260
|
+
gasPrice?: `0x${string}` | undefined;
|
261
|
+
maxFeePerGas?: `0x${string}` | undefined;
|
262
|
+
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
263
263
|
accessList?: import("../../index.js").AccessList | undefined;
|
264
264
|
chainId?: `0x${string}` | undefined;
|
265
265
|
} & import("../index.js").Omit<import("../index.js").PartialBy<import("../../index.js").TransactionLegacy<`0x${string}`, `0x${string}`, boolean, "0x0">, "yParity">, "typeHex"> & {
|
@@ -267,12 +267,8 @@ export declare const base: {
|
|
267
267
|
mint?: undefined;
|
268
268
|
sourceHash?: undefined;
|
269
269
|
}) | ({
|
270
|
-
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
271
|
-
blockHash?: `0x${string}` | null | undefined;
|
272
|
-
gasPrice?: `0x${string}` | undefined;
|
273
|
-
maxFeePerGas?: `0x${string}` | undefined;
|
274
|
-
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
275
270
|
yParity?: `0x${string}` | undefined;
|
271
|
+
blockHash?: `0x${string}` | null | undefined;
|
276
272
|
blockNumber?: `0x${string}` | null | undefined;
|
277
273
|
from?: `0x${string}` | undefined;
|
278
274
|
gas?: `0x${string}` | undefined;
|
@@ -285,6 +281,10 @@ export declare const base: {
|
|
285
281
|
transactionIndex?: `0x${string}` | null | undefined;
|
286
282
|
v?: `0x${string}` | undefined;
|
287
283
|
value?: `0x${string}` | undefined;
|
284
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
285
|
+
gasPrice?: `0x${string}` | undefined;
|
286
|
+
maxFeePerGas?: `0x${string}` | undefined;
|
287
|
+
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
288
288
|
accessList?: import("../../index.js").AccessList | undefined;
|
289
289
|
chainId?: `0x${string}` | undefined;
|
290
290
|
} & import("../index.js").Omit<import("../index.js").PartialBy<import("../../index.js").TransactionEIP2930<`0x${string}`, `0x${string}`, boolean, "0x1">, "yParity">, "typeHex"> & {
|
@@ -292,12 +292,8 @@ export declare const base: {
|
|
292
292
|
mint?: undefined;
|
293
293
|
sourceHash?: undefined;
|
294
294
|
}) | ({
|
295
|
-
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
296
|
-
blockHash?: `0x${string}` | null | undefined;
|
297
|
-
gasPrice?: `0x${string}` | undefined;
|
298
|
-
maxFeePerGas?: `0x${string}` | undefined;
|
299
|
-
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
300
295
|
yParity?: `0x${string}` | undefined;
|
296
|
+
blockHash?: `0x${string}` | null | undefined;
|
301
297
|
blockNumber?: `0x${string}` | null | undefined;
|
302
298
|
from?: `0x${string}` | undefined;
|
303
299
|
gas?: `0x${string}` | undefined;
|
@@ -310,6 +306,10 @@ export declare const base: {
|
|
310
306
|
transactionIndex?: `0x${string}` | null | undefined;
|
311
307
|
v?: `0x${string}` | undefined;
|
312
308
|
value?: `0x${string}` | undefined;
|
309
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
310
|
+
gasPrice?: `0x${string}` | undefined;
|
311
|
+
maxFeePerGas?: `0x${string}` | undefined;
|
312
|
+
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
313
313
|
accessList?: import("../../index.js").AccessList | undefined;
|
314
314
|
chainId?: `0x${string}` | undefined;
|
315
315
|
} & import("../index.js").Omit<import("../index.js").PartialBy<import("../../index.js").TransactionEIP1559<`0x${string}`, `0x${string}`, boolean, "0x2">, "yParity">, "typeHex"> & {
|
@@ -317,12 +317,8 @@ export declare const base: {
|
|
317
317
|
mint?: undefined;
|
318
318
|
sourceHash?: undefined;
|
319
319
|
}) | ({
|
320
|
-
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
321
|
-
blockHash?: `0x${string}` | null | undefined;
|
322
|
-
gasPrice?: `0x${string}` | undefined;
|
323
|
-
maxFeePerGas?: `0x${string}` | undefined;
|
324
|
-
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
325
320
|
yParity?: `0x${string}` | undefined;
|
321
|
+
blockHash?: `0x${string}` | null | undefined;
|
326
322
|
blockNumber?: `0x${string}` | null | undefined;
|
327
323
|
from?: `0x${string}` | undefined;
|
328
324
|
gas?: `0x${string}` | undefined;
|
@@ -335,6 +331,10 @@ export declare const base: {
|
|
335
331
|
transactionIndex?: `0x${string}` | null | undefined;
|
336
332
|
v?: `0x${string}` | undefined;
|
337
333
|
value?: `0x${string}` | undefined;
|
334
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
335
|
+
gasPrice?: `0x${string}` | undefined;
|
336
|
+
maxFeePerGas?: `0x${string}` | undefined;
|
337
|
+
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
338
338
|
accessList?: import("../../index.js").AccessList | undefined;
|
339
339
|
chainId?: `0x${string}` | undefined;
|
340
340
|
} & Omit<import("../../index.js").TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & import("../../index.js").FeeValuesEIP1559<`0x${string}`> & {
|
@@ -89,12 +89,8 @@ export declare const baseGoerli: {
|
|
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 baseGoerli: {
|
|
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 baseGoerli: {
|
|
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 baseGoerli: {
|
|
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 baseGoerli: {
|
|
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 baseGoerli: {
|
|
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 baseGoerli: {
|
|
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 baseGoerli: {
|
|
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 baseGoerli: {
|
|
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 baseGoerli: {
|
|
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 baseGoerli: {
|
|
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 baseGoerli: {
|
|
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 baseGoerli: {
|
|
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 baseGoerli: {
|
|
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 baseGoerli: {
|
|
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 baseGoerli: {
|
|
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 baseGoerli: {
|
|
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 baseGoerli: {
|
|
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 baseGoerli: {
|
|
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 baseGoerli: {
|
|
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}`> & {
|