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
@@ -63,48 +63,48 @@ export declare const zora: {
|
|
63
63
|
readonly transaction: {
|
64
64
|
exclude: [] | undefined;
|
65
65
|
format: (args: ({
|
66
|
-
|
66
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
67
|
+
gas?: `0x${string}` | undefined;
|
68
|
+
value?: `0x${string}` | undefined;
|
67
69
|
gasPrice?: `0x${string}` | undefined;
|
68
70
|
maxFeePerGas?: `0x${string}` | undefined;
|
69
71
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
70
|
-
gas?: `0x${string}` | undefined;
|
71
|
-
nonce?: `0x${string}` | undefined;
|
72
|
-
to?: `0x${string}` | null | undefined;
|
73
|
-
value?: `0x${string}` | undefined;
|
74
|
-
accessList?: undefined;
|
75
|
-
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
76
|
-
hash?: `0x${string}` | undefined;
|
77
72
|
blockHash?: `0x${string}` | null | undefined;
|
78
73
|
blockNumber?: `0x${string}` | null | undefined;
|
79
|
-
|
74
|
+
from?: `0x${string}` | undefined;
|
75
|
+
hash?: `0x${string}` | undefined;
|
80
76
|
input?: `0x${string}` | undefined;
|
77
|
+
nonce?: `0x${string}` | undefined;
|
81
78
|
r?: `0x${string}` | undefined;
|
82
79
|
s?: `0x${string}` | undefined;
|
80
|
+
to?: `0x${string}` | null | undefined;
|
81
|
+
transactionIndex?: `0x${string}` | null | undefined;
|
83
82
|
v?: `0x${string}` | undefined;
|
83
|
+
accessList?: undefined;
|
84
84
|
chainId?: `0x${string}` | undefined;
|
85
85
|
} & import("../index.js").Omit<import("../../index.js").TransactionLegacy<`0x${string}`, `0x${string}`, boolean, "0x0">, "typeHex"> & {
|
86
86
|
isSystemTx?: undefined;
|
87
87
|
mint?: undefined;
|
88
88
|
sourceHash?: undefined;
|
89
89
|
}) | ({
|
90
|
-
|
90
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
91
|
+
gas?: `0x${string}` | undefined;
|
92
|
+
value?: `0x${string}` | undefined;
|
91
93
|
gasPrice?: `0x${string}` | undefined;
|
92
94
|
maxFeePerGas?: `0x${string}` | undefined;
|
93
95
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
94
|
-
gas?: `0x${string}` | undefined;
|
95
|
-
nonce?: `0x${string}` | undefined;
|
96
|
-
to?: `0x${string}` | null | undefined;
|
97
|
-
value?: `0x${string}` | undefined;
|
98
|
-
accessList?: undefined;
|
99
|
-
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
100
|
-
hash?: `0x${string}` | undefined;
|
101
96
|
blockHash?: `0x${string}` | null | undefined;
|
102
97
|
blockNumber?: `0x${string}` | null | undefined;
|
103
|
-
|
98
|
+
from?: `0x${string}` | undefined;
|
99
|
+
hash?: `0x${string}` | undefined;
|
104
100
|
input?: `0x${string}` | undefined;
|
101
|
+
nonce?: `0x${string}` | undefined;
|
105
102
|
r?: `0x${string}` | undefined;
|
106
103
|
s?: `0x${string}` | undefined;
|
104
|
+
to?: `0x${string}` | null | undefined;
|
105
|
+
transactionIndex?: `0x${string}` | null | undefined;
|
107
106
|
v?: `0x${string}` | undefined;
|
107
|
+
accessList?: undefined;
|
108
108
|
chainId?: `0x${string}` | undefined;
|
109
109
|
} & Omit<import("../../index.js").TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & import("../../index.js").FeeValuesEIP1559<`0x${string}`> & {
|
110
110
|
isSystemTx?: boolean | undefined;
|
@@ -112,96 +112,96 @@ export declare const zora: {
|
|
112
112
|
sourceHash: `0x${string}`;
|
113
113
|
type: "0x7e";
|
114
114
|
}) | ({
|
115
|
-
|
115
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
116
|
+
gas?: `0x${string}` | undefined;
|
117
|
+
value?: `0x${string}` | undefined;
|
116
118
|
gasPrice?: `0x${string}` | undefined;
|
117
119
|
maxFeePerGas?: `0x${string}` | undefined;
|
118
120
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
119
|
-
gas?: `0x${string}` | undefined;
|
120
|
-
nonce?: `0x${string}` | undefined;
|
121
|
-
to?: `0x${string}` | null | undefined;
|
122
|
-
value?: `0x${string}` | undefined;
|
123
|
-
accessList?: import("../../index.js").AccessList | undefined;
|
124
|
-
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
125
|
-
hash?: `0x${string}` | undefined;
|
126
121
|
blockHash?: `0x${string}` | null | undefined;
|
127
122
|
blockNumber?: `0x${string}` | null | undefined;
|
128
|
-
|
123
|
+
from?: `0x${string}` | undefined;
|
124
|
+
hash?: `0x${string}` | undefined;
|
129
125
|
input?: `0x${string}` | undefined;
|
126
|
+
nonce?: `0x${string}` | undefined;
|
130
127
|
r?: `0x${string}` | undefined;
|
131
128
|
s?: `0x${string}` | undefined;
|
129
|
+
to?: `0x${string}` | null | undefined;
|
130
|
+
transactionIndex?: `0x${string}` | null | undefined;
|
132
131
|
v?: `0x${string}` | undefined;
|
132
|
+
accessList?: import("../../index.js").AccessList | undefined;
|
133
133
|
chainId?: `0x${string}` | undefined;
|
134
134
|
} & import("../index.js").Omit<import("../../index.js").TransactionLegacy<`0x${string}`, `0x${string}`, boolean, "0x0">, "typeHex"> & {
|
135
135
|
isSystemTx?: undefined;
|
136
136
|
mint?: undefined;
|
137
137
|
sourceHash?: undefined;
|
138
138
|
}) | ({
|
139
|
-
|
139
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
140
|
+
gas?: `0x${string}` | undefined;
|
141
|
+
value?: `0x${string}` | undefined;
|
140
142
|
gasPrice?: `0x${string}` | undefined;
|
141
143
|
maxFeePerGas?: `0x${string}` | undefined;
|
142
144
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
143
|
-
gas?: `0x${string}` | undefined;
|
144
|
-
nonce?: `0x${string}` | undefined;
|
145
|
-
to?: `0x${string}` | null | undefined;
|
146
|
-
value?: `0x${string}` | undefined;
|
147
|
-
accessList?: import("../../index.js").AccessList | undefined;
|
148
|
-
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
149
|
-
hash?: `0x${string}` | undefined;
|
150
145
|
blockHash?: `0x${string}` | null | undefined;
|
151
146
|
blockNumber?: `0x${string}` | null | undefined;
|
152
|
-
|
147
|
+
from?: `0x${string}` | undefined;
|
148
|
+
hash?: `0x${string}` | undefined;
|
153
149
|
input?: `0x${string}` | undefined;
|
150
|
+
nonce?: `0x${string}` | undefined;
|
154
151
|
r?: `0x${string}` | undefined;
|
155
152
|
s?: `0x${string}` | undefined;
|
153
|
+
to?: `0x${string}` | null | undefined;
|
154
|
+
transactionIndex?: `0x${string}` | null | undefined;
|
156
155
|
v?: `0x${string}` | undefined;
|
156
|
+
accessList?: import("../../index.js").AccessList | undefined;
|
157
157
|
chainId?: `0x${string}` | undefined;
|
158
158
|
} & import("../index.js").Omit<import("../../index.js").TransactionEIP2930<`0x${string}`, `0x${string}`, boolean, "0x1">, "typeHex"> & {
|
159
159
|
isSystemTx?: undefined;
|
160
160
|
mint?: undefined;
|
161
161
|
sourceHash?: undefined;
|
162
162
|
}) | ({
|
163
|
-
|
163
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
164
|
+
gas?: `0x${string}` | undefined;
|
165
|
+
value?: `0x${string}` | undefined;
|
164
166
|
gasPrice?: `0x${string}` | undefined;
|
165
167
|
maxFeePerGas?: `0x${string}` | undefined;
|
166
168
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
167
|
-
gas?: `0x${string}` | undefined;
|
168
|
-
nonce?: `0x${string}` | undefined;
|
169
|
-
to?: `0x${string}` | null | undefined;
|
170
|
-
value?: `0x${string}` | undefined;
|
171
|
-
accessList?: import("../../index.js").AccessList | undefined;
|
172
|
-
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
173
|
-
hash?: `0x${string}` | undefined;
|
174
169
|
blockHash?: `0x${string}` | null | undefined;
|
175
170
|
blockNumber?: `0x${string}` | null | undefined;
|
176
|
-
|
171
|
+
from?: `0x${string}` | undefined;
|
172
|
+
hash?: `0x${string}` | undefined;
|
177
173
|
input?: `0x${string}` | undefined;
|
174
|
+
nonce?: `0x${string}` | undefined;
|
178
175
|
r?: `0x${string}` | undefined;
|
179
176
|
s?: `0x${string}` | undefined;
|
177
|
+
to?: `0x${string}` | null | undefined;
|
178
|
+
transactionIndex?: `0x${string}` | null | undefined;
|
180
179
|
v?: `0x${string}` | undefined;
|
180
|
+
accessList?: import("../../index.js").AccessList | undefined;
|
181
181
|
chainId?: `0x${string}` | undefined;
|
182
182
|
} & import("../index.js").Omit<import("../../index.js").TransactionEIP1559<`0x${string}`, `0x${string}`, boolean, "0x2">, "typeHex"> & {
|
183
183
|
isSystemTx?: undefined;
|
184
184
|
mint?: undefined;
|
185
185
|
sourceHash?: undefined;
|
186
186
|
}) | ({
|
187
|
-
|
187
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
188
|
+
gas?: `0x${string}` | undefined;
|
189
|
+
value?: `0x${string}` | undefined;
|
188
190
|
gasPrice?: `0x${string}` | undefined;
|
189
191
|
maxFeePerGas?: `0x${string}` | undefined;
|
190
192
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
191
|
-
gas?: `0x${string}` | undefined;
|
192
|
-
nonce?: `0x${string}` | undefined;
|
193
|
-
to?: `0x${string}` | null | undefined;
|
194
|
-
value?: `0x${string}` | undefined;
|
195
|
-
accessList?: import("../../index.js").AccessList | undefined;
|
196
|
-
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
197
|
-
hash?: `0x${string}` | undefined;
|
198
193
|
blockHash?: `0x${string}` | null | undefined;
|
199
194
|
blockNumber?: `0x${string}` | null | undefined;
|
200
|
-
|
195
|
+
from?: `0x${string}` | undefined;
|
196
|
+
hash?: `0x${string}` | undefined;
|
201
197
|
input?: `0x${string}` | undefined;
|
198
|
+
nonce?: `0x${string}` | undefined;
|
202
199
|
r?: `0x${string}` | undefined;
|
203
200
|
s?: `0x${string}` | undefined;
|
201
|
+
to?: `0x${string}` | null | undefined;
|
202
|
+
transactionIndex?: `0x${string}` | null | undefined;
|
204
203
|
v?: `0x${string}` | undefined;
|
204
|
+
accessList?: import("../../index.js").AccessList | undefined;
|
205
205
|
chainId?: `0x${string}` | undefined;
|
206
206
|
} & Omit<import("../../index.js").TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & import("../../index.js").FeeValuesEIP1559<`0x${string}`> & {
|
207
207
|
isSystemTx?: boolean | undefined;
|
@@ -209,96 +209,96 @@ export declare const zora: {
|
|
209
209
|
sourceHash: `0x${string}`;
|
210
210
|
type: "0x7e";
|
211
211
|
}) | ({
|
212
|
-
|
212
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
213
|
+
gas?: `0x${string}` | undefined;
|
214
|
+
value?: `0x${string}` | undefined;
|
213
215
|
gasPrice?: `0x${string}` | undefined;
|
214
216
|
maxFeePerGas?: `0x${string}` | undefined;
|
215
217
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
216
|
-
gas?: `0x${string}` | undefined;
|
217
|
-
nonce?: `0x${string}` | undefined;
|
218
|
-
to?: `0x${string}` | null | undefined;
|
219
|
-
value?: `0x${string}` | undefined;
|
220
|
-
accessList?: import("../../index.js").AccessList | undefined;
|
221
|
-
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
222
|
-
hash?: `0x${string}` | undefined;
|
223
218
|
blockHash?: `0x${string}` | null | undefined;
|
224
219
|
blockNumber?: `0x${string}` | null | undefined;
|
225
|
-
|
220
|
+
from?: `0x${string}` | undefined;
|
221
|
+
hash?: `0x${string}` | undefined;
|
226
222
|
input?: `0x${string}` | undefined;
|
223
|
+
nonce?: `0x${string}` | undefined;
|
227
224
|
r?: `0x${string}` | undefined;
|
228
225
|
s?: `0x${string}` | undefined;
|
226
|
+
to?: `0x${string}` | null | undefined;
|
227
|
+
transactionIndex?: `0x${string}` | null | undefined;
|
229
228
|
v?: `0x${string}` | undefined;
|
229
|
+
accessList?: import("../../index.js").AccessList | undefined;
|
230
230
|
chainId?: `0x${string}` | undefined;
|
231
231
|
} & import("../index.js").Omit<import("../../index.js").TransactionLegacy<`0x${string}`, `0x${string}`, boolean, "0x0">, "typeHex"> & {
|
232
232
|
isSystemTx?: undefined;
|
233
233
|
mint?: undefined;
|
234
234
|
sourceHash?: undefined;
|
235
235
|
}) | ({
|
236
|
-
|
236
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
237
|
+
gas?: `0x${string}` | undefined;
|
238
|
+
value?: `0x${string}` | undefined;
|
237
239
|
gasPrice?: `0x${string}` | undefined;
|
238
240
|
maxFeePerGas?: `0x${string}` | undefined;
|
239
241
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
240
|
-
gas?: `0x${string}` | undefined;
|
241
|
-
nonce?: `0x${string}` | undefined;
|
242
|
-
to?: `0x${string}` | null | undefined;
|
243
|
-
value?: `0x${string}` | undefined;
|
244
|
-
accessList?: import("../../index.js").AccessList | undefined;
|
245
|
-
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
246
|
-
hash?: `0x${string}` | undefined;
|
247
242
|
blockHash?: `0x${string}` | null | undefined;
|
248
243
|
blockNumber?: `0x${string}` | null | undefined;
|
249
|
-
|
244
|
+
from?: `0x${string}` | undefined;
|
245
|
+
hash?: `0x${string}` | undefined;
|
250
246
|
input?: `0x${string}` | undefined;
|
247
|
+
nonce?: `0x${string}` | undefined;
|
251
248
|
r?: `0x${string}` | undefined;
|
252
249
|
s?: `0x${string}` | undefined;
|
250
|
+
to?: `0x${string}` | null | undefined;
|
251
|
+
transactionIndex?: `0x${string}` | null | undefined;
|
253
252
|
v?: `0x${string}` | undefined;
|
253
|
+
accessList?: import("../../index.js").AccessList | undefined;
|
254
254
|
chainId?: `0x${string}` | undefined;
|
255
255
|
} & import("../index.js").Omit<import("../../index.js").TransactionEIP2930<`0x${string}`, `0x${string}`, boolean, "0x1">, "typeHex"> & {
|
256
256
|
isSystemTx?: undefined;
|
257
257
|
mint?: undefined;
|
258
258
|
sourceHash?: undefined;
|
259
259
|
}) | ({
|
260
|
-
|
260
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
261
|
+
gas?: `0x${string}` | undefined;
|
262
|
+
value?: `0x${string}` | undefined;
|
261
263
|
gasPrice?: `0x${string}` | undefined;
|
262
264
|
maxFeePerGas?: `0x${string}` | undefined;
|
263
265
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
264
|
-
gas?: `0x${string}` | undefined;
|
265
|
-
nonce?: `0x${string}` | undefined;
|
266
|
-
to?: `0x${string}` | null | undefined;
|
267
|
-
value?: `0x${string}` | undefined;
|
268
|
-
accessList?: import("../../index.js").AccessList | undefined;
|
269
|
-
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
270
|
-
hash?: `0x${string}` | undefined;
|
271
266
|
blockHash?: `0x${string}` | null | undefined;
|
272
267
|
blockNumber?: `0x${string}` | null | undefined;
|
273
|
-
|
268
|
+
from?: `0x${string}` | undefined;
|
269
|
+
hash?: `0x${string}` | undefined;
|
274
270
|
input?: `0x${string}` | undefined;
|
271
|
+
nonce?: `0x${string}` | undefined;
|
275
272
|
r?: `0x${string}` | undefined;
|
276
273
|
s?: `0x${string}` | undefined;
|
274
|
+
to?: `0x${string}` | null | undefined;
|
275
|
+
transactionIndex?: `0x${string}` | null | undefined;
|
277
276
|
v?: `0x${string}` | undefined;
|
277
|
+
accessList?: import("../../index.js").AccessList | undefined;
|
278
278
|
chainId?: `0x${string}` | undefined;
|
279
279
|
} & import("../index.js").Omit<import("../../index.js").TransactionEIP1559<`0x${string}`, `0x${string}`, boolean, "0x2">, "typeHex"> & {
|
280
280
|
isSystemTx?: undefined;
|
281
281
|
mint?: undefined;
|
282
282
|
sourceHash?: undefined;
|
283
283
|
}) | ({
|
284
|
-
|
284
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
285
|
+
gas?: `0x${string}` | undefined;
|
286
|
+
value?: `0x${string}` | undefined;
|
285
287
|
gasPrice?: `0x${string}` | undefined;
|
286
288
|
maxFeePerGas?: `0x${string}` | undefined;
|
287
289
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
288
|
-
gas?: `0x${string}` | undefined;
|
289
|
-
nonce?: `0x${string}` | undefined;
|
290
|
-
to?: `0x${string}` | null | undefined;
|
291
|
-
value?: `0x${string}` | undefined;
|
292
|
-
accessList?: import("../../index.js").AccessList | undefined;
|
293
|
-
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
294
|
-
hash?: `0x${string}` | undefined;
|
295
290
|
blockHash?: `0x${string}` | null | undefined;
|
296
291
|
blockNumber?: `0x${string}` | null | undefined;
|
297
|
-
|
292
|
+
from?: `0x${string}` | undefined;
|
293
|
+
hash?: `0x${string}` | undefined;
|
298
294
|
input?: `0x${string}` | undefined;
|
295
|
+
nonce?: `0x${string}` | undefined;
|
299
296
|
r?: `0x${string}` | undefined;
|
300
297
|
s?: `0x${string}` | undefined;
|
298
|
+
to?: `0x${string}` | null | undefined;
|
299
|
+
transactionIndex?: `0x${string}` | null | undefined;
|
301
300
|
v?: `0x${string}` | undefined;
|
301
|
+
accessList?: import("../../index.js").AccessList | undefined;
|
302
302
|
chainId?: `0x${string}` | undefined;
|
303
303
|
} & Omit<import("../../index.js").TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & import("../../index.js").FeeValuesEIP1559<`0x${string}`> & {
|
304
304
|
isSystemTx?: boolean | undefined;
|
@@ -559,48 +559,48 @@ export declare const zora: {
|
|
559
559
|
readonly transaction: {
|
560
560
|
exclude: [] | undefined;
|
561
561
|
format: (args: ({
|
562
|
-
|
562
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
563
|
+
gas?: `0x${string}` | undefined;
|
564
|
+
value?: `0x${string}` | undefined;
|
563
565
|
gasPrice?: `0x${string}` | undefined;
|
564
566
|
maxFeePerGas?: `0x${string}` | undefined;
|
565
567
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
566
|
-
gas?: `0x${string}` | undefined;
|
567
|
-
nonce?: `0x${string}` | undefined;
|
568
|
-
to?: `0x${string}` | null | undefined;
|
569
|
-
value?: `0x${string}` | undefined;
|
570
|
-
accessList?: undefined;
|
571
|
-
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
572
|
-
hash?: `0x${string}` | undefined;
|
573
568
|
blockHash?: `0x${string}` | null | undefined;
|
574
569
|
blockNumber?: `0x${string}` | null | undefined;
|
575
|
-
|
570
|
+
from?: `0x${string}` | undefined;
|
571
|
+
hash?: `0x${string}` | undefined;
|
576
572
|
input?: `0x${string}` | undefined;
|
573
|
+
nonce?: `0x${string}` | undefined;
|
577
574
|
r?: `0x${string}` | undefined;
|
578
575
|
s?: `0x${string}` | undefined;
|
576
|
+
to?: `0x${string}` | null | undefined;
|
577
|
+
transactionIndex?: `0x${string}` | null | undefined;
|
579
578
|
v?: `0x${string}` | undefined;
|
579
|
+
accessList?: undefined;
|
580
580
|
chainId?: `0x${string}` | undefined;
|
581
581
|
} & import("../index.js").Omit<import("../../index.js").TransactionLegacy<`0x${string}`, `0x${string}`, boolean, "0x0">, "typeHex"> & {
|
582
582
|
isSystemTx?: undefined;
|
583
583
|
mint?: undefined;
|
584
584
|
sourceHash?: undefined;
|
585
585
|
}) | ({
|
586
|
-
|
586
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
587
|
+
gas?: `0x${string}` | undefined;
|
588
|
+
value?: `0x${string}` | undefined;
|
587
589
|
gasPrice?: `0x${string}` | undefined;
|
588
590
|
maxFeePerGas?: `0x${string}` | undefined;
|
589
591
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
590
|
-
gas?: `0x${string}` | undefined;
|
591
|
-
nonce?: `0x${string}` | undefined;
|
592
|
-
to?: `0x${string}` | null | undefined;
|
593
|
-
value?: `0x${string}` | undefined;
|
594
|
-
accessList?: undefined;
|
595
|
-
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
596
|
-
hash?: `0x${string}` | undefined;
|
597
592
|
blockHash?: `0x${string}` | null | undefined;
|
598
593
|
blockNumber?: `0x${string}` | null | undefined;
|
599
|
-
|
594
|
+
from?: `0x${string}` | undefined;
|
595
|
+
hash?: `0x${string}` | undefined;
|
600
596
|
input?: `0x${string}` | undefined;
|
597
|
+
nonce?: `0x${string}` | undefined;
|
601
598
|
r?: `0x${string}` | undefined;
|
602
599
|
s?: `0x${string}` | undefined;
|
600
|
+
to?: `0x${string}` | null | undefined;
|
601
|
+
transactionIndex?: `0x${string}` | null | undefined;
|
603
602
|
v?: `0x${string}` | undefined;
|
603
|
+
accessList?: undefined;
|
604
604
|
chainId?: `0x${string}` | undefined;
|
605
605
|
} & Omit<import("../../index.js").TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & import("../../index.js").FeeValuesEIP1559<`0x${string}`> & {
|
606
606
|
isSystemTx?: boolean | undefined;
|
@@ -608,96 +608,96 @@ export declare const zora: {
|
|
608
608
|
sourceHash: `0x${string}`;
|
609
609
|
type: "0x7e";
|
610
610
|
}) | ({
|
611
|
-
|
611
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
612
|
+
gas?: `0x${string}` | undefined;
|
613
|
+
value?: `0x${string}` | undefined;
|
612
614
|
gasPrice?: `0x${string}` | undefined;
|
613
615
|
maxFeePerGas?: `0x${string}` | undefined;
|
614
616
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
615
|
-
gas?: `0x${string}` | undefined;
|
616
|
-
nonce?: `0x${string}` | undefined;
|
617
|
-
to?: `0x${string}` | null | undefined;
|
618
|
-
value?: `0x${string}` | undefined;
|
619
|
-
accessList?: import("../../index.js").AccessList | undefined;
|
620
|
-
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
621
|
-
hash?: `0x${string}` | undefined;
|
622
617
|
blockHash?: `0x${string}` | null | undefined;
|
623
618
|
blockNumber?: `0x${string}` | null | undefined;
|
624
|
-
|
619
|
+
from?: `0x${string}` | undefined;
|
620
|
+
hash?: `0x${string}` | undefined;
|
625
621
|
input?: `0x${string}` | undefined;
|
622
|
+
nonce?: `0x${string}` | undefined;
|
626
623
|
r?: `0x${string}` | undefined;
|
627
624
|
s?: `0x${string}` | undefined;
|
625
|
+
to?: `0x${string}` | null | undefined;
|
626
|
+
transactionIndex?: `0x${string}` | null | undefined;
|
628
627
|
v?: `0x${string}` | undefined;
|
628
|
+
accessList?: import("../../index.js").AccessList | undefined;
|
629
629
|
chainId?: `0x${string}` | undefined;
|
630
630
|
} & import("../index.js").Omit<import("../../index.js").TransactionLegacy<`0x${string}`, `0x${string}`, boolean, "0x0">, "typeHex"> & {
|
631
631
|
isSystemTx?: undefined;
|
632
632
|
mint?: undefined;
|
633
633
|
sourceHash?: undefined;
|
634
634
|
}) | ({
|
635
|
-
|
635
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
636
|
+
gas?: `0x${string}` | undefined;
|
637
|
+
value?: `0x${string}` | undefined;
|
636
638
|
gasPrice?: `0x${string}` | undefined;
|
637
639
|
maxFeePerGas?: `0x${string}` | undefined;
|
638
640
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
639
|
-
gas?: `0x${string}` | undefined;
|
640
|
-
nonce?: `0x${string}` | undefined;
|
641
|
-
to?: `0x${string}` | null | undefined;
|
642
|
-
value?: `0x${string}` | undefined;
|
643
|
-
accessList?: import("../../index.js").AccessList | undefined;
|
644
|
-
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
645
|
-
hash?: `0x${string}` | undefined;
|
646
641
|
blockHash?: `0x${string}` | null | undefined;
|
647
642
|
blockNumber?: `0x${string}` | null | undefined;
|
648
|
-
|
643
|
+
from?: `0x${string}` | undefined;
|
644
|
+
hash?: `0x${string}` | undefined;
|
649
645
|
input?: `0x${string}` | undefined;
|
646
|
+
nonce?: `0x${string}` | undefined;
|
650
647
|
r?: `0x${string}` | undefined;
|
651
648
|
s?: `0x${string}` | undefined;
|
649
|
+
to?: `0x${string}` | null | undefined;
|
650
|
+
transactionIndex?: `0x${string}` | null | undefined;
|
652
651
|
v?: `0x${string}` | undefined;
|
652
|
+
accessList?: import("../../index.js").AccessList | undefined;
|
653
653
|
chainId?: `0x${string}` | undefined;
|
654
654
|
} & import("../index.js").Omit<import("../../index.js").TransactionEIP2930<`0x${string}`, `0x${string}`, boolean, "0x1">, "typeHex"> & {
|
655
655
|
isSystemTx?: undefined;
|
656
656
|
mint?: undefined;
|
657
657
|
sourceHash?: undefined;
|
658
658
|
}) | ({
|
659
|
-
|
659
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
660
|
+
gas?: `0x${string}` | undefined;
|
661
|
+
value?: `0x${string}` | undefined;
|
660
662
|
gasPrice?: `0x${string}` | undefined;
|
661
663
|
maxFeePerGas?: `0x${string}` | undefined;
|
662
664
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
663
|
-
gas?: `0x${string}` | undefined;
|
664
|
-
nonce?: `0x${string}` | undefined;
|
665
|
-
to?: `0x${string}` | null | undefined;
|
666
|
-
value?: `0x${string}` | undefined;
|
667
|
-
accessList?: import("../../index.js").AccessList | undefined;
|
668
|
-
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
669
|
-
hash?: `0x${string}` | undefined;
|
670
665
|
blockHash?: `0x${string}` | null | undefined;
|
671
666
|
blockNumber?: `0x${string}` | null | undefined;
|
672
|
-
|
667
|
+
from?: `0x${string}` | undefined;
|
668
|
+
hash?: `0x${string}` | undefined;
|
673
669
|
input?: `0x${string}` | undefined;
|
670
|
+
nonce?: `0x${string}` | undefined;
|
674
671
|
r?: `0x${string}` | undefined;
|
675
672
|
s?: `0x${string}` | undefined;
|
673
|
+
to?: `0x${string}` | null | undefined;
|
674
|
+
transactionIndex?: `0x${string}` | null | undefined;
|
676
675
|
v?: `0x${string}` | undefined;
|
676
|
+
accessList?: import("../../index.js").AccessList | undefined;
|
677
677
|
chainId?: `0x${string}` | undefined;
|
678
678
|
} & import("../index.js").Omit<import("../../index.js").TransactionEIP1559<`0x${string}`, `0x${string}`, boolean, "0x2">, "typeHex"> & {
|
679
679
|
isSystemTx?: undefined;
|
680
680
|
mint?: undefined;
|
681
681
|
sourceHash?: undefined;
|
682
682
|
}) | ({
|
683
|
-
|
683
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
684
|
+
gas?: `0x${string}` | undefined;
|
685
|
+
value?: `0x${string}` | undefined;
|
684
686
|
gasPrice?: `0x${string}` | undefined;
|
685
687
|
maxFeePerGas?: `0x${string}` | undefined;
|
686
688
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
687
|
-
gas?: `0x${string}` | undefined;
|
688
|
-
nonce?: `0x${string}` | undefined;
|
689
|
-
to?: `0x${string}` | null | undefined;
|
690
|
-
value?: `0x${string}` | undefined;
|
691
|
-
accessList?: import("../../index.js").AccessList | undefined;
|
692
|
-
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
693
|
-
hash?: `0x${string}` | undefined;
|
694
689
|
blockHash?: `0x${string}` | null | undefined;
|
695
690
|
blockNumber?: `0x${string}` | null | undefined;
|
696
|
-
|
691
|
+
from?: `0x${string}` | undefined;
|
692
|
+
hash?: `0x${string}` | undefined;
|
697
693
|
input?: `0x${string}` | undefined;
|
694
|
+
nonce?: `0x${string}` | undefined;
|
698
695
|
r?: `0x${string}` | undefined;
|
699
696
|
s?: `0x${string}` | undefined;
|
697
|
+
to?: `0x${string}` | null | undefined;
|
698
|
+
transactionIndex?: `0x${string}` | null | undefined;
|
700
699
|
v?: `0x${string}` | undefined;
|
700
|
+
accessList?: import("../../index.js").AccessList | undefined;
|
701
701
|
chainId?: `0x${string}` | undefined;
|
702
702
|
} & Omit<import("../../index.js").TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & import("../../index.js").FeeValuesEIP1559<`0x${string}`> & {
|
703
703
|
isSystemTx?: boolean | undefined;
|
@@ -705,96 +705,96 @@ export declare const zora: {
|
|
705
705
|
sourceHash: `0x${string}`;
|
706
706
|
type: "0x7e";
|
707
707
|
}) | ({
|
708
|
-
|
708
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
709
|
+
gas?: `0x${string}` | undefined;
|
710
|
+
value?: `0x${string}` | undefined;
|
709
711
|
gasPrice?: `0x${string}` | undefined;
|
710
712
|
maxFeePerGas?: `0x${string}` | undefined;
|
711
713
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
712
|
-
gas?: `0x${string}` | undefined;
|
713
|
-
nonce?: `0x${string}` | undefined;
|
714
|
-
to?: `0x${string}` | null | undefined;
|
715
|
-
value?: `0x${string}` | undefined;
|
716
|
-
accessList?: import("../../index.js").AccessList | undefined;
|
717
|
-
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
718
|
-
hash?: `0x${string}` | undefined;
|
719
714
|
blockHash?: `0x${string}` | null | undefined;
|
720
715
|
blockNumber?: `0x${string}` | null | undefined;
|
721
|
-
|
716
|
+
from?: `0x${string}` | undefined;
|
717
|
+
hash?: `0x${string}` | undefined;
|
722
718
|
input?: `0x${string}` | undefined;
|
719
|
+
nonce?: `0x${string}` | undefined;
|
723
720
|
r?: `0x${string}` | undefined;
|
724
721
|
s?: `0x${string}` | undefined;
|
722
|
+
to?: `0x${string}` | null | undefined;
|
723
|
+
transactionIndex?: `0x${string}` | null | undefined;
|
725
724
|
v?: `0x${string}` | undefined;
|
725
|
+
accessList?: import("../../index.js").AccessList | undefined;
|
726
726
|
chainId?: `0x${string}` | undefined;
|
727
727
|
} & import("../index.js").Omit<import("../../index.js").TransactionLegacy<`0x${string}`, `0x${string}`, boolean, "0x0">, "typeHex"> & {
|
728
728
|
isSystemTx?: undefined;
|
729
729
|
mint?: undefined;
|
730
730
|
sourceHash?: undefined;
|
731
731
|
}) | ({
|
732
|
-
|
732
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
733
|
+
gas?: `0x${string}` | undefined;
|
734
|
+
value?: `0x${string}` | undefined;
|
733
735
|
gasPrice?: `0x${string}` | undefined;
|
734
736
|
maxFeePerGas?: `0x${string}` | undefined;
|
735
737
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
736
|
-
gas?: `0x${string}` | undefined;
|
737
|
-
nonce?: `0x${string}` | undefined;
|
738
|
-
to?: `0x${string}` | null | undefined;
|
739
|
-
value?: `0x${string}` | undefined;
|
740
|
-
accessList?: import("../../index.js").AccessList | undefined;
|
741
|
-
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
742
|
-
hash?: `0x${string}` | undefined;
|
743
738
|
blockHash?: `0x${string}` | null | undefined;
|
744
739
|
blockNumber?: `0x${string}` | null | undefined;
|
745
|
-
|
740
|
+
from?: `0x${string}` | undefined;
|
741
|
+
hash?: `0x${string}` | undefined;
|
746
742
|
input?: `0x${string}` | undefined;
|
743
|
+
nonce?: `0x${string}` | undefined;
|
747
744
|
r?: `0x${string}` | undefined;
|
748
745
|
s?: `0x${string}` | undefined;
|
746
|
+
to?: `0x${string}` | null | undefined;
|
747
|
+
transactionIndex?: `0x${string}` | null | undefined;
|
749
748
|
v?: `0x${string}` | undefined;
|
749
|
+
accessList?: import("../../index.js").AccessList | undefined;
|
750
750
|
chainId?: `0x${string}` | undefined;
|
751
751
|
} & import("../index.js").Omit<import("../../index.js").TransactionEIP2930<`0x${string}`, `0x${string}`, boolean, "0x1">, "typeHex"> & {
|
752
752
|
isSystemTx?: undefined;
|
753
753
|
mint?: undefined;
|
754
754
|
sourceHash?: undefined;
|
755
755
|
}) | ({
|
756
|
-
|
756
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
757
|
+
gas?: `0x${string}` | undefined;
|
758
|
+
value?: `0x${string}` | undefined;
|
757
759
|
gasPrice?: `0x${string}` | undefined;
|
758
760
|
maxFeePerGas?: `0x${string}` | undefined;
|
759
761
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
760
|
-
gas?: `0x${string}` | undefined;
|
761
|
-
nonce?: `0x${string}` | undefined;
|
762
|
-
to?: `0x${string}` | null | undefined;
|
763
|
-
value?: `0x${string}` | undefined;
|
764
|
-
accessList?: import("../../index.js").AccessList | undefined;
|
765
|
-
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
766
|
-
hash?: `0x${string}` | undefined;
|
767
762
|
blockHash?: `0x${string}` | null | undefined;
|
768
763
|
blockNumber?: `0x${string}` | null | undefined;
|
769
|
-
|
764
|
+
from?: `0x${string}` | undefined;
|
765
|
+
hash?: `0x${string}` | undefined;
|
770
766
|
input?: `0x${string}` | undefined;
|
767
|
+
nonce?: `0x${string}` | undefined;
|
771
768
|
r?: `0x${string}` | undefined;
|
772
769
|
s?: `0x${string}` | undefined;
|
770
|
+
to?: `0x${string}` | null | undefined;
|
771
|
+
transactionIndex?: `0x${string}` | null | undefined;
|
773
772
|
v?: `0x${string}` | undefined;
|
773
|
+
accessList?: import("../../index.js").AccessList | undefined;
|
774
774
|
chainId?: `0x${string}` | undefined;
|
775
775
|
} & import("../index.js").Omit<import("../../index.js").TransactionEIP1559<`0x${string}`, `0x${string}`, boolean, "0x2">, "typeHex"> & {
|
776
776
|
isSystemTx?: undefined;
|
777
777
|
mint?: undefined;
|
778
778
|
sourceHash?: undefined;
|
779
779
|
}) | ({
|
780
|
-
|
780
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
781
|
+
gas?: `0x${string}` | undefined;
|
782
|
+
value?: `0x${string}` | undefined;
|
781
783
|
gasPrice?: `0x${string}` | undefined;
|
782
784
|
maxFeePerGas?: `0x${string}` | undefined;
|
783
785
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
784
|
-
gas?: `0x${string}` | undefined;
|
785
|
-
nonce?: `0x${string}` | undefined;
|
786
|
-
to?: `0x${string}` | null | undefined;
|
787
|
-
value?: `0x${string}` | undefined;
|
788
|
-
accessList?: import("../../index.js").AccessList | undefined;
|
789
|
-
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
790
|
-
hash?: `0x${string}` | undefined;
|
791
786
|
blockHash?: `0x${string}` | null | undefined;
|
792
787
|
blockNumber?: `0x${string}` | null | undefined;
|
793
|
-
|
788
|
+
from?: `0x${string}` | undefined;
|
789
|
+
hash?: `0x${string}` | undefined;
|
794
790
|
input?: `0x${string}` | undefined;
|
791
|
+
nonce?: `0x${string}` | undefined;
|
795
792
|
r?: `0x${string}` | undefined;
|
796
793
|
s?: `0x${string}` | undefined;
|
794
|
+
to?: `0x${string}` | null | undefined;
|
795
|
+
transactionIndex?: `0x${string}` | null | undefined;
|
797
796
|
v?: `0x${string}` | undefined;
|
797
|
+
accessList?: import("../../index.js").AccessList | undefined;
|
798
798
|
chainId?: `0x${string}` | undefined;
|
799
799
|
} & Omit<import("../../index.js").TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & import("../../index.js").FeeValuesEIP1559<`0x${string}`> & {
|
800
800
|
isSystemTx?: boolean | undefined;
|
@@ -1055,48 +1055,48 @@ export declare const zora: {
|
|
1055
1055
|
readonly transaction: {
|
1056
1056
|
exclude: [] | undefined;
|
1057
1057
|
format: (args: ({
|
1058
|
-
|
1058
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
1059
|
+
gas?: `0x${string}` | undefined;
|
1060
|
+
value?: `0x${string}` | undefined;
|
1059
1061
|
gasPrice?: `0x${string}` | undefined;
|
1060
1062
|
maxFeePerGas?: `0x${string}` | undefined;
|
1061
1063
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
1062
|
-
gas?: `0x${string}` | undefined;
|
1063
|
-
nonce?: `0x${string}` | undefined;
|
1064
|
-
to?: `0x${string}` | null | undefined;
|
1065
|
-
value?: `0x${string}` | undefined;
|
1066
|
-
accessList?: undefined;
|
1067
|
-
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
1068
|
-
hash?: `0x${string}` | undefined;
|
1069
1064
|
blockHash?: `0x${string}` | null | undefined;
|
1070
1065
|
blockNumber?: `0x${string}` | null | undefined;
|
1071
|
-
|
1066
|
+
from?: `0x${string}` | undefined;
|
1067
|
+
hash?: `0x${string}` | undefined;
|
1072
1068
|
input?: `0x${string}` | undefined;
|
1069
|
+
nonce?: `0x${string}` | undefined;
|
1073
1070
|
r?: `0x${string}` | undefined;
|
1074
1071
|
s?: `0x${string}` | undefined;
|
1072
|
+
to?: `0x${string}` | null | undefined;
|
1073
|
+
transactionIndex?: `0x${string}` | null | undefined;
|
1075
1074
|
v?: `0x${string}` | undefined;
|
1075
|
+
accessList?: undefined;
|
1076
1076
|
chainId?: `0x${string}` | undefined;
|
1077
1077
|
} & import("../index.js").Omit<import("../../index.js").TransactionLegacy<`0x${string}`, `0x${string}`, boolean, "0x0">, "typeHex"> & {
|
1078
1078
|
isSystemTx?: undefined;
|
1079
1079
|
mint?: undefined;
|
1080
1080
|
sourceHash?: undefined;
|
1081
1081
|
}) | ({
|
1082
|
-
|
1082
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
1083
|
+
gas?: `0x${string}` | undefined;
|
1084
|
+
value?: `0x${string}` | undefined;
|
1083
1085
|
gasPrice?: `0x${string}` | undefined;
|
1084
1086
|
maxFeePerGas?: `0x${string}` | undefined;
|
1085
1087
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
1086
|
-
gas?: `0x${string}` | undefined;
|
1087
|
-
nonce?: `0x${string}` | undefined;
|
1088
|
-
to?: `0x${string}` | null | undefined;
|
1089
|
-
value?: `0x${string}` | undefined;
|
1090
|
-
accessList?: undefined;
|
1091
|
-
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
1092
|
-
hash?: `0x${string}` | undefined;
|
1093
1088
|
blockHash?: `0x${string}` | null | undefined;
|
1094
1089
|
blockNumber?: `0x${string}` | null | undefined;
|
1095
|
-
|
1090
|
+
from?: `0x${string}` | undefined;
|
1091
|
+
hash?: `0x${string}` | undefined;
|
1096
1092
|
input?: `0x${string}` | undefined;
|
1093
|
+
nonce?: `0x${string}` | undefined;
|
1097
1094
|
r?: `0x${string}` | undefined;
|
1098
1095
|
s?: `0x${string}` | undefined;
|
1096
|
+
to?: `0x${string}` | null | undefined;
|
1097
|
+
transactionIndex?: `0x${string}` | null | undefined;
|
1099
1098
|
v?: `0x${string}` | undefined;
|
1099
|
+
accessList?: undefined;
|
1100
1100
|
chainId?: `0x${string}` | undefined;
|
1101
1101
|
} & Omit<import("../../index.js").TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & import("../../index.js").FeeValuesEIP1559<`0x${string}`> & {
|
1102
1102
|
isSystemTx?: boolean | undefined;
|
@@ -1104,96 +1104,96 @@ export declare const zora: {
|
|
1104
1104
|
sourceHash: `0x${string}`;
|
1105
1105
|
type: "0x7e";
|
1106
1106
|
}) | ({
|
1107
|
-
|
1107
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
1108
|
+
gas?: `0x${string}` | undefined;
|
1109
|
+
value?: `0x${string}` | undefined;
|
1108
1110
|
gasPrice?: `0x${string}` | undefined;
|
1109
1111
|
maxFeePerGas?: `0x${string}` | undefined;
|
1110
1112
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
1111
|
-
gas?: `0x${string}` | undefined;
|
1112
|
-
nonce?: `0x${string}` | undefined;
|
1113
|
-
to?: `0x${string}` | null | undefined;
|
1114
|
-
value?: `0x${string}` | undefined;
|
1115
|
-
accessList?: import("../../index.js").AccessList | undefined;
|
1116
|
-
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
1117
|
-
hash?: `0x${string}` | undefined;
|
1118
1113
|
blockHash?: `0x${string}` | null | undefined;
|
1119
1114
|
blockNumber?: `0x${string}` | null | undefined;
|
1120
|
-
|
1115
|
+
from?: `0x${string}` | undefined;
|
1116
|
+
hash?: `0x${string}` | undefined;
|
1121
1117
|
input?: `0x${string}` | undefined;
|
1118
|
+
nonce?: `0x${string}` | undefined;
|
1122
1119
|
r?: `0x${string}` | undefined;
|
1123
1120
|
s?: `0x${string}` | undefined;
|
1121
|
+
to?: `0x${string}` | null | undefined;
|
1122
|
+
transactionIndex?: `0x${string}` | null | undefined;
|
1124
1123
|
v?: `0x${string}` | undefined;
|
1124
|
+
accessList?: import("../../index.js").AccessList | undefined;
|
1125
1125
|
chainId?: `0x${string}` | undefined;
|
1126
1126
|
} & import("../index.js").Omit<import("../../index.js").TransactionLegacy<`0x${string}`, `0x${string}`, boolean, "0x0">, "typeHex"> & {
|
1127
1127
|
isSystemTx?: undefined;
|
1128
1128
|
mint?: undefined;
|
1129
1129
|
sourceHash?: undefined;
|
1130
1130
|
}) | ({
|
1131
|
-
|
1131
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
1132
|
+
gas?: `0x${string}` | undefined;
|
1133
|
+
value?: `0x${string}` | undefined;
|
1132
1134
|
gasPrice?: `0x${string}` | undefined;
|
1133
1135
|
maxFeePerGas?: `0x${string}` | undefined;
|
1134
1136
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
1135
|
-
gas?: `0x${string}` | undefined;
|
1136
|
-
nonce?: `0x${string}` | undefined;
|
1137
|
-
to?: `0x${string}` | null | undefined;
|
1138
|
-
value?: `0x${string}` | undefined;
|
1139
|
-
accessList?: import("../../index.js").AccessList | undefined;
|
1140
|
-
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
1141
|
-
hash?: `0x${string}` | undefined;
|
1142
1137
|
blockHash?: `0x${string}` | null | undefined;
|
1143
1138
|
blockNumber?: `0x${string}` | null | undefined;
|
1144
|
-
|
1139
|
+
from?: `0x${string}` | undefined;
|
1140
|
+
hash?: `0x${string}` | undefined;
|
1145
1141
|
input?: `0x${string}` | undefined;
|
1142
|
+
nonce?: `0x${string}` | undefined;
|
1146
1143
|
r?: `0x${string}` | undefined;
|
1147
1144
|
s?: `0x${string}` | undefined;
|
1145
|
+
to?: `0x${string}` | null | undefined;
|
1146
|
+
transactionIndex?: `0x${string}` | null | undefined;
|
1148
1147
|
v?: `0x${string}` | undefined;
|
1148
|
+
accessList?: import("../../index.js").AccessList | undefined;
|
1149
1149
|
chainId?: `0x${string}` | undefined;
|
1150
1150
|
} & import("../index.js").Omit<import("../../index.js").TransactionEIP2930<`0x${string}`, `0x${string}`, boolean, "0x1">, "typeHex"> & {
|
1151
1151
|
isSystemTx?: undefined;
|
1152
1152
|
mint?: undefined;
|
1153
1153
|
sourceHash?: undefined;
|
1154
1154
|
}) | ({
|
1155
|
-
|
1155
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
1156
|
+
gas?: `0x${string}` | undefined;
|
1157
|
+
value?: `0x${string}` | undefined;
|
1156
1158
|
gasPrice?: `0x${string}` | undefined;
|
1157
1159
|
maxFeePerGas?: `0x${string}` | undefined;
|
1158
1160
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
1159
|
-
gas?: `0x${string}` | undefined;
|
1160
|
-
nonce?: `0x${string}` | undefined;
|
1161
|
-
to?: `0x${string}` | null | undefined;
|
1162
|
-
value?: `0x${string}` | undefined;
|
1163
|
-
accessList?: import("../../index.js").AccessList | undefined;
|
1164
|
-
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
1165
|
-
hash?: `0x${string}` | undefined;
|
1166
1161
|
blockHash?: `0x${string}` | null | undefined;
|
1167
1162
|
blockNumber?: `0x${string}` | null | undefined;
|
1168
|
-
|
1163
|
+
from?: `0x${string}` | undefined;
|
1164
|
+
hash?: `0x${string}` | undefined;
|
1169
1165
|
input?: `0x${string}` | undefined;
|
1166
|
+
nonce?: `0x${string}` | undefined;
|
1170
1167
|
r?: `0x${string}` | undefined;
|
1171
1168
|
s?: `0x${string}` | undefined;
|
1169
|
+
to?: `0x${string}` | null | undefined;
|
1170
|
+
transactionIndex?: `0x${string}` | null | undefined;
|
1172
1171
|
v?: `0x${string}` | undefined;
|
1172
|
+
accessList?: import("../../index.js").AccessList | undefined;
|
1173
1173
|
chainId?: `0x${string}` | undefined;
|
1174
1174
|
} & import("../index.js").Omit<import("../../index.js").TransactionEIP1559<`0x${string}`, `0x${string}`, boolean, "0x2">, "typeHex"> & {
|
1175
1175
|
isSystemTx?: undefined;
|
1176
1176
|
mint?: undefined;
|
1177
1177
|
sourceHash?: undefined;
|
1178
1178
|
}) | ({
|
1179
|
-
|
1179
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
1180
|
+
gas?: `0x${string}` | undefined;
|
1181
|
+
value?: `0x${string}` | undefined;
|
1180
1182
|
gasPrice?: `0x${string}` | undefined;
|
1181
1183
|
maxFeePerGas?: `0x${string}` | undefined;
|
1182
1184
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
1183
|
-
gas?: `0x${string}` | undefined;
|
1184
|
-
nonce?: `0x${string}` | undefined;
|
1185
|
-
to?: `0x${string}` | null | undefined;
|
1186
|
-
value?: `0x${string}` | undefined;
|
1187
|
-
accessList?: import("../../index.js").AccessList | undefined;
|
1188
|
-
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
1189
|
-
hash?: `0x${string}` | undefined;
|
1190
1185
|
blockHash?: `0x${string}` | null | undefined;
|
1191
1186
|
blockNumber?: `0x${string}` | null | undefined;
|
1192
|
-
|
1187
|
+
from?: `0x${string}` | undefined;
|
1188
|
+
hash?: `0x${string}` | undefined;
|
1193
1189
|
input?: `0x${string}` | undefined;
|
1190
|
+
nonce?: `0x${string}` | undefined;
|
1194
1191
|
r?: `0x${string}` | undefined;
|
1195
1192
|
s?: `0x${string}` | undefined;
|
1193
|
+
to?: `0x${string}` | null | undefined;
|
1194
|
+
transactionIndex?: `0x${string}` | null | undefined;
|
1196
1195
|
v?: `0x${string}` | undefined;
|
1196
|
+
accessList?: import("../../index.js").AccessList | undefined;
|
1197
1197
|
chainId?: `0x${string}` | undefined;
|
1198
1198
|
} & Omit<import("../../index.js").TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & import("../../index.js").FeeValuesEIP1559<`0x${string}`> & {
|
1199
1199
|
isSystemTx?: boolean | undefined;
|
@@ -1201,96 +1201,96 @@ export declare const zora: {
|
|
1201
1201
|
sourceHash: `0x${string}`;
|
1202
1202
|
type: "0x7e";
|
1203
1203
|
}) | ({
|
1204
|
-
|
1204
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
1205
|
+
gas?: `0x${string}` | undefined;
|
1206
|
+
value?: `0x${string}` | undefined;
|
1205
1207
|
gasPrice?: `0x${string}` | undefined;
|
1206
1208
|
maxFeePerGas?: `0x${string}` | undefined;
|
1207
1209
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
1208
|
-
gas?: `0x${string}` | undefined;
|
1209
|
-
nonce?: `0x${string}` | undefined;
|
1210
|
-
to?: `0x${string}` | null | undefined;
|
1211
|
-
value?: `0x${string}` | undefined;
|
1212
|
-
accessList?: import("../../index.js").AccessList | undefined;
|
1213
|
-
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
1214
|
-
hash?: `0x${string}` | undefined;
|
1215
1210
|
blockHash?: `0x${string}` | null | undefined;
|
1216
1211
|
blockNumber?: `0x${string}` | null | undefined;
|
1217
|
-
|
1212
|
+
from?: `0x${string}` | undefined;
|
1213
|
+
hash?: `0x${string}` | undefined;
|
1218
1214
|
input?: `0x${string}` | undefined;
|
1215
|
+
nonce?: `0x${string}` | undefined;
|
1219
1216
|
r?: `0x${string}` | undefined;
|
1220
1217
|
s?: `0x${string}` | undefined;
|
1218
|
+
to?: `0x${string}` | null | undefined;
|
1219
|
+
transactionIndex?: `0x${string}` | null | undefined;
|
1221
1220
|
v?: `0x${string}` | undefined;
|
1221
|
+
accessList?: import("../../index.js").AccessList | undefined;
|
1222
1222
|
chainId?: `0x${string}` | undefined;
|
1223
1223
|
} & import("../index.js").Omit<import("../../index.js").TransactionLegacy<`0x${string}`, `0x${string}`, boolean, "0x0">, "typeHex"> & {
|
1224
1224
|
isSystemTx?: undefined;
|
1225
1225
|
mint?: undefined;
|
1226
1226
|
sourceHash?: undefined;
|
1227
1227
|
}) | ({
|
1228
|
-
|
1228
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
1229
|
+
gas?: `0x${string}` | undefined;
|
1230
|
+
value?: `0x${string}` | undefined;
|
1229
1231
|
gasPrice?: `0x${string}` | undefined;
|
1230
1232
|
maxFeePerGas?: `0x${string}` | undefined;
|
1231
1233
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
1232
|
-
gas?: `0x${string}` | undefined;
|
1233
|
-
nonce?: `0x${string}` | undefined;
|
1234
|
-
to?: `0x${string}` | null | undefined;
|
1235
|
-
value?: `0x${string}` | undefined;
|
1236
|
-
accessList?: import("../../index.js").AccessList | undefined;
|
1237
|
-
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
1238
|
-
hash?: `0x${string}` | undefined;
|
1239
1234
|
blockHash?: `0x${string}` | null | undefined;
|
1240
1235
|
blockNumber?: `0x${string}` | null | undefined;
|
1241
|
-
|
1236
|
+
from?: `0x${string}` | undefined;
|
1237
|
+
hash?: `0x${string}` | undefined;
|
1242
1238
|
input?: `0x${string}` | undefined;
|
1239
|
+
nonce?: `0x${string}` | undefined;
|
1243
1240
|
r?: `0x${string}` | undefined;
|
1244
1241
|
s?: `0x${string}` | undefined;
|
1242
|
+
to?: `0x${string}` | null | undefined;
|
1243
|
+
transactionIndex?: `0x${string}` | null | undefined;
|
1245
1244
|
v?: `0x${string}` | undefined;
|
1245
|
+
accessList?: import("../../index.js").AccessList | undefined;
|
1246
1246
|
chainId?: `0x${string}` | undefined;
|
1247
1247
|
} & import("../index.js").Omit<import("../../index.js").TransactionEIP2930<`0x${string}`, `0x${string}`, boolean, "0x1">, "typeHex"> & {
|
1248
1248
|
isSystemTx?: undefined;
|
1249
1249
|
mint?: undefined;
|
1250
1250
|
sourceHash?: undefined;
|
1251
1251
|
}) | ({
|
1252
|
-
|
1252
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
1253
|
+
gas?: `0x${string}` | undefined;
|
1254
|
+
value?: `0x${string}` | undefined;
|
1253
1255
|
gasPrice?: `0x${string}` | undefined;
|
1254
1256
|
maxFeePerGas?: `0x${string}` | undefined;
|
1255
1257
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
1256
|
-
gas?: `0x${string}` | undefined;
|
1257
|
-
nonce?: `0x${string}` | undefined;
|
1258
|
-
to?: `0x${string}` | null | undefined;
|
1259
|
-
value?: `0x${string}` | undefined;
|
1260
|
-
accessList?: import("../../index.js").AccessList | undefined;
|
1261
|
-
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
1262
|
-
hash?: `0x${string}` | undefined;
|
1263
1258
|
blockHash?: `0x${string}` | null | undefined;
|
1264
1259
|
blockNumber?: `0x${string}` | null | undefined;
|
1265
|
-
|
1260
|
+
from?: `0x${string}` | undefined;
|
1261
|
+
hash?: `0x${string}` | undefined;
|
1266
1262
|
input?: `0x${string}` | undefined;
|
1263
|
+
nonce?: `0x${string}` | undefined;
|
1267
1264
|
r?: `0x${string}` | undefined;
|
1268
1265
|
s?: `0x${string}` | undefined;
|
1266
|
+
to?: `0x${string}` | null | undefined;
|
1267
|
+
transactionIndex?: `0x${string}` | null | undefined;
|
1269
1268
|
v?: `0x${string}` | undefined;
|
1269
|
+
accessList?: import("../../index.js").AccessList | undefined;
|
1270
1270
|
chainId?: `0x${string}` | undefined;
|
1271
1271
|
} & import("../index.js").Omit<import("../../index.js").TransactionEIP1559<`0x${string}`, `0x${string}`, boolean, "0x2">, "typeHex"> & {
|
1272
1272
|
isSystemTx?: undefined;
|
1273
1273
|
mint?: undefined;
|
1274
1274
|
sourceHash?: undefined;
|
1275
1275
|
}) | ({
|
1276
|
-
|
1276
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
1277
|
+
gas?: `0x${string}` | undefined;
|
1278
|
+
value?: `0x${string}` | undefined;
|
1277
1279
|
gasPrice?: `0x${string}` | undefined;
|
1278
1280
|
maxFeePerGas?: `0x${string}` | undefined;
|
1279
1281
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
1280
|
-
gas?: `0x${string}` | undefined;
|
1281
|
-
nonce?: `0x${string}` | undefined;
|
1282
|
-
to?: `0x${string}` | null | undefined;
|
1283
|
-
value?: `0x${string}` | undefined;
|
1284
|
-
accessList?: import("../../index.js").AccessList | undefined;
|
1285
|
-
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
1286
|
-
hash?: `0x${string}` | undefined;
|
1287
1282
|
blockHash?: `0x${string}` | null | undefined;
|
1288
1283
|
blockNumber?: `0x${string}` | null | undefined;
|
1289
|
-
|
1284
|
+
from?: `0x${string}` | undefined;
|
1285
|
+
hash?: `0x${string}` | undefined;
|
1290
1286
|
input?: `0x${string}` | undefined;
|
1287
|
+
nonce?: `0x${string}` | undefined;
|
1291
1288
|
r?: `0x${string}` | undefined;
|
1292
1289
|
s?: `0x${string}` | undefined;
|
1290
|
+
to?: `0x${string}` | null | undefined;
|
1291
|
+
transactionIndex?: `0x${string}` | null | undefined;
|
1293
1292
|
v?: `0x${string}` | undefined;
|
1293
|
+
accessList?: import("../../index.js").AccessList | undefined;
|
1294
1294
|
chainId?: `0x${string}` | undefined;
|
1295
1295
|
} & Omit<import("../../index.js").TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & import("../../index.js").FeeValuesEIP1559<`0x${string}`> & {
|
1296
1296
|
isSystemTx?: boolean | undefined;
|