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
@@ -68,24 +68,24 @@ export declare const pgnTestnet: {
|
|
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 pgnTestnet: {
|
|
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 pgnTestnet: {
|
|
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 pgnTestnet: {
|
|
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 pgnTestnet: {
|
|
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 pgnTestnet: {
|
|
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 pgnTestnet: {
|
|
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 pgnTestnet: {
|
|
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 pgnTestnet: {
|
|
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 pgnTestnet: {
|
|
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 pgnTestnet: {
|
|
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 pgnTestnet: {
|
|
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;
|
@@ -63,13 +63,13 @@ export declare const zkSync: {
|
|
63
63
|
readonly transaction: {
|
64
64
|
exclude: [] | undefined;
|
65
65
|
format: (args: import("../index.js").Assign<Partial<import("../../index.js").RpcTransaction>, import("../zksync/types.js").ZkSyncRpcTransaction>) => ({
|
66
|
+
hash: `0x${string}`;
|
67
|
+
nonce: number;
|
66
68
|
blockHash: `0x${string}` | null;
|
67
69
|
blockNumber: bigint | null;
|
68
70
|
from: `0x${string}`;
|
69
71
|
gas: bigint;
|
70
|
-
hash: `0x${string}`;
|
71
72
|
input: `0x${string}`;
|
72
|
-
nonce: number;
|
73
73
|
r: `0x${string}`;
|
74
74
|
s: `0x${string}`;
|
75
75
|
to: `0x${string}` | null;
|
@@ -87,13 +87,13 @@ export declare const zkSync: {
|
|
87
87
|
l1BatchNumber: bigint | null;
|
88
88
|
l1BatchTxIndex: bigint | null;
|
89
89
|
} | {
|
90
|
+
hash: `0x${string}`;
|
91
|
+
nonce: number;
|
90
92
|
blockHash: `0x${string}` | null;
|
91
93
|
blockNumber: bigint | null;
|
92
94
|
from: `0x${string}`;
|
93
95
|
gas: bigint;
|
94
|
-
hash: `0x${string}`;
|
95
96
|
input: `0x${string}`;
|
96
|
-
nonce: number;
|
97
97
|
r: `0x${string}`;
|
98
98
|
s: `0x${string}`;
|
99
99
|
to: `0x${string}` | null;
|
@@ -111,13 +111,13 @@ export declare const zkSync: {
|
|
111
111
|
l1BatchNumber: bigint | null;
|
112
112
|
l1BatchTxIndex: bigint | null;
|
113
113
|
} | {
|
114
|
+
hash: `0x${string}`;
|
115
|
+
nonce: number;
|
114
116
|
blockHash: `0x${string}` | null;
|
115
117
|
blockNumber: bigint | null;
|
116
118
|
from: `0x${string}`;
|
117
119
|
gas: bigint;
|
118
|
-
hash: `0x${string}`;
|
119
120
|
input: `0x${string}`;
|
120
|
-
nonce: number;
|
121
121
|
r: `0x${string}`;
|
122
122
|
s: `0x${string}`;
|
123
123
|
to: `0x${string}` | null;
|
@@ -63,13 +63,13 @@ export declare const zkSyncTestnet: {
|
|
63
63
|
readonly transaction: {
|
64
64
|
exclude: [] | undefined;
|
65
65
|
format: (args: import("../index.js").Assign<Partial<import("../../index.js").RpcTransaction>, import("../zksync/types.js").ZkSyncRpcTransaction>) => ({
|
66
|
+
hash: `0x${string}`;
|
67
|
+
nonce: number;
|
66
68
|
blockHash: `0x${string}` | null;
|
67
69
|
blockNumber: bigint | null;
|
68
70
|
from: `0x${string}`;
|
69
71
|
gas: bigint;
|
70
|
-
hash: `0x${string}`;
|
71
72
|
input: `0x${string}`;
|
72
|
-
nonce: number;
|
73
73
|
r: `0x${string}`;
|
74
74
|
s: `0x${string}`;
|
75
75
|
to: `0x${string}` | null;
|
@@ -87,13 +87,13 @@ export declare const zkSyncTestnet: {
|
|
87
87
|
l1BatchNumber: bigint | null;
|
88
88
|
l1BatchTxIndex: bigint | null;
|
89
89
|
} | {
|
90
|
+
hash: `0x${string}`;
|
91
|
+
nonce: number;
|
90
92
|
blockHash: `0x${string}` | null;
|
91
93
|
blockNumber: bigint | null;
|
92
94
|
from: `0x${string}`;
|
93
95
|
gas: bigint;
|
94
|
-
hash: `0x${string}`;
|
95
96
|
input: `0x${string}`;
|
96
|
-
nonce: number;
|
97
97
|
r: `0x${string}`;
|
98
98
|
s: `0x${string}`;
|
99
99
|
to: `0x${string}` | null;
|
@@ -111,13 +111,13 @@ export declare const zkSyncTestnet: {
|
|
111
111
|
l1BatchNumber: bigint | null;
|
112
112
|
l1BatchTxIndex: bigint | null;
|
113
113
|
} | {
|
114
|
+
hash: `0x${string}`;
|
115
|
+
nonce: number;
|
114
116
|
blockHash: `0x${string}` | null;
|
115
117
|
blockNumber: bigint | null;
|
116
118
|
from: `0x${string}`;
|
117
119
|
gas: bigint;
|
118
|
-
hash: `0x${string}`;
|
119
120
|
input: `0x${string}`;
|
120
|
-
nonce: number;
|
121
121
|
r: `0x${string}`;
|
122
122
|
s: `0x${string}`;
|
123
123
|
to: `0x${string}` | null;
|