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