viem 2.0.0-beta.8 → 2.0.0-beta.9
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/actions/public/getBlock.d.ts +1 -1
- package/_types/actions/public/getBlock.d.ts.map +1 -1
- package/_types/actions/public/getTransaction.d.ts +1 -1
- package/_types/actions/public/getTransaction.d.ts.map +1 -1
- package/_types/actions/public/getTransactionReceipt.d.ts +1 -1
- package/_types/actions/public/getTransactionReceipt.d.ts.map +1 -1
- package/_types/chains/celo/chainConfig.d.ts +45 -45
- package/_types/chains/celo/formatters.d.ts +45 -45
- package/_types/chains/definitions/base.d.ts +34 -34
- package/_types/chains/definitions/baseGoerli.d.ts +34 -34
- package/_types/chains/definitions/baseSepolia.d.ts +34 -34
- package/_types/chains/definitions/celo.d.ts +45 -45
- package/_types/chains/definitions/celoAlfajores.d.ts +45 -45
- package/_types/chains/definitions/celoCannoli.d.ts +45 -45
- package/_types/chains/definitions/optimism.d.ts +34 -34
- package/_types/chains/definitions/optimismGoerli.d.ts +34 -34
- package/_types/chains/definitions/optimismSepolia.d.ts +34 -34
- package/_types/chains/definitions/pgn.d.ts +34 -34
- package/_types/chains/definitions/pgnTestnet.d.ts +34 -34
- package/_types/chains/definitions/zkSync.d.ts +6 -6
- package/_types/chains/definitions/zkSyncTestnet.d.ts +6 -6
- package/_types/chains/definitions/zora.d.ts +34 -34
- package/_types/chains/definitions/zoraSepolia.d.ts +34 -34
- package/_types/chains/definitions/zoraTestnet.d.ts +34 -34
- package/_types/chains/opStack/chainConfig.d.ts +34 -34
- package/_types/chains/opStack/formatters.d.ts +34 -34
- package/_types/chains/zksync/chainConfig.d.ts +6 -6
- package/_types/chains/zksync/formatters.d.ts +6 -6
- package/_types/errors/version.d.ts +1 -1
- package/_types/utils/formatters/block.d.ts +1 -1
- package/_types/utils/formatters/block.d.ts.map +1 -1
- package/_types/utils/formatters/transaction.d.ts +2 -2
- package/_types/utils/formatters/transaction.d.ts.map +1 -1
- package/_types/utils/formatters/transactionReceipt.d.ts +1 -1
- package/_types/utils/formatters/transactionReceipt.d.ts.map +1 -1
- package/_types/utils/formatters/transactionRequest.d.ts +1 -1
- package/actions/public/getBlock.ts +1 -1
- package/actions/public/getTransaction.ts +1 -1
- package/actions/public/getTransactionReceipt.ts +1 -1
- package/errors/version.ts +1 -1
- package/package.json +1 -1
- package/utils/formatters/block.ts +1 -1
- package/utils/formatters/transaction.ts +1 -1
- package/utils/formatters/transactionReceipt.ts +1 -1
@@ -85,24 +85,24 @@ export declare const zoraTestnet: {
|
|
85
85
|
readonly transaction: {
|
86
86
|
exclude: [] | undefined;
|
87
87
|
format: (args: ({
|
88
|
+
hash?: `0x${string}` | undefined;
|
89
|
+
nonce?: `0x${string}` | undefined;
|
88
90
|
yParity?: `0x${string}` | undefined;
|
89
91
|
blockHash?: `0x${string}` | null | undefined;
|
90
92
|
blockNumber?: `0x${string}` | null | undefined;
|
91
93
|
from?: `0x${string}` | undefined;
|
92
94
|
gas?: `0x${string}` | undefined;
|
93
|
-
hash?: `0x${string}` | undefined;
|
94
95
|
input?: `0x${string}` | undefined;
|
95
|
-
nonce?: `0x${string}` | undefined;
|
96
96
|
r?: `0x${string}` | undefined;
|
97
97
|
s?: `0x${string}` | undefined;
|
98
98
|
to?: `0x${string}` | null | undefined;
|
99
99
|
transactionIndex?: `0x${string}` | null | undefined;
|
100
100
|
v?: `0x${string}` | undefined;
|
101
101
|
value?: `0x${string}` | undefined;
|
102
|
-
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
103
102
|
gasPrice?: `0x${string}` | undefined;
|
104
103
|
maxFeePerGas?: `0x${string}` | undefined;
|
105
104
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
105
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
106
106
|
accessList?: undefined;
|
107
107
|
chainId?: `0x${string}` | undefined;
|
108
108
|
} & import("../index.js").Omit<import("../index.js").PartialBy<import("../../index.js").TransactionLegacy<`0x${string}`, `0x${string}`, boolean, "0x0">, "yParity">, "typeHex"> & {
|
@@ -110,24 +110,24 @@ export declare const zoraTestnet: {
|
|
110
110
|
mint?: undefined;
|
111
111
|
sourceHash?: undefined;
|
112
112
|
}) | ({
|
113
|
+
hash?: `0x${string}` | undefined;
|
114
|
+
nonce?: `0x${string}` | undefined;
|
113
115
|
yParity?: `0x${string}` | undefined;
|
114
116
|
blockHash?: `0x${string}` | null | undefined;
|
115
117
|
blockNumber?: `0x${string}` | null | undefined;
|
116
118
|
from?: `0x${string}` | undefined;
|
117
119
|
gas?: `0x${string}` | undefined;
|
118
|
-
hash?: `0x${string}` | undefined;
|
119
120
|
input?: `0x${string}` | undefined;
|
120
|
-
nonce?: `0x${string}` | undefined;
|
121
121
|
r?: `0x${string}` | undefined;
|
122
122
|
s?: `0x${string}` | undefined;
|
123
123
|
to?: `0x${string}` | null | undefined;
|
124
124
|
transactionIndex?: `0x${string}` | null | undefined;
|
125
125
|
v?: `0x${string}` | undefined;
|
126
126
|
value?: `0x${string}` | undefined;
|
127
|
-
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
128
127
|
gasPrice?: `0x${string}` | undefined;
|
129
128
|
maxFeePerGas?: `0x${string}` | undefined;
|
130
129
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
130
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
131
131
|
accessList?: undefined;
|
132
132
|
chainId?: `0x${string}` | undefined;
|
133
133
|
} & Omit<import("../../index.js").TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & import("../../index.js").FeeValuesEIP1559<`0x${string}`> & {
|
@@ -136,24 +136,24 @@ export declare const zoraTestnet: {
|
|
136
136
|
sourceHash: `0x${string}`;
|
137
137
|
type: "0x7e";
|
138
138
|
}) | ({
|
139
|
+
hash?: `0x${string}` | undefined;
|
140
|
+
nonce?: `0x${string}` | undefined;
|
139
141
|
yParity?: `0x${string}` | undefined;
|
140
142
|
blockHash?: `0x${string}` | null | undefined;
|
141
143
|
blockNumber?: `0x${string}` | null | undefined;
|
142
144
|
from?: `0x${string}` | undefined;
|
143
145
|
gas?: `0x${string}` | undefined;
|
144
|
-
hash?: `0x${string}` | undefined;
|
145
146
|
input?: `0x${string}` | undefined;
|
146
|
-
nonce?: `0x${string}` | undefined;
|
147
147
|
r?: `0x${string}` | undefined;
|
148
148
|
s?: `0x${string}` | undefined;
|
149
149
|
to?: `0x${string}` | null | undefined;
|
150
150
|
transactionIndex?: `0x${string}` | null | undefined;
|
151
151
|
v?: `0x${string}` | undefined;
|
152
152
|
value?: `0x${string}` | undefined;
|
153
|
-
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
154
153
|
gasPrice?: `0x${string}` | undefined;
|
155
154
|
maxFeePerGas?: `0x${string}` | undefined;
|
156
155
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
156
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
157
157
|
accessList?: import("../../index.js").AccessList | undefined;
|
158
158
|
chainId?: `0x${string}` | undefined;
|
159
159
|
} & import("../index.js").Omit<import("../index.js").PartialBy<import("../../index.js").TransactionLegacy<`0x${string}`, `0x${string}`, boolean, "0x0">, "yParity">, "typeHex"> & {
|
@@ -161,24 +161,24 @@ export declare const zoraTestnet: {
|
|
161
161
|
mint?: undefined;
|
162
162
|
sourceHash?: undefined;
|
163
163
|
}) | ({
|
164
|
+
hash?: `0x${string}` | undefined;
|
165
|
+
nonce?: `0x${string}` | undefined;
|
164
166
|
yParity?: `0x${string}` | undefined;
|
165
167
|
blockHash?: `0x${string}` | null | undefined;
|
166
168
|
blockNumber?: `0x${string}` | null | undefined;
|
167
169
|
from?: `0x${string}` | undefined;
|
168
170
|
gas?: `0x${string}` | undefined;
|
169
|
-
hash?: `0x${string}` | undefined;
|
170
171
|
input?: `0x${string}` | undefined;
|
171
|
-
nonce?: `0x${string}` | undefined;
|
172
172
|
r?: `0x${string}` | undefined;
|
173
173
|
s?: `0x${string}` | undefined;
|
174
174
|
to?: `0x${string}` | null | undefined;
|
175
175
|
transactionIndex?: `0x${string}` | null | undefined;
|
176
176
|
v?: `0x${string}` | undefined;
|
177
177
|
value?: `0x${string}` | undefined;
|
178
|
-
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
179
178
|
gasPrice?: `0x${string}` | undefined;
|
180
179
|
maxFeePerGas?: `0x${string}` | undefined;
|
181
180
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
181
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
182
182
|
accessList?: import("../../index.js").AccessList | undefined;
|
183
183
|
chainId?: `0x${string}` | undefined;
|
184
184
|
} & import("../index.js").Omit<import("../index.js").PartialBy<import("../../index.js").TransactionEIP2930<`0x${string}`, `0x${string}`, boolean, "0x1">, "yParity">, "typeHex"> & {
|
@@ -186,24 +186,24 @@ export declare const zoraTestnet: {
|
|
186
186
|
mint?: undefined;
|
187
187
|
sourceHash?: undefined;
|
188
188
|
}) | ({
|
189
|
+
hash?: `0x${string}` | undefined;
|
190
|
+
nonce?: `0x${string}` | undefined;
|
189
191
|
yParity?: `0x${string}` | undefined;
|
190
192
|
blockHash?: `0x${string}` | null | undefined;
|
191
193
|
blockNumber?: `0x${string}` | null | undefined;
|
192
194
|
from?: `0x${string}` | undefined;
|
193
195
|
gas?: `0x${string}` | undefined;
|
194
|
-
hash?: `0x${string}` | undefined;
|
195
196
|
input?: `0x${string}` | undefined;
|
196
|
-
nonce?: `0x${string}` | undefined;
|
197
197
|
r?: `0x${string}` | undefined;
|
198
198
|
s?: `0x${string}` | undefined;
|
199
199
|
to?: `0x${string}` | null | undefined;
|
200
200
|
transactionIndex?: `0x${string}` | null | undefined;
|
201
201
|
v?: `0x${string}` | undefined;
|
202
202
|
value?: `0x${string}` | undefined;
|
203
|
-
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
204
203
|
gasPrice?: `0x${string}` | undefined;
|
205
204
|
maxFeePerGas?: `0x${string}` | undefined;
|
206
205
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
206
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
207
207
|
accessList?: import("../../index.js").AccessList | undefined;
|
208
208
|
chainId?: `0x${string}` | undefined;
|
209
209
|
} & import("../index.js").Omit<import("../index.js").PartialBy<import("../../index.js").TransactionEIP1559<`0x${string}`, `0x${string}`, boolean, "0x2">, "yParity">, "typeHex"> & {
|
@@ -211,24 +211,24 @@ export declare const zoraTestnet: {
|
|
211
211
|
mint?: undefined;
|
212
212
|
sourceHash?: undefined;
|
213
213
|
}) | ({
|
214
|
+
hash?: `0x${string}` | undefined;
|
215
|
+
nonce?: `0x${string}` | undefined;
|
214
216
|
yParity?: `0x${string}` | undefined;
|
215
217
|
blockHash?: `0x${string}` | null | undefined;
|
216
218
|
blockNumber?: `0x${string}` | null | undefined;
|
217
219
|
from?: `0x${string}` | undefined;
|
218
220
|
gas?: `0x${string}` | undefined;
|
219
|
-
hash?: `0x${string}` | undefined;
|
220
221
|
input?: `0x${string}` | undefined;
|
221
|
-
nonce?: `0x${string}` | undefined;
|
222
222
|
r?: `0x${string}` | undefined;
|
223
223
|
s?: `0x${string}` | undefined;
|
224
224
|
to?: `0x${string}` | null | undefined;
|
225
225
|
transactionIndex?: `0x${string}` | null | undefined;
|
226
226
|
v?: `0x${string}` | undefined;
|
227
227
|
value?: `0x${string}` | undefined;
|
228
|
-
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
229
228
|
gasPrice?: `0x${string}` | undefined;
|
230
229
|
maxFeePerGas?: `0x${string}` | undefined;
|
231
230
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
231
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
232
232
|
accessList?: import("../../index.js").AccessList | undefined;
|
233
233
|
chainId?: `0x${string}` | undefined;
|
234
234
|
} & Omit<import("../../index.js").TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & import("../../index.js").FeeValuesEIP1559<`0x${string}`> & {
|
@@ -237,24 +237,24 @@ export declare const zoraTestnet: {
|
|
237
237
|
sourceHash: `0x${string}`;
|
238
238
|
type: "0x7e";
|
239
239
|
}) | ({
|
240
|
+
hash?: `0x${string}` | undefined;
|
241
|
+
nonce?: `0x${string}` | undefined;
|
240
242
|
yParity?: `0x${string}` | undefined;
|
241
243
|
blockHash?: `0x${string}` | null | undefined;
|
242
244
|
blockNumber?: `0x${string}` | null | undefined;
|
243
245
|
from?: `0x${string}` | undefined;
|
244
246
|
gas?: `0x${string}` | undefined;
|
245
|
-
hash?: `0x${string}` | undefined;
|
246
247
|
input?: `0x${string}` | undefined;
|
247
|
-
nonce?: `0x${string}` | undefined;
|
248
248
|
r?: `0x${string}` | undefined;
|
249
249
|
s?: `0x${string}` | undefined;
|
250
250
|
to?: `0x${string}` | null | undefined;
|
251
251
|
transactionIndex?: `0x${string}` | null | undefined;
|
252
252
|
v?: `0x${string}` | undefined;
|
253
253
|
value?: `0x${string}` | undefined;
|
254
|
-
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
255
254
|
gasPrice?: `0x${string}` | undefined;
|
256
255
|
maxFeePerGas?: `0x${string}` | undefined;
|
257
256
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
257
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
258
258
|
accessList?: import("../../index.js").AccessList | undefined;
|
259
259
|
chainId?: `0x${string}` | undefined;
|
260
260
|
} & import("../index.js").Omit<import("../index.js").PartialBy<import("../../index.js").TransactionLegacy<`0x${string}`, `0x${string}`, boolean, "0x0">, "yParity">, "typeHex"> & {
|
@@ -262,24 +262,24 @@ export declare const zoraTestnet: {
|
|
262
262
|
mint?: undefined;
|
263
263
|
sourceHash?: undefined;
|
264
264
|
}) | ({
|
265
|
+
hash?: `0x${string}` | undefined;
|
266
|
+
nonce?: `0x${string}` | undefined;
|
265
267
|
yParity?: `0x${string}` | undefined;
|
266
268
|
blockHash?: `0x${string}` | null | undefined;
|
267
269
|
blockNumber?: `0x${string}` | null | undefined;
|
268
270
|
from?: `0x${string}` | undefined;
|
269
271
|
gas?: `0x${string}` | undefined;
|
270
|
-
hash?: `0x${string}` | undefined;
|
271
272
|
input?: `0x${string}` | undefined;
|
272
|
-
nonce?: `0x${string}` | undefined;
|
273
273
|
r?: `0x${string}` | undefined;
|
274
274
|
s?: `0x${string}` | undefined;
|
275
275
|
to?: `0x${string}` | null | undefined;
|
276
276
|
transactionIndex?: `0x${string}` | null | undefined;
|
277
277
|
v?: `0x${string}` | undefined;
|
278
278
|
value?: `0x${string}` | undefined;
|
279
|
-
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
280
279
|
gasPrice?: `0x${string}` | undefined;
|
281
280
|
maxFeePerGas?: `0x${string}` | undefined;
|
282
281
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
282
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
283
283
|
accessList?: import("../../index.js").AccessList | undefined;
|
284
284
|
chainId?: `0x${string}` | undefined;
|
285
285
|
} & import("../index.js").Omit<import("../index.js").PartialBy<import("../../index.js").TransactionEIP2930<`0x${string}`, `0x${string}`, boolean, "0x1">, "yParity">, "typeHex"> & {
|
@@ -287,24 +287,24 @@ export declare const zoraTestnet: {
|
|
287
287
|
mint?: undefined;
|
288
288
|
sourceHash?: undefined;
|
289
289
|
}) | ({
|
290
|
+
hash?: `0x${string}` | undefined;
|
291
|
+
nonce?: `0x${string}` | undefined;
|
290
292
|
yParity?: `0x${string}` | undefined;
|
291
293
|
blockHash?: `0x${string}` | null | undefined;
|
292
294
|
blockNumber?: `0x${string}` | null | undefined;
|
293
295
|
from?: `0x${string}` | undefined;
|
294
296
|
gas?: `0x${string}` | undefined;
|
295
|
-
hash?: `0x${string}` | undefined;
|
296
297
|
input?: `0x${string}` | undefined;
|
297
|
-
nonce?: `0x${string}` | undefined;
|
298
298
|
r?: `0x${string}` | undefined;
|
299
299
|
s?: `0x${string}` | undefined;
|
300
300
|
to?: `0x${string}` | null | undefined;
|
301
301
|
transactionIndex?: `0x${string}` | null | undefined;
|
302
302
|
v?: `0x${string}` | undefined;
|
303
303
|
value?: `0x${string}` | undefined;
|
304
|
-
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
305
304
|
gasPrice?: `0x${string}` | undefined;
|
306
305
|
maxFeePerGas?: `0x${string}` | undefined;
|
307
306
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
307
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
308
308
|
accessList?: import("../../index.js").AccessList | undefined;
|
309
309
|
chainId?: `0x${string}` | undefined;
|
310
310
|
} & import("../index.js").Omit<import("../index.js").PartialBy<import("../../index.js").TransactionEIP1559<`0x${string}`, `0x${string}`, boolean, "0x2">, "yParity">, "typeHex"> & {
|
@@ -312,24 +312,24 @@ export declare const zoraTestnet: {
|
|
312
312
|
mint?: undefined;
|
313
313
|
sourceHash?: undefined;
|
314
314
|
}) | ({
|
315
|
+
hash?: `0x${string}` | undefined;
|
316
|
+
nonce?: `0x${string}` | undefined;
|
315
317
|
yParity?: `0x${string}` | undefined;
|
316
318
|
blockHash?: `0x${string}` | null | undefined;
|
317
319
|
blockNumber?: `0x${string}` | null | undefined;
|
318
320
|
from?: `0x${string}` | undefined;
|
319
321
|
gas?: `0x${string}` | undefined;
|
320
|
-
hash?: `0x${string}` | undefined;
|
321
322
|
input?: `0x${string}` | undefined;
|
322
|
-
nonce?: `0x${string}` | undefined;
|
323
323
|
r?: `0x${string}` | undefined;
|
324
324
|
s?: `0x${string}` | undefined;
|
325
325
|
to?: `0x${string}` | null | undefined;
|
326
326
|
transactionIndex?: `0x${string}` | null | undefined;
|
327
327
|
v?: `0x${string}` | undefined;
|
328
328
|
value?: `0x${string}` | undefined;
|
329
|
-
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
330
329
|
gasPrice?: `0x${string}` | undefined;
|
331
330
|
maxFeePerGas?: `0x${string}` | undefined;
|
332
331
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
332
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
333
333
|
accessList?: import("../../index.js").AccessList | undefined;
|
334
334
|
chainId?: `0x${string}` | undefined;
|
335
335
|
} & Omit<import("../../index.js").TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & import("../../index.js").FeeValuesEIP1559<`0x${string}`> & {
|
@@ -338,13 +338,13 @@ export declare const zoraTestnet: {
|
|
338
338
|
sourceHash: `0x${string}`;
|
339
339
|
type: "0x7e";
|
340
340
|
})) => ({
|
341
|
+
hash: `0x${string}`;
|
342
|
+
nonce: number;
|
341
343
|
blockHash: `0x${string}` | null;
|
342
344
|
blockNumber: bigint | null;
|
343
345
|
from: `0x${string}`;
|
344
346
|
gas: bigint;
|
345
|
-
hash: `0x${string}`;
|
346
347
|
input: `0x${string}`;
|
347
|
-
nonce: number;
|
348
348
|
r: `0x${string}`;
|
349
349
|
s: `0x${string}`;
|
350
350
|
to: `0x${string}` | null;
|
@@ -363,13 +363,13 @@ export declare const zoraTestnet: {
|
|
363
363
|
mint?: undefined;
|
364
364
|
sourceHash?: undefined;
|
365
365
|
} | {
|
366
|
+
hash: `0x${string}`;
|
367
|
+
nonce: number;
|
366
368
|
blockHash: `0x${string}` | null;
|
367
369
|
blockNumber: bigint | null;
|
368
370
|
from: `0x${string}`;
|
369
371
|
gas: bigint;
|
370
|
-
hash: `0x${string}`;
|
371
372
|
input: `0x${string}`;
|
372
|
-
nonce: number;
|
373
373
|
r: `0x${string}`;
|
374
374
|
s: `0x${string}`;
|
375
375
|
to: `0x${string}` | null;
|
@@ -55,24 +55,24 @@ export declare const chainConfig: {
|
|
55
55
|
readonly transaction: {
|
56
56
|
exclude: [] | undefined;
|
57
57
|
format: (args: ({
|
58
|
+
hash?: `0x${string}` | undefined;
|
59
|
+
nonce?: `0x${string}` | undefined;
|
58
60
|
yParity?: `0x${string}` | undefined;
|
59
61
|
blockHash?: `0x${string}` | null | undefined;
|
60
62
|
blockNumber?: `0x${string}` | null | undefined;
|
61
63
|
from?: `0x${string}` | undefined;
|
62
64
|
gas?: `0x${string}` | undefined;
|
63
|
-
hash?: `0x${string}` | undefined;
|
64
65
|
input?: `0x${string}` | undefined;
|
65
|
-
nonce?: `0x${string}` | undefined;
|
66
66
|
r?: `0x${string}` | undefined;
|
67
67
|
s?: `0x${string}` | undefined;
|
68
68
|
to?: `0x${string}` | null | undefined;
|
69
69
|
transactionIndex?: `0x${string}` | null | undefined;
|
70
70
|
v?: `0x${string}` | undefined;
|
71
71
|
value?: `0x${string}` | undefined;
|
72
|
-
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
73
72
|
gasPrice?: `0x${string}` | undefined;
|
74
73
|
maxFeePerGas?: `0x${string}` | undefined;
|
75
74
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
75
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
76
76
|
accessList?: undefined;
|
77
77
|
chainId?: `0x${string}` | undefined;
|
78
78
|
} & import("../index.js").Omit<import("../index.js").PartialBy<import("../../index.js").TransactionLegacy<`0x${string}`, `0x${string}`, boolean, "0x0">, "yParity">, "typeHex"> & {
|
@@ -80,24 +80,24 @@ export declare const chainConfig: {
|
|
80
80
|
mint?: undefined;
|
81
81
|
sourceHash?: undefined;
|
82
82
|
}) | ({
|
83
|
+
hash?: `0x${string}` | undefined;
|
84
|
+
nonce?: `0x${string}` | undefined;
|
83
85
|
yParity?: `0x${string}` | undefined;
|
84
86
|
blockHash?: `0x${string}` | null | undefined;
|
85
87
|
blockNumber?: `0x${string}` | null | undefined;
|
86
88
|
from?: `0x${string}` | undefined;
|
87
89
|
gas?: `0x${string}` | undefined;
|
88
|
-
hash?: `0x${string}` | undefined;
|
89
90
|
input?: `0x${string}` | undefined;
|
90
|
-
nonce?: `0x${string}` | undefined;
|
91
91
|
r?: `0x${string}` | undefined;
|
92
92
|
s?: `0x${string}` | undefined;
|
93
93
|
to?: `0x${string}` | null | undefined;
|
94
94
|
transactionIndex?: `0x${string}` | null | undefined;
|
95
95
|
v?: `0x${string}` | undefined;
|
96
96
|
value?: `0x${string}` | undefined;
|
97
|
-
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
98
97
|
gasPrice?: `0x${string}` | undefined;
|
99
98
|
maxFeePerGas?: `0x${string}` | undefined;
|
100
99
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
100
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
101
101
|
accessList?: undefined;
|
102
102
|
chainId?: `0x${string}` | undefined;
|
103
103
|
} & Omit<import("../../index.js").TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & import("../../index.js").FeeValuesEIP1559<`0x${string}`> & {
|
@@ -106,24 +106,24 @@ export declare const chainConfig: {
|
|
106
106
|
sourceHash: `0x${string}`;
|
107
107
|
type: "0x7e";
|
108
108
|
}) | ({
|
109
|
+
hash?: `0x${string}` | undefined;
|
110
|
+
nonce?: `0x${string}` | undefined;
|
109
111
|
yParity?: `0x${string}` | undefined;
|
110
112
|
blockHash?: `0x${string}` | null | undefined;
|
111
113
|
blockNumber?: `0x${string}` | null | undefined;
|
112
114
|
from?: `0x${string}` | undefined;
|
113
115
|
gas?: `0x${string}` | undefined;
|
114
|
-
hash?: `0x${string}` | undefined;
|
115
116
|
input?: `0x${string}` | undefined;
|
116
|
-
nonce?: `0x${string}` | undefined;
|
117
117
|
r?: `0x${string}` | undefined;
|
118
118
|
s?: `0x${string}` | undefined;
|
119
119
|
to?: `0x${string}` | null | undefined;
|
120
120
|
transactionIndex?: `0x${string}` | null | undefined;
|
121
121
|
v?: `0x${string}` | undefined;
|
122
122
|
value?: `0x${string}` | undefined;
|
123
|
-
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
124
123
|
gasPrice?: `0x${string}` | undefined;
|
125
124
|
maxFeePerGas?: `0x${string}` | undefined;
|
126
125
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
126
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
127
127
|
accessList?: import("../../index.js").AccessList | undefined;
|
128
128
|
chainId?: `0x${string}` | undefined;
|
129
129
|
} & import("../index.js").Omit<import("../index.js").PartialBy<import("../../index.js").TransactionLegacy<`0x${string}`, `0x${string}`, boolean, "0x0">, "yParity">, "typeHex"> & {
|
@@ -131,24 +131,24 @@ export declare const chainConfig: {
|
|
131
131
|
mint?: undefined;
|
132
132
|
sourceHash?: undefined;
|
133
133
|
}) | ({
|
134
|
+
hash?: `0x${string}` | undefined;
|
135
|
+
nonce?: `0x${string}` | undefined;
|
134
136
|
yParity?: `0x${string}` | undefined;
|
135
137
|
blockHash?: `0x${string}` | null | undefined;
|
136
138
|
blockNumber?: `0x${string}` | null | undefined;
|
137
139
|
from?: `0x${string}` | undefined;
|
138
140
|
gas?: `0x${string}` | undefined;
|
139
|
-
hash?: `0x${string}` | undefined;
|
140
141
|
input?: `0x${string}` | undefined;
|
141
|
-
nonce?: `0x${string}` | undefined;
|
142
142
|
r?: `0x${string}` | undefined;
|
143
143
|
s?: `0x${string}` | undefined;
|
144
144
|
to?: `0x${string}` | null | undefined;
|
145
145
|
transactionIndex?: `0x${string}` | null | undefined;
|
146
146
|
v?: `0x${string}` | undefined;
|
147
147
|
value?: `0x${string}` | undefined;
|
148
|
-
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
149
148
|
gasPrice?: `0x${string}` | undefined;
|
150
149
|
maxFeePerGas?: `0x${string}` | undefined;
|
151
150
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
151
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
152
152
|
accessList?: import("../../index.js").AccessList | undefined;
|
153
153
|
chainId?: `0x${string}` | undefined;
|
154
154
|
} & import("../index.js").Omit<import("../index.js").PartialBy<import("../../index.js").TransactionEIP2930<`0x${string}`, `0x${string}`, boolean, "0x1">, "yParity">, "typeHex"> & {
|
@@ -156,24 +156,24 @@ export declare const chainConfig: {
|
|
156
156
|
mint?: undefined;
|
157
157
|
sourceHash?: undefined;
|
158
158
|
}) | ({
|
159
|
+
hash?: `0x${string}` | undefined;
|
160
|
+
nonce?: `0x${string}` | undefined;
|
159
161
|
yParity?: `0x${string}` | undefined;
|
160
162
|
blockHash?: `0x${string}` | null | undefined;
|
161
163
|
blockNumber?: `0x${string}` | null | undefined;
|
162
164
|
from?: `0x${string}` | undefined;
|
163
165
|
gas?: `0x${string}` | undefined;
|
164
|
-
hash?: `0x${string}` | undefined;
|
165
166
|
input?: `0x${string}` | undefined;
|
166
|
-
nonce?: `0x${string}` | undefined;
|
167
167
|
r?: `0x${string}` | undefined;
|
168
168
|
s?: `0x${string}` | undefined;
|
169
169
|
to?: `0x${string}` | null | undefined;
|
170
170
|
transactionIndex?: `0x${string}` | null | undefined;
|
171
171
|
v?: `0x${string}` | undefined;
|
172
172
|
value?: `0x${string}` | undefined;
|
173
|
-
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
174
173
|
gasPrice?: `0x${string}` | undefined;
|
175
174
|
maxFeePerGas?: `0x${string}` | undefined;
|
176
175
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
176
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
177
177
|
accessList?: import("../../index.js").AccessList | undefined;
|
178
178
|
chainId?: `0x${string}` | undefined;
|
179
179
|
} & import("../index.js").Omit<import("../index.js").PartialBy<import("../../index.js").TransactionEIP1559<`0x${string}`, `0x${string}`, boolean, "0x2">, "yParity">, "typeHex"> & {
|
@@ -181,24 +181,24 @@ export declare const chainConfig: {
|
|
181
181
|
mint?: undefined;
|
182
182
|
sourceHash?: undefined;
|
183
183
|
}) | ({
|
184
|
+
hash?: `0x${string}` | undefined;
|
185
|
+
nonce?: `0x${string}` | undefined;
|
184
186
|
yParity?: `0x${string}` | undefined;
|
185
187
|
blockHash?: `0x${string}` | null | undefined;
|
186
188
|
blockNumber?: `0x${string}` | null | undefined;
|
187
189
|
from?: `0x${string}` | undefined;
|
188
190
|
gas?: `0x${string}` | undefined;
|
189
|
-
hash?: `0x${string}` | undefined;
|
190
191
|
input?: `0x${string}` | undefined;
|
191
|
-
nonce?: `0x${string}` | undefined;
|
192
192
|
r?: `0x${string}` | undefined;
|
193
193
|
s?: `0x${string}` | undefined;
|
194
194
|
to?: `0x${string}` | null | undefined;
|
195
195
|
transactionIndex?: `0x${string}` | null | undefined;
|
196
196
|
v?: `0x${string}` | undefined;
|
197
197
|
value?: `0x${string}` | undefined;
|
198
|
-
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
199
198
|
gasPrice?: `0x${string}` | undefined;
|
200
199
|
maxFeePerGas?: `0x${string}` | undefined;
|
201
200
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
201
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
202
202
|
accessList?: import("../../index.js").AccessList | undefined;
|
203
203
|
chainId?: `0x${string}` | undefined;
|
204
204
|
} & Omit<import("../../index.js").TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & import("../../index.js").FeeValuesEIP1559<`0x${string}`> & {
|
@@ -207,24 +207,24 @@ export declare const chainConfig: {
|
|
207
207
|
sourceHash: `0x${string}`;
|
208
208
|
type: "0x7e";
|
209
209
|
}) | ({
|
210
|
+
hash?: `0x${string}` | undefined;
|
211
|
+
nonce?: `0x${string}` | undefined;
|
210
212
|
yParity?: `0x${string}` | undefined;
|
211
213
|
blockHash?: `0x${string}` | null | undefined;
|
212
214
|
blockNumber?: `0x${string}` | null | undefined;
|
213
215
|
from?: `0x${string}` | undefined;
|
214
216
|
gas?: `0x${string}` | undefined;
|
215
|
-
hash?: `0x${string}` | undefined;
|
216
217
|
input?: `0x${string}` | undefined;
|
217
|
-
nonce?: `0x${string}` | undefined;
|
218
218
|
r?: `0x${string}` | undefined;
|
219
219
|
s?: `0x${string}` | undefined;
|
220
220
|
to?: `0x${string}` | null | undefined;
|
221
221
|
transactionIndex?: `0x${string}` | null | undefined;
|
222
222
|
v?: `0x${string}` | undefined;
|
223
223
|
value?: `0x${string}` | undefined;
|
224
|
-
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
225
224
|
gasPrice?: `0x${string}` | undefined;
|
226
225
|
maxFeePerGas?: `0x${string}` | undefined;
|
227
226
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
227
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
228
228
|
accessList?: import("../../index.js").AccessList | undefined;
|
229
229
|
chainId?: `0x${string}` | undefined;
|
230
230
|
} & import("../index.js").Omit<import("../index.js").PartialBy<import("../../index.js").TransactionLegacy<`0x${string}`, `0x${string}`, boolean, "0x0">, "yParity">, "typeHex"> & {
|
@@ -232,24 +232,24 @@ export declare const chainConfig: {
|
|
232
232
|
mint?: undefined;
|
233
233
|
sourceHash?: undefined;
|
234
234
|
}) | ({
|
235
|
+
hash?: `0x${string}` | undefined;
|
236
|
+
nonce?: `0x${string}` | undefined;
|
235
237
|
yParity?: `0x${string}` | undefined;
|
236
238
|
blockHash?: `0x${string}` | null | undefined;
|
237
239
|
blockNumber?: `0x${string}` | null | undefined;
|
238
240
|
from?: `0x${string}` | undefined;
|
239
241
|
gas?: `0x${string}` | undefined;
|
240
|
-
hash?: `0x${string}` | undefined;
|
241
242
|
input?: `0x${string}` | undefined;
|
242
|
-
nonce?: `0x${string}` | undefined;
|
243
243
|
r?: `0x${string}` | undefined;
|
244
244
|
s?: `0x${string}` | undefined;
|
245
245
|
to?: `0x${string}` | null | undefined;
|
246
246
|
transactionIndex?: `0x${string}` | null | undefined;
|
247
247
|
v?: `0x${string}` | undefined;
|
248
248
|
value?: `0x${string}` | undefined;
|
249
|
-
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
250
249
|
gasPrice?: `0x${string}` | undefined;
|
251
250
|
maxFeePerGas?: `0x${string}` | undefined;
|
252
251
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
252
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
253
253
|
accessList?: import("../../index.js").AccessList | undefined;
|
254
254
|
chainId?: `0x${string}` | undefined;
|
255
255
|
} & import("../index.js").Omit<import("../index.js").PartialBy<import("../../index.js").TransactionEIP2930<`0x${string}`, `0x${string}`, boolean, "0x1">, "yParity">, "typeHex"> & {
|
@@ -257,24 +257,24 @@ export declare const chainConfig: {
|
|
257
257
|
mint?: undefined;
|
258
258
|
sourceHash?: undefined;
|
259
259
|
}) | ({
|
260
|
+
hash?: `0x${string}` | undefined;
|
261
|
+
nonce?: `0x${string}` | undefined;
|
260
262
|
yParity?: `0x${string}` | undefined;
|
261
263
|
blockHash?: `0x${string}` | null | undefined;
|
262
264
|
blockNumber?: `0x${string}` | null | undefined;
|
263
265
|
from?: `0x${string}` | undefined;
|
264
266
|
gas?: `0x${string}` | undefined;
|
265
|
-
hash?: `0x${string}` | undefined;
|
266
267
|
input?: `0x${string}` | undefined;
|
267
|
-
nonce?: `0x${string}` | undefined;
|
268
268
|
r?: `0x${string}` | undefined;
|
269
269
|
s?: `0x${string}` | undefined;
|
270
270
|
to?: `0x${string}` | null | undefined;
|
271
271
|
transactionIndex?: `0x${string}` | null | undefined;
|
272
272
|
v?: `0x${string}` | undefined;
|
273
273
|
value?: `0x${string}` | undefined;
|
274
|
-
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
275
274
|
gasPrice?: `0x${string}` | undefined;
|
276
275
|
maxFeePerGas?: `0x${string}` | undefined;
|
277
276
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
277
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
278
278
|
accessList?: import("../../index.js").AccessList | undefined;
|
279
279
|
chainId?: `0x${string}` | undefined;
|
280
280
|
} & import("../index.js").Omit<import("../index.js").PartialBy<import("../../index.js").TransactionEIP1559<`0x${string}`, `0x${string}`, boolean, "0x2">, "yParity">, "typeHex"> & {
|
@@ -282,24 +282,24 @@ export declare const chainConfig: {
|
|
282
282
|
mint?: undefined;
|
283
283
|
sourceHash?: undefined;
|
284
284
|
}) | ({
|
285
|
+
hash?: `0x${string}` | undefined;
|
286
|
+
nonce?: `0x${string}` | undefined;
|
285
287
|
yParity?: `0x${string}` | undefined;
|
286
288
|
blockHash?: `0x${string}` | null | undefined;
|
287
289
|
blockNumber?: `0x${string}` | null | undefined;
|
288
290
|
from?: `0x${string}` | undefined;
|
289
291
|
gas?: `0x${string}` | undefined;
|
290
|
-
hash?: `0x${string}` | undefined;
|
291
292
|
input?: `0x${string}` | undefined;
|
292
|
-
nonce?: `0x${string}` | undefined;
|
293
293
|
r?: `0x${string}` | undefined;
|
294
294
|
s?: `0x${string}` | undefined;
|
295
295
|
to?: `0x${string}` | null | undefined;
|
296
296
|
transactionIndex?: `0x${string}` | null | undefined;
|
297
297
|
v?: `0x${string}` | undefined;
|
298
298
|
value?: `0x${string}` | undefined;
|
299
|
-
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
300
299
|
gasPrice?: `0x${string}` | undefined;
|
301
300
|
maxFeePerGas?: `0x${string}` | undefined;
|
302
301
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
302
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
303
303
|
accessList?: import("../../index.js").AccessList | undefined;
|
304
304
|
chainId?: `0x${string}` | undefined;
|
305
305
|
} & Omit<import("../../index.js").TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & import("../../index.js").FeeValuesEIP1559<`0x${string}`> & {
|
@@ -308,13 +308,13 @@ export declare const chainConfig: {
|
|
308
308
|
sourceHash: `0x${string}`;
|
309
309
|
type: "0x7e";
|
310
310
|
})) => ({
|
311
|
+
hash: `0x${string}`;
|
312
|
+
nonce: number;
|
311
313
|
blockHash: `0x${string}` | null;
|
312
314
|
blockNumber: bigint | null;
|
313
315
|
from: `0x${string}`;
|
314
316
|
gas: bigint;
|
315
|
-
hash: `0x${string}`;
|
316
317
|
input: `0x${string}`;
|
317
|
-
nonce: number;
|
318
318
|
r: `0x${string}`;
|
319
319
|
s: `0x${string}`;
|
320
320
|
to: `0x${string}` | null;
|
@@ -333,13 +333,13 @@ export declare const chainConfig: {
|
|
333
333
|
mint?: undefined;
|
334
334
|
sourceHash?: undefined;
|
335
335
|
} | {
|
336
|
+
hash: `0x${string}`;
|
337
|
+
nonce: number;
|
336
338
|
blockHash: `0x${string}` | null;
|
337
339
|
blockNumber: bigint | null;
|
338
340
|
from: `0x${string}`;
|
339
341
|
gas: bigint;
|
340
|
-
hash: `0x${string}`;
|
341
342
|
input: `0x${string}`;
|
342
|
-
nonce: number;
|
343
343
|
r: `0x${string}`;
|
344
344
|
s: `0x${string}`;
|
345
345
|
to: `0x${string}` | null;
|