viem 2.0.0-beta.3 → 2.0.0-beta.4
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/chains/opStack/decorators/public.js +1 -1
- package/_esm/chains/opStack/decorators/public.js.map +1 -1
- package/_esm/chains/opStack/index.js +1 -1
- package/_esm/chains/opStack/index.js.map +1 -1
- package/_esm/errors/version.js +1 -1
- package/_types/chains/celo/chainConfig.d.ts +117 -117
- package/_types/chains/celo/formatters.d.ts +117 -117
- package/_types/chains/definitions/base.d.ts +90 -90
- package/_types/chains/definitions/baseGoerli.d.ts +90 -90
- package/_types/chains/definitions/baseSepolia.d.ts +90 -90
- package/_types/chains/definitions/celo.d.ts +117 -117
- package/_types/chains/definitions/celoAlfajores.d.ts +117 -117
- package/_types/chains/definitions/celoCannoli.d.ts +117 -117
- package/_types/chains/definitions/optimism.d.ts +90 -90
- package/_types/chains/definitions/optimismGoerli.d.ts +90 -90
- package/_types/chains/definitions/optimismSepolia.d.ts +90 -90
- package/_types/chains/definitions/zora.d.ts +90 -90
- package/_types/chains/definitions/zoraSepolia.d.ts +90 -90
- package/_types/chains/definitions/zoraTestnet.d.ts +90 -90
- package/_types/chains/opStack/chainConfig.d.ts +90 -90
- package/_types/chains/opStack/decorators/public.d.ts +18 -18
- package/_types/chains/opStack/decorators/public.d.ts.map +1 -1
- package/_types/chains/opStack/formatters.d.ts +90 -90
- package/_types/chains/opStack/index.d.ts +1 -1
- package/_types/chains/opStack/index.d.ts.map +1 -1
- package/_types/errors/version.d.ts +1 -1
- package/_types/utils/formatters/transaction.d.ts +1 -1
- package/_types/utils/formatters/transactionRequest.d.ts +1 -1
- package/chains/opStack/decorators/public.ts +19 -19
- package/chains/opStack/index.ts +1 -1
- package/errors/version.ts +1 -1
- package/package.json +1 -1
@@ -84,48 +84,48 @@ export declare const zoraSepolia: {
|
|
84
84
|
readonly transaction: {
|
85
85
|
exclude: [] | undefined;
|
86
86
|
format: (args: ({
|
87
|
-
|
88
|
-
gas?: `0x${string}` | undefined;
|
89
|
-
value?: `0x${string}` | undefined;
|
87
|
+
from?: `0x${string}` | undefined;
|
90
88
|
gasPrice?: `0x${string}` | undefined;
|
91
89
|
maxFeePerGas?: `0x${string}` | undefined;
|
92
90
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
93
|
-
|
91
|
+
gas?: `0x${string}` | undefined;
|
94
92
|
nonce?: `0x${string}` | undefined;
|
95
93
|
to?: `0x${string}` | null | undefined;
|
94
|
+
value?: `0x${string}` | undefined;
|
96
95
|
accessList?: undefined;
|
97
|
-
|
98
|
-
s?: `0x${string}` | undefined;
|
99
|
-
v?: `0x${string}` | undefined;
|
100
|
-
hash?: `0x${string}` | undefined;
|
96
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
101
97
|
blockHash?: `0x${string}` | null | undefined;
|
102
98
|
blockNumber?: `0x${string}` | null | undefined;
|
103
|
-
|
99
|
+
hash?: `0x${string}` | undefined;
|
104
100
|
input?: `0x${string}` | undefined;
|
101
|
+
r?: `0x${string}` | undefined;
|
102
|
+
s?: `0x${string}` | undefined;
|
103
|
+
transactionIndex?: `0x${string}` | null | undefined;
|
104
|
+
v?: `0x${string}` | undefined;
|
105
105
|
chainId?: `0x${string}` | undefined;
|
106
106
|
} & import("../index.js").Omit<import("../../index.js").TransactionLegacy<`0x${string}`, `0x${string}`, boolean, "0x0">, "typeHex"> & {
|
107
107
|
isSystemTx?: undefined;
|
108
108
|
mint?: undefined;
|
109
109
|
sourceHash?: undefined;
|
110
110
|
}) | ({
|
111
|
-
|
112
|
-
gas?: `0x${string}` | undefined;
|
113
|
-
value?: `0x${string}` | undefined;
|
111
|
+
from?: `0x${string}` | undefined;
|
114
112
|
gasPrice?: `0x${string}` | undefined;
|
115
113
|
maxFeePerGas?: `0x${string}` | undefined;
|
116
114
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
117
|
-
|
115
|
+
gas?: `0x${string}` | undefined;
|
118
116
|
nonce?: `0x${string}` | undefined;
|
119
117
|
to?: `0x${string}` | null | undefined;
|
118
|
+
value?: `0x${string}` | undefined;
|
120
119
|
accessList?: undefined;
|
121
|
-
|
122
|
-
s?: `0x${string}` | undefined;
|
123
|
-
v?: `0x${string}` | undefined;
|
124
|
-
hash?: `0x${string}` | undefined;
|
120
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
125
121
|
blockHash?: `0x${string}` | null | undefined;
|
126
122
|
blockNumber?: `0x${string}` | null | undefined;
|
127
|
-
|
123
|
+
hash?: `0x${string}` | undefined;
|
128
124
|
input?: `0x${string}` | undefined;
|
125
|
+
r?: `0x${string}` | undefined;
|
126
|
+
s?: `0x${string}` | undefined;
|
127
|
+
transactionIndex?: `0x${string}` | null | undefined;
|
128
|
+
v?: `0x${string}` | undefined;
|
129
129
|
chainId?: `0x${string}` | undefined;
|
130
130
|
} & Omit<import("../../index.js").TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & import("../../index.js").FeeValuesEIP1559<`0x${string}`> & {
|
131
131
|
isSystemTx?: boolean | undefined;
|
@@ -133,96 +133,96 @@ export declare const zoraSepolia: {
|
|
133
133
|
sourceHash: `0x${string}`;
|
134
134
|
type: "0x7e";
|
135
135
|
}) | ({
|
136
|
-
|
137
|
-
gas?: `0x${string}` | undefined;
|
138
|
-
value?: `0x${string}` | undefined;
|
136
|
+
from?: `0x${string}` | undefined;
|
139
137
|
gasPrice?: `0x${string}` | undefined;
|
140
138
|
maxFeePerGas?: `0x${string}` | undefined;
|
141
139
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
142
|
-
|
140
|
+
gas?: `0x${string}` | undefined;
|
143
141
|
nonce?: `0x${string}` | undefined;
|
144
142
|
to?: `0x${string}` | null | undefined;
|
143
|
+
value?: `0x${string}` | undefined;
|
145
144
|
accessList?: import("../../index.js").AccessList | undefined;
|
146
|
-
|
147
|
-
s?: `0x${string}` | undefined;
|
148
|
-
v?: `0x${string}` | undefined;
|
149
|
-
hash?: `0x${string}` | undefined;
|
145
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
150
146
|
blockHash?: `0x${string}` | null | undefined;
|
151
147
|
blockNumber?: `0x${string}` | null | undefined;
|
152
|
-
|
148
|
+
hash?: `0x${string}` | undefined;
|
153
149
|
input?: `0x${string}` | undefined;
|
150
|
+
r?: `0x${string}` | undefined;
|
151
|
+
s?: `0x${string}` | undefined;
|
152
|
+
transactionIndex?: `0x${string}` | null | undefined;
|
153
|
+
v?: `0x${string}` | undefined;
|
154
154
|
chainId?: `0x${string}` | undefined;
|
155
155
|
} & import("../index.js").Omit<import("../../index.js").TransactionLegacy<`0x${string}`, `0x${string}`, boolean, "0x0">, "typeHex"> & {
|
156
156
|
isSystemTx?: undefined;
|
157
157
|
mint?: undefined;
|
158
158
|
sourceHash?: undefined;
|
159
159
|
}) | ({
|
160
|
-
|
161
|
-
gas?: `0x${string}` | undefined;
|
162
|
-
value?: `0x${string}` | undefined;
|
160
|
+
from?: `0x${string}` | undefined;
|
163
161
|
gasPrice?: `0x${string}` | undefined;
|
164
162
|
maxFeePerGas?: `0x${string}` | undefined;
|
165
163
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
166
|
-
|
164
|
+
gas?: `0x${string}` | undefined;
|
167
165
|
nonce?: `0x${string}` | undefined;
|
168
166
|
to?: `0x${string}` | null | undefined;
|
167
|
+
value?: `0x${string}` | undefined;
|
169
168
|
accessList?: import("../../index.js").AccessList | undefined;
|
170
|
-
|
171
|
-
s?: `0x${string}` | undefined;
|
172
|
-
v?: `0x${string}` | undefined;
|
173
|
-
hash?: `0x${string}` | undefined;
|
169
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
174
170
|
blockHash?: `0x${string}` | null | undefined;
|
175
171
|
blockNumber?: `0x${string}` | null | undefined;
|
176
|
-
|
172
|
+
hash?: `0x${string}` | undefined;
|
177
173
|
input?: `0x${string}` | undefined;
|
174
|
+
r?: `0x${string}` | undefined;
|
175
|
+
s?: `0x${string}` | undefined;
|
176
|
+
transactionIndex?: `0x${string}` | null | undefined;
|
177
|
+
v?: `0x${string}` | undefined;
|
178
178
|
chainId?: `0x${string}` | undefined;
|
179
179
|
} & import("../index.js").Omit<import("../../index.js").TransactionEIP2930<`0x${string}`, `0x${string}`, boolean, "0x1">, "typeHex"> & {
|
180
180
|
isSystemTx?: undefined;
|
181
181
|
mint?: undefined;
|
182
182
|
sourceHash?: undefined;
|
183
183
|
}) | ({
|
184
|
-
|
185
|
-
gas?: `0x${string}` | undefined;
|
186
|
-
value?: `0x${string}` | undefined;
|
184
|
+
from?: `0x${string}` | undefined;
|
187
185
|
gasPrice?: `0x${string}` | undefined;
|
188
186
|
maxFeePerGas?: `0x${string}` | undefined;
|
189
187
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
190
|
-
|
188
|
+
gas?: `0x${string}` | undefined;
|
191
189
|
nonce?: `0x${string}` | undefined;
|
192
190
|
to?: `0x${string}` | null | undefined;
|
191
|
+
value?: `0x${string}` | undefined;
|
193
192
|
accessList?: import("../../index.js").AccessList | undefined;
|
194
|
-
|
195
|
-
s?: `0x${string}` | undefined;
|
196
|
-
v?: `0x${string}` | undefined;
|
197
|
-
hash?: `0x${string}` | undefined;
|
193
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
198
194
|
blockHash?: `0x${string}` | null | undefined;
|
199
195
|
blockNumber?: `0x${string}` | null | undefined;
|
200
|
-
|
196
|
+
hash?: `0x${string}` | undefined;
|
201
197
|
input?: `0x${string}` | undefined;
|
198
|
+
r?: `0x${string}` | undefined;
|
199
|
+
s?: `0x${string}` | undefined;
|
200
|
+
transactionIndex?: `0x${string}` | null | undefined;
|
201
|
+
v?: `0x${string}` | undefined;
|
202
202
|
chainId?: `0x${string}` | undefined;
|
203
203
|
} & import("../index.js").Omit<import("../../index.js").TransactionEIP1559<`0x${string}`, `0x${string}`, boolean, "0x2">, "typeHex"> & {
|
204
204
|
isSystemTx?: undefined;
|
205
205
|
mint?: undefined;
|
206
206
|
sourceHash?: undefined;
|
207
207
|
}) | ({
|
208
|
-
|
209
|
-
gas?: `0x${string}` | undefined;
|
210
|
-
value?: `0x${string}` | undefined;
|
208
|
+
from?: `0x${string}` | undefined;
|
211
209
|
gasPrice?: `0x${string}` | undefined;
|
212
210
|
maxFeePerGas?: `0x${string}` | undefined;
|
213
211
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
214
|
-
|
212
|
+
gas?: `0x${string}` | undefined;
|
215
213
|
nonce?: `0x${string}` | undefined;
|
216
214
|
to?: `0x${string}` | null | undefined;
|
215
|
+
value?: `0x${string}` | undefined;
|
217
216
|
accessList?: import("../../index.js").AccessList | undefined;
|
218
|
-
|
219
|
-
s?: `0x${string}` | undefined;
|
220
|
-
v?: `0x${string}` | undefined;
|
221
|
-
hash?: `0x${string}` | undefined;
|
217
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
222
218
|
blockHash?: `0x${string}` | null | undefined;
|
223
219
|
blockNumber?: `0x${string}` | null | undefined;
|
224
|
-
|
220
|
+
hash?: `0x${string}` | undefined;
|
225
221
|
input?: `0x${string}` | undefined;
|
222
|
+
r?: `0x${string}` | undefined;
|
223
|
+
s?: `0x${string}` | undefined;
|
224
|
+
transactionIndex?: `0x${string}` | null | undefined;
|
225
|
+
v?: `0x${string}` | undefined;
|
226
226
|
chainId?: `0x${string}` | undefined;
|
227
227
|
} & Omit<import("../../index.js").TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & import("../../index.js").FeeValuesEIP1559<`0x${string}`> & {
|
228
228
|
isSystemTx?: boolean | undefined;
|
@@ -230,96 +230,96 @@ export declare const zoraSepolia: {
|
|
230
230
|
sourceHash: `0x${string}`;
|
231
231
|
type: "0x7e";
|
232
232
|
}) | ({
|
233
|
-
|
234
|
-
gas?: `0x${string}` | undefined;
|
235
|
-
value?: `0x${string}` | undefined;
|
233
|
+
from?: `0x${string}` | undefined;
|
236
234
|
gasPrice?: `0x${string}` | undefined;
|
237
235
|
maxFeePerGas?: `0x${string}` | undefined;
|
238
236
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
239
|
-
|
237
|
+
gas?: `0x${string}` | undefined;
|
240
238
|
nonce?: `0x${string}` | undefined;
|
241
239
|
to?: `0x${string}` | null | undefined;
|
240
|
+
value?: `0x${string}` | undefined;
|
242
241
|
accessList?: import("../../index.js").AccessList | undefined;
|
243
|
-
|
244
|
-
s?: `0x${string}` | undefined;
|
245
|
-
v?: `0x${string}` | undefined;
|
246
|
-
hash?: `0x${string}` | undefined;
|
242
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
247
243
|
blockHash?: `0x${string}` | null | undefined;
|
248
244
|
blockNumber?: `0x${string}` | null | undefined;
|
249
|
-
|
245
|
+
hash?: `0x${string}` | undefined;
|
250
246
|
input?: `0x${string}` | undefined;
|
247
|
+
r?: `0x${string}` | undefined;
|
248
|
+
s?: `0x${string}` | undefined;
|
249
|
+
transactionIndex?: `0x${string}` | null | undefined;
|
250
|
+
v?: `0x${string}` | undefined;
|
251
251
|
chainId?: `0x${string}` | undefined;
|
252
252
|
} & import("../index.js").Omit<import("../../index.js").TransactionLegacy<`0x${string}`, `0x${string}`, boolean, "0x0">, "typeHex"> & {
|
253
253
|
isSystemTx?: undefined;
|
254
254
|
mint?: undefined;
|
255
255
|
sourceHash?: undefined;
|
256
256
|
}) | ({
|
257
|
-
|
258
|
-
gas?: `0x${string}` | undefined;
|
259
|
-
value?: `0x${string}` | undefined;
|
257
|
+
from?: `0x${string}` | undefined;
|
260
258
|
gasPrice?: `0x${string}` | undefined;
|
261
259
|
maxFeePerGas?: `0x${string}` | undefined;
|
262
260
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
263
|
-
|
261
|
+
gas?: `0x${string}` | undefined;
|
264
262
|
nonce?: `0x${string}` | undefined;
|
265
263
|
to?: `0x${string}` | null | undefined;
|
264
|
+
value?: `0x${string}` | undefined;
|
266
265
|
accessList?: import("../../index.js").AccessList | undefined;
|
267
|
-
|
268
|
-
s?: `0x${string}` | undefined;
|
269
|
-
v?: `0x${string}` | undefined;
|
270
|
-
hash?: `0x${string}` | undefined;
|
266
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
271
267
|
blockHash?: `0x${string}` | null | undefined;
|
272
268
|
blockNumber?: `0x${string}` | null | undefined;
|
273
|
-
|
269
|
+
hash?: `0x${string}` | undefined;
|
274
270
|
input?: `0x${string}` | undefined;
|
271
|
+
r?: `0x${string}` | undefined;
|
272
|
+
s?: `0x${string}` | undefined;
|
273
|
+
transactionIndex?: `0x${string}` | null | undefined;
|
274
|
+
v?: `0x${string}` | undefined;
|
275
275
|
chainId?: `0x${string}` | undefined;
|
276
276
|
} & import("../index.js").Omit<import("../../index.js").TransactionEIP2930<`0x${string}`, `0x${string}`, boolean, "0x1">, "typeHex"> & {
|
277
277
|
isSystemTx?: undefined;
|
278
278
|
mint?: undefined;
|
279
279
|
sourceHash?: undefined;
|
280
280
|
}) | ({
|
281
|
-
|
282
|
-
gas?: `0x${string}` | undefined;
|
283
|
-
value?: `0x${string}` | undefined;
|
281
|
+
from?: `0x${string}` | undefined;
|
284
282
|
gasPrice?: `0x${string}` | undefined;
|
285
283
|
maxFeePerGas?: `0x${string}` | undefined;
|
286
284
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
287
|
-
|
285
|
+
gas?: `0x${string}` | undefined;
|
288
286
|
nonce?: `0x${string}` | undefined;
|
289
287
|
to?: `0x${string}` | null | undefined;
|
288
|
+
value?: `0x${string}` | undefined;
|
290
289
|
accessList?: import("../../index.js").AccessList | undefined;
|
291
|
-
|
292
|
-
s?: `0x${string}` | undefined;
|
293
|
-
v?: `0x${string}` | undefined;
|
294
|
-
hash?: `0x${string}` | undefined;
|
290
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
295
291
|
blockHash?: `0x${string}` | null | undefined;
|
296
292
|
blockNumber?: `0x${string}` | null | undefined;
|
297
|
-
|
293
|
+
hash?: `0x${string}` | undefined;
|
298
294
|
input?: `0x${string}` | undefined;
|
295
|
+
r?: `0x${string}` | undefined;
|
296
|
+
s?: `0x${string}` | undefined;
|
297
|
+
transactionIndex?: `0x${string}` | null | undefined;
|
298
|
+
v?: `0x${string}` | undefined;
|
299
299
|
chainId?: `0x${string}` | undefined;
|
300
300
|
} & import("../index.js").Omit<import("../../index.js").TransactionEIP1559<`0x${string}`, `0x${string}`, boolean, "0x2">, "typeHex"> & {
|
301
301
|
isSystemTx?: undefined;
|
302
302
|
mint?: undefined;
|
303
303
|
sourceHash?: undefined;
|
304
304
|
}) | ({
|
305
|
-
|
306
|
-
gas?: `0x${string}` | undefined;
|
307
|
-
value?: `0x${string}` | undefined;
|
305
|
+
from?: `0x${string}` | undefined;
|
308
306
|
gasPrice?: `0x${string}` | undefined;
|
309
307
|
maxFeePerGas?: `0x${string}` | undefined;
|
310
308
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
311
|
-
|
309
|
+
gas?: `0x${string}` | undefined;
|
312
310
|
nonce?: `0x${string}` | undefined;
|
313
311
|
to?: `0x${string}` | null | undefined;
|
312
|
+
value?: `0x${string}` | undefined;
|
314
313
|
accessList?: import("../../index.js").AccessList | undefined;
|
315
|
-
|
316
|
-
s?: `0x${string}` | undefined;
|
317
|
-
v?: `0x${string}` | undefined;
|
318
|
-
hash?: `0x${string}` | undefined;
|
314
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
319
315
|
blockHash?: `0x${string}` | null | undefined;
|
320
316
|
blockNumber?: `0x${string}` | null | undefined;
|
321
|
-
|
317
|
+
hash?: `0x${string}` | undefined;
|
322
318
|
input?: `0x${string}` | undefined;
|
319
|
+
r?: `0x${string}` | undefined;
|
320
|
+
s?: `0x${string}` | undefined;
|
321
|
+
transactionIndex?: `0x${string}` | null | undefined;
|
322
|
+
v?: `0x${string}` | undefined;
|
323
323
|
chainId?: `0x${string}` | undefined;
|
324
324
|
} & Omit<import("../../index.js").TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & import("../../index.js").FeeValuesEIP1559<`0x${string}`> & {
|
325
325
|
isSystemTx?: boolean | undefined;
|