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
@@ -36,48 +36,48 @@ export declare const formatters: {
|
|
36
36
|
readonly transaction: {
|
37
37
|
exclude: [] | undefined;
|
38
38
|
format: (args: ({
|
39
|
-
|
40
|
-
gas?: `0x${string}` | undefined;
|
41
|
-
value?: `0x${string}` | undefined;
|
39
|
+
from?: `0x${string}` | undefined;
|
42
40
|
gasPrice?: `0x${string}` | undefined;
|
43
41
|
maxFeePerGas?: `0x${string}` | undefined;
|
44
42
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
45
|
-
|
43
|
+
gas?: `0x${string}` | undefined;
|
46
44
|
nonce?: `0x${string}` | undefined;
|
47
45
|
to?: `0x${string}` | null | undefined;
|
46
|
+
value?: `0x${string}` | undefined;
|
48
47
|
accessList?: undefined;
|
49
|
-
|
50
|
-
s?: `0x${string}` | undefined;
|
51
|
-
v?: `0x${string}` | undefined;
|
52
|
-
hash?: `0x${string}` | undefined;
|
48
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
53
49
|
blockHash?: `0x${string}` | null | undefined;
|
54
50
|
blockNumber?: `0x${string}` | null | undefined;
|
55
|
-
|
51
|
+
hash?: `0x${string}` | undefined;
|
56
52
|
input?: `0x${string}` | undefined;
|
53
|
+
r?: `0x${string}` | undefined;
|
54
|
+
s?: `0x${string}` | undefined;
|
55
|
+
transactionIndex?: `0x${string}` | null | undefined;
|
56
|
+
v?: `0x${string}` | undefined;
|
57
57
|
chainId?: `0x${string}` | undefined;
|
58
58
|
} & import("../index.js").Omit<import("../../index.js").TransactionLegacy<`0x${string}`, `0x${string}`, boolean, "0x0">, "typeHex"> & {
|
59
59
|
isSystemTx?: undefined;
|
60
60
|
mint?: undefined;
|
61
61
|
sourceHash?: undefined;
|
62
62
|
}) | ({
|
63
|
-
|
64
|
-
gas?: `0x${string}` | undefined;
|
65
|
-
value?: `0x${string}` | undefined;
|
63
|
+
from?: `0x${string}` | undefined;
|
66
64
|
gasPrice?: `0x${string}` | undefined;
|
67
65
|
maxFeePerGas?: `0x${string}` | undefined;
|
68
66
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
69
|
-
|
67
|
+
gas?: `0x${string}` | undefined;
|
70
68
|
nonce?: `0x${string}` | undefined;
|
71
69
|
to?: `0x${string}` | null | undefined;
|
70
|
+
value?: `0x${string}` | undefined;
|
72
71
|
accessList?: undefined;
|
73
|
-
|
74
|
-
s?: `0x${string}` | undefined;
|
75
|
-
v?: `0x${string}` | undefined;
|
76
|
-
hash?: `0x${string}` | undefined;
|
72
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
77
73
|
blockHash?: `0x${string}` | null | undefined;
|
78
74
|
blockNumber?: `0x${string}` | null | undefined;
|
79
|
-
|
75
|
+
hash?: `0x${string}` | undefined;
|
80
76
|
input?: `0x${string}` | undefined;
|
77
|
+
r?: `0x${string}` | undefined;
|
78
|
+
s?: `0x${string}` | undefined;
|
79
|
+
transactionIndex?: `0x${string}` | null | undefined;
|
80
|
+
v?: `0x${string}` | undefined;
|
81
81
|
chainId?: `0x${string}` | undefined;
|
82
82
|
} & Omit<import("../../index.js").TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & import("../../index.js").FeeValuesEIP1559<`0x${string}`> & {
|
83
83
|
isSystemTx?: boolean | undefined;
|
@@ -85,96 +85,96 @@ export declare const formatters: {
|
|
85
85
|
sourceHash: `0x${string}`;
|
86
86
|
type: "0x7e";
|
87
87
|
}) | ({
|
88
|
-
|
89
|
-
gas?: `0x${string}` | undefined;
|
90
|
-
value?: `0x${string}` | undefined;
|
88
|
+
from?: `0x${string}` | undefined;
|
91
89
|
gasPrice?: `0x${string}` | undefined;
|
92
90
|
maxFeePerGas?: `0x${string}` | undefined;
|
93
91
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
94
|
-
|
92
|
+
gas?: `0x${string}` | undefined;
|
95
93
|
nonce?: `0x${string}` | undefined;
|
96
94
|
to?: `0x${string}` | null | undefined;
|
95
|
+
value?: `0x${string}` | undefined;
|
97
96
|
accessList?: import("../../index.js").AccessList | undefined;
|
98
|
-
|
99
|
-
s?: `0x${string}` | undefined;
|
100
|
-
v?: `0x${string}` | undefined;
|
101
|
-
hash?: `0x${string}` | undefined;
|
97
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
102
98
|
blockHash?: `0x${string}` | null | undefined;
|
103
99
|
blockNumber?: `0x${string}` | null | undefined;
|
104
|
-
|
100
|
+
hash?: `0x${string}` | undefined;
|
105
101
|
input?: `0x${string}` | undefined;
|
102
|
+
r?: `0x${string}` | undefined;
|
103
|
+
s?: `0x${string}` | undefined;
|
104
|
+
transactionIndex?: `0x${string}` | null | undefined;
|
105
|
+
v?: `0x${string}` | undefined;
|
106
106
|
chainId?: `0x${string}` | undefined;
|
107
107
|
} & import("../index.js").Omit<import("../../index.js").TransactionLegacy<`0x${string}`, `0x${string}`, boolean, "0x0">, "typeHex"> & {
|
108
108
|
isSystemTx?: undefined;
|
109
109
|
mint?: undefined;
|
110
110
|
sourceHash?: undefined;
|
111
111
|
}) | ({
|
112
|
-
|
113
|
-
gas?: `0x${string}` | undefined;
|
114
|
-
value?: `0x${string}` | undefined;
|
112
|
+
from?: `0x${string}` | undefined;
|
115
113
|
gasPrice?: `0x${string}` | undefined;
|
116
114
|
maxFeePerGas?: `0x${string}` | undefined;
|
117
115
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
118
|
-
|
116
|
+
gas?: `0x${string}` | undefined;
|
119
117
|
nonce?: `0x${string}` | undefined;
|
120
118
|
to?: `0x${string}` | null | undefined;
|
119
|
+
value?: `0x${string}` | undefined;
|
121
120
|
accessList?: import("../../index.js").AccessList | undefined;
|
122
|
-
|
123
|
-
s?: `0x${string}` | undefined;
|
124
|
-
v?: `0x${string}` | undefined;
|
125
|
-
hash?: `0x${string}` | undefined;
|
121
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
126
122
|
blockHash?: `0x${string}` | null | undefined;
|
127
123
|
blockNumber?: `0x${string}` | null | undefined;
|
128
|
-
|
124
|
+
hash?: `0x${string}` | undefined;
|
129
125
|
input?: `0x${string}` | undefined;
|
126
|
+
r?: `0x${string}` | undefined;
|
127
|
+
s?: `0x${string}` | undefined;
|
128
|
+
transactionIndex?: `0x${string}` | null | undefined;
|
129
|
+
v?: `0x${string}` | undefined;
|
130
130
|
chainId?: `0x${string}` | undefined;
|
131
131
|
} & import("../index.js").Omit<import("../../index.js").TransactionEIP2930<`0x${string}`, `0x${string}`, boolean, "0x1">, "typeHex"> & {
|
132
132
|
isSystemTx?: undefined;
|
133
133
|
mint?: undefined;
|
134
134
|
sourceHash?: undefined;
|
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").TransactionEIP1559<`0x${string}`, `0x${string}`, boolean, "0x2">, "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
|
} & Omit<import("../../index.js").TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & import("../../index.js").FeeValuesEIP1559<`0x${string}`> & {
|
180
180
|
isSystemTx?: boolean | undefined;
|
@@ -182,96 +182,96 @@ export declare const formatters: {
|
|
182
182
|
sourceHash: `0x${string}`;
|
183
183
|
type: "0x7e";
|
184
184
|
}) | ({
|
185
|
-
|
186
|
-
gas?: `0x${string}` | undefined;
|
187
|
-
value?: `0x${string}` | undefined;
|
185
|
+
from?: `0x${string}` | undefined;
|
188
186
|
gasPrice?: `0x${string}` | undefined;
|
189
187
|
maxFeePerGas?: `0x${string}` | undefined;
|
190
188
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
191
|
-
|
189
|
+
gas?: `0x${string}` | undefined;
|
192
190
|
nonce?: `0x${string}` | undefined;
|
193
191
|
to?: `0x${string}` | null | undefined;
|
192
|
+
value?: `0x${string}` | undefined;
|
194
193
|
accessList?: import("../../index.js").AccessList | undefined;
|
195
|
-
|
196
|
-
s?: `0x${string}` | undefined;
|
197
|
-
v?: `0x${string}` | undefined;
|
198
|
-
hash?: `0x${string}` | undefined;
|
194
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
199
195
|
blockHash?: `0x${string}` | null | undefined;
|
200
196
|
blockNumber?: `0x${string}` | null | undefined;
|
201
|
-
|
197
|
+
hash?: `0x${string}` | undefined;
|
202
198
|
input?: `0x${string}` | undefined;
|
199
|
+
r?: `0x${string}` | undefined;
|
200
|
+
s?: `0x${string}` | undefined;
|
201
|
+
transactionIndex?: `0x${string}` | null | undefined;
|
202
|
+
v?: `0x${string}` | undefined;
|
203
203
|
chainId?: `0x${string}` | undefined;
|
204
204
|
} & import("../index.js").Omit<import("../../index.js").TransactionLegacy<`0x${string}`, `0x${string}`, boolean, "0x0">, "typeHex"> & {
|
205
205
|
isSystemTx?: undefined;
|
206
206
|
mint?: undefined;
|
207
207
|
sourceHash?: undefined;
|
208
208
|
}) | ({
|
209
|
-
|
210
|
-
gas?: `0x${string}` | undefined;
|
211
|
-
value?: `0x${string}` | undefined;
|
209
|
+
from?: `0x${string}` | undefined;
|
212
210
|
gasPrice?: `0x${string}` | undefined;
|
213
211
|
maxFeePerGas?: `0x${string}` | undefined;
|
214
212
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
215
|
-
|
213
|
+
gas?: `0x${string}` | undefined;
|
216
214
|
nonce?: `0x${string}` | undefined;
|
217
215
|
to?: `0x${string}` | null | undefined;
|
216
|
+
value?: `0x${string}` | undefined;
|
218
217
|
accessList?: import("../../index.js").AccessList | undefined;
|
219
|
-
|
220
|
-
s?: `0x${string}` | undefined;
|
221
|
-
v?: `0x${string}` | undefined;
|
222
|
-
hash?: `0x${string}` | undefined;
|
218
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
223
219
|
blockHash?: `0x${string}` | null | undefined;
|
224
220
|
blockNumber?: `0x${string}` | null | undefined;
|
225
|
-
|
221
|
+
hash?: `0x${string}` | undefined;
|
226
222
|
input?: `0x${string}` | undefined;
|
223
|
+
r?: `0x${string}` | undefined;
|
224
|
+
s?: `0x${string}` | undefined;
|
225
|
+
transactionIndex?: `0x${string}` | null | undefined;
|
226
|
+
v?: `0x${string}` | undefined;
|
227
227
|
chainId?: `0x${string}` | undefined;
|
228
228
|
} & import("../index.js").Omit<import("../../index.js").TransactionEIP2930<`0x${string}`, `0x${string}`, boolean, "0x1">, "typeHex"> & {
|
229
229
|
isSystemTx?: undefined;
|
230
230
|
mint?: undefined;
|
231
231
|
sourceHash?: undefined;
|
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").TransactionEIP1559<`0x${string}`, `0x${string}`, boolean, "0x2">, "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
|
} & Omit<import("../../index.js").TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & import("../../index.js").FeeValuesEIP1559<`0x${string}`> & {
|
277
277
|
isSystemTx?: boolean | undefined;
|
@@ -7,7 +7,7 @@ export { estimateL1Gas, type EstimateL1GasErrorType, type EstimateL1GasParameter
|
|
7
7
|
export { estimateTotalFee, type EstimateTotalFeeErrorType, type EstimateTotalFeeParameters, type EstimateTotalFeeReturnType, } from './actions/estimateTotalFee.js';
|
8
8
|
export { estimateTotalGas, type EstimateTotalGasErrorType, type EstimateTotalGasParameters, type EstimateTotalGasReturnType, } from './actions/estimateTotalGas.js';
|
9
9
|
export { chainConfig } from './chainConfig.js';
|
10
|
-
export {
|
10
|
+
export { l2PublicActions } from './decorators/public.js';
|
11
11
|
export { base } from '../definitions/base.js';
|
12
12
|
export { baseGoerli } from '../definitions/baseGoerli.js';
|
13
13
|
export { baseSepolia } from '../definitions/baseSepolia.js';
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../chains/opStack/index.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,qBAAqB,EACrB,KAAK,8BAA8B,EACnC,KAAK,+BAA+B,EACpC,KAAK,+BAA+B,GACrC,MAAM,oCAAoC,CAAA;AAC3C,OAAO,EACL,qBAAqB,EACrB,KAAK,8BAA8B,EACnC,KAAK,+BAA+B,EACpC,KAAK,+BAA+B,GACrC,MAAM,oCAAoC,CAAA;AAC3C,OAAO,EACL,wBAAwB,EACxB,KAAK,iCAAiC,EACtC,KAAK,kCAAkC,EACvC,KAAK,kCAAkC,GACxC,MAAM,uCAAuC,CAAA;AAC9C,OAAO,EACL,wBAAwB,EACxB,KAAK,iCAAiC,EACtC,KAAK,kCAAkC,EACvC,KAAK,kCAAkC,GACxC,MAAM,uCAAuC,CAAA;AAC9C,OAAO,EACL,aAAa,EACb,KAAK,sBAAsB,EAC3B,KAAK,uBAAuB,EAC5B,KAAK,uBAAuB,GAC7B,MAAM,4BAA4B,CAAA;AACnC,OAAO,EACL,aAAa,EACb,KAAK,sBAAsB,EAC3B,KAAK,uBAAuB,EAC5B,KAAK,uBAAuB,GAC7B,MAAM,4BAA4B,CAAA;AACnC,OAAO,EACL,gBAAgB,EAChB,KAAK,yBAAyB,EAC9B,KAAK,0BAA0B,EAC/B,KAAK,0BAA0B,GAChC,MAAM,+BAA+B,CAAA;AACtC,OAAO,EACL,gBAAgB,EAChB,KAAK,yBAAyB,EAC9B,KAAK,0BAA0B,EAC/B,KAAK,0BAA0B,GAChC,MAAM,+BAA+B,CAAA;AAEtC,OAAO,EAAE,WAAW,EAAE,MAAM,kBAAkB,CAAA;AAE9C,OAAO,EAAE,
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../chains/opStack/index.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,qBAAqB,EACrB,KAAK,8BAA8B,EACnC,KAAK,+BAA+B,EACpC,KAAK,+BAA+B,GACrC,MAAM,oCAAoC,CAAA;AAC3C,OAAO,EACL,qBAAqB,EACrB,KAAK,8BAA8B,EACnC,KAAK,+BAA+B,EACpC,KAAK,+BAA+B,GACrC,MAAM,oCAAoC,CAAA;AAC3C,OAAO,EACL,wBAAwB,EACxB,KAAK,iCAAiC,EACtC,KAAK,kCAAkC,EACvC,KAAK,kCAAkC,GACxC,MAAM,uCAAuC,CAAA;AAC9C,OAAO,EACL,wBAAwB,EACxB,KAAK,iCAAiC,EACtC,KAAK,kCAAkC,EACvC,KAAK,kCAAkC,GACxC,MAAM,uCAAuC,CAAA;AAC9C,OAAO,EACL,aAAa,EACb,KAAK,sBAAsB,EAC3B,KAAK,uBAAuB,EAC5B,KAAK,uBAAuB,GAC7B,MAAM,4BAA4B,CAAA;AACnC,OAAO,EACL,aAAa,EACb,KAAK,sBAAsB,EAC3B,KAAK,uBAAuB,EAC5B,KAAK,uBAAuB,GAC7B,MAAM,4BAA4B,CAAA;AACnC,OAAO,EACL,gBAAgB,EAChB,KAAK,yBAAyB,EAC9B,KAAK,0BAA0B,EAC/B,KAAK,0BAA0B,GAChC,MAAM,+BAA+B,CAAA;AACtC,OAAO,EACL,gBAAgB,EAChB,KAAK,yBAAyB,EAC9B,KAAK,0BAA0B,EAC/B,KAAK,0BAA0B,GAChC,MAAM,+BAA+B,CAAA;AAEtC,OAAO,EAAE,WAAW,EAAE,MAAM,kBAAkB,CAAA;AAE9C,OAAO,EAAE,eAAe,EAAE,MAAM,wBAAwB,CAAA;AAExD,OAAO,EAAE,IAAI,EAAE,MAAM,wBAAwB,CAAA;AAC7C,OAAO,EAAE,UAAU,EAAE,MAAM,8BAA8B,CAAA;AACzD,OAAO,EAAE,WAAW,EAAE,MAAM,+BAA+B,CAAA;AAC3D,OAAO,EAAE,QAAQ,EAAE,MAAM,4BAA4B,CAAA;AACrD,OAAO,EAAE,cAAc,EAAE,MAAM,kCAAkC,CAAA;AACjE,OAAO,EAAE,eAAe,EAAE,MAAM,mCAAmC,CAAA;AACnE,OAAO,EAAE,IAAI,EAAE,MAAM,wBAAwB,CAAA;AAC7C,OAAO,EAAE,WAAW,EAAE,MAAM,+BAA+B,CAAA;AAC3D,OAAO,EAAE,WAAW,EAAE,MAAM,+BAA+B,CAAA;AAE3D,YAAY,EACV,YAAY,EACZ,qBAAqB,EACrB,yBAAyB,EACzB,eAAe,EACf,wBAAwB,EACxB,4BAA4B,EAC5B,qBAAqB,EACrB,4BAA4B,EAC5B,qCAAqC,EACrC,kBAAkB,EAClB,yBAAyB,EACzB,kCAAkC,GACnC,MAAM,YAAY,CAAA"}
|
@@ -1,2 +1,2 @@
|
|
1
|
-
export declare const version = "2.0.0-beta.
|
1
|
+
export declare const version = "2.0.0-beta.4";
|
2
2
|
//# sourceMappingURL=version.d.ts.map
|
@@ -22,7 +22,7 @@ export declare const transactionType: {
|
|
22
22
|
export type FormatTransactionErrorType = ErrorType;
|
23
23
|
export declare function formatTransaction(transaction: Partial<RpcTransaction>): Transaction;
|
24
24
|
export type DefineTransactionErrorType = DefineFormatterErrorType | ErrorType;
|
25
|
-
export declare const defineTransaction: <TOverrideParameters, TOverrideReturnType, TExclude extends ("
|
25
|
+
export declare const defineTransaction: <TOverrideParameters, TOverrideReturnType, TExclude extends ("from" | "gasPrice" | "maxFeePerGas" | "maxPriorityFeePerGas" | "gas" | "nonce" | "to" | "value" | "accessList" | "type" | "blockHash" | "blockNumber" | "hash" | "input" | "r" | "s" | "transactionIndex" | "v" | "chainId" | keyof TOverrideParameters)[] = []>({ exclude, format: overrides, }: {
|
26
26
|
exclude?: TExclude | undefined;
|
27
27
|
format: (_: TOverrideParameters) => TOverrideReturnType;
|
28
28
|
}) => {
|
@@ -12,7 +12,7 @@ export declare const rpcTransactionType: {
|
|
12
12
|
export type FormatTransactionRequestErrorType = ErrorType;
|
13
13
|
export declare function formatTransactionRequest(transactionRequest: Partial<TransactionRequest>): RpcTransactionRequest;
|
14
14
|
export type DefineTransactionRequestErrorType = DefineFormatterErrorType | ErrorType;
|
15
|
-
export declare const defineTransactionRequest: <TOverrideParameters, TOverrideReturnType, TExclude extends ("
|
15
|
+
export declare const defineTransactionRequest: <TOverrideParameters, TOverrideReturnType, TExclude extends ("from" | "gasPrice" | "maxFeePerGas" | "maxPriorityFeePerGas" | "data" | "gas" | "nonce" | "to" | "value" | "accessList" | "type" | keyof TOverrideParameters)[] = []>({ exclude, format: overrides, }: {
|
16
16
|
exclude?: TExclude | undefined;
|
17
17
|
format: (_: TOverrideParameters) => TOverrideReturnType;
|
18
18
|
}) => {
|
@@ -48,7 +48,7 @@ import {
|
|
48
48
|
estimateTotalGas,
|
49
49
|
} from '../actions/estimateTotalGas.js'
|
50
50
|
|
51
|
-
export type
|
51
|
+
export type l2PublicActions<
|
52
52
|
chain extends Chain | undefined = Chain | undefined,
|
53
53
|
account extends Account | undefined = Account | undefined,
|
54
54
|
> = {
|
@@ -62,12 +62,12 @@ export type OpStackPublicActions<
|
|
62
62
|
* @example
|
63
63
|
* import { createPublicClient, http, parseAbi } from 'viem'
|
64
64
|
* import { optimism } from 'viem/chains'
|
65
|
-
* import {
|
65
|
+
* import { l2PublicActions } from 'viem/op-stack'
|
66
66
|
*
|
67
67
|
* const client = createPublicClient({
|
68
68
|
* chain: optimism,
|
69
69
|
* transport: http(),
|
70
|
-
* }).extend(
|
70
|
+
* }).extend(l2PublicActions())
|
71
71
|
*
|
72
72
|
* const l1Fee = await client.estimateContractL1Fee({
|
73
73
|
* address: '0xFBA3912Ca04dd458c843e2EE08967fC04f3579c2',
|
@@ -101,12 +101,12 @@ export type OpStackPublicActions<
|
|
101
101
|
* @example
|
102
102
|
* import { createPublicClient, http, parseAbi } from 'viem'
|
103
103
|
* import { optimism } from 'viem/chains'
|
104
|
-
* import {
|
104
|
+
* import { l2PublicActions } from 'viem/op-stack'
|
105
105
|
*
|
106
106
|
* const client = createPublicClient({
|
107
107
|
* chain: optimism,
|
108
108
|
* transport: http(),
|
109
|
-
* }).extend(
|
109
|
+
* }).extend(l2PublicActions())
|
110
110
|
*
|
111
111
|
* const l1Gas = await client.estimateContractL1Gas({
|
112
112
|
* address: '0xFBA3912Ca04dd458c843e2EE08967fC04f3579c2',
|
@@ -140,12 +140,12 @@ export type OpStackPublicActions<
|
|
140
140
|
* @example
|
141
141
|
* import { createPublicClient, http, parseAbi } from 'viem'
|
142
142
|
* import { optimism } from 'viem/chains'
|
143
|
-
* import {
|
143
|
+
* import { l2PublicActions } from 'viem/op-stack'
|
144
144
|
*
|
145
145
|
* const client = createPublicClient({
|
146
146
|
* chain: optimism,
|
147
147
|
* transport: http(),
|
148
|
-
* }).extend(
|
148
|
+
* }).extend(l2PublicActions())
|
149
149
|
*
|
150
150
|
* const totalFee = await client.estimateContractTotalFee({
|
151
151
|
* address: '0xFBA3912Ca04dd458c843e2EE08967fC04f3579c2',
|
@@ -179,12 +179,12 @@ export type OpStackPublicActions<
|
|
179
179
|
* @example
|
180
180
|
* import { createPublicClient, http, parseAbi } from 'viem'
|
181
181
|
* import { optimism } from 'viem/chains'
|
182
|
-
* import {
|
182
|
+
* import { l2PublicActions } from 'viem/op-stack'
|
183
183
|
*
|
184
184
|
* const client = createPublicClient({
|
185
185
|
* chain: optimism,
|
186
186
|
* transport: http(),
|
187
|
-
* }).extend(
|
187
|
+
* }).extend(l2PublicActions())
|
188
188
|
*
|
189
189
|
* const totalGas = await client.estimateContractTotalGas({
|
190
190
|
* address: '0xFBA3912Ca04dd458c843e2EE08967fC04f3579c2',
|
@@ -218,12 +218,12 @@ export type OpStackPublicActions<
|
|
218
218
|
* @example
|
219
219
|
* import { createPublicClient, http, parseEther } from 'viem'
|
220
220
|
* import { optimism } from 'viem/chains'
|
221
|
-
* import {
|
221
|
+
* import { l2PublicActions } from 'viem/op-stack'
|
222
222
|
*
|
223
223
|
* const client = createPublicClient({
|
224
224
|
* chain: optimism,
|
225
225
|
* transport: http(),
|
226
|
-
* }).extend(
|
226
|
+
* }).extend(l2PublicActions())
|
227
227
|
*
|
228
228
|
* const l1Fee = await client.estimateL1Fee({
|
229
229
|
* account: '0xA0Cf798816D4b9b9866b5330EEa46a18382f251e',
|
@@ -244,12 +244,12 @@ export type OpStackPublicActions<
|
|
244
244
|
* @example
|
245
245
|
* import { createPublicClient, http, parseEther } from 'viem'
|
246
246
|
* import { optimism } from 'viem/chains'
|
247
|
-
* import {
|
247
|
+
* import { l2PublicActions } from 'viem/op-stack'
|
248
248
|
*
|
249
249
|
* const client = createPublicClient({
|
250
250
|
* chain: optimism,
|
251
251
|
* transport: http(),
|
252
|
-
* }).extend(
|
252
|
+
* }).extend(l2PublicActions())
|
253
253
|
*
|
254
254
|
* const l1Gas = await client.estimateL1Gas({
|
255
255
|
* account: '0xA0Cf798816D4b9b9866b5330EEa46a18382f251e',
|
@@ -270,12 +270,12 @@ export type OpStackPublicActions<
|
|
270
270
|
* @example
|
271
271
|
* import { createPublicClient, http, parseEther } from 'viem'
|
272
272
|
* import { optimism } from 'viem/chains'
|
273
|
-
* import {
|
273
|
+
* import { l2PublicActions } from 'viem/op-stack'
|
274
274
|
*
|
275
275
|
* const client = createPublicClient({
|
276
276
|
* chain: optimism,
|
277
277
|
* transport: http(),
|
278
|
-
* }).extend(
|
278
|
+
* }).extend(l2PublicActions())
|
279
279
|
*
|
280
280
|
* const totalFee = await client.estimateTotalFee({
|
281
281
|
* account: '0xA0Cf798816D4b9b9866b5330EEa46a18382f251e',
|
@@ -296,12 +296,12 @@ export type OpStackPublicActions<
|
|
296
296
|
* @example
|
297
297
|
* import { createPublicClient, http, parseEther } from 'viem'
|
298
298
|
* import { optimism } from 'viem/chains'
|
299
|
-
* import {
|
299
|
+
* import { l2PublicActions } from 'viem/op-stack'
|
300
300
|
*
|
301
301
|
* const client = createPublicClient({
|
302
302
|
* chain: optimism,
|
303
303
|
* transport: http(),
|
304
|
-
* }).extend(
|
304
|
+
* }).extend(l2PublicActions())
|
305
305
|
*
|
306
306
|
* const totalGas = await client.estimateTotalGas({
|
307
307
|
* account: '0xA0Cf798816D4b9b9866b5330EEa46a18382f251e',
|
@@ -314,13 +314,13 @@ export type OpStackPublicActions<
|
|
314
314
|
) => Promise<EstimateTotalGasReturnType>
|
315
315
|
}
|
316
316
|
|
317
|
-
export function
|
317
|
+
export function l2PublicActions() {
|
318
318
|
return <
|
319
319
|
TChain extends Chain | undefined = Chain | undefined,
|
320
320
|
TAccount extends Account | undefined = Account | undefined,
|
321
321
|
>(
|
322
322
|
client: Client<Transport, TChain, TAccount>,
|
323
|
-
):
|
323
|
+
): l2PublicActions<TChain, TAccount> => {
|
324
324
|
return {
|
325
325
|
estimateContractL1Fee: (args) => estimateContractL1Fee(client, args),
|
326
326
|
estimateContractL1Gas: (args) => estimateContractL1Gas(client, args),
|
package/chains/opStack/index.ts
CHANGED
@@ -49,7 +49,7 @@ export {
|
|
49
49
|
|
50
50
|
export { chainConfig } from './chainConfig.js'
|
51
51
|
|
52
|
-
export {
|
52
|
+
export { l2PublicActions } from './decorators/public.js'
|
53
53
|
|
54
54
|
export { base } from '../definitions/base.js'
|
55
55
|
export { baseGoerli } from '../definitions/baseGoerli.js'
|
package/errors/version.ts
CHANGED
@@ -1 +1 @@
|
|
1
|
-
export const version = '2.0.0-beta.
|
1
|
+
export const version = '2.0.0-beta.4'
|