viem 2.0.0-alpha.14 → 2.0.0-alpha.15
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/actions/public/simulateContract.js.map +1 -1
- package/_cjs/errors/version.js +1 -1
- package/_esm/actions/public/simulateContract.js.map +1 -1
- package/_esm/errors/version.js +1 -1
- package/_types/actions/public/simulateContract.d.ts +1 -1
- package/_types/actions/public/simulateContract.d.ts.map +1 -1
- package/_types/chains/celo/formatters.d.ts +90 -90
- package/_types/chains/definitions/base.d.ts +270 -270
- package/_types/chains/definitions/baseGoerli.d.ts +270 -270
- package/_types/chains/definitions/celo.d.ts +270 -270
- package/_types/chains/definitions/celoAlfajores.d.ts +270 -270
- package/_types/chains/definitions/celoCannoli.d.ts +270 -270
- package/_types/chains/definitions/optimism.d.ts +270 -270
- package/_types/chains/definitions/optimismGoerli.d.ts +270 -270
- package/_types/chains/definitions/optimismSepolia.d.ts +270 -270
- package/_types/chains/definitions/zora.d.ts +270 -270
- package/_types/chains/definitions/zoraTestnet.d.ts +270 -270
- package/_types/chains/optimism/formatters.d.ts +90 -90
- 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/actions/public/simulateContract.ts +4 -1
- package/errors/version.ts +1 -1
- package/package.json +1 -1
@@ -72,48 +72,48 @@ export declare const celoCannoli: {
|
|
72
72
|
readonly transaction: {
|
73
73
|
exclude: [] | undefined;
|
74
74
|
format: (args: ({
|
75
|
-
|
75
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7c" | undefined;
|
76
|
+
gas?: `0x${string}` | undefined;
|
77
|
+
value?: `0x${string}` | undefined;
|
76
78
|
gasPrice?: `0x${string}` | undefined;
|
77
79
|
maxFeePerGas?: `0x${string}` | undefined;
|
78
80
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
79
|
-
gas?: `0x${string}` | undefined;
|
80
|
-
nonce?: `0x${string}` | undefined;
|
81
|
-
to?: `0x${string}` | null | undefined;
|
82
|
-
value?: `0x${string}` | undefined;
|
83
|
-
accessList?: undefined;
|
84
|
-
type?: "0x0" | "0x1" | "0x2" | "0x7c" | undefined;
|
85
|
-
hash?: `0x${string}` | undefined;
|
86
81
|
blockHash?: `0x${string}` | null | undefined;
|
87
82
|
blockNumber?: `0x${string}` | null | undefined;
|
88
|
-
|
83
|
+
from?: `0x${string}` | undefined;
|
84
|
+
hash?: `0x${string}` | undefined;
|
89
85
|
input?: `0x${string}` | undefined;
|
86
|
+
nonce?: `0x${string}` | undefined;
|
90
87
|
r?: `0x${string}` | undefined;
|
91
88
|
s?: `0x${string}` | undefined;
|
89
|
+
to?: `0x${string}` | null | undefined;
|
90
|
+
transactionIndex?: `0x${string}` | null | undefined;
|
92
91
|
v?: `0x${string}` | undefined;
|
92
|
+
accessList?: undefined;
|
93
93
|
chainId?: `0x${string}` | undefined;
|
94
94
|
} & import("../index.js").Omit<import("../../index.js").TransactionLegacy<`0x${string}`, `0x${string}`, boolean, "0x0">, "typeHex"> & {
|
95
95
|
feeCurrency: `0x${string}` | null;
|
96
96
|
gatewayFee: `0x${string}` | null;
|
97
97
|
gatewayFeeRecipient: `0x${string}` | null;
|
98
98
|
}) | ({
|
99
|
-
|
99
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7c" | undefined;
|
100
|
+
gas?: `0x${string}` | undefined;
|
101
|
+
value?: `0x${string}` | undefined;
|
100
102
|
gasPrice?: `0x${string}` | undefined;
|
101
103
|
maxFeePerGas?: `0x${string}` | undefined;
|
102
104
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
103
|
-
gas?: `0x${string}` | undefined;
|
104
|
-
nonce?: `0x${string}` | undefined;
|
105
|
-
to?: `0x${string}` | null | undefined;
|
106
|
-
value?: `0x${string}` | undefined;
|
107
|
-
accessList?: undefined;
|
108
|
-
type?: "0x0" | "0x1" | "0x2" | "0x7c" | undefined;
|
109
|
-
hash?: `0x${string}` | undefined;
|
110
105
|
blockHash?: `0x${string}` | null | undefined;
|
111
106
|
blockNumber?: `0x${string}` | null | undefined;
|
112
|
-
|
107
|
+
from?: `0x${string}` | undefined;
|
108
|
+
hash?: `0x${string}` | undefined;
|
113
109
|
input?: `0x${string}` | undefined;
|
110
|
+
nonce?: `0x${string}` | undefined;
|
114
111
|
r?: `0x${string}` | undefined;
|
115
112
|
s?: `0x${string}` | undefined;
|
113
|
+
to?: `0x${string}` | null | undefined;
|
114
|
+
transactionIndex?: `0x${string}` | null | undefined;
|
116
115
|
v?: `0x${string}` | undefined;
|
116
|
+
accessList?: undefined;
|
117
117
|
chainId?: `0x${string}` | undefined;
|
118
118
|
} & import("../../index.js").TransactionBase<`0x${string}`, `0x${string}`, boolean> & import("../../index.js").FeeValuesEIP1559<`0x${string}`> & {
|
119
119
|
feeCurrency: `0x${string}` | null;
|
@@ -121,96 +121,96 @@ export declare const celoCannoli: {
|
|
121
121
|
gatewayFeeRecipient: `0x${string}` | null;
|
122
122
|
type: "0x7c";
|
123
123
|
}) | ({
|
124
|
-
|
124
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7c" | undefined;
|
125
|
+
gas?: `0x${string}` | undefined;
|
126
|
+
value?: `0x${string}` | undefined;
|
125
127
|
gasPrice?: `0x${string}` | undefined;
|
126
128
|
maxFeePerGas?: `0x${string}` | undefined;
|
127
129
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
128
|
-
gas?: `0x${string}` | undefined;
|
129
|
-
nonce?: `0x${string}` | undefined;
|
130
|
-
to?: `0x${string}` | null | undefined;
|
131
|
-
value?: `0x${string}` | undefined;
|
132
|
-
accessList?: import("../../index.js").AccessList | undefined;
|
133
|
-
type?: "0x0" | "0x1" | "0x2" | "0x7c" | undefined;
|
134
|
-
hash?: `0x${string}` | undefined;
|
135
130
|
blockHash?: `0x${string}` | null | undefined;
|
136
131
|
blockNumber?: `0x${string}` | null | undefined;
|
137
|
-
|
132
|
+
from?: `0x${string}` | undefined;
|
133
|
+
hash?: `0x${string}` | undefined;
|
138
134
|
input?: `0x${string}` | undefined;
|
135
|
+
nonce?: `0x${string}` | undefined;
|
139
136
|
r?: `0x${string}` | undefined;
|
140
137
|
s?: `0x${string}` | undefined;
|
138
|
+
to?: `0x${string}` | null | undefined;
|
139
|
+
transactionIndex?: `0x${string}` | null | undefined;
|
141
140
|
v?: `0x${string}` | undefined;
|
141
|
+
accessList?: import("../../index.js").AccessList | undefined;
|
142
142
|
chainId?: `0x${string}` | undefined;
|
143
143
|
} & import("../index.js").Omit<import("../../index.js").TransactionLegacy<`0x${string}`, `0x${string}`, boolean, "0x0">, "typeHex"> & {
|
144
144
|
feeCurrency: `0x${string}` | null;
|
145
145
|
gatewayFee: `0x${string}` | null;
|
146
146
|
gatewayFeeRecipient: `0x${string}` | null;
|
147
147
|
}) | ({
|
148
|
-
|
148
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7c" | undefined;
|
149
|
+
gas?: `0x${string}` | undefined;
|
150
|
+
value?: `0x${string}` | undefined;
|
149
151
|
gasPrice?: `0x${string}` | undefined;
|
150
152
|
maxFeePerGas?: `0x${string}` | undefined;
|
151
153
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
152
|
-
gas?: `0x${string}` | undefined;
|
153
|
-
nonce?: `0x${string}` | undefined;
|
154
|
-
to?: `0x${string}` | null | undefined;
|
155
|
-
value?: `0x${string}` | undefined;
|
156
|
-
accessList?: import("../../index.js").AccessList | undefined;
|
157
|
-
type?: "0x0" | "0x1" | "0x2" | "0x7c" | undefined;
|
158
|
-
hash?: `0x${string}` | undefined;
|
159
154
|
blockHash?: `0x${string}` | null | undefined;
|
160
155
|
blockNumber?: `0x${string}` | null | undefined;
|
161
|
-
|
156
|
+
from?: `0x${string}` | undefined;
|
157
|
+
hash?: `0x${string}` | undefined;
|
162
158
|
input?: `0x${string}` | undefined;
|
159
|
+
nonce?: `0x${string}` | undefined;
|
163
160
|
r?: `0x${string}` | undefined;
|
164
161
|
s?: `0x${string}` | undefined;
|
162
|
+
to?: `0x${string}` | null | undefined;
|
163
|
+
transactionIndex?: `0x${string}` | null | undefined;
|
165
164
|
v?: `0x${string}` | undefined;
|
165
|
+
accessList?: import("../../index.js").AccessList | undefined;
|
166
166
|
chainId?: `0x${string}` | undefined;
|
167
167
|
} & import("../index.js").Omit<import("../../index.js").TransactionEIP2930<`0x${string}`, `0x${string}`, boolean, "0x1">, "typeHex"> & {
|
168
168
|
feeCurrency: `0x${string}` | null;
|
169
169
|
gatewayFee: `0x${string}` | null;
|
170
170
|
gatewayFeeRecipient: `0x${string}` | null;
|
171
171
|
}) | ({
|
172
|
-
|
172
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7c" | undefined;
|
173
|
+
gas?: `0x${string}` | undefined;
|
174
|
+
value?: `0x${string}` | undefined;
|
173
175
|
gasPrice?: `0x${string}` | undefined;
|
174
176
|
maxFeePerGas?: `0x${string}` | undefined;
|
175
177
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
176
|
-
gas?: `0x${string}` | undefined;
|
177
|
-
nonce?: `0x${string}` | undefined;
|
178
|
-
to?: `0x${string}` | null | undefined;
|
179
|
-
value?: `0x${string}` | undefined;
|
180
|
-
accessList?: import("../../index.js").AccessList | undefined;
|
181
|
-
type?: "0x0" | "0x1" | "0x2" | "0x7c" | undefined;
|
182
|
-
hash?: `0x${string}` | undefined;
|
183
178
|
blockHash?: `0x${string}` | null | undefined;
|
184
179
|
blockNumber?: `0x${string}` | null | undefined;
|
185
|
-
|
180
|
+
from?: `0x${string}` | undefined;
|
181
|
+
hash?: `0x${string}` | undefined;
|
186
182
|
input?: `0x${string}` | undefined;
|
183
|
+
nonce?: `0x${string}` | undefined;
|
187
184
|
r?: `0x${string}` | undefined;
|
188
185
|
s?: `0x${string}` | undefined;
|
186
|
+
to?: `0x${string}` | null | undefined;
|
187
|
+
transactionIndex?: `0x${string}` | null | undefined;
|
189
188
|
v?: `0x${string}` | undefined;
|
189
|
+
accessList?: import("../../index.js").AccessList | undefined;
|
190
190
|
chainId?: `0x${string}` | undefined;
|
191
191
|
} & import("../index.js").Omit<import("../../index.js").TransactionEIP1559<`0x${string}`, `0x${string}`, boolean, "0x2">, "typeHex"> & {
|
192
192
|
feeCurrency: `0x${string}` | null;
|
193
193
|
gatewayFee: `0x${string}` | null;
|
194
194
|
gatewayFeeRecipient: `0x${string}` | null;
|
195
195
|
}) | ({
|
196
|
-
|
196
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7c" | undefined;
|
197
|
+
gas?: `0x${string}` | undefined;
|
198
|
+
value?: `0x${string}` | undefined;
|
197
199
|
gasPrice?: `0x${string}` | undefined;
|
198
200
|
maxFeePerGas?: `0x${string}` | undefined;
|
199
201
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
200
|
-
gas?: `0x${string}` | undefined;
|
201
|
-
nonce?: `0x${string}` | undefined;
|
202
|
-
to?: `0x${string}` | null | undefined;
|
203
|
-
value?: `0x${string}` | undefined;
|
204
|
-
accessList?: import("../../index.js").AccessList | undefined;
|
205
|
-
type?: "0x0" | "0x1" | "0x2" | "0x7c" | undefined;
|
206
|
-
hash?: `0x${string}` | undefined;
|
207
202
|
blockHash?: `0x${string}` | null | undefined;
|
208
203
|
blockNumber?: `0x${string}` | null | undefined;
|
209
|
-
|
204
|
+
from?: `0x${string}` | undefined;
|
205
|
+
hash?: `0x${string}` | undefined;
|
210
206
|
input?: `0x${string}` | undefined;
|
207
|
+
nonce?: `0x${string}` | undefined;
|
211
208
|
r?: `0x${string}` | undefined;
|
212
209
|
s?: `0x${string}` | undefined;
|
210
|
+
to?: `0x${string}` | null | undefined;
|
211
|
+
transactionIndex?: `0x${string}` | null | undefined;
|
213
212
|
v?: `0x${string}` | undefined;
|
213
|
+
accessList?: import("../../index.js").AccessList | undefined;
|
214
214
|
chainId?: `0x${string}` | undefined;
|
215
215
|
} & import("../../index.js").TransactionBase<`0x${string}`, `0x${string}`, boolean> & import("../../index.js").FeeValuesEIP1559<`0x${string}`> & {
|
216
216
|
feeCurrency: `0x${string}` | null;
|
@@ -218,96 +218,96 @@ export declare const celoCannoli: {
|
|
218
218
|
gatewayFeeRecipient: `0x${string}` | null;
|
219
219
|
type: "0x7c";
|
220
220
|
}) | ({
|
221
|
-
|
221
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7c" | undefined;
|
222
|
+
gas?: `0x${string}` | undefined;
|
223
|
+
value?: `0x${string}` | undefined;
|
222
224
|
gasPrice?: `0x${string}` | undefined;
|
223
225
|
maxFeePerGas?: `0x${string}` | undefined;
|
224
226
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
225
|
-
gas?: `0x${string}` | undefined;
|
226
|
-
nonce?: `0x${string}` | undefined;
|
227
|
-
to?: `0x${string}` | null | undefined;
|
228
|
-
value?: `0x${string}` | undefined;
|
229
|
-
accessList?: import("../../index.js").AccessList | undefined;
|
230
|
-
type?: "0x0" | "0x1" | "0x2" | "0x7c" | undefined;
|
231
|
-
hash?: `0x${string}` | undefined;
|
232
227
|
blockHash?: `0x${string}` | null | undefined;
|
233
228
|
blockNumber?: `0x${string}` | null | undefined;
|
234
|
-
|
229
|
+
from?: `0x${string}` | undefined;
|
230
|
+
hash?: `0x${string}` | undefined;
|
235
231
|
input?: `0x${string}` | undefined;
|
232
|
+
nonce?: `0x${string}` | undefined;
|
236
233
|
r?: `0x${string}` | undefined;
|
237
234
|
s?: `0x${string}` | undefined;
|
235
|
+
to?: `0x${string}` | null | undefined;
|
236
|
+
transactionIndex?: `0x${string}` | null | undefined;
|
238
237
|
v?: `0x${string}` | undefined;
|
238
|
+
accessList?: import("../../index.js").AccessList | undefined;
|
239
239
|
chainId?: `0x${string}` | undefined;
|
240
240
|
} & import("../index.js").Omit<import("../../index.js").TransactionLegacy<`0x${string}`, `0x${string}`, boolean, "0x0">, "typeHex"> & {
|
241
241
|
feeCurrency: `0x${string}` | null;
|
242
242
|
gatewayFee: `0x${string}` | null;
|
243
243
|
gatewayFeeRecipient: `0x${string}` | null;
|
244
244
|
}) | ({
|
245
|
-
|
245
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7c" | undefined;
|
246
|
+
gas?: `0x${string}` | undefined;
|
247
|
+
value?: `0x${string}` | undefined;
|
246
248
|
gasPrice?: `0x${string}` | undefined;
|
247
249
|
maxFeePerGas?: `0x${string}` | undefined;
|
248
250
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
249
|
-
gas?: `0x${string}` | undefined;
|
250
|
-
nonce?: `0x${string}` | undefined;
|
251
|
-
to?: `0x${string}` | null | undefined;
|
252
|
-
value?: `0x${string}` | undefined;
|
253
|
-
accessList?: import("../../index.js").AccessList | undefined;
|
254
|
-
type?: "0x0" | "0x1" | "0x2" | "0x7c" | undefined;
|
255
|
-
hash?: `0x${string}` | undefined;
|
256
251
|
blockHash?: `0x${string}` | null | undefined;
|
257
252
|
blockNumber?: `0x${string}` | null | undefined;
|
258
|
-
|
253
|
+
from?: `0x${string}` | undefined;
|
254
|
+
hash?: `0x${string}` | undefined;
|
259
255
|
input?: `0x${string}` | undefined;
|
256
|
+
nonce?: `0x${string}` | undefined;
|
260
257
|
r?: `0x${string}` | undefined;
|
261
258
|
s?: `0x${string}` | undefined;
|
259
|
+
to?: `0x${string}` | null | undefined;
|
260
|
+
transactionIndex?: `0x${string}` | null | undefined;
|
262
261
|
v?: `0x${string}` | undefined;
|
262
|
+
accessList?: import("../../index.js").AccessList | undefined;
|
263
263
|
chainId?: `0x${string}` | undefined;
|
264
264
|
} & import("../index.js").Omit<import("../../index.js").TransactionEIP2930<`0x${string}`, `0x${string}`, boolean, "0x1">, "typeHex"> & {
|
265
265
|
feeCurrency: `0x${string}` | null;
|
266
266
|
gatewayFee: `0x${string}` | null;
|
267
267
|
gatewayFeeRecipient: `0x${string}` | null;
|
268
268
|
}) | ({
|
269
|
-
|
269
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7c" | undefined;
|
270
|
+
gas?: `0x${string}` | undefined;
|
271
|
+
value?: `0x${string}` | undefined;
|
270
272
|
gasPrice?: `0x${string}` | undefined;
|
271
273
|
maxFeePerGas?: `0x${string}` | undefined;
|
272
274
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
273
|
-
gas?: `0x${string}` | undefined;
|
274
|
-
nonce?: `0x${string}` | undefined;
|
275
|
-
to?: `0x${string}` | null | undefined;
|
276
|
-
value?: `0x${string}` | undefined;
|
277
|
-
accessList?: import("../../index.js").AccessList | undefined;
|
278
|
-
type?: "0x0" | "0x1" | "0x2" | "0x7c" | undefined;
|
279
|
-
hash?: `0x${string}` | undefined;
|
280
275
|
blockHash?: `0x${string}` | null | undefined;
|
281
276
|
blockNumber?: `0x${string}` | null | undefined;
|
282
|
-
|
277
|
+
from?: `0x${string}` | undefined;
|
278
|
+
hash?: `0x${string}` | undefined;
|
283
279
|
input?: `0x${string}` | undefined;
|
280
|
+
nonce?: `0x${string}` | undefined;
|
284
281
|
r?: `0x${string}` | undefined;
|
285
282
|
s?: `0x${string}` | undefined;
|
283
|
+
to?: `0x${string}` | null | undefined;
|
284
|
+
transactionIndex?: `0x${string}` | null | undefined;
|
286
285
|
v?: `0x${string}` | undefined;
|
286
|
+
accessList?: import("../../index.js").AccessList | undefined;
|
287
287
|
chainId?: `0x${string}` | undefined;
|
288
288
|
} & import("../index.js").Omit<import("../../index.js").TransactionEIP1559<`0x${string}`, `0x${string}`, boolean, "0x2">, "typeHex"> & {
|
289
289
|
feeCurrency: `0x${string}` | null;
|
290
290
|
gatewayFee: `0x${string}` | null;
|
291
291
|
gatewayFeeRecipient: `0x${string}` | null;
|
292
292
|
}) | ({
|
293
|
-
|
293
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7c" | undefined;
|
294
|
+
gas?: `0x${string}` | undefined;
|
295
|
+
value?: `0x${string}` | undefined;
|
294
296
|
gasPrice?: `0x${string}` | undefined;
|
295
297
|
maxFeePerGas?: `0x${string}` | undefined;
|
296
298
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
297
|
-
gas?: `0x${string}` | undefined;
|
298
|
-
nonce?: `0x${string}` | undefined;
|
299
|
-
to?: `0x${string}` | null | undefined;
|
300
|
-
value?: `0x${string}` | undefined;
|
301
|
-
accessList?: import("../../index.js").AccessList | undefined;
|
302
|
-
type?: "0x0" | "0x1" | "0x2" | "0x7c" | undefined;
|
303
|
-
hash?: `0x${string}` | undefined;
|
304
299
|
blockHash?: `0x${string}` | null | undefined;
|
305
300
|
blockNumber?: `0x${string}` | null | undefined;
|
306
|
-
|
301
|
+
from?: `0x${string}` | undefined;
|
302
|
+
hash?: `0x${string}` | undefined;
|
307
303
|
input?: `0x${string}` | undefined;
|
304
|
+
nonce?: `0x${string}` | undefined;
|
308
305
|
r?: `0x${string}` | undefined;
|
309
306
|
s?: `0x${string}` | undefined;
|
307
|
+
to?: `0x${string}` | null | undefined;
|
308
|
+
transactionIndex?: `0x${string}` | null | undefined;
|
310
309
|
v?: `0x${string}` | undefined;
|
310
|
+
accessList?: import("../../index.js").AccessList | undefined;
|
311
311
|
chainId?: `0x${string}` | undefined;
|
312
312
|
} & import("../../index.js").TransactionBase<`0x${string}`, `0x${string}`, boolean> & import("../../index.js").FeeValuesEIP1559<`0x${string}`> & {
|
313
313
|
feeCurrency: `0x${string}` | null;
|
@@ -762,48 +762,48 @@ export declare const celoCannoli: {
|
|
762
762
|
readonly transaction: {
|
763
763
|
exclude: [] | undefined;
|
764
764
|
format: (args: ({
|
765
|
-
|
765
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7c" | undefined;
|
766
|
+
gas?: `0x${string}` | undefined;
|
767
|
+
value?: `0x${string}` | undefined;
|
766
768
|
gasPrice?: `0x${string}` | undefined;
|
767
769
|
maxFeePerGas?: `0x${string}` | undefined;
|
768
770
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
769
|
-
gas?: `0x${string}` | undefined;
|
770
|
-
nonce?: `0x${string}` | undefined;
|
771
|
-
to?: `0x${string}` | null | undefined;
|
772
|
-
value?: `0x${string}` | undefined;
|
773
|
-
accessList?: undefined;
|
774
|
-
type?: "0x0" | "0x1" | "0x2" | "0x7c" | undefined;
|
775
|
-
hash?: `0x${string}` | undefined;
|
776
771
|
blockHash?: `0x${string}` | null | undefined;
|
777
772
|
blockNumber?: `0x${string}` | null | undefined;
|
778
|
-
|
773
|
+
from?: `0x${string}` | undefined;
|
774
|
+
hash?: `0x${string}` | undefined;
|
779
775
|
input?: `0x${string}` | undefined;
|
776
|
+
nonce?: `0x${string}` | undefined;
|
780
777
|
r?: `0x${string}` | undefined;
|
781
778
|
s?: `0x${string}` | undefined;
|
779
|
+
to?: `0x${string}` | null | undefined;
|
780
|
+
transactionIndex?: `0x${string}` | null | undefined;
|
782
781
|
v?: `0x${string}` | undefined;
|
782
|
+
accessList?: undefined;
|
783
783
|
chainId?: `0x${string}` | undefined;
|
784
784
|
} & import("../index.js").Omit<import("../../index.js").TransactionLegacy<`0x${string}`, `0x${string}`, boolean, "0x0">, "typeHex"> & {
|
785
785
|
feeCurrency: `0x${string}` | null;
|
786
786
|
gatewayFee: `0x${string}` | null;
|
787
787
|
gatewayFeeRecipient: `0x${string}` | null;
|
788
788
|
}) | ({
|
789
|
-
|
789
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7c" | undefined;
|
790
|
+
gas?: `0x${string}` | undefined;
|
791
|
+
value?: `0x${string}` | undefined;
|
790
792
|
gasPrice?: `0x${string}` | undefined;
|
791
793
|
maxFeePerGas?: `0x${string}` | undefined;
|
792
794
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
793
|
-
gas?: `0x${string}` | undefined;
|
794
|
-
nonce?: `0x${string}` | undefined;
|
795
|
-
to?: `0x${string}` | null | undefined;
|
796
|
-
value?: `0x${string}` | undefined;
|
797
|
-
accessList?: undefined;
|
798
|
-
type?: "0x0" | "0x1" | "0x2" | "0x7c" | undefined;
|
799
|
-
hash?: `0x${string}` | undefined;
|
800
795
|
blockHash?: `0x${string}` | null | undefined;
|
801
796
|
blockNumber?: `0x${string}` | null | undefined;
|
802
|
-
|
797
|
+
from?: `0x${string}` | undefined;
|
798
|
+
hash?: `0x${string}` | undefined;
|
803
799
|
input?: `0x${string}` | undefined;
|
800
|
+
nonce?: `0x${string}` | undefined;
|
804
801
|
r?: `0x${string}` | undefined;
|
805
802
|
s?: `0x${string}` | undefined;
|
803
|
+
to?: `0x${string}` | null | undefined;
|
804
|
+
transactionIndex?: `0x${string}` | null | undefined;
|
806
805
|
v?: `0x${string}` | undefined;
|
806
|
+
accessList?: undefined;
|
807
807
|
chainId?: `0x${string}` | undefined;
|
808
808
|
} & import("../../index.js").TransactionBase<`0x${string}`, `0x${string}`, boolean> & import("../../index.js").FeeValuesEIP1559<`0x${string}`> & {
|
809
809
|
feeCurrency: `0x${string}` | null;
|
@@ -811,96 +811,96 @@ export declare const celoCannoli: {
|
|
811
811
|
gatewayFeeRecipient: `0x${string}` | null;
|
812
812
|
type: "0x7c";
|
813
813
|
}) | ({
|
814
|
-
|
814
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7c" | undefined;
|
815
|
+
gas?: `0x${string}` | undefined;
|
816
|
+
value?: `0x${string}` | undefined;
|
815
817
|
gasPrice?: `0x${string}` | undefined;
|
816
818
|
maxFeePerGas?: `0x${string}` | undefined;
|
817
819
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
818
|
-
gas?: `0x${string}` | undefined;
|
819
|
-
nonce?: `0x${string}` | undefined;
|
820
|
-
to?: `0x${string}` | null | undefined;
|
821
|
-
value?: `0x${string}` | undefined;
|
822
|
-
accessList?: import("../../index.js").AccessList | undefined;
|
823
|
-
type?: "0x0" | "0x1" | "0x2" | "0x7c" | undefined;
|
824
|
-
hash?: `0x${string}` | undefined;
|
825
820
|
blockHash?: `0x${string}` | null | undefined;
|
826
821
|
blockNumber?: `0x${string}` | null | undefined;
|
827
|
-
|
822
|
+
from?: `0x${string}` | undefined;
|
823
|
+
hash?: `0x${string}` | undefined;
|
828
824
|
input?: `0x${string}` | undefined;
|
825
|
+
nonce?: `0x${string}` | undefined;
|
829
826
|
r?: `0x${string}` | undefined;
|
830
827
|
s?: `0x${string}` | undefined;
|
828
|
+
to?: `0x${string}` | null | undefined;
|
829
|
+
transactionIndex?: `0x${string}` | null | undefined;
|
831
830
|
v?: `0x${string}` | undefined;
|
831
|
+
accessList?: import("../../index.js").AccessList | undefined;
|
832
832
|
chainId?: `0x${string}` | undefined;
|
833
833
|
} & import("../index.js").Omit<import("../../index.js").TransactionLegacy<`0x${string}`, `0x${string}`, boolean, "0x0">, "typeHex"> & {
|
834
834
|
feeCurrency: `0x${string}` | null;
|
835
835
|
gatewayFee: `0x${string}` | null;
|
836
836
|
gatewayFeeRecipient: `0x${string}` | null;
|
837
837
|
}) | ({
|
838
|
-
|
838
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7c" | undefined;
|
839
|
+
gas?: `0x${string}` | undefined;
|
840
|
+
value?: `0x${string}` | undefined;
|
839
841
|
gasPrice?: `0x${string}` | undefined;
|
840
842
|
maxFeePerGas?: `0x${string}` | undefined;
|
841
843
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
842
|
-
gas?: `0x${string}` | undefined;
|
843
|
-
nonce?: `0x${string}` | undefined;
|
844
|
-
to?: `0x${string}` | null | undefined;
|
845
|
-
value?: `0x${string}` | undefined;
|
846
|
-
accessList?: import("../../index.js").AccessList | undefined;
|
847
|
-
type?: "0x0" | "0x1" | "0x2" | "0x7c" | undefined;
|
848
|
-
hash?: `0x${string}` | undefined;
|
849
844
|
blockHash?: `0x${string}` | null | undefined;
|
850
845
|
blockNumber?: `0x${string}` | null | undefined;
|
851
|
-
|
846
|
+
from?: `0x${string}` | undefined;
|
847
|
+
hash?: `0x${string}` | undefined;
|
852
848
|
input?: `0x${string}` | undefined;
|
849
|
+
nonce?: `0x${string}` | undefined;
|
853
850
|
r?: `0x${string}` | undefined;
|
854
851
|
s?: `0x${string}` | undefined;
|
852
|
+
to?: `0x${string}` | null | undefined;
|
853
|
+
transactionIndex?: `0x${string}` | null | undefined;
|
855
854
|
v?: `0x${string}` | undefined;
|
855
|
+
accessList?: import("../../index.js").AccessList | undefined;
|
856
856
|
chainId?: `0x${string}` | undefined;
|
857
857
|
} & import("../index.js").Omit<import("../../index.js").TransactionEIP2930<`0x${string}`, `0x${string}`, boolean, "0x1">, "typeHex"> & {
|
858
858
|
feeCurrency: `0x${string}` | null;
|
859
859
|
gatewayFee: `0x${string}` | null;
|
860
860
|
gatewayFeeRecipient: `0x${string}` | null;
|
861
861
|
}) | ({
|
862
|
-
|
862
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7c" | undefined;
|
863
|
+
gas?: `0x${string}` | undefined;
|
864
|
+
value?: `0x${string}` | undefined;
|
863
865
|
gasPrice?: `0x${string}` | undefined;
|
864
866
|
maxFeePerGas?: `0x${string}` | undefined;
|
865
867
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
866
|
-
gas?: `0x${string}` | undefined;
|
867
|
-
nonce?: `0x${string}` | undefined;
|
868
|
-
to?: `0x${string}` | null | undefined;
|
869
|
-
value?: `0x${string}` | undefined;
|
870
|
-
accessList?: import("../../index.js").AccessList | undefined;
|
871
|
-
type?: "0x0" | "0x1" | "0x2" | "0x7c" | undefined;
|
872
|
-
hash?: `0x${string}` | undefined;
|
873
868
|
blockHash?: `0x${string}` | null | undefined;
|
874
869
|
blockNumber?: `0x${string}` | null | undefined;
|
875
|
-
|
870
|
+
from?: `0x${string}` | undefined;
|
871
|
+
hash?: `0x${string}` | undefined;
|
876
872
|
input?: `0x${string}` | undefined;
|
873
|
+
nonce?: `0x${string}` | undefined;
|
877
874
|
r?: `0x${string}` | undefined;
|
878
875
|
s?: `0x${string}` | undefined;
|
876
|
+
to?: `0x${string}` | null | undefined;
|
877
|
+
transactionIndex?: `0x${string}` | null | undefined;
|
879
878
|
v?: `0x${string}` | undefined;
|
879
|
+
accessList?: import("../../index.js").AccessList | undefined;
|
880
880
|
chainId?: `0x${string}` | undefined;
|
881
881
|
} & import("../index.js").Omit<import("../../index.js").TransactionEIP1559<`0x${string}`, `0x${string}`, boolean, "0x2">, "typeHex"> & {
|
882
882
|
feeCurrency: `0x${string}` | null;
|
883
883
|
gatewayFee: `0x${string}` | null;
|
884
884
|
gatewayFeeRecipient: `0x${string}` | null;
|
885
885
|
}) | ({
|
886
|
-
|
886
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7c" | undefined;
|
887
|
+
gas?: `0x${string}` | undefined;
|
888
|
+
value?: `0x${string}` | undefined;
|
887
889
|
gasPrice?: `0x${string}` | undefined;
|
888
890
|
maxFeePerGas?: `0x${string}` | undefined;
|
889
891
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
890
|
-
gas?: `0x${string}` | undefined;
|
891
|
-
nonce?: `0x${string}` | undefined;
|
892
|
-
to?: `0x${string}` | null | undefined;
|
893
|
-
value?: `0x${string}` | undefined;
|
894
|
-
accessList?: import("../../index.js").AccessList | undefined;
|
895
|
-
type?: "0x0" | "0x1" | "0x2" | "0x7c" | undefined;
|
896
|
-
hash?: `0x${string}` | undefined;
|
897
892
|
blockHash?: `0x${string}` | null | undefined;
|
898
893
|
blockNumber?: `0x${string}` | null | undefined;
|
899
|
-
|
894
|
+
from?: `0x${string}` | undefined;
|
895
|
+
hash?: `0x${string}` | undefined;
|
900
896
|
input?: `0x${string}` | undefined;
|
897
|
+
nonce?: `0x${string}` | undefined;
|
901
898
|
r?: `0x${string}` | undefined;
|
902
899
|
s?: `0x${string}` | undefined;
|
900
|
+
to?: `0x${string}` | null | undefined;
|
901
|
+
transactionIndex?: `0x${string}` | null | undefined;
|
903
902
|
v?: `0x${string}` | undefined;
|
903
|
+
accessList?: import("../../index.js").AccessList | undefined;
|
904
904
|
chainId?: `0x${string}` | undefined;
|
905
905
|
} & import("../../index.js").TransactionBase<`0x${string}`, `0x${string}`, boolean> & import("../../index.js").FeeValuesEIP1559<`0x${string}`> & {
|
906
906
|
feeCurrency: `0x${string}` | null;
|
@@ -908,96 +908,96 @@ export declare const celoCannoli: {
|
|
908
908
|
gatewayFeeRecipient: `0x${string}` | null;
|
909
909
|
type: "0x7c";
|
910
910
|
}) | ({
|
911
|
-
|
911
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7c" | undefined;
|
912
|
+
gas?: `0x${string}` | undefined;
|
913
|
+
value?: `0x${string}` | undefined;
|
912
914
|
gasPrice?: `0x${string}` | undefined;
|
913
915
|
maxFeePerGas?: `0x${string}` | undefined;
|
914
916
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
915
|
-
gas?: `0x${string}` | undefined;
|
916
|
-
nonce?: `0x${string}` | undefined;
|
917
|
-
to?: `0x${string}` | null | undefined;
|
918
|
-
value?: `0x${string}` | undefined;
|
919
|
-
accessList?: import("../../index.js").AccessList | undefined;
|
920
|
-
type?: "0x0" | "0x1" | "0x2" | "0x7c" | undefined;
|
921
|
-
hash?: `0x${string}` | undefined;
|
922
917
|
blockHash?: `0x${string}` | null | undefined;
|
923
918
|
blockNumber?: `0x${string}` | null | undefined;
|
924
|
-
|
919
|
+
from?: `0x${string}` | undefined;
|
920
|
+
hash?: `0x${string}` | undefined;
|
925
921
|
input?: `0x${string}` | undefined;
|
922
|
+
nonce?: `0x${string}` | undefined;
|
926
923
|
r?: `0x${string}` | undefined;
|
927
924
|
s?: `0x${string}` | undefined;
|
925
|
+
to?: `0x${string}` | null | undefined;
|
926
|
+
transactionIndex?: `0x${string}` | null | undefined;
|
928
927
|
v?: `0x${string}` | undefined;
|
928
|
+
accessList?: import("../../index.js").AccessList | undefined;
|
929
929
|
chainId?: `0x${string}` | undefined;
|
930
930
|
} & import("../index.js").Omit<import("../../index.js").TransactionLegacy<`0x${string}`, `0x${string}`, boolean, "0x0">, "typeHex"> & {
|
931
931
|
feeCurrency: `0x${string}` | null;
|
932
932
|
gatewayFee: `0x${string}` | null;
|
933
933
|
gatewayFeeRecipient: `0x${string}` | null;
|
934
934
|
}) | ({
|
935
|
-
|
935
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7c" | undefined;
|
936
|
+
gas?: `0x${string}` | undefined;
|
937
|
+
value?: `0x${string}` | undefined;
|
936
938
|
gasPrice?: `0x${string}` | undefined;
|
937
939
|
maxFeePerGas?: `0x${string}` | undefined;
|
938
940
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
939
|
-
gas?: `0x${string}` | undefined;
|
940
|
-
nonce?: `0x${string}` | undefined;
|
941
|
-
to?: `0x${string}` | null | undefined;
|
942
|
-
value?: `0x${string}` | undefined;
|
943
|
-
accessList?: import("../../index.js").AccessList | undefined;
|
944
|
-
type?: "0x0" | "0x1" | "0x2" | "0x7c" | undefined;
|
945
|
-
hash?: `0x${string}` | undefined;
|
946
941
|
blockHash?: `0x${string}` | null | undefined;
|
947
942
|
blockNumber?: `0x${string}` | null | undefined;
|
948
|
-
|
943
|
+
from?: `0x${string}` | undefined;
|
944
|
+
hash?: `0x${string}` | undefined;
|
949
945
|
input?: `0x${string}` | undefined;
|
946
|
+
nonce?: `0x${string}` | undefined;
|
950
947
|
r?: `0x${string}` | undefined;
|
951
948
|
s?: `0x${string}` | undefined;
|
949
|
+
to?: `0x${string}` | null | undefined;
|
950
|
+
transactionIndex?: `0x${string}` | null | undefined;
|
952
951
|
v?: `0x${string}` | undefined;
|
952
|
+
accessList?: import("../../index.js").AccessList | undefined;
|
953
953
|
chainId?: `0x${string}` | undefined;
|
954
954
|
} & import("../index.js").Omit<import("../../index.js").TransactionEIP2930<`0x${string}`, `0x${string}`, boolean, "0x1">, "typeHex"> & {
|
955
955
|
feeCurrency: `0x${string}` | null;
|
956
956
|
gatewayFee: `0x${string}` | null;
|
957
957
|
gatewayFeeRecipient: `0x${string}` | null;
|
958
958
|
}) | ({
|
959
|
-
|
959
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7c" | undefined;
|
960
|
+
gas?: `0x${string}` | undefined;
|
961
|
+
value?: `0x${string}` | undefined;
|
960
962
|
gasPrice?: `0x${string}` | undefined;
|
961
963
|
maxFeePerGas?: `0x${string}` | undefined;
|
962
964
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
963
|
-
gas?: `0x${string}` | undefined;
|
964
|
-
nonce?: `0x${string}` | undefined;
|
965
|
-
to?: `0x${string}` | null | undefined;
|
966
|
-
value?: `0x${string}` | undefined;
|
967
|
-
accessList?: import("../../index.js").AccessList | undefined;
|
968
|
-
type?: "0x0" | "0x1" | "0x2" | "0x7c" | undefined;
|
969
|
-
hash?: `0x${string}` | undefined;
|
970
965
|
blockHash?: `0x${string}` | null | undefined;
|
971
966
|
blockNumber?: `0x${string}` | null | undefined;
|
972
|
-
|
967
|
+
from?: `0x${string}` | undefined;
|
968
|
+
hash?: `0x${string}` | undefined;
|
973
969
|
input?: `0x${string}` | undefined;
|
970
|
+
nonce?: `0x${string}` | undefined;
|
974
971
|
r?: `0x${string}` | undefined;
|
975
972
|
s?: `0x${string}` | undefined;
|
973
|
+
to?: `0x${string}` | null | undefined;
|
974
|
+
transactionIndex?: `0x${string}` | null | undefined;
|
976
975
|
v?: `0x${string}` | undefined;
|
976
|
+
accessList?: import("../../index.js").AccessList | undefined;
|
977
977
|
chainId?: `0x${string}` | undefined;
|
978
978
|
} & import("../index.js").Omit<import("../../index.js").TransactionEIP1559<`0x${string}`, `0x${string}`, boolean, "0x2">, "typeHex"> & {
|
979
979
|
feeCurrency: `0x${string}` | null;
|
980
980
|
gatewayFee: `0x${string}` | null;
|
981
981
|
gatewayFeeRecipient: `0x${string}` | null;
|
982
982
|
}) | ({
|
983
|
-
|
983
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7c" | undefined;
|
984
|
+
gas?: `0x${string}` | undefined;
|
985
|
+
value?: `0x${string}` | undefined;
|
984
986
|
gasPrice?: `0x${string}` | undefined;
|
985
987
|
maxFeePerGas?: `0x${string}` | undefined;
|
986
988
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
987
|
-
gas?: `0x${string}` | undefined;
|
988
|
-
nonce?: `0x${string}` | undefined;
|
989
|
-
to?: `0x${string}` | null | undefined;
|
990
|
-
value?: `0x${string}` | undefined;
|
991
|
-
accessList?: import("../../index.js").AccessList | undefined;
|
992
|
-
type?: "0x0" | "0x1" | "0x2" | "0x7c" | undefined;
|
993
|
-
hash?: `0x${string}` | undefined;
|
994
989
|
blockHash?: `0x${string}` | null | undefined;
|
995
990
|
blockNumber?: `0x${string}` | null | undefined;
|
996
|
-
|
991
|
+
from?: `0x${string}` | undefined;
|
992
|
+
hash?: `0x${string}` | undefined;
|
997
993
|
input?: `0x${string}` | undefined;
|
994
|
+
nonce?: `0x${string}` | undefined;
|
998
995
|
r?: `0x${string}` | undefined;
|
999
996
|
s?: `0x${string}` | undefined;
|
997
|
+
to?: `0x${string}` | null | undefined;
|
998
|
+
transactionIndex?: `0x${string}` | null | undefined;
|
1000
999
|
v?: `0x${string}` | undefined;
|
1000
|
+
accessList?: import("../../index.js").AccessList | undefined;
|
1001
1001
|
chainId?: `0x${string}` | undefined;
|
1002
1002
|
} & import("../../index.js").TransactionBase<`0x${string}`, `0x${string}`, boolean> & import("../../index.js").FeeValuesEIP1559<`0x${string}`> & {
|
1003
1003
|
feeCurrency: `0x${string}` | null;
|
@@ -1452,48 +1452,48 @@ export declare const celoCannoli: {
|
|
1452
1452
|
readonly transaction: {
|
1453
1453
|
exclude: [] | undefined;
|
1454
1454
|
format: (args: ({
|
1455
|
-
|
1455
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7c" | undefined;
|
1456
|
+
gas?: `0x${string}` | undefined;
|
1457
|
+
value?: `0x${string}` | undefined;
|
1456
1458
|
gasPrice?: `0x${string}` | undefined;
|
1457
1459
|
maxFeePerGas?: `0x${string}` | undefined;
|
1458
1460
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
1459
|
-
gas?: `0x${string}` | undefined;
|
1460
|
-
nonce?: `0x${string}` | undefined;
|
1461
|
-
to?: `0x${string}` | null | undefined;
|
1462
|
-
value?: `0x${string}` | undefined;
|
1463
|
-
accessList?: undefined;
|
1464
|
-
type?: "0x0" | "0x1" | "0x2" | "0x7c" | undefined;
|
1465
|
-
hash?: `0x${string}` | undefined;
|
1466
1461
|
blockHash?: `0x${string}` | null | undefined;
|
1467
1462
|
blockNumber?: `0x${string}` | null | undefined;
|
1468
|
-
|
1463
|
+
from?: `0x${string}` | undefined;
|
1464
|
+
hash?: `0x${string}` | undefined;
|
1469
1465
|
input?: `0x${string}` | undefined;
|
1466
|
+
nonce?: `0x${string}` | undefined;
|
1470
1467
|
r?: `0x${string}` | undefined;
|
1471
1468
|
s?: `0x${string}` | undefined;
|
1469
|
+
to?: `0x${string}` | null | undefined;
|
1470
|
+
transactionIndex?: `0x${string}` | null | undefined;
|
1472
1471
|
v?: `0x${string}` | undefined;
|
1472
|
+
accessList?: undefined;
|
1473
1473
|
chainId?: `0x${string}` | undefined;
|
1474
1474
|
} & import("../index.js").Omit<import("../../index.js").TransactionLegacy<`0x${string}`, `0x${string}`, boolean, "0x0">, "typeHex"> & {
|
1475
1475
|
feeCurrency: `0x${string}` | null;
|
1476
1476
|
gatewayFee: `0x${string}` | null;
|
1477
1477
|
gatewayFeeRecipient: `0x${string}` | null;
|
1478
1478
|
}) | ({
|
1479
|
-
|
1479
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7c" | undefined;
|
1480
|
+
gas?: `0x${string}` | undefined;
|
1481
|
+
value?: `0x${string}` | undefined;
|
1480
1482
|
gasPrice?: `0x${string}` | undefined;
|
1481
1483
|
maxFeePerGas?: `0x${string}` | undefined;
|
1482
1484
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
1483
|
-
gas?: `0x${string}` | undefined;
|
1484
|
-
nonce?: `0x${string}` | undefined;
|
1485
|
-
to?: `0x${string}` | null | undefined;
|
1486
|
-
value?: `0x${string}` | undefined;
|
1487
|
-
accessList?: undefined;
|
1488
|
-
type?: "0x0" | "0x1" | "0x2" | "0x7c" | undefined;
|
1489
|
-
hash?: `0x${string}` | undefined;
|
1490
1485
|
blockHash?: `0x${string}` | null | undefined;
|
1491
1486
|
blockNumber?: `0x${string}` | null | undefined;
|
1492
|
-
|
1487
|
+
from?: `0x${string}` | undefined;
|
1488
|
+
hash?: `0x${string}` | undefined;
|
1493
1489
|
input?: `0x${string}` | undefined;
|
1490
|
+
nonce?: `0x${string}` | undefined;
|
1494
1491
|
r?: `0x${string}` | undefined;
|
1495
1492
|
s?: `0x${string}` | undefined;
|
1493
|
+
to?: `0x${string}` | null | undefined;
|
1494
|
+
transactionIndex?: `0x${string}` | null | undefined;
|
1496
1495
|
v?: `0x${string}` | undefined;
|
1496
|
+
accessList?: undefined;
|
1497
1497
|
chainId?: `0x${string}` | undefined;
|
1498
1498
|
} & import("../../index.js").TransactionBase<`0x${string}`, `0x${string}`, boolean> & import("../../index.js").FeeValuesEIP1559<`0x${string}`> & {
|
1499
1499
|
feeCurrency: `0x${string}` | null;
|
@@ -1501,96 +1501,96 @@ export declare const celoCannoli: {
|
|
1501
1501
|
gatewayFeeRecipient: `0x${string}` | null;
|
1502
1502
|
type: "0x7c";
|
1503
1503
|
}) | ({
|
1504
|
-
|
1504
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7c" | undefined;
|
1505
|
+
gas?: `0x${string}` | undefined;
|
1506
|
+
value?: `0x${string}` | undefined;
|
1505
1507
|
gasPrice?: `0x${string}` | undefined;
|
1506
1508
|
maxFeePerGas?: `0x${string}` | undefined;
|
1507
1509
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
1508
|
-
gas?: `0x${string}` | undefined;
|
1509
|
-
nonce?: `0x${string}` | undefined;
|
1510
|
-
to?: `0x${string}` | null | undefined;
|
1511
|
-
value?: `0x${string}` | undefined;
|
1512
|
-
accessList?: import("../../index.js").AccessList | undefined;
|
1513
|
-
type?: "0x0" | "0x1" | "0x2" | "0x7c" | undefined;
|
1514
|
-
hash?: `0x${string}` | undefined;
|
1515
1510
|
blockHash?: `0x${string}` | null | undefined;
|
1516
1511
|
blockNumber?: `0x${string}` | null | undefined;
|
1517
|
-
|
1512
|
+
from?: `0x${string}` | undefined;
|
1513
|
+
hash?: `0x${string}` | undefined;
|
1518
1514
|
input?: `0x${string}` | undefined;
|
1515
|
+
nonce?: `0x${string}` | undefined;
|
1519
1516
|
r?: `0x${string}` | undefined;
|
1520
1517
|
s?: `0x${string}` | undefined;
|
1518
|
+
to?: `0x${string}` | null | undefined;
|
1519
|
+
transactionIndex?: `0x${string}` | null | undefined;
|
1521
1520
|
v?: `0x${string}` | undefined;
|
1521
|
+
accessList?: import("../../index.js").AccessList | undefined;
|
1522
1522
|
chainId?: `0x${string}` | undefined;
|
1523
1523
|
} & import("../index.js").Omit<import("../../index.js").TransactionLegacy<`0x${string}`, `0x${string}`, boolean, "0x0">, "typeHex"> & {
|
1524
1524
|
feeCurrency: `0x${string}` | null;
|
1525
1525
|
gatewayFee: `0x${string}` | null;
|
1526
1526
|
gatewayFeeRecipient: `0x${string}` | null;
|
1527
1527
|
}) | ({
|
1528
|
-
|
1528
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7c" | undefined;
|
1529
|
+
gas?: `0x${string}` | undefined;
|
1530
|
+
value?: `0x${string}` | undefined;
|
1529
1531
|
gasPrice?: `0x${string}` | undefined;
|
1530
1532
|
maxFeePerGas?: `0x${string}` | undefined;
|
1531
1533
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
1532
|
-
gas?: `0x${string}` | undefined;
|
1533
|
-
nonce?: `0x${string}` | undefined;
|
1534
|
-
to?: `0x${string}` | null | undefined;
|
1535
|
-
value?: `0x${string}` | undefined;
|
1536
|
-
accessList?: import("../../index.js").AccessList | undefined;
|
1537
|
-
type?: "0x0" | "0x1" | "0x2" | "0x7c" | undefined;
|
1538
|
-
hash?: `0x${string}` | undefined;
|
1539
1534
|
blockHash?: `0x${string}` | null | undefined;
|
1540
1535
|
blockNumber?: `0x${string}` | null | undefined;
|
1541
|
-
|
1536
|
+
from?: `0x${string}` | undefined;
|
1537
|
+
hash?: `0x${string}` | undefined;
|
1542
1538
|
input?: `0x${string}` | undefined;
|
1539
|
+
nonce?: `0x${string}` | undefined;
|
1543
1540
|
r?: `0x${string}` | undefined;
|
1544
1541
|
s?: `0x${string}` | undefined;
|
1542
|
+
to?: `0x${string}` | null | undefined;
|
1543
|
+
transactionIndex?: `0x${string}` | null | undefined;
|
1545
1544
|
v?: `0x${string}` | undefined;
|
1545
|
+
accessList?: import("../../index.js").AccessList | undefined;
|
1546
1546
|
chainId?: `0x${string}` | undefined;
|
1547
1547
|
} & import("../index.js").Omit<import("../../index.js").TransactionEIP2930<`0x${string}`, `0x${string}`, boolean, "0x1">, "typeHex"> & {
|
1548
1548
|
feeCurrency: `0x${string}` | null;
|
1549
1549
|
gatewayFee: `0x${string}` | null;
|
1550
1550
|
gatewayFeeRecipient: `0x${string}` | null;
|
1551
1551
|
}) | ({
|
1552
|
-
|
1552
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7c" | undefined;
|
1553
|
+
gas?: `0x${string}` | undefined;
|
1554
|
+
value?: `0x${string}` | undefined;
|
1553
1555
|
gasPrice?: `0x${string}` | undefined;
|
1554
1556
|
maxFeePerGas?: `0x${string}` | undefined;
|
1555
1557
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
1556
|
-
gas?: `0x${string}` | undefined;
|
1557
|
-
nonce?: `0x${string}` | undefined;
|
1558
|
-
to?: `0x${string}` | null | undefined;
|
1559
|
-
value?: `0x${string}` | undefined;
|
1560
|
-
accessList?: import("../../index.js").AccessList | undefined;
|
1561
|
-
type?: "0x0" | "0x1" | "0x2" | "0x7c" | undefined;
|
1562
|
-
hash?: `0x${string}` | undefined;
|
1563
1558
|
blockHash?: `0x${string}` | null | undefined;
|
1564
1559
|
blockNumber?: `0x${string}` | null | undefined;
|
1565
|
-
|
1560
|
+
from?: `0x${string}` | undefined;
|
1561
|
+
hash?: `0x${string}` | undefined;
|
1566
1562
|
input?: `0x${string}` | undefined;
|
1563
|
+
nonce?: `0x${string}` | undefined;
|
1567
1564
|
r?: `0x${string}` | undefined;
|
1568
1565
|
s?: `0x${string}` | undefined;
|
1566
|
+
to?: `0x${string}` | null | undefined;
|
1567
|
+
transactionIndex?: `0x${string}` | null | undefined;
|
1569
1568
|
v?: `0x${string}` | undefined;
|
1569
|
+
accessList?: import("../../index.js").AccessList | undefined;
|
1570
1570
|
chainId?: `0x${string}` | undefined;
|
1571
1571
|
} & import("../index.js").Omit<import("../../index.js").TransactionEIP1559<`0x${string}`, `0x${string}`, boolean, "0x2">, "typeHex"> & {
|
1572
1572
|
feeCurrency: `0x${string}` | null;
|
1573
1573
|
gatewayFee: `0x${string}` | null;
|
1574
1574
|
gatewayFeeRecipient: `0x${string}` | null;
|
1575
1575
|
}) | ({
|
1576
|
-
|
1576
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7c" | undefined;
|
1577
|
+
gas?: `0x${string}` | undefined;
|
1578
|
+
value?: `0x${string}` | undefined;
|
1577
1579
|
gasPrice?: `0x${string}` | undefined;
|
1578
1580
|
maxFeePerGas?: `0x${string}` | undefined;
|
1579
1581
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
1580
|
-
gas?: `0x${string}` | undefined;
|
1581
|
-
nonce?: `0x${string}` | undefined;
|
1582
|
-
to?: `0x${string}` | null | undefined;
|
1583
|
-
value?: `0x${string}` | undefined;
|
1584
|
-
accessList?: import("../../index.js").AccessList | undefined;
|
1585
|
-
type?: "0x0" | "0x1" | "0x2" | "0x7c" | undefined;
|
1586
|
-
hash?: `0x${string}` | undefined;
|
1587
1582
|
blockHash?: `0x${string}` | null | undefined;
|
1588
1583
|
blockNumber?: `0x${string}` | null | undefined;
|
1589
|
-
|
1584
|
+
from?: `0x${string}` | undefined;
|
1585
|
+
hash?: `0x${string}` | undefined;
|
1590
1586
|
input?: `0x${string}` | undefined;
|
1587
|
+
nonce?: `0x${string}` | undefined;
|
1591
1588
|
r?: `0x${string}` | undefined;
|
1592
1589
|
s?: `0x${string}` | undefined;
|
1590
|
+
to?: `0x${string}` | null | undefined;
|
1591
|
+
transactionIndex?: `0x${string}` | null | undefined;
|
1593
1592
|
v?: `0x${string}` | undefined;
|
1593
|
+
accessList?: import("../../index.js").AccessList | undefined;
|
1594
1594
|
chainId?: `0x${string}` | undefined;
|
1595
1595
|
} & import("../../index.js").TransactionBase<`0x${string}`, `0x${string}`, boolean> & import("../../index.js").FeeValuesEIP1559<`0x${string}`> & {
|
1596
1596
|
feeCurrency: `0x${string}` | null;
|
@@ -1598,96 +1598,96 @@ export declare const celoCannoli: {
|
|
1598
1598
|
gatewayFeeRecipient: `0x${string}` | null;
|
1599
1599
|
type: "0x7c";
|
1600
1600
|
}) | ({
|
1601
|
-
|
1601
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7c" | undefined;
|
1602
|
+
gas?: `0x${string}` | undefined;
|
1603
|
+
value?: `0x${string}` | undefined;
|
1602
1604
|
gasPrice?: `0x${string}` | undefined;
|
1603
1605
|
maxFeePerGas?: `0x${string}` | undefined;
|
1604
1606
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
1605
|
-
gas?: `0x${string}` | undefined;
|
1606
|
-
nonce?: `0x${string}` | undefined;
|
1607
|
-
to?: `0x${string}` | null | undefined;
|
1608
|
-
value?: `0x${string}` | undefined;
|
1609
|
-
accessList?: import("../../index.js").AccessList | undefined;
|
1610
|
-
type?: "0x0" | "0x1" | "0x2" | "0x7c" | undefined;
|
1611
|
-
hash?: `0x${string}` | undefined;
|
1612
1607
|
blockHash?: `0x${string}` | null | undefined;
|
1613
1608
|
blockNumber?: `0x${string}` | null | undefined;
|
1614
|
-
|
1609
|
+
from?: `0x${string}` | undefined;
|
1610
|
+
hash?: `0x${string}` | undefined;
|
1615
1611
|
input?: `0x${string}` | undefined;
|
1612
|
+
nonce?: `0x${string}` | undefined;
|
1616
1613
|
r?: `0x${string}` | undefined;
|
1617
1614
|
s?: `0x${string}` | undefined;
|
1615
|
+
to?: `0x${string}` | null | undefined;
|
1616
|
+
transactionIndex?: `0x${string}` | null | undefined;
|
1618
1617
|
v?: `0x${string}` | undefined;
|
1618
|
+
accessList?: import("../../index.js").AccessList | undefined;
|
1619
1619
|
chainId?: `0x${string}` | undefined;
|
1620
1620
|
} & import("../index.js").Omit<import("../../index.js").TransactionLegacy<`0x${string}`, `0x${string}`, boolean, "0x0">, "typeHex"> & {
|
1621
1621
|
feeCurrency: `0x${string}` | null;
|
1622
1622
|
gatewayFee: `0x${string}` | null;
|
1623
1623
|
gatewayFeeRecipient: `0x${string}` | null;
|
1624
1624
|
}) | ({
|
1625
|
-
|
1625
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7c" | undefined;
|
1626
|
+
gas?: `0x${string}` | undefined;
|
1627
|
+
value?: `0x${string}` | undefined;
|
1626
1628
|
gasPrice?: `0x${string}` | undefined;
|
1627
1629
|
maxFeePerGas?: `0x${string}` | undefined;
|
1628
1630
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
1629
|
-
gas?: `0x${string}` | undefined;
|
1630
|
-
nonce?: `0x${string}` | undefined;
|
1631
|
-
to?: `0x${string}` | null | undefined;
|
1632
|
-
value?: `0x${string}` | undefined;
|
1633
|
-
accessList?: import("../../index.js").AccessList | undefined;
|
1634
|
-
type?: "0x0" | "0x1" | "0x2" | "0x7c" | undefined;
|
1635
|
-
hash?: `0x${string}` | undefined;
|
1636
1631
|
blockHash?: `0x${string}` | null | undefined;
|
1637
1632
|
blockNumber?: `0x${string}` | null | undefined;
|
1638
|
-
|
1633
|
+
from?: `0x${string}` | undefined;
|
1634
|
+
hash?: `0x${string}` | undefined;
|
1639
1635
|
input?: `0x${string}` | undefined;
|
1636
|
+
nonce?: `0x${string}` | undefined;
|
1640
1637
|
r?: `0x${string}` | undefined;
|
1641
1638
|
s?: `0x${string}` | undefined;
|
1639
|
+
to?: `0x${string}` | null | undefined;
|
1640
|
+
transactionIndex?: `0x${string}` | null | undefined;
|
1642
1641
|
v?: `0x${string}` | undefined;
|
1642
|
+
accessList?: import("../../index.js").AccessList | undefined;
|
1643
1643
|
chainId?: `0x${string}` | undefined;
|
1644
1644
|
} & import("../index.js").Omit<import("../../index.js").TransactionEIP2930<`0x${string}`, `0x${string}`, boolean, "0x1">, "typeHex"> & {
|
1645
1645
|
feeCurrency: `0x${string}` | null;
|
1646
1646
|
gatewayFee: `0x${string}` | null;
|
1647
1647
|
gatewayFeeRecipient: `0x${string}` | null;
|
1648
1648
|
}) | ({
|
1649
|
-
|
1649
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7c" | undefined;
|
1650
|
+
gas?: `0x${string}` | undefined;
|
1651
|
+
value?: `0x${string}` | undefined;
|
1650
1652
|
gasPrice?: `0x${string}` | undefined;
|
1651
1653
|
maxFeePerGas?: `0x${string}` | undefined;
|
1652
1654
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
1653
|
-
gas?: `0x${string}` | undefined;
|
1654
|
-
nonce?: `0x${string}` | undefined;
|
1655
|
-
to?: `0x${string}` | null | undefined;
|
1656
|
-
value?: `0x${string}` | undefined;
|
1657
|
-
accessList?: import("../../index.js").AccessList | undefined;
|
1658
|
-
type?: "0x0" | "0x1" | "0x2" | "0x7c" | undefined;
|
1659
|
-
hash?: `0x${string}` | undefined;
|
1660
1655
|
blockHash?: `0x${string}` | null | undefined;
|
1661
1656
|
blockNumber?: `0x${string}` | null | undefined;
|
1662
|
-
|
1657
|
+
from?: `0x${string}` | undefined;
|
1658
|
+
hash?: `0x${string}` | undefined;
|
1663
1659
|
input?: `0x${string}` | undefined;
|
1660
|
+
nonce?: `0x${string}` | undefined;
|
1664
1661
|
r?: `0x${string}` | undefined;
|
1665
1662
|
s?: `0x${string}` | undefined;
|
1663
|
+
to?: `0x${string}` | null | undefined;
|
1664
|
+
transactionIndex?: `0x${string}` | null | undefined;
|
1666
1665
|
v?: `0x${string}` | undefined;
|
1666
|
+
accessList?: import("../../index.js").AccessList | undefined;
|
1667
1667
|
chainId?: `0x${string}` | undefined;
|
1668
1668
|
} & import("../index.js").Omit<import("../../index.js").TransactionEIP1559<`0x${string}`, `0x${string}`, boolean, "0x2">, "typeHex"> & {
|
1669
1669
|
feeCurrency: `0x${string}` | null;
|
1670
1670
|
gatewayFee: `0x${string}` | null;
|
1671
1671
|
gatewayFeeRecipient: `0x${string}` | null;
|
1672
1672
|
}) | ({
|
1673
|
-
|
1673
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7c" | undefined;
|
1674
|
+
gas?: `0x${string}` | undefined;
|
1675
|
+
value?: `0x${string}` | undefined;
|
1674
1676
|
gasPrice?: `0x${string}` | undefined;
|
1675
1677
|
maxFeePerGas?: `0x${string}` | undefined;
|
1676
1678
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
1677
|
-
gas?: `0x${string}` | undefined;
|
1678
|
-
nonce?: `0x${string}` | undefined;
|
1679
|
-
to?: `0x${string}` | null | undefined;
|
1680
|
-
value?: `0x${string}` | undefined;
|
1681
|
-
accessList?: import("../../index.js").AccessList | undefined;
|
1682
|
-
type?: "0x0" | "0x1" | "0x2" | "0x7c" | undefined;
|
1683
|
-
hash?: `0x${string}` | undefined;
|
1684
1679
|
blockHash?: `0x${string}` | null | undefined;
|
1685
1680
|
blockNumber?: `0x${string}` | null | undefined;
|
1686
|
-
|
1681
|
+
from?: `0x${string}` | undefined;
|
1682
|
+
hash?: `0x${string}` | undefined;
|
1687
1683
|
input?: `0x${string}` | undefined;
|
1684
|
+
nonce?: `0x${string}` | undefined;
|
1688
1685
|
r?: `0x${string}` | undefined;
|
1689
1686
|
s?: `0x${string}` | undefined;
|
1687
|
+
to?: `0x${string}` | null | undefined;
|
1688
|
+
transactionIndex?: `0x${string}` | null | undefined;
|
1690
1689
|
v?: `0x${string}` | undefined;
|
1690
|
+
accessList?: import("../../index.js").AccessList | undefined;
|
1691
1691
|
chainId?: `0x${string}` | undefined;
|
1692
1692
|
} & import("../../index.js").TransactionBase<`0x${string}`, `0x${string}`, boolean> & import("../../index.js").FeeValuesEIP1559<`0x${string}`> & {
|
1693
1693
|
feeCurrency: `0x${string}` | null;
|