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
@@ -55,48 +55,48 @@ export declare const chainConfig: {
|
|
55
55
|
readonly transaction: {
|
56
56
|
exclude: [] | undefined;
|
57
57
|
format: (args: ({
|
58
|
-
|
59
|
-
gas?: `0x${string}` | undefined;
|
60
|
-
value?: `0x${string}` | undefined;
|
58
|
+
from?: `0x${string}` | undefined;
|
61
59
|
gasPrice?: `0x${string}` | undefined;
|
62
60
|
maxFeePerGas?: `0x${string}` | undefined;
|
63
61
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
64
|
-
|
62
|
+
gas?: `0x${string}` | undefined;
|
65
63
|
nonce?: `0x${string}` | undefined;
|
66
64
|
to?: `0x${string}` | null | undefined;
|
65
|
+
value?: `0x${string}` | undefined;
|
67
66
|
accessList?: undefined;
|
68
|
-
|
69
|
-
s?: `0x${string}` | undefined;
|
70
|
-
v?: `0x${string}` | undefined;
|
71
|
-
hash?: `0x${string}` | undefined;
|
67
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
72
68
|
blockHash?: `0x${string}` | null | undefined;
|
73
69
|
blockNumber?: `0x${string}` | null | undefined;
|
74
|
-
|
70
|
+
hash?: `0x${string}` | undefined;
|
75
71
|
input?: `0x${string}` | undefined;
|
72
|
+
r?: `0x${string}` | undefined;
|
73
|
+
s?: `0x${string}` | undefined;
|
74
|
+
transactionIndex?: `0x${string}` | null | undefined;
|
75
|
+
v?: `0x${string}` | undefined;
|
76
76
|
chainId?: `0x${string}` | undefined;
|
77
77
|
} & import("../index.js").Omit<import("../../index.js").TransactionLegacy<`0x${string}`, `0x${string}`, boolean, "0x0">, "typeHex"> & {
|
78
78
|
isSystemTx?: undefined;
|
79
79
|
mint?: undefined;
|
80
80
|
sourceHash?: undefined;
|
81
81
|
}) | ({
|
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
|
} & Omit<import("../../index.js").TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & import("../../index.js").FeeValuesEIP1559<`0x${string}`> & {
|
102
102
|
isSystemTx?: boolean | undefined;
|
@@ -104,96 +104,96 @@ export declare const chainConfig: {
|
|
104
104
|
sourceHash: `0x${string}`;
|
105
105
|
type: "0x7e";
|
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?: import("../../index.js").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
|
} & import("../index.js").Omit<import("../../index.js").TransactionLegacy<`0x${string}`, `0x${string}`, boolean, "0x0">, "typeHex"> & {
|
127
127
|
isSystemTx?: undefined;
|
128
128
|
mint?: undefined;
|
129
129
|
sourceHash?: undefined;
|
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").TransactionEIP2930<`0x${string}`, `0x${string}`, boolean, "0x1">, "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").TransactionEIP1559<`0x${string}`, `0x${string}`, boolean, "0x2">, "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
|
} & Omit<import("../../index.js").TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & import("../../index.js").FeeValuesEIP1559<`0x${string}`> & {
|
199
199
|
isSystemTx?: boolean | undefined;
|
@@ -201,96 +201,96 @@ export declare const chainConfig: {
|
|
201
201
|
sourceHash: `0x${string}`;
|
202
202
|
type: "0x7e";
|
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
|
} & import("../index.js").Omit<import("../../index.js").TransactionLegacy<`0x${string}`, `0x${string}`, boolean, "0x0">, "typeHex"> & {
|
224
224
|
isSystemTx?: undefined;
|
225
225
|
mint?: undefined;
|
226
226
|
sourceHash?: undefined;
|
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").TransactionEIP2930<`0x${string}`, `0x${string}`, boolean, "0x1">, "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").TransactionEIP1559<`0x${string}`, `0x${string}`, boolean, "0x2">, "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
|
} & Omit<import("../../index.js").TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & import("../../index.js").FeeValuesEIP1559<`0x${string}`> & {
|
296
296
|
isSystemTx?: boolean | undefined;
|
@@ -12,7 +12,7 @@ import { type EstimateL1FeeParameters, type EstimateL1FeeReturnType } from '../a
|
|
12
12
|
import { type EstimateL1GasParameters, type EstimateL1GasReturnType } from '../actions/estimateL1Gas.js';
|
13
13
|
import { type EstimateTotalFeeParameters, type EstimateTotalFeeReturnType } from '../actions/estimateTotalFee.js';
|
14
14
|
import { type EstimateTotalGasParameters, type EstimateTotalGasReturnType } from '../actions/estimateTotalGas.js';
|
15
|
-
export type
|
15
|
+
export type l2PublicActions<chain extends Chain | undefined = Chain | undefined, account extends Account | undefined = Account | undefined> = {
|
16
16
|
/**
|
17
17
|
* Estimates the L1 data fee required to execute an L2 contract write.
|
18
18
|
*
|
@@ -23,12 +23,12 @@ export type OpStackPublicActions<chain extends Chain | undefined = Chain | undef
|
|
23
23
|
* @example
|
24
24
|
* import { createPublicClient, http, parseAbi } from 'viem'
|
25
25
|
* import { optimism } from 'viem/chains'
|
26
|
-
* import {
|
26
|
+
* import { l2PublicActions } from 'viem/op-stack'
|
27
27
|
*
|
28
28
|
* const client = createPublicClient({
|
29
29
|
* chain: optimism,
|
30
30
|
* transport: http(),
|
31
|
-
* }).extend(
|
31
|
+
* }).extend(l2PublicActions())
|
32
32
|
*
|
33
33
|
* const l1Fee = await client.estimateContractL1Fee({
|
34
34
|
* address: '0xFBA3912Ca04dd458c843e2EE08967fC04f3579c2',
|
@@ -48,12 +48,12 @@ export type OpStackPublicActions<chain extends Chain | undefined = Chain | undef
|
|
48
48
|
* @example
|
49
49
|
* import { createPublicClient, http, parseAbi } from 'viem'
|
50
50
|
* import { optimism } from 'viem/chains'
|
51
|
-
* import {
|
51
|
+
* import { l2PublicActions } from 'viem/op-stack'
|
52
52
|
*
|
53
53
|
* const client = createPublicClient({
|
54
54
|
* chain: optimism,
|
55
55
|
* transport: http(),
|
56
|
-
* }).extend(
|
56
|
+
* }).extend(l2PublicActions())
|
57
57
|
*
|
58
58
|
* const l1Gas = await client.estimateContractL1Gas({
|
59
59
|
* address: '0xFBA3912Ca04dd458c843e2EE08967fC04f3579c2',
|
@@ -73,12 +73,12 @@ export type OpStackPublicActions<chain extends Chain | undefined = Chain | undef
|
|
73
73
|
* @example
|
74
74
|
* import { createPublicClient, http, parseAbi } from 'viem'
|
75
75
|
* import { optimism } from 'viem/chains'
|
76
|
-
* import {
|
76
|
+
* import { l2PublicActions } from 'viem/op-stack'
|
77
77
|
*
|
78
78
|
* const client = createPublicClient({
|
79
79
|
* chain: optimism,
|
80
80
|
* transport: http(),
|
81
|
-
* }).extend(
|
81
|
+
* }).extend(l2PublicActions())
|
82
82
|
*
|
83
83
|
* const totalFee = await client.estimateContractTotalFee({
|
84
84
|
* address: '0xFBA3912Ca04dd458c843e2EE08967fC04f3579c2',
|
@@ -98,12 +98,12 @@ export type OpStackPublicActions<chain extends Chain | undefined = Chain | undef
|
|
98
98
|
* @example
|
99
99
|
* import { createPublicClient, http, parseAbi } from 'viem'
|
100
100
|
* import { optimism } from 'viem/chains'
|
101
|
-
* import {
|
101
|
+
* import { l2PublicActions } from 'viem/op-stack'
|
102
102
|
*
|
103
103
|
* const client = createPublicClient({
|
104
104
|
* chain: optimism,
|
105
105
|
* transport: http(),
|
106
|
-
* }).extend(
|
106
|
+
* }).extend(l2PublicActions())
|
107
107
|
*
|
108
108
|
* const totalGas = await client.estimateContractTotalGas({
|
109
109
|
* address: '0xFBA3912Ca04dd458c843e2EE08967fC04f3579c2',
|
@@ -123,12 +123,12 @@ export type OpStackPublicActions<chain extends Chain | undefined = Chain | undef
|
|
123
123
|
* @example
|
124
124
|
* import { createPublicClient, http, parseEther } from 'viem'
|
125
125
|
* import { optimism } from 'viem/chains'
|
126
|
-
* import {
|
126
|
+
* import { l2PublicActions } from 'viem/op-stack'
|
127
127
|
*
|
128
128
|
* const client = createPublicClient({
|
129
129
|
* chain: optimism,
|
130
130
|
* transport: http(),
|
131
|
-
* }).extend(
|
131
|
+
* }).extend(l2PublicActions())
|
132
132
|
*
|
133
133
|
* const l1Fee = await client.estimateL1Fee({
|
134
134
|
* account: '0xA0Cf798816D4b9b9866b5330EEa46a18382f251e',
|
@@ -147,12 +147,12 @@ export type OpStackPublicActions<chain extends Chain | undefined = Chain | undef
|
|
147
147
|
* @example
|
148
148
|
* import { createPublicClient, http, parseEther } from 'viem'
|
149
149
|
* import { optimism } from 'viem/chains'
|
150
|
-
* import {
|
150
|
+
* import { l2PublicActions } from 'viem/op-stack'
|
151
151
|
*
|
152
152
|
* const client = createPublicClient({
|
153
153
|
* chain: optimism,
|
154
154
|
* transport: http(),
|
155
|
-
* }).extend(
|
155
|
+
* }).extend(l2PublicActions())
|
156
156
|
*
|
157
157
|
* const l1Gas = await client.estimateL1Gas({
|
158
158
|
* account: '0xA0Cf798816D4b9b9866b5330EEa46a18382f251e',
|
@@ -171,12 +171,12 @@ export type OpStackPublicActions<chain extends Chain | undefined = Chain | undef
|
|
171
171
|
* @example
|
172
172
|
* import { createPublicClient, http, parseEther } from 'viem'
|
173
173
|
* import { optimism } from 'viem/chains'
|
174
|
-
* import {
|
174
|
+
* import { l2PublicActions } from 'viem/op-stack'
|
175
175
|
*
|
176
176
|
* const client = createPublicClient({
|
177
177
|
* chain: optimism,
|
178
178
|
* transport: http(),
|
179
|
-
* }).extend(
|
179
|
+
* }).extend(l2PublicActions())
|
180
180
|
*
|
181
181
|
* const totalFee = await client.estimateTotalFee({
|
182
182
|
* account: '0xA0Cf798816D4b9b9866b5330EEa46a18382f251e',
|
@@ -195,12 +195,12 @@ export type OpStackPublicActions<chain extends Chain | undefined = Chain | undef
|
|
195
195
|
* @example
|
196
196
|
* import { createPublicClient, http, parseEther } from 'viem'
|
197
197
|
* import { optimism } from 'viem/chains'
|
198
|
-
* import {
|
198
|
+
* import { l2PublicActions } from 'viem/op-stack'
|
199
199
|
*
|
200
200
|
* const client = createPublicClient({
|
201
201
|
* chain: optimism,
|
202
202
|
* transport: http(),
|
203
|
-
* }).extend(
|
203
|
+
* }).extend(l2PublicActions())
|
204
204
|
*
|
205
205
|
* const totalGas = await client.estimateTotalGas({
|
206
206
|
* account: '0xA0Cf798816D4b9b9866b5330EEa46a18382f251e',
|
@@ -210,5 +210,5 @@ export type OpStackPublicActions<chain extends Chain | undefined = Chain | undef
|
|
210
210
|
*/
|
211
211
|
estimateTotalGas: <chainOverride extends Chain | undefined = undefined>(parameters: EstimateTotalGasParameters<chain, account, chainOverride>) => Promise<EstimateTotalGasReturnType>;
|
212
212
|
};
|
213
|
-
export declare function
|
213
|
+
export declare function l2PublicActions(): <TChain extends Chain | undefined = Chain | undefined, TAccount extends Account | undefined = Account | undefined>(client: Client<Transport, TChain, TAccount>) => l2PublicActions<TChain, TAccount>;
|
214
214
|
//# sourceMappingURL=public.d.ts.map
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"public.d.ts","sourceRoot":"","sources":["../../../../chains/opStack/decorators/public.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,GAAG,EAAE,MAAM,SAAS,CAAA;AAClC,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,kCAAkC,CAAA;AAC9D,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,gDAAgD,CAAA;AAC/E,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,2BAA2B,CAAA;AACxD,OAAO,KAAK,EAAE,KAAK,EAAE,MAAM,yBAAyB,CAAA;AACpD,OAAO,KAAK,EACV,oBAAoB,EACpB,oBAAoB,EACrB,MAAM,4BAA4B,CAAA;AACnC,OAAO,EACL,KAAK,+BAA+B,EACpC,KAAK,+BAA+B,EAErC,MAAM,qCAAqC,CAAA;AAC5C,OAAO,EACL,KAAK,+BAA+B,EACpC,KAAK,+BAA+B,EAErC,MAAM,qCAAqC,CAAA;AAC5C,OAAO,EACL,KAAK,kCAAkC,EACvC,KAAK,kCAAkC,EAExC,MAAM,wCAAwC,CAAA;AAC/C,OAAO,EACL,KAAK,kCAAkC,EACvC,KAAK,kCAAkC,EAExC,MAAM,wCAAwC,CAAA;AAC/C,OAAO,EACL,KAAK,uBAAuB,EAC5B,KAAK,uBAAuB,EAE7B,MAAM,6BAA6B,CAAA;AACpC,OAAO,EACL,KAAK,uBAAuB,EAC5B,KAAK,uBAAuB,EAE7B,MAAM,6BAA6B,CAAA;AACpC,OAAO,EACL,KAAK,0BAA0B,EAC/B,KAAK,0BAA0B,EAEhC,MAAM,gCAAgC,CAAA;AACvC,OAAO,EACL,KAAK,0BAA0B,EAC/B,KAAK,0BAA0B,EAEhC,MAAM,gCAAgC,CAAA;AAEvC,MAAM,MAAM,
|
1
|
+
{"version":3,"file":"public.d.ts","sourceRoot":"","sources":["../../../../chains/opStack/decorators/public.ts"],"names":[],"mappings":"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"}
|