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