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