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