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
@@ -71,48 +71,48 @@ export declare const celo: {
|
|
71
71
|
readonly transaction: {
|
72
72
|
exclude: [] | undefined;
|
73
73
|
format: (args: ({
|
74
|
-
|
75
|
-
gas?: `0x${string}` | undefined;
|
76
|
-
value?: `0x${string}` | undefined;
|
74
|
+
from?: `0x${string}` | undefined;
|
77
75
|
gasPrice?: `0x${string}` | undefined;
|
78
76
|
maxFeePerGas?: `0x${string}` | undefined;
|
79
77
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
80
|
-
|
78
|
+
gas?: `0x${string}` | undefined;
|
81
79
|
nonce?: `0x${string}` | undefined;
|
82
80
|
to?: `0x${string}` | null | undefined;
|
81
|
+
value?: `0x${string}` | undefined;
|
83
82
|
accessList?: undefined;
|
84
|
-
|
85
|
-
s?: `0x${string}` | undefined;
|
86
|
-
v?: `0x${string}` | undefined;
|
87
|
-
hash?: `0x${string}` | undefined;
|
83
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7c" | "0x7b" | undefined;
|
88
84
|
blockHash?: `0x${string}` | null | undefined;
|
89
85
|
blockNumber?: `0x${string}` | null | undefined;
|
90
|
-
|
86
|
+
hash?: `0x${string}` | undefined;
|
91
87
|
input?: `0x${string}` | undefined;
|
88
|
+
r?: `0x${string}` | undefined;
|
89
|
+
s?: `0x${string}` | undefined;
|
90
|
+
transactionIndex?: `0x${string}` | null | undefined;
|
91
|
+
v?: `0x${string}` | undefined;
|
92
92
|
chainId?: `0x${string}` | undefined;
|
93
93
|
} & import("../index.js").Omit<import("../../index.js").TransactionLegacy<`0x${string}`, `0x${string}`, boolean, "0x0">, "typeHex"> & {
|
94
94
|
feeCurrency: `0x${string}` | null;
|
95
95
|
gatewayFee: `0x${string}` | null;
|
96
96
|
gatewayFeeRecipient: `0x${string}` | null;
|
97
97
|
}) | ({
|
98
|
-
|
99
|
-
gas?: `0x${string}` | undefined;
|
100
|
-
value?: `0x${string}` | undefined;
|
98
|
+
from?: `0x${string}` | undefined;
|
101
99
|
gasPrice?: `0x${string}` | undefined;
|
102
100
|
maxFeePerGas?: `0x${string}` | undefined;
|
103
101
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
104
|
-
|
102
|
+
gas?: `0x${string}` | undefined;
|
105
103
|
nonce?: `0x${string}` | undefined;
|
106
104
|
to?: `0x${string}` | null | undefined;
|
105
|
+
value?: `0x${string}` | undefined;
|
107
106
|
accessList?: undefined;
|
108
|
-
|
109
|
-
s?: `0x${string}` | undefined;
|
110
|
-
v?: `0x${string}` | undefined;
|
111
|
-
hash?: `0x${string}` | undefined;
|
107
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7c" | "0x7b" | undefined;
|
112
108
|
blockHash?: `0x${string}` | null | undefined;
|
113
109
|
blockNumber?: `0x${string}` | null | undefined;
|
114
|
-
|
110
|
+
hash?: `0x${string}` | undefined;
|
115
111
|
input?: `0x${string}` | undefined;
|
112
|
+
r?: `0x${string}` | undefined;
|
113
|
+
s?: `0x${string}` | undefined;
|
114
|
+
transactionIndex?: `0x${string}` | null | undefined;
|
115
|
+
v?: `0x${string}` | undefined;
|
116
116
|
chainId?: `0x${string}` | undefined;
|
117
117
|
} & Omit<import("../../index.js").TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & import("../../index.js").FeeValuesEIP1559<`0x${string}`> & {
|
118
118
|
feeCurrency: `0x${string}` | null;
|
@@ -120,119 +120,119 @@ export declare const celo: {
|
|
120
120
|
gatewayFeeRecipient: `0x${string}` | null;
|
121
121
|
type: "0x7c";
|
122
122
|
}) | ({
|
123
|
-
|
124
|
-
gas?: `0x${string}` | undefined;
|
125
|
-
value?: `0x${string}` | undefined;
|
123
|
+
from?: `0x${string}` | undefined;
|
126
124
|
gasPrice?: `0x${string}` | undefined;
|
127
125
|
maxFeePerGas?: `0x${string}` | undefined;
|
128
126
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
129
|
-
|
127
|
+
gas?: `0x${string}` | undefined;
|
130
128
|
nonce?: `0x${string}` | undefined;
|
131
129
|
to?: `0x${string}` | null | undefined;
|
130
|
+
value?: `0x${string}` | undefined;
|
132
131
|
accessList?: undefined;
|
133
|
-
|
134
|
-
s?: `0x${string}` | undefined;
|
135
|
-
v?: `0x${string}` | undefined;
|
136
|
-
hash?: `0x${string}` | undefined;
|
132
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7c" | "0x7b" | undefined;
|
137
133
|
blockHash?: `0x${string}` | null | undefined;
|
138
134
|
blockNumber?: `0x${string}` | null | undefined;
|
139
|
-
|
135
|
+
hash?: `0x${string}` | undefined;
|
140
136
|
input?: `0x${string}` | undefined;
|
137
|
+
r?: `0x${string}` | undefined;
|
138
|
+
s?: `0x${string}` | undefined;
|
139
|
+
transactionIndex?: `0x${string}` | null | undefined;
|
140
|
+
v?: `0x${string}` | undefined;
|
141
141
|
chainId?: `0x${string}` | undefined;
|
142
142
|
} & Omit<import("../../index.js").TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & import("../../index.js").FeeValuesEIP1559<`0x${string}`> & {
|
143
143
|
feeCurrency: `0x${string}` | null;
|
144
144
|
type: "0x7b";
|
145
145
|
}) | ({
|
146
|
-
|
147
|
-
gas?: `0x${string}` | undefined;
|
148
|
-
value?: `0x${string}` | undefined;
|
146
|
+
from?: `0x${string}` | undefined;
|
149
147
|
gasPrice?: `0x${string}` | undefined;
|
150
148
|
maxFeePerGas?: `0x${string}` | undefined;
|
151
149
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
152
|
-
|
150
|
+
gas?: `0x${string}` | undefined;
|
153
151
|
nonce?: `0x${string}` | undefined;
|
154
152
|
to?: `0x${string}` | null | undefined;
|
153
|
+
value?: `0x${string}` | undefined;
|
155
154
|
accessList?: import("../../index.js").AccessList | undefined;
|
156
|
-
|
157
|
-
s?: `0x${string}` | undefined;
|
158
|
-
v?: `0x${string}` | undefined;
|
159
|
-
hash?: `0x${string}` | undefined;
|
155
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7c" | "0x7b" | undefined;
|
160
156
|
blockHash?: `0x${string}` | null | undefined;
|
161
157
|
blockNumber?: `0x${string}` | null | undefined;
|
162
|
-
|
158
|
+
hash?: `0x${string}` | undefined;
|
163
159
|
input?: `0x${string}` | undefined;
|
160
|
+
r?: `0x${string}` | undefined;
|
161
|
+
s?: `0x${string}` | undefined;
|
162
|
+
transactionIndex?: `0x${string}` | null | undefined;
|
163
|
+
v?: `0x${string}` | undefined;
|
164
164
|
chainId?: `0x${string}` | undefined;
|
165
165
|
} & import("../index.js").Omit<import("../../index.js").TransactionLegacy<`0x${string}`, `0x${string}`, boolean, "0x0">, "typeHex"> & {
|
166
166
|
feeCurrency: `0x${string}` | null;
|
167
167
|
gatewayFee: `0x${string}` | null;
|
168
168
|
gatewayFeeRecipient: `0x${string}` | null;
|
169
169
|
}) | ({
|
170
|
-
|
171
|
-
gas?: `0x${string}` | undefined;
|
172
|
-
value?: `0x${string}` | undefined;
|
170
|
+
from?: `0x${string}` | undefined;
|
173
171
|
gasPrice?: `0x${string}` | undefined;
|
174
172
|
maxFeePerGas?: `0x${string}` | undefined;
|
175
173
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
176
|
-
|
174
|
+
gas?: `0x${string}` | undefined;
|
177
175
|
nonce?: `0x${string}` | undefined;
|
178
176
|
to?: `0x${string}` | null | undefined;
|
177
|
+
value?: `0x${string}` | undefined;
|
179
178
|
accessList?: import("../../index.js").AccessList | undefined;
|
180
|
-
|
181
|
-
s?: `0x${string}` | undefined;
|
182
|
-
v?: `0x${string}` | undefined;
|
183
|
-
hash?: `0x${string}` | undefined;
|
179
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7c" | "0x7b" | undefined;
|
184
180
|
blockHash?: `0x${string}` | null | undefined;
|
185
181
|
blockNumber?: `0x${string}` | null | undefined;
|
186
|
-
|
182
|
+
hash?: `0x${string}` | undefined;
|
187
183
|
input?: `0x${string}` | undefined;
|
184
|
+
r?: `0x${string}` | undefined;
|
185
|
+
s?: `0x${string}` | undefined;
|
186
|
+
transactionIndex?: `0x${string}` | null | undefined;
|
187
|
+
v?: `0x${string}` | undefined;
|
188
188
|
chainId?: `0x${string}` | undefined;
|
189
189
|
} & import("../index.js").Omit<import("../../index.js").TransactionEIP2930<`0x${string}`, `0x${string}`, boolean, "0x1">, "typeHex"> & {
|
190
190
|
feeCurrency: `0x${string}` | null;
|
191
191
|
gatewayFee: `0x${string}` | null;
|
192
192
|
gatewayFeeRecipient: `0x${string}` | null;
|
193
193
|
}) | ({
|
194
|
-
|
195
|
-
gas?: `0x${string}` | undefined;
|
196
|
-
value?: `0x${string}` | undefined;
|
194
|
+
from?: `0x${string}` | undefined;
|
197
195
|
gasPrice?: `0x${string}` | undefined;
|
198
196
|
maxFeePerGas?: `0x${string}` | undefined;
|
199
197
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
200
|
-
|
198
|
+
gas?: `0x${string}` | undefined;
|
201
199
|
nonce?: `0x${string}` | undefined;
|
202
200
|
to?: `0x${string}` | null | undefined;
|
201
|
+
value?: `0x${string}` | undefined;
|
203
202
|
accessList?: import("../../index.js").AccessList | undefined;
|
204
|
-
|
205
|
-
s?: `0x${string}` | undefined;
|
206
|
-
v?: `0x${string}` | undefined;
|
207
|
-
hash?: `0x${string}` | undefined;
|
203
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7c" | "0x7b" | undefined;
|
208
204
|
blockHash?: `0x${string}` | null | undefined;
|
209
205
|
blockNumber?: `0x${string}` | null | undefined;
|
210
|
-
|
206
|
+
hash?: `0x${string}` | undefined;
|
211
207
|
input?: `0x${string}` | undefined;
|
208
|
+
r?: `0x${string}` | undefined;
|
209
|
+
s?: `0x${string}` | undefined;
|
210
|
+
transactionIndex?: `0x${string}` | null | undefined;
|
211
|
+
v?: `0x${string}` | undefined;
|
212
212
|
chainId?: `0x${string}` | undefined;
|
213
213
|
} & import("../index.js").Omit<import("../../index.js").TransactionEIP1559<`0x${string}`, `0x${string}`, boolean, "0x2">, "typeHex"> & {
|
214
214
|
feeCurrency: `0x${string}` | null;
|
215
215
|
gatewayFee: `0x${string}` | null;
|
216
216
|
gatewayFeeRecipient: `0x${string}` | null;
|
217
217
|
}) | ({
|
218
|
-
|
219
|
-
gas?: `0x${string}` | undefined;
|
220
|
-
value?: `0x${string}` | undefined;
|
218
|
+
from?: `0x${string}` | undefined;
|
221
219
|
gasPrice?: `0x${string}` | undefined;
|
222
220
|
maxFeePerGas?: `0x${string}` | undefined;
|
223
221
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
224
|
-
|
222
|
+
gas?: `0x${string}` | undefined;
|
225
223
|
nonce?: `0x${string}` | undefined;
|
226
224
|
to?: `0x${string}` | null | undefined;
|
225
|
+
value?: `0x${string}` | undefined;
|
227
226
|
accessList?: import("../../index.js").AccessList | undefined;
|
228
|
-
|
229
|
-
s?: `0x${string}` | undefined;
|
230
|
-
v?: `0x${string}` | undefined;
|
231
|
-
hash?: `0x${string}` | undefined;
|
227
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7c" | "0x7b" | undefined;
|
232
228
|
blockHash?: `0x${string}` | null | undefined;
|
233
229
|
blockNumber?: `0x${string}` | null | undefined;
|
234
|
-
|
230
|
+
hash?: `0x${string}` | undefined;
|
235
231
|
input?: `0x${string}` | undefined;
|
232
|
+
r?: `0x${string}` | undefined;
|
233
|
+
s?: `0x${string}` | undefined;
|
234
|
+
transactionIndex?: `0x${string}` | null | undefined;
|
235
|
+
v?: `0x${string}` | undefined;
|
236
236
|
chainId?: `0x${string}` | undefined;
|
237
237
|
} & Omit<import("../../index.js").TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & import("../../index.js").FeeValuesEIP1559<`0x${string}`> & {
|
238
238
|
feeCurrency: `0x${string}` | null;
|
@@ -240,119 +240,119 @@ export declare const celo: {
|
|
240
240
|
gatewayFeeRecipient: `0x${string}` | null;
|
241
241
|
type: "0x7c";
|
242
242
|
}) | ({
|
243
|
-
|
244
|
-
gas?: `0x${string}` | undefined;
|
245
|
-
value?: `0x${string}` | undefined;
|
243
|
+
from?: `0x${string}` | undefined;
|
246
244
|
gasPrice?: `0x${string}` | undefined;
|
247
245
|
maxFeePerGas?: `0x${string}` | undefined;
|
248
246
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
249
|
-
|
247
|
+
gas?: `0x${string}` | undefined;
|
250
248
|
nonce?: `0x${string}` | undefined;
|
251
249
|
to?: `0x${string}` | null | undefined;
|
250
|
+
value?: `0x${string}` | undefined;
|
252
251
|
accessList?: import("../../index.js").AccessList | undefined;
|
253
|
-
|
254
|
-
s?: `0x${string}` | undefined;
|
255
|
-
v?: `0x${string}` | undefined;
|
256
|
-
hash?: `0x${string}` | undefined;
|
252
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7c" | "0x7b" | undefined;
|
257
253
|
blockHash?: `0x${string}` | null | undefined;
|
258
254
|
blockNumber?: `0x${string}` | null | undefined;
|
259
|
-
|
255
|
+
hash?: `0x${string}` | undefined;
|
260
256
|
input?: `0x${string}` | undefined;
|
257
|
+
r?: `0x${string}` | undefined;
|
258
|
+
s?: `0x${string}` | undefined;
|
259
|
+
transactionIndex?: `0x${string}` | null | undefined;
|
260
|
+
v?: `0x${string}` | undefined;
|
261
261
|
chainId?: `0x${string}` | undefined;
|
262
262
|
} & Omit<import("../../index.js").TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & import("../../index.js").FeeValuesEIP1559<`0x${string}`> & {
|
263
263
|
feeCurrency: `0x${string}` | null;
|
264
264
|
type: "0x7b";
|
265
265
|
}) | ({
|
266
|
-
|
267
|
-
gas?: `0x${string}` | undefined;
|
268
|
-
value?: `0x${string}` | undefined;
|
266
|
+
from?: `0x${string}` | undefined;
|
269
267
|
gasPrice?: `0x${string}` | undefined;
|
270
268
|
maxFeePerGas?: `0x${string}` | undefined;
|
271
269
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
272
|
-
|
270
|
+
gas?: `0x${string}` | undefined;
|
273
271
|
nonce?: `0x${string}` | undefined;
|
274
272
|
to?: `0x${string}` | null | undefined;
|
273
|
+
value?: `0x${string}` | undefined;
|
275
274
|
accessList?: import("../../index.js").AccessList | undefined;
|
276
|
-
|
277
|
-
s?: `0x${string}` | undefined;
|
278
|
-
v?: `0x${string}` | undefined;
|
279
|
-
hash?: `0x${string}` | undefined;
|
275
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7c" | "0x7b" | undefined;
|
280
276
|
blockHash?: `0x${string}` | null | undefined;
|
281
277
|
blockNumber?: `0x${string}` | null | undefined;
|
282
|
-
|
278
|
+
hash?: `0x${string}` | undefined;
|
283
279
|
input?: `0x${string}` | undefined;
|
280
|
+
r?: `0x${string}` | undefined;
|
281
|
+
s?: `0x${string}` | undefined;
|
282
|
+
transactionIndex?: `0x${string}` | null | undefined;
|
283
|
+
v?: `0x${string}` | undefined;
|
284
284
|
chainId?: `0x${string}` | undefined;
|
285
285
|
} & import("../index.js").Omit<import("../../index.js").TransactionLegacy<`0x${string}`, `0x${string}`, boolean, "0x0">, "typeHex"> & {
|
286
286
|
feeCurrency: `0x${string}` | null;
|
287
287
|
gatewayFee: `0x${string}` | null;
|
288
288
|
gatewayFeeRecipient: `0x${string}` | null;
|
289
289
|
}) | ({
|
290
|
-
|
291
|
-
gas?: `0x${string}` | undefined;
|
292
|
-
value?: `0x${string}` | undefined;
|
290
|
+
from?: `0x${string}` | undefined;
|
293
291
|
gasPrice?: `0x${string}` | undefined;
|
294
292
|
maxFeePerGas?: `0x${string}` | undefined;
|
295
293
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
296
|
-
|
294
|
+
gas?: `0x${string}` | undefined;
|
297
295
|
nonce?: `0x${string}` | undefined;
|
298
296
|
to?: `0x${string}` | null | undefined;
|
297
|
+
value?: `0x${string}` | undefined;
|
299
298
|
accessList?: import("../../index.js").AccessList | undefined;
|
300
|
-
|
301
|
-
s?: `0x${string}` | undefined;
|
302
|
-
v?: `0x${string}` | undefined;
|
303
|
-
hash?: `0x${string}` | undefined;
|
299
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7c" | "0x7b" | undefined;
|
304
300
|
blockHash?: `0x${string}` | null | undefined;
|
305
301
|
blockNumber?: `0x${string}` | null | undefined;
|
306
|
-
|
302
|
+
hash?: `0x${string}` | undefined;
|
307
303
|
input?: `0x${string}` | undefined;
|
304
|
+
r?: `0x${string}` | undefined;
|
305
|
+
s?: `0x${string}` | undefined;
|
306
|
+
transactionIndex?: `0x${string}` | null | undefined;
|
307
|
+
v?: `0x${string}` | undefined;
|
308
308
|
chainId?: `0x${string}` | undefined;
|
309
309
|
} & import("../index.js").Omit<import("../../index.js").TransactionEIP2930<`0x${string}`, `0x${string}`, boolean, "0x1">, "typeHex"> & {
|
310
310
|
feeCurrency: `0x${string}` | null;
|
311
311
|
gatewayFee: `0x${string}` | null;
|
312
312
|
gatewayFeeRecipient: `0x${string}` | null;
|
313
313
|
}) | ({
|
314
|
-
|
315
|
-
gas?: `0x${string}` | undefined;
|
316
|
-
value?: `0x${string}` | undefined;
|
314
|
+
from?: `0x${string}` | undefined;
|
317
315
|
gasPrice?: `0x${string}` | undefined;
|
318
316
|
maxFeePerGas?: `0x${string}` | undefined;
|
319
317
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
320
|
-
|
318
|
+
gas?: `0x${string}` | undefined;
|
321
319
|
nonce?: `0x${string}` | undefined;
|
322
320
|
to?: `0x${string}` | null | undefined;
|
321
|
+
value?: `0x${string}` | undefined;
|
323
322
|
accessList?: import("../../index.js").AccessList | undefined;
|
324
|
-
|
325
|
-
s?: `0x${string}` | undefined;
|
326
|
-
v?: `0x${string}` | undefined;
|
327
|
-
hash?: `0x${string}` | undefined;
|
323
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7c" | "0x7b" | undefined;
|
328
324
|
blockHash?: `0x${string}` | null | undefined;
|
329
325
|
blockNumber?: `0x${string}` | null | undefined;
|
330
|
-
|
326
|
+
hash?: `0x${string}` | undefined;
|
331
327
|
input?: `0x${string}` | undefined;
|
328
|
+
r?: `0x${string}` | undefined;
|
329
|
+
s?: `0x${string}` | undefined;
|
330
|
+
transactionIndex?: `0x${string}` | null | undefined;
|
331
|
+
v?: `0x${string}` | undefined;
|
332
332
|
chainId?: `0x${string}` | undefined;
|
333
333
|
} & import("../index.js").Omit<import("../../index.js").TransactionEIP1559<`0x${string}`, `0x${string}`, boolean, "0x2">, "typeHex"> & {
|
334
334
|
feeCurrency: `0x${string}` | null;
|
335
335
|
gatewayFee: `0x${string}` | null;
|
336
336
|
gatewayFeeRecipient: `0x${string}` | null;
|
337
337
|
}) | ({
|
338
|
-
|
339
|
-
gas?: `0x${string}` | undefined;
|
340
|
-
value?: `0x${string}` | undefined;
|
338
|
+
from?: `0x${string}` | undefined;
|
341
339
|
gasPrice?: `0x${string}` | undefined;
|
342
340
|
maxFeePerGas?: `0x${string}` | undefined;
|
343
341
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
344
|
-
|
342
|
+
gas?: `0x${string}` | undefined;
|
345
343
|
nonce?: `0x${string}` | undefined;
|
346
344
|
to?: `0x${string}` | null | undefined;
|
345
|
+
value?: `0x${string}` | undefined;
|
347
346
|
accessList?: import("../../index.js").AccessList | undefined;
|
348
|
-
|
349
|
-
s?: `0x${string}` | undefined;
|
350
|
-
v?: `0x${string}` | undefined;
|
351
|
-
hash?: `0x${string}` | undefined;
|
347
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7c" | "0x7b" | undefined;
|
352
348
|
blockHash?: `0x${string}` | null | undefined;
|
353
349
|
blockNumber?: `0x${string}` | null | undefined;
|
354
|
-
|
350
|
+
hash?: `0x${string}` | undefined;
|
355
351
|
input?: `0x${string}` | undefined;
|
352
|
+
r?: `0x${string}` | undefined;
|
353
|
+
s?: `0x${string}` | undefined;
|
354
|
+
transactionIndex?: `0x${string}` | null | undefined;
|
355
|
+
v?: `0x${string}` | undefined;
|
356
356
|
chainId?: `0x${string}` | undefined;
|
357
357
|
} & Omit<import("../../index.js").TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & import("../../index.js").FeeValuesEIP1559<`0x${string}`> & {
|
358
358
|
feeCurrency: `0x${string}` | null;
|
@@ -360,24 +360,24 @@ export declare const celo: {
|
|
360
360
|
gatewayFeeRecipient: `0x${string}` | null;
|
361
361
|
type: "0x7c";
|
362
362
|
}) | ({
|
363
|
-
|
364
|
-
gas?: `0x${string}` | undefined;
|
365
|
-
value?: `0x${string}` | undefined;
|
363
|
+
from?: `0x${string}` | undefined;
|
366
364
|
gasPrice?: `0x${string}` | undefined;
|
367
365
|
maxFeePerGas?: `0x${string}` | undefined;
|
368
366
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
369
|
-
|
367
|
+
gas?: `0x${string}` | undefined;
|
370
368
|
nonce?: `0x${string}` | undefined;
|
371
369
|
to?: `0x${string}` | null | undefined;
|
370
|
+
value?: `0x${string}` | undefined;
|
372
371
|
accessList?: import("../../index.js").AccessList | undefined;
|
373
|
-
|
374
|
-
s?: `0x${string}` | undefined;
|
375
|
-
v?: `0x${string}` | undefined;
|
376
|
-
hash?: `0x${string}` | undefined;
|
372
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7c" | "0x7b" | undefined;
|
377
373
|
blockHash?: `0x${string}` | null | undefined;
|
378
374
|
blockNumber?: `0x${string}` | null | undefined;
|
379
|
-
|
375
|
+
hash?: `0x${string}` | undefined;
|
380
376
|
input?: `0x${string}` | undefined;
|
377
|
+
r?: `0x${string}` | undefined;
|
378
|
+
s?: `0x${string}` | undefined;
|
379
|
+
transactionIndex?: `0x${string}` | null | undefined;
|
380
|
+
v?: `0x${string}` | undefined;
|
381
381
|
chainId?: `0x${string}` | undefined;
|
382
382
|
} & Omit<import("../../index.js").TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & import("../../index.js").FeeValuesEIP1559<`0x${string}`> & {
|
383
383
|
feeCurrency: `0x${string}` | null;
|