@dhedge/trading-widget 3.0.0-alpha.3 → 3.0.0-alpha.5
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/README.md +7 -4
- package/core-kit/abi/easy-swapper-v2.d.ts +322 -0
- package/core-kit/const/default-data.d.ts +2 -0
- package/core-kit/const/network.d.ts +156 -1706
- package/core-kit/hooks/pool/multicall/use-pool.static.d.ts +644 -0
- package/core-kit/hooks/pool/multicall/use-pools.dynamic.d.ts +4 -1
- package/core-kit/hooks/trading/deposit-v2/use-deposit-quote-contract-read.d.ts +322 -0
- package/core-kit/hooks/trading/withdraw-v2/index.d.ts +1 -0
- package/core-kit/hooks/trading/withdraw-v2/init-step/index.d.ts +3 -0
- package/core-kit/hooks/trading/withdraw-v2/init-step/use-init-withdraw-estimated-receive-assets.d.ts +210 -0
- package/core-kit/hooks/trading/withdraw-v2/init-step/use-init-withdraw-transaction-arguments.d.ts +5 -0
- package/core-kit/hooks/trading/withdraw-v2/init-step/use-is-unroll-and-claim-transaction.d.ts +1 -0
- package/core-kit/hooks/trading/withdraw-v2/use-withdraw-assets-info.d.ts +219 -0
- package/core-kit/hooks/trading/withdraw-v2/use-withdrawal-vault-address.d.ts +832 -0
- package/core-kit/hooks/user/multicall/use-user-multicall.d.ts +322 -0
- package/core-kit/types/trading-panel.types.d.ts +1 -1
- package/index-33c9ef9c.cjs +217 -0
- package/index-3d8f663e.js +40423 -0
- package/index.cjs +1 -1
- package/index.js +1 -1
- package/package.json +1 -1
- package/pyth-adapter-78dd047a.js +5705 -0
- package/pyth-adapter-83411db2.cjs +11 -0
- package/style.css +1 -1
- package/trading-widget/components/common/balance/withdraw-assets-composition-table.d.ts +7 -0
- package/trading-widget/components/common/meta/assets-composition-disclosure/assets-composition-disclosure.d.ts +3 -0
- package/trading-widget/components/common/spinner/spinner.d.ts +0 -2
- package/trading-widget/components/widget/widget-input/token-selector/token-selector.hooks.d.ts +2 -0
- package/trading-widget/components/widget/widget-overlay/trading-overlay/trading-summary/swap-summary.d.ts +0 -1
- package/trading-widget/components/withdraw/complete-step/balance/complete-withdraw-balance.hooks.d.ts +1 -1
- package/trading-widget/components/withdraw/init-step/input-group/init-withdraw-input-group.hooks.d.ts +0 -1
- package/trading-widget/components/withdraw/init-step/input-group/withdraw-section/all-assets-composition-table/all-assets-composition-table.d.ts +2 -0
- package/trading-widget/components/withdraw/init-step/input-group/withdraw-section/all-assets-composition-table/all-assets-composition-table.hooks.d.ts +14 -0
- package/trading-widget/components/withdraw/init-step/input-group/withdraw-section/single-asset-composition-table/single-asset-composition-table.d.ts +3 -0
- package/trading-widget/components/withdraw/init-step/input-group/withdraw-section/single-asset-composition-table/single-asset-composition-table.hooks.d.ts +10 -0
- package/trading-widget/components/withdraw/init-step/input-group/withdraw-section/withdraw-section.d.ts +4 -1
- package/trading-widget/components/withdraw/init-step/input-group/withdraw-section/withdraw-section.hooks.d.ts +11 -8
- package/trading-widget/components/withdraw/init-step/meta/transaction-disclosure/transaction-disclosure.hooks.d.ts +1 -0
- package/trading-widget/components/withdraw/stepper/withdraw-stepper.d.ts +2 -0
- package/trading-widget/components/withdraw/stepper/withdraw-stepper.hooks.d.ts +8 -0
- package/trading-widget/components/withdraw/tab-panel/tab-panel.hooks.d.ts +0 -2
- package/trading-widget/providers/component-provider/component-provider.hooks.d.ts +0 -1
- package/trading-widget/providers/translation-provider/translation-provider.types.d.ts +6 -3
- package/trading-widget/utils/synthetix-v3.d.ts +8 -9
- package/index-57a6eab2.js +0 -39514
- package/index-a45591cd.cjs +0 -207
- package/pyth-adapter-25487a87.js +0 -4119
- package/pyth-adapter-ef6a3a0d.cjs +0 -11
- package/trading-widget/components/widget/widget-meta/stepper.d.ts +0 -9
- package/trading-widget/components/withdraw/init-step/input-group/withdraw-section/asset-composition-table/asset-composition-table.d.ts +0 -2
- package/trading-widget/components/withdraw/init-step/input-group/withdraw-section/asset-composition-table/asset-composition-table.hooks.d.ts +0 -12
- /package/trading-widget/components/withdraw/init-step/input-group/withdraw-section/{asset-composition-table → all-assets-composition-table}/withdraw-explanation-tip.d.ts +0 -0
|
@@ -18,8 +18,8 @@ export declare const CHAIN_MAP: {
|
|
|
18
18
|
id: 137;
|
|
19
19
|
name: "Polygon";
|
|
20
20
|
nativeCurrency: {
|
|
21
|
-
readonly name: "
|
|
22
|
-
readonly symbol: "
|
|
21
|
+
readonly name: "POL";
|
|
22
|
+
readonly symbol: "POL";
|
|
23
23
|
readonly decimals: 18;
|
|
24
24
|
};
|
|
25
25
|
rpcUrls: {
|
|
@@ -30,9 +30,9 @@ export declare const CHAIN_MAP: {
|
|
|
30
30
|
sourceId?: number | undefined;
|
|
31
31
|
testnet?: boolean | undefined;
|
|
32
32
|
custom?: Record<string, unknown> | undefined;
|
|
33
|
-
formatters?: undefined;
|
|
34
|
-
serializers?: import("viem").ChainSerializers<undefined> | undefined;
|
|
35
33
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
34
|
+
formatters?: undefined;
|
|
35
|
+
serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable<bigint, number>> | undefined;
|
|
36
36
|
};
|
|
37
37
|
readonly 10: {
|
|
38
38
|
blockExplorers: {
|
|
@@ -43,6 +43,11 @@ export declare const CHAIN_MAP: {
|
|
|
43
43
|
};
|
|
44
44
|
};
|
|
45
45
|
contracts: {
|
|
46
|
+
readonly disputeGameFactory: {
|
|
47
|
+
readonly 1: {
|
|
48
|
+
readonly address: "0xe5965Ab5962eDc7477C8520243A95517CD252fA9";
|
|
49
|
+
};
|
|
50
|
+
};
|
|
46
51
|
readonly l2OutputOracle: {
|
|
47
52
|
readonly 1: {
|
|
48
53
|
readonly address: "0xdfe97868233d1aa22e815a266982f2cf17685a27";
|
|
@@ -96,12 +101,11 @@ export declare const CHAIN_MAP: {
|
|
|
96
101
|
sourceId: 1;
|
|
97
102
|
testnet?: boolean | undefined;
|
|
98
103
|
custom?: Record<string, unknown> | undefined;
|
|
104
|
+
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
99
105
|
formatters: {
|
|
100
106
|
readonly block: {
|
|
101
107
|
exclude: [] | undefined;
|
|
102
|
-
format: (args: import("wagmi/chains").
|
|
103
|
-
transactions: `0x${string}`[] | import("wagmi/chains").OpStackRpcTransaction<boolean>[];
|
|
104
|
-
}>) => {
|
|
108
|
+
format: (args: import("wagmi/chains").OpStackRpcBlock<import("viem").BlockTag, boolean>) => {
|
|
105
109
|
baseFeePerGas: bigint | null;
|
|
106
110
|
blobGasUsed: bigint;
|
|
107
111
|
difficulty: bigint;
|
|
@@ -115,6 +119,7 @@ export declare const CHAIN_MAP: {
|
|
|
115
119
|
mixHash: `0x${string}`;
|
|
116
120
|
nonce: `0x${string}` | null;
|
|
117
121
|
number: bigint | null;
|
|
122
|
+
parentBeaconBlockRoot?: `0x${string}` | undefined;
|
|
118
123
|
parentHash: `0x${string}`;
|
|
119
124
|
receiptsRoot: `0x${string}`;
|
|
120
125
|
sealFields: `0x${string}`[];
|
|
@@ -133,733 +138,114 @@ export declare const CHAIN_MAP: {
|
|
|
133
138
|
};
|
|
134
139
|
readonly transaction: {
|
|
135
140
|
exclude: [] | undefined;
|
|
136
|
-
format: (args: ({
|
|
137
|
-
r?: `0x${string}` | undefined;
|
|
138
|
-
s?: `0x${string}` | undefined;
|
|
139
|
-
v?: `0x${string}` | undefined;
|
|
140
|
-
yParity?: `0x${string}` | undefined;
|
|
141
|
-
gasPrice?: `0x${string}` | undefined;
|
|
142
|
-
maxFeePerBlobGas?: `0x${string}` | undefined;
|
|
143
|
-
maxFeePerGas?: `0x${string}` | undefined;
|
|
144
|
-
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
|
145
|
-
to?: `0x${string}` | null | undefined;
|
|
146
|
-
from?: `0x${string}` | undefined;
|
|
147
|
-
gas?: `0x${string}` | undefined;
|
|
148
|
-
nonce?: `0x${string}` | undefined;
|
|
149
|
-
value?: `0x${string}` | undefined;
|
|
150
|
-
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
|
|
151
|
-
accessList?: undefined;
|
|
152
|
-
blockHash?: `0x${string}` | null | undefined;
|
|
153
|
-
blockNumber?: `0x${string}` | null | undefined;
|
|
154
|
-
hash?: `0x${string}` | undefined;
|
|
155
|
-
input?: `0x${string}` | undefined;
|
|
156
|
-
transactionIndex?: `0x${string}` | null | undefined;
|
|
157
|
-
blobVersionedHashes?: undefined;
|
|
158
|
-
chainId?: `0x${string}` | undefined;
|
|
159
|
-
} & import("wagmi/chains").Omit<import("wagmi/chains").PartialBy<{
|
|
160
|
-
r: `0x${string}`;
|
|
161
|
-
s: `0x${string}`;
|
|
162
|
-
v: `0x${string}`;
|
|
163
|
-
to: `0x${string}` | null;
|
|
164
|
-
from: `0x${string}`;
|
|
165
|
-
gas: `0x${string}`;
|
|
166
|
-
nonce: `0x${string}`;
|
|
167
|
-
value: `0x${string}`;
|
|
168
|
-
blockHash: `0x${string}` | null;
|
|
169
|
-
blockNumber: `0x${string}` | null;
|
|
170
|
-
hash: `0x${string}`;
|
|
171
|
-
input: `0x${string}`;
|
|
172
|
-
transactionIndex: `0x${string}` | null;
|
|
173
|
-
typeHex: `0x${string}` | null;
|
|
174
|
-
gasPrice: `0x${string}`;
|
|
175
|
-
maxFeePerBlobGas?: undefined;
|
|
176
|
-
maxFeePerGas?: undefined;
|
|
177
|
-
maxPriorityFeePerGas?: undefined;
|
|
178
|
-
accessList?: undefined;
|
|
179
|
-
blobVersionedHashes?: undefined;
|
|
180
|
-
chainId?: `0x${string}` | undefined;
|
|
181
|
-
yParity?: undefined;
|
|
182
|
-
type: "0x0";
|
|
183
|
-
}, "yParity">, "typeHex"> & {
|
|
184
|
-
isSystemTx?: undefined;
|
|
185
|
-
mint?: undefined;
|
|
186
|
-
sourceHash?: undefined;
|
|
187
|
-
}) | ({
|
|
188
|
-
r?: `0x${string}` | undefined;
|
|
189
|
-
s?: `0x${string}` | undefined;
|
|
190
|
-
v?: `0x${string}` | undefined;
|
|
191
|
-
yParity?: `0x${string}` | undefined;
|
|
192
|
-
gasPrice?: `0x${string}` | undefined;
|
|
193
|
-
maxFeePerBlobGas?: `0x${string}` | undefined;
|
|
194
|
-
maxFeePerGas?: `0x${string}` | undefined;
|
|
195
|
-
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
|
196
|
-
to?: `0x${string}` | null | undefined;
|
|
197
|
-
from?: `0x${string}` | undefined;
|
|
198
|
-
gas?: `0x${string}` | undefined;
|
|
199
|
-
nonce?: `0x${string}` | undefined;
|
|
200
|
-
value?: `0x${string}` | undefined;
|
|
201
|
-
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
|
|
202
|
-
accessList?: undefined;
|
|
203
|
-
blockHash?: `0x${string}` | null | undefined;
|
|
204
|
-
blockNumber?: `0x${string}` | null | undefined;
|
|
205
|
-
hash?: `0x${string}` | undefined;
|
|
206
|
-
input?: `0x${string}` | undefined;
|
|
207
|
-
transactionIndex?: `0x${string}` | null | undefined;
|
|
208
|
-
blobVersionedHashes?: undefined;
|
|
209
|
-
chainId?: `0x${string}` | undefined;
|
|
210
|
-
} & Omit<import("viem").TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & import("viem").FeeValuesEIP1559<`0x${string}`> & {
|
|
211
|
-
isSystemTx?: boolean | undefined;
|
|
212
|
-
mint?: `0x${string}` | undefined;
|
|
213
|
-
sourceHash: `0x${string}`;
|
|
214
|
-
type: "0x7e";
|
|
215
|
-
}) | ({
|
|
216
|
-
r?: `0x${string}` | undefined;
|
|
217
|
-
s?: `0x${string}` | undefined;
|
|
218
|
-
v?: `0x${string}` | undefined;
|
|
219
|
-
yParity?: `0x${string}` | undefined;
|
|
220
|
-
gasPrice?: `0x${string}` | undefined;
|
|
221
|
-
maxFeePerBlobGas?: `0x${string}` | undefined;
|
|
222
|
-
maxFeePerGas?: `0x${string}` | undefined;
|
|
223
|
-
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
|
224
|
-
to?: `0x${string}` | null | undefined;
|
|
225
|
-
from?: `0x${string}` | undefined;
|
|
226
|
-
gas?: `0x${string}` | undefined;
|
|
227
|
-
nonce?: `0x${string}` | undefined;
|
|
228
|
-
value?: `0x${string}` | undefined;
|
|
229
|
-
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
|
|
230
|
-
accessList?: import("viem").AccessList | undefined;
|
|
231
|
-
blockHash?: `0x${string}` | null | undefined;
|
|
232
|
-
blockNumber?: `0x${string}` | null | undefined;
|
|
233
|
-
hash?: `0x${string}` | undefined;
|
|
234
|
-
input?: `0x${string}` | undefined;
|
|
235
|
-
transactionIndex?: `0x${string}` | null | undefined;
|
|
236
|
-
blobVersionedHashes?: undefined;
|
|
237
|
-
chainId?: `0x${string}` | undefined;
|
|
238
|
-
} & import("wagmi/chains").Omit<import("wagmi/chains").PartialBy<{
|
|
239
|
-
r: `0x${string}`;
|
|
240
|
-
s: `0x${string}`;
|
|
241
|
-
v: `0x${string}`;
|
|
242
|
-
to: `0x${string}` | null;
|
|
243
|
-
from: `0x${string}`;
|
|
244
|
-
gas: `0x${string}`;
|
|
245
|
-
nonce: `0x${string}`;
|
|
246
|
-
value: `0x${string}`;
|
|
247
|
-
blockHash: `0x${string}` | null;
|
|
248
|
-
blockNumber: `0x${string}` | null;
|
|
249
|
-
hash: `0x${string}`;
|
|
250
|
-
input: `0x${string}`;
|
|
251
|
-
transactionIndex: `0x${string}` | null;
|
|
252
|
-
typeHex: `0x${string}` | null;
|
|
253
|
-
gasPrice: `0x${string}`;
|
|
254
|
-
maxFeePerBlobGas?: undefined;
|
|
255
|
-
maxFeePerGas?: undefined;
|
|
256
|
-
maxPriorityFeePerGas?: undefined;
|
|
257
|
-
accessList?: undefined;
|
|
258
|
-
blobVersionedHashes?: undefined;
|
|
259
|
-
chainId?: `0x${string}` | undefined;
|
|
260
|
-
yParity?: undefined;
|
|
261
|
-
type: "0x0";
|
|
262
|
-
}, "yParity">, "typeHex"> & {
|
|
263
|
-
isSystemTx?: undefined;
|
|
264
|
-
mint?: undefined;
|
|
265
|
-
sourceHash?: undefined;
|
|
266
|
-
}) | ({
|
|
267
|
-
r?: `0x${string}` | undefined;
|
|
268
|
-
s?: `0x${string}` | undefined;
|
|
269
|
-
v?: `0x${string}` | undefined;
|
|
270
|
-
yParity?: `0x${string}` | undefined;
|
|
271
|
-
gasPrice?: `0x${string}` | undefined;
|
|
272
|
-
maxFeePerBlobGas?: `0x${string}` | undefined;
|
|
273
|
-
maxFeePerGas?: `0x${string}` | undefined;
|
|
274
|
-
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
|
275
|
-
to?: `0x${string}` | null | undefined;
|
|
276
|
-
from?: `0x${string}` | undefined;
|
|
277
|
-
gas?: `0x${string}` | undefined;
|
|
278
|
-
nonce?: `0x${string}` | undefined;
|
|
279
|
-
value?: `0x${string}` | undefined;
|
|
280
|
-
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
|
|
281
|
-
accessList?: import("viem").AccessList | undefined;
|
|
282
|
-
blockHash?: `0x${string}` | null | undefined;
|
|
283
|
-
blockNumber?: `0x${string}` | null | undefined;
|
|
284
|
-
hash?: `0x${string}` | undefined;
|
|
285
|
-
input?: `0x${string}` | undefined;
|
|
286
|
-
transactionIndex?: `0x${string}` | null | undefined;
|
|
287
|
-
blobVersionedHashes?: undefined;
|
|
288
|
-
chainId?: `0x${string}` | undefined;
|
|
289
|
-
} & import("wagmi/chains").Omit<import("wagmi/chains").PartialBy<{
|
|
290
|
-
blockHash: `0x${string}` | null;
|
|
291
|
-
blockNumber: `0x${string}` | null;
|
|
292
|
-
from: `0x${string}`;
|
|
293
|
-
gas: `0x${string}`;
|
|
294
|
-
hash: `0x${string}`;
|
|
295
|
-
input: `0x${string}`;
|
|
296
|
-
nonce: `0x${string}`;
|
|
297
|
-
r: `0x${string}`;
|
|
298
|
-
s: `0x${string}`;
|
|
299
|
-
to: `0x${string}` | null;
|
|
300
|
-
transactionIndex: `0x${string}` | null;
|
|
301
|
-
typeHex: `0x${string}` | null;
|
|
302
|
-
v: `0x${string}`;
|
|
303
|
-
value: `0x${string}`;
|
|
304
|
-
yParity: `0x${string}`;
|
|
305
|
-
gasPrice: `0x${string}`;
|
|
306
|
-
maxFeePerBlobGas?: undefined;
|
|
307
|
-
maxFeePerGas?: undefined;
|
|
308
|
-
maxPriorityFeePerGas?: undefined;
|
|
309
|
-
accessList: import("viem").AccessList;
|
|
310
|
-
blobVersionedHashes?: undefined;
|
|
311
|
-
chainId: `0x${string}`;
|
|
312
|
-
type: "0x1";
|
|
313
|
-
}, "yParity">, "typeHex"> & {
|
|
314
|
-
isSystemTx?: undefined;
|
|
315
|
-
mint?: undefined;
|
|
316
|
-
sourceHash?: undefined;
|
|
317
|
-
}) | ({
|
|
318
|
-
r?: `0x${string}` | undefined;
|
|
319
|
-
s?: `0x${string}` | undefined;
|
|
320
|
-
v?: `0x${string}` | undefined;
|
|
321
|
-
yParity?: `0x${string}` | undefined;
|
|
322
|
-
gasPrice?: `0x${string}` | undefined;
|
|
323
|
-
maxFeePerBlobGas?: `0x${string}` | undefined;
|
|
324
|
-
maxFeePerGas?: `0x${string}` | undefined;
|
|
325
|
-
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
|
326
|
-
to?: `0x${string}` | null | undefined;
|
|
327
|
-
from?: `0x${string}` | undefined;
|
|
328
|
-
gas?: `0x${string}` | undefined;
|
|
329
|
-
nonce?: `0x${string}` | undefined;
|
|
330
|
-
value?: `0x${string}` | undefined;
|
|
331
|
-
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
|
|
332
|
-
accessList?: import("viem").AccessList | undefined;
|
|
333
|
-
blockHash?: `0x${string}` | null | undefined;
|
|
334
|
-
blockNumber?: `0x${string}` | null | undefined;
|
|
335
|
-
hash?: `0x${string}` | undefined;
|
|
336
|
-
input?: `0x${string}` | undefined;
|
|
337
|
-
transactionIndex?: `0x${string}` | null | undefined;
|
|
338
|
-
blobVersionedHashes?: undefined;
|
|
339
|
-
chainId?: `0x${string}` | undefined;
|
|
340
|
-
} & import("wagmi/chains").Omit<import("wagmi/chains").PartialBy<{
|
|
141
|
+
format: (args: import("wagmi/chains").OpStackRpcTransaction<boolean>) => {
|
|
341
142
|
blockHash: `0x${string}` | null;
|
|
342
|
-
blockNumber:
|
|
143
|
+
blockNumber: bigint | null;
|
|
343
144
|
from: `0x${string}`;
|
|
344
|
-
gas:
|
|
145
|
+
gas: bigint;
|
|
345
146
|
hash: `0x${string}`;
|
|
346
147
|
input: `0x${string}`;
|
|
347
|
-
nonce:
|
|
148
|
+
nonce: number;
|
|
348
149
|
r: `0x${string}`;
|
|
349
150
|
s: `0x${string}`;
|
|
350
151
|
to: `0x${string}` | null;
|
|
351
|
-
transactionIndex:
|
|
152
|
+
transactionIndex: number | null;
|
|
352
153
|
typeHex: `0x${string}` | null;
|
|
353
|
-
v:
|
|
354
|
-
value:
|
|
355
|
-
yParity:
|
|
154
|
+
v: bigint;
|
|
155
|
+
value: bigint;
|
|
156
|
+
yParity: number;
|
|
356
157
|
gasPrice?: undefined;
|
|
357
158
|
maxFeePerBlobGas?: undefined;
|
|
358
|
-
maxFeePerGas:
|
|
359
|
-
maxPriorityFeePerGas:
|
|
360
|
-
accessList: import("viem").AccessList;
|
|
361
|
-
blobVersionedHashes?: undefined;
|
|
362
|
-
chainId: `0x${string}`;
|
|
363
|
-
type: "0x2";
|
|
364
|
-
}, "yParity">, "typeHex"> & {
|
|
365
|
-
isSystemTx?: undefined;
|
|
366
|
-
mint?: undefined;
|
|
367
|
-
sourceHash?: undefined;
|
|
368
|
-
}) | ({
|
|
369
|
-
r?: `0x${string}` | undefined;
|
|
370
|
-
s?: `0x${string}` | undefined;
|
|
371
|
-
v?: `0x${string}` | undefined;
|
|
372
|
-
yParity?: `0x${string}` | undefined;
|
|
373
|
-
gasPrice?: `0x${string}` | undefined;
|
|
374
|
-
maxFeePerBlobGas?: `0x${string}` | undefined;
|
|
375
|
-
maxFeePerGas?: `0x${string}` | undefined;
|
|
376
|
-
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
|
377
|
-
to?: `0x${string}` | null | undefined;
|
|
378
|
-
from?: `0x${string}` | undefined;
|
|
379
|
-
gas?: `0x${string}` | undefined;
|
|
380
|
-
nonce?: `0x${string}` | undefined;
|
|
381
|
-
value?: `0x${string}` | undefined;
|
|
382
|
-
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
|
|
383
|
-
accessList?: import("viem").AccessList | undefined;
|
|
384
|
-
blockHash?: `0x${string}` | null | undefined;
|
|
385
|
-
blockNumber?: `0x${string}` | null | undefined;
|
|
386
|
-
hash?: `0x${string}` | undefined;
|
|
387
|
-
input?: `0x${string}` | undefined;
|
|
388
|
-
transactionIndex?: `0x${string}` | null | undefined;
|
|
389
|
-
blobVersionedHashes?: undefined;
|
|
390
|
-
chainId?: `0x${string}` | undefined;
|
|
391
|
-
} & Omit<import("viem").TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & import("viem").FeeValuesEIP1559<`0x${string}`> & {
|
|
159
|
+
maxFeePerGas: bigint;
|
|
160
|
+
maxPriorityFeePerGas: bigint;
|
|
392
161
|
isSystemTx?: boolean | undefined;
|
|
393
|
-
mint?:
|
|
162
|
+
mint?: bigint | undefined;
|
|
394
163
|
sourceHash: `0x${string}`;
|
|
395
|
-
type: "
|
|
396
|
-
}
|
|
397
|
-
r?: `0x${string}` | undefined;
|
|
398
|
-
s?: `0x${string}` | undefined;
|
|
399
|
-
v?: `0x${string}` | undefined;
|
|
400
|
-
yParity?: `0x${string}` | undefined;
|
|
401
|
-
gasPrice?: `0x${string}` | undefined;
|
|
402
|
-
maxFeePerBlobGas?: `0x${string}` | undefined;
|
|
403
|
-
maxFeePerGas?: `0x${string}` | undefined;
|
|
404
|
-
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
|
405
|
-
to?: `0x${string}` | null | undefined;
|
|
406
|
-
from?: `0x${string}` | undefined;
|
|
407
|
-
gas?: `0x${string}` | undefined;
|
|
408
|
-
nonce?: `0x${string}` | undefined;
|
|
409
|
-
value?: `0x${string}` | undefined;
|
|
410
|
-
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
|
|
411
|
-
accessList?: import("viem").AccessList | undefined;
|
|
412
|
-
blockHash?: `0x${string}` | null | undefined;
|
|
413
|
-
blockNumber?: `0x${string}` | null | undefined;
|
|
414
|
-
hash?: `0x${string}` | undefined;
|
|
415
|
-
input?: `0x${string}` | undefined;
|
|
416
|
-
transactionIndex?: `0x${string}` | null | undefined;
|
|
417
|
-
blobVersionedHashes?: undefined;
|
|
418
|
-
chainId?: `0x${string}` | undefined;
|
|
419
|
-
} & import("wagmi/chains").Omit<import("wagmi/chains").PartialBy<{
|
|
164
|
+
type: "deposit";
|
|
165
|
+
} | {
|
|
420
166
|
r: `0x${string}`;
|
|
421
167
|
s: `0x${string}`;
|
|
422
|
-
v:
|
|
168
|
+
v: bigint;
|
|
423
169
|
to: `0x${string}` | null;
|
|
424
170
|
from: `0x${string}`;
|
|
425
|
-
gas:
|
|
426
|
-
nonce:
|
|
427
|
-
value:
|
|
171
|
+
gas: bigint;
|
|
172
|
+
nonce: number;
|
|
173
|
+
value: bigint;
|
|
428
174
|
blockHash: `0x${string}` | null;
|
|
429
|
-
blockNumber:
|
|
175
|
+
blockNumber: bigint | null;
|
|
430
176
|
hash: `0x${string}`;
|
|
431
177
|
input: `0x${string}`;
|
|
432
|
-
transactionIndex:
|
|
178
|
+
transactionIndex: number | null;
|
|
433
179
|
typeHex: `0x${string}` | null;
|
|
434
|
-
gasPrice: `0x${string}`;
|
|
435
|
-
maxFeePerBlobGas?: undefined;
|
|
436
|
-
maxFeePerGas?: undefined;
|
|
437
|
-
maxPriorityFeePerGas?: undefined;
|
|
438
180
|
accessList?: undefined;
|
|
181
|
+
authorizationList?: undefined;
|
|
439
182
|
blobVersionedHashes?: undefined;
|
|
440
|
-
chainId?:
|
|
183
|
+
chainId?: number | undefined;
|
|
441
184
|
yParity?: undefined;
|
|
442
|
-
type: "
|
|
443
|
-
|
|
444
|
-
isSystemTx?: undefined;
|
|
445
|
-
mint?: undefined;
|
|
446
|
-
sourceHash?: undefined;
|
|
447
|
-
}) | ({
|
|
448
|
-
r?: `0x${string}` | undefined;
|
|
449
|
-
s?: `0x${string}` | undefined;
|
|
450
|
-
v?: `0x${string}` | undefined;
|
|
451
|
-
yParity?: `0x${string}` | undefined;
|
|
452
|
-
gasPrice?: `0x${string}` | undefined;
|
|
453
|
-
maxFeePerBlobGas?: `0x${string}` | undefined;
|
|
454
|
-
maxFeePerGas?: `0x${string}` | undefined;
|
|
455
|
-
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
|
456
|
-
to?: `0x${string}` | null | undefined;
|
|
457
|
-
from?: `0x${string}` | undefined;
|
|
458
|
-
gas?: `0x${string}` | undefined;
|
|
459
|
-
nonce?: `0x${string}` | undefined;
|
|
460
|
-
value?: `0x${string}` | undefined;
|
|
461
|
-
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
|
|
462
|
-
accessList?: import("viem").AccessList | undefined;
|
|
463
|
-
blockHash?: `0x${string}` | null | undefined;
|
|
464
|
-
blockNumber?: `0x${string}` | null | undefined;
|
|
465
|
-
hash?: `0x${string}` | undefined;
|
|
466
|
-
input?: `0x${string}` | undefined;
|
|
467
|
-
transactionIndex?: `0x${string}` | null | undefined;
|
|
468
|
-
blobVersionedHashes?: undefined;
|
|
469
|
-
chainId?: `0x${string}` | undefined;
|
|
470
|
-
} & import("wagmi/chains").Omit<import("wagmi/chains").PartialBy<{
|
|
471
|
-
blockHash: `0x${string}` | null;
|
|
472
|
-
blockNumber: `0x${string}` | null;
|
|
473
|
-
from: `0x${string}`;
|
|
474
|
-
gas: `0x${string}`;
|
|
475
|
-
hash: `0x${string}`;
|
|
476
|
-
input: `0x${string}`;
|
|
477
|
-
nonce: `0x${string}`;
|
|
478
|
-
r: `0x${string}`;
|
|
479
|
-
s: `0x${string}`;
|
|
480
|
-
to: `0x${string}` | null;
|
|
481
|
-
transactionIndex: `0x${string}` | null;
|
|
482
|
-
typeHex: `0x${string}` | null;
|
|
483
|
-
v: `0x${string}`;
|
|
484
|
-
value: `0x${string}`;
|
|
485
|
-
yParity: `0x${string}`;
|
|
486
|
-
gasPrice: `0x${string}`;
|
|
185
|
+
type: "legacy";
|
|
186
|
+
gasPrice: bigint;
|
|
487
187
|
maxFeePerBlobGas?: undefined;
|
|
488
188
|
maxFeePerGas?: undefined;
|
|
489
189
|
maxPriorityFeePerGas?: undefined;
|
|
490
|
-
accessList: import("viem").AccessList;
|
|
491
|
-
blobVersionedHashes?: undefined;
|
|
492
|
-
chainId: `0x${string}`;
|
|
493
|
-
type: "0x1";
|
|
494
|
-
}, "yParity">, "typeHex"> & {
|
|
495
190
|
isSystemTx?: undefined;
|
|
496
191
|
mint?: undefined;
|
|
497
192
|
sourceHash?: undefined;
|
|
498
|
-
}
|
|
499
|
-
r?: `0x${string}` | undefined;
|
|
500
|
-
s?: `0x${string}` | undefined;
|
|
501
|
-
v?: `0x${string}` | undefined;
|
|
502
|
-
yParity?: `0x${string}` | undefined;
|
|
503
|
-
gasPrice?: `0x${string}` | undefined;
|
|
504
|
-
maxFeePerBlobGas?: `0x${string}` | undefined;
|
|
505
|
-
maxFeePerGas?: `0x${string}` | undefined;
|
|
506
|
-
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
|
507
|
-
to?: `0x${string}` | null | undefined;
|
|
508
|
-
from?: `0x${string}` | undefined;
|
|
509
|
-
gas?: `0x${string}` | undefined;
|
|
510
|
-
nonce?: `0x${string}` | undefined;
|
|
511
|
-
value?: `0x${string}` | undefined;
|
|
512
|
-
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
|
|
513
|
-
accessList?: import("viem").AccessList | undefined;
|
|
514
|
-
blockHash?: `0x${string}` | null | undefined;
|
|
515
|
-
blockNumber?: `0x${string}` | null | undefined;
|
|
516
|
-
hash?: `0x${string}` | undefined;
|
|
517
|
-
input?: `0x${string}` | undefined;
|
|
518
|
-
transactionIndex?: `0x${string}` | null | undefined;
|
|
519
|
-
blobVersionedHashes?: undefined;
|
|
520
|
-
chainId?: `0x${string}` | undefined;
|
|
521
|
-
} & import("wagmi/chains").Omit<import("wagmi/chains").PartialBy<{
|
|
193
|
+
} | {
|
|
522
194
|
blockHash: `0x${string}` | null;
|
|
523
|
-
blockNumber:
|
|
195
|
+
blockNumber: bigint | null;
|
|
524
196
|
from: `0x${string}`;
|
|
525
|
-
gas:
|
|
197
|
+
gas: bigint;
|
|
526
198
|
hash: `0x${string}`;
|
|
527
199
|
input: `0x${string}`;
|
|
528
|
-
nonce:
|
|
200
|
+
nonce: number;
|
|
529
201
|
r: `0x${string}`;
|
|
530
202
|
s: `0x${string}`;
|
|
531
203
|
to: `0x${string}` | null;
|
|
532
|
-
transactionIndex:
|
|
204
|
+
transactionIndex: number | null;
|
|
533
205
|
typeHex: `0x${string}` | null;
|
|
534
|
-
v:
|
|
535
|
-
value:
|
|
536
|
-
yParity:
|
|
537
|
-
gasPrice?: undefined;
|
|
538
|
-
maxFeePerBlobGas?: undefined;
|
|
539
|
-
maxFeePerGas: `0x${string}`;
|
|
540
|
-
maxPriorityFeePerGas: `0x${string}`;
|
|
206
|
+
v: bigint;
|
|
207
|
+
value: bigint;
|
|
208
|
+
yParity: number;
|
|
541
209
|
accessList: import("viem").AccessList;
|
|
210
|
+
authorizationList?: undefined;
|
|
542
211
|
blobVersionedHashes?: undefined;
|
|
543
|
-
chainId:
|
|
544
|
-
type: "
|
|
545
|
-
|
|
546
|
-
isSystemTx?: undefined;
|
|
547
|
-
mint?: undefined;
|
|
548
|
-
sourceHash?: undefined;
|
|
549
|
-
}) | ({
|
|
550
|
-
r?: `0x${string}` | undefined;
|
|
551
|
-
s?: `0x${string}` | undefined;
|
|
552
|
-
v?: `0x${string}` | undefined;
|
|
553
|
-
yParity?: `0x${string}` | undefined;
|
|
554
|
-
gasPrice?: `0x${string}` | undefined;
|
|
555
|
-
maxFeePerBlobGas?: `0x${string}` | undefined;
|
|
556
|
-
maxFeePerGas?: `0x${string}` | undefined;
|
|
557
|
-
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
|
558
|
-
to?: `0x${string}` | null | undefined;
|
|
559
|
-
from?: `0x${string}` | undefined;
|
|
560
|
-
gas?: `0x${string}` | undefined;
|
|
561
|
-
nonce?: `0x${string}` | undefined;
|
|
562
|
-
value?: `0x${string}` | undefined;
|
|
563
|
-
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
|
|
564
|
-
accessList?: import("viem").AccessList | undefined;
|
|
565
|
-
blockHash?: `0x${string}` | null | undefined;
|
|
566
|
-
blockNumber?: `0x${string}` | null | undefined;
|
|
567
|
-
hash?: `0x${string}` | undefined;
|
|
568
|
-
input?: `0x${string}` | undefined;
|
|
569
|
-
transactionIndex?: `0x${string}` | null | undefined;
|
|
570
|
-
blobVersionedHashes?: undefined;
|
|
571
|
-
chainId?: `0x${string}` | undefined;
|
|
572
|
-
} & Omit<import("viem").TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & import("viem").FeeValuesEIP1559<`0x${string}`> & {
|
|
573
|
-
isSystemTx?: boolean | undefined;
|
|
574
|
-
mint?: `0x${string}` | undefined;
|
|
575
|
-
sourceHash: `0x${string}`;
|
|
576
|
-
type: "0x7e";
|
|
577
|
-
}) | ({
|
|
578
|
-
r?: `0x${string}` | undefined;
|
|
579
|
-
s?: `0x${string}` | undefined;
|
|
580
|
-
v?: `0x${string}` | undefined;
|
|
581
|
-
yParity?: `0x${string}` | undefined;
|
|
582
|
-
gasPrice?: `0x${string}` | undefined;
|
|
583
|
-
maxFeePerBlobGas?: `0x${string}` | undefined;
|
|
584
|
-
maxFeePerGas?: `0x${string}` | undefined;
|
|
585
|
-
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
|
586
|
-
to?: `0x${string}` | null | undefined;
|
|
587
|
-
from?: `0x${string}` | undefined;
|
|
588
|
-
gas?: `0x${string}` | undefined;
|
|
589
|
-
nonce?: `0x${string}` | undefined;
|
|
590
|
-
value?: `0x${string}` | undefined;
|
|
591
|
-
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
|
|
592
|
-
accessList?: import("viem").AccessList | undefined;
|
|
593
|
-
blockHash?: `0x${string}` | null | undefined;
|
|
594
|
-
blockNumber?: `0x${string}` | null | undefined;
|
|
595
|
-
hash?: `0x${string}` | undefined;
|
|
596
|
-
input?: `0x${string}` | undefined;
|
|
597
|
-
transactionIndex?: `0x${string}` | null | undefined;
|
|
598
|
-
blobVersionedHashes?: `0x${string}`[] | undefined;
|
|
599
|
-
chainId?: `0x${string}` | undefined;
|
|
600
|
-
} & import("wagmi/chains").Omit<import("wagmi/chains").PartialBy<{
|
|
601
|
-
r: `0x${string}`;
|
|
602
|
-
s: `0x${string}`;
|
|
603
|
-
v: `0x${string}`;
|
|
604
|
-
to: `0x${string}` | null;
|
|
605
|
-
from: `0x${string}`;
|
|
606
|
-
gas: `0x${string}`;
|
|
607
|
-
nonce: `0x${string}`;
|
|
608
|
-
value: `0x${string}`;
|
|
609
|
-
blockHash: `0x${string}` | null;
|
|
610
|
-
blockNumber: `0x${string}` | null;
|
|
611
|
-
hash: `0x${string}`;
|
|
612
|
-
input: `0x${string}`;
|
|
613
|
-
transactionIndex: `0x${string}` | null;
|
|
614
|
-
typeHex: `0x${string}` | null;
|
|
615
|
-
gasPrice: `0x${string}`;
|
|
616
|
-
maxFeePerBlobGas?: undefined;
|
|
617
|
-
maxFeePerGas?: undefined;
|
|
618
|
-
maxPriorityFeePerGas?: undefined;
|
|
619
|
-
accessList?: undefined;
|
|
620
|
-
blobVersionedHashes?: undefined;
|
|
621
|
-
chainId?: `0x${string}` | undefined;
|
|
622
|
-
yParity?: undefined;
|
|
623
|
-
type: "0x0";
|
|
624
|
-
}, "yParity">, "typeHex"> & {
|
|
625
|
-
isSystemTx?: undefined;
|
|
626
|
-
mint?: undefined;
|
|
627
|
-
sourceHash?: undefined;
|
|
628
|
-
}) | ({
|
|
629
|
-
r?: `0x${string}` | undefined;
|
|
630
|
-
s?: `0x${string}` | undefined;
|
|
631
|
-
v?: `0x${string}` | undefined;
|
|
632
|
-
yParity?: `0x${string}` | undefined;
|
|
633
|
-
gasPrice?: `0x${string}` | undefined;
|
|
634
|
-
maxFeePerBlobGas?: `0x${string}` | undefined;
|
|
635
|
-
maxFeePerGas?: `0x${string}` | undefined;
|
|
636
|
-
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
|
637
|
-
to?: `0x${string}` | null | undefined;
|
|
638
|
-
from?: `0x${string}` | undefined;
|
|
639
|
-
gas?: `0x${string}` | undefined;
|
|
640
|
-
nonce?: `0x${string}` | undefined;
|
|
641
|
-
value?: `0x${string}` | undefined;
|
|
642
|
-
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
|
|
643
|
-
accessList?: import("viem").AccessList | undefined;
|
|
644
|
-
blockHash?: `0x${string}` | null | undefined;
|
|
645
|
-
blockNumber?: `0x${string}` | null | undefined;
|
|
646
|
-
hash?: `0x${string}` | undefined;
|
|
647
|
-
input?: `0x${string}` | undefined;
|
|
648
|
-
transactionIndex?: `0x${string}` | null | undefined;
|
|
649
|
-
blobVersionedHashes?: `0x${string}`[] | undefined;
|
|
650
|
-
chainId?: `0x${string}` | undefined;
|
|
651
|
-
} & import("wagmi/chains").Omit<import("wagmi/chains").PartialBy<{
|
|
652
|
-
blockHash: `0x${string}` | null;
|
|
653
|
-
blockNumber: `0x${string}` | null;
|
|
654
|
-
from: `0x${string}`;
|
|
655
|
-
gas: `0x${string}`;
|
|
656
|
-
hash: `0x${string}`;
|
|
657
|
-
input: `0x${string}`;
|
|
658
|
-
nonce: `0x${string}`;
|
|
659
|
-
r: `0x${string}`;
|
|
660
|
-
s: `0x${string}`;
|
|
661
|
-
to: `0x${string}` | null;
|
|
662
|
-
transactionIndex: `0x${string}` | null;
|
|
663
|
-
typeHex: `0x${string}` | null;
|
|
664
|
-
v: `0x${string}`;
|
|
665
|
-
value: `0x${string}`;
|
|
666
|
-
yParity: `0x${string}`;
|
|
667
|
-
gasPrice: `0x${string}`;
|
|
212
|
+
chainId: number;
|
|
213
|
+
type: "eip2930";
|
|
214
|
+
gasPrice: bigint;
|
|
668
215
|
maxFeePerBlobGas?: undefined;
|
|
669
216
|
maxFeePerGas?: undefined;
|
|
670
217
|
maxPriorityFeePerGas?: undefined;
|
|
671
|
-
accessList: import("viem").AccessList;
|
|
672
|
-
blobVersionedHashes?: undefined;
|
|
673
|
-
chainId: `0x${string}`;
|
|
674
|
-
type: "0x1";
|
|
675
|
-
}, "yParity">, "typeHex"> & {
|
|
676
218
|
isSystemTx?: undefined;
|
|
677
219
|
mint?: undefined;
|
|
678
220
|
sourceHash?: undefined;
|
|
679
|
-
}
|
|
680
|
-
r?: `0x${string}` | undefined;
|
|
681
|
-
s?: `0x${string}` | undefined;
|
|
682
|
-
v?: `0x${string}` | undefined;
|
|
683
|
-
yParity?: `0x${string}` | undefined;
|
|
684
|
-
gasPrice?: `0x${string}` | undefined;
|
|
685
|
-
maxFeePerBlobGas?: `0x${string}` | undefined;
|
|
686
|
-
maxFeePerGas?: `0x${string}` | undefined;
|
|
687
|
-
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
|
688
|
-
to?: `0x${string}` | null | undefined;
|
|
689
|
-
from?: `0x${string}` | undefined;
|
|
690
|
-
gas?: `0x${string}` | undefined;
|
|
691
|
-
nonce?: `0x${string}` | undefined;
|
|
692
|
-
value?: `0x${string}` | undefined;
|
|
693
|
-
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
|
|
694
|
-
accessList?: import("viem").AccessList | undefined;
|
|
695
|
-
blockHash?: `0x${string}` | null | undefined;
|
|
696
|
-
blockNumber?: `0x${string}` | null | undefined;
|
|
697
|
-
hash?: `0x${string}` | undefined;
|
|
698
|
-
input?: `0x${string}` | undefined;
|
|
699
|
-
transactionIndex?: `0x${string}` | null | undefined;
|
|
700
|
-
blobVersionedHashes?: `0x${string}`[] | undefined;
|
|
701
|
-
chainId?: `0x${string}` | undefined;
|
|
702
|
-
} & import("wagmi/chains").Omit<import("wagmi/chains").PartialBy<{
|
|
221
|
+
} | {
|
|
703
222
|
blockHash: `0x${string}` | null;
|
|
704
|
-
blockNumber:
|
|
223
|
+
blockNumber: bigint | null;
|
|
705
224
|
from: `0x${string}`;
|
|
706
|
-
gas:
|
|
225
|
+
gas: bigint;
|
|
707
226
|
hash: `0x${string}`;
|
|
708
227
|
input: `0x${string}`;
|
|
709
|
-
nonce:
|
|
228
|
+
nonce: number;
|
|
710
229
|
r: `0x${string}`;
|
|
711
230
|
s: `0x${string}`;
|
|
712
231
|
to: `0x${string}` | null;
|
|
713
|
-
transactionIndex:
|
|
232
|
+
transactionIndex: number | null;
|
|
714
233
|
typeHex: `0x${string}` | null;
|
|
715
|
-
v:
|
|
716
|
-
value:
|
|
717
|
-
yParity:
|
|
718
|
-
gasPrice?: undefined;
|
|
719
|
-
maxFeePerBlobGas?: undefined;
|
|
720
|
-
maxFeePerGas: `0x${string}`;
|
|
721
|
-
maxPriorityFeePerGas: `0x${string}`;
|
|
234
|
+
v: bigint;
|
|
235
|
+
value: bigint;
|
|
236
|
+
yParity: number;
|
|
722
237
|
accessList: import("viem").AccessList;
|
|
238
|
+
authorizationList?: undefined;
|
|
723
239
|
blobVersionedHashes?: undefined;
|
|
724
|
-
chainId:
|
|
725
|
-
type: "
|
|
726
|
-
}, "yParity">, "typeHex"> & {
|
|
727
|
-
isSystemTx?: undefined;
|
|
728
|
-
mint?: undefined;
|
|
729
|
-
sourceHash?: undefined;
|
|
730
|
-
}) | ({
|
|
731
|
-
r?: `0x${string}` | undefined;
|
|
732
|
-
s?: `0x${string}` | undefined;
|
|
733
|
-
v?: `0x${string}` | undefined;
|
|
734
|
-
yParity?: `0x${string}` | undefined;
|
|
735
|
-
gasPrice?: `0x${string}` | undefined;
|
|
736
|
-
maxFeePerBlobGas?: `0x${string}` | undefined;
|
|
737
|
-
maxFeePerGas?: `0x${string}` | undefined;
|
|
738
|
-
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
|
739
|
-
to?: `0x${string}` | null | undefined;
|
|
740
|
-
from?: `0x${string}` | undefined;
|
|
741
|
-
gas?: `0x${string}` | undefined;
|
|
742
|
-
nonce?: `0x${string}` | undefined;
|
|
743
|
-
value?: `0x${string}` | undefined;
|
|
744
|
-
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
|
|
745
|
-
accessList?: import("viem").AccessList | undefined;
|
|
746
|
-
blockHash?: `0x${string}` | null | undefined;
|
|
747
|
-
blockNumber?: `0x${string}` | null | undefined;
|
|
748
|
-
hash?: `0x${string}` | undefined;
|
|
749
|
-
input?: `0x${string}` | undefined;
|
|
750
|
-
transactionIndex?: `0x${string}` | null | undefined;
|
|
751
|
-
blobVersionedHashes?: `0x${string}`[] | undefined;
|
|
752
|
-
chainId?: `0x${string}` | undefined;
|
|
753
|
-
} & import("wagmi/chains").Omit<import("wagmi/chains").PartialBy<{
|
|
754
|
-
blockHash: `0x${string}` | null;
|
|
755
|
-
blockNumber: `0x${string}` | null;
|
|
756
|
-
from: `0x${string}`;
|
|
757
|
-
gas: `0x${string}`;
|
|
758
|
-
hash: `0x${string}`;
|
|
759
|
-
input: `0x${string}`;
|
|
760
|
-
nonce: `0x${string}`;
|
|
761
|
-
r: `0x${string}`;
|
|
762
|
-
s: `0x${string}`;
|
|
763
|
-
to: `0x${string}` | null;
|
|
764
|
-
transactionIndex: `0x${string}` | null;
|
|
765
|
-
typeHex: `0x${string}` | null;
|
|
766
|
-
v: `0x${string}`;
|
|
767
|
-
value: `0x${string}`;
|
|
768
|
-
yParity: `0x${string}`;
|
|
240
|
+
chainId: number;
|
|
241
|
+
type: "eip1559";
|
|
769
242
|
gasPrice?: undefined;
|
|
770
|
-
maxFeePerBlobGas: `0x${string}`;
|
|
771
|
-
maxFeePerGas: `0x${string}`;
|
|
772
|
-
maxPriorityFeePerGas: `0x${string}`;
|
|
773
|
-
accessList: import("viem").AccessList;
|
|
774
|
-
blobVersionedHashes: `0x${string}`[];
|
|
775
|
-
chainId: `0x${string}`;
|
|
776
|
-
type: "0x3";
|
|
777
|
-
}, "yParity">, "typeHex"> & {
|
|
778
|
-
isSystemTx?: undefined;
|
|
779
|
-
mint?: undefined;
|
|
780
|
-
sourceHash?: undefined;
|
|
781
|
-
}) | ({
|
|
782
|
-
r?: `0x${string}` | undefined;
|
|
783
|
-
s?: `0x${string}` | undefined;
|
|
784
|
-
v?: `0x${string}` | undefined;
|
|
785
|
-
yParity?: `0x${string}` | undefined;
|
|
786
|
-
gasPrice?: `0x${string}` | undefined;
|
|
787
|
-
maxFeePerBlobGas?: `0x${string}` | undefined;
|
|
788
|
-
maxFeePerGas?: `0x${string}` | undefined;
|
|
789
|
-
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
|
790
|
-
to?: `0x${string}` | null | undefined;
|
|
791
|
-
from?: `0x${string}` | undefined;
|
|
792
|
-
gas?: `0x${string}` | undefined;
|
|
793
|
-
nonce?: `0x${string}` | undefined;
|
|
794
|
-
value?: `0x${string}` | undefined;
|
|
795
|
-
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
|
|
796
|
-
accessList?: import("viem").AccessList | undefined;
|
|
797
|
-
blockHash?: `0x${string}` | null | undefined;
|
|
798
|
-
blockNumber?: `0x${string}` | null | undefined;
|
|
799
|
-
hash?: `0x${string}` | undefined;
|
|
800
|
-
input?: `0x${string}` | undefined;
|
|
801
|
-
transactionIndex?: `0x${string}` | null | undefined;
|
|
802
|
-
blobVersionedHashes?: `0x${string}`[] | undefined;
|
|
803
|
-
chainId?: `0x${string}` | undefined;
|
|
804
|
-
} & Omit<import("viem").TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & import("viem").FeeValuesEIP1559<`0x${string}`> & {
|
|
805
|
-
isSystemTx?: boolean | undefined;
|
|
806
|
-
mint?: `0x${string}` | undefined;
|
|
807
|
-
sourceHash: `0x${string}`;
|
|
808
|
-
type: "0x7e";
|
|
809
|
-
})) => {
|
|
810
|
-
r: `0x${string}`;
|
|
811
|
-
s: `0x${string}`;
|
|
812
|
-
v: bigint;
|
|
813
|
-
to: `0x${string}` | null;
|
|
814
|
-
from: `0x${string}`;
|
|
815
|
-
gas: bigint;
|
|
816
|
-
nonce: number;
|
|
817
|
-
value: bigint;
|
|
818
|
-
blockHash: `0x${string}` | null;
|
|
819
|
-
blockNumber: bigint | null;
|
|
820
|
-
hash: `0x${string}`;
|
|
821
|
-
input: `0x${string}`;
|
|
822
|
-
transactionIndex: number | null;
|
|
823
|
-
typeHex: `0x${string}` | null;
|
|
824
|
-
gasPrice: bigint;
|
|
825
243
|
maxFeePerBlobGas?: undefined;
|
|
826
|
-
maxFeePerGas
|
|
827
|
-
maxPriorityFeePerGas
|
|
828
|
-
accessList?: undefined;
|
|
829
|
-
blobVersionedHashes?: undefined;
|
|
830
|
-
chainId?: number | undefined;
|
|
831
|
-
yParity?: undefined;
|
|
832
|
-
type: "legacy";
|
|
244
|
+
maxFeePerGas: bigint;
|
|
245
|
+
maxPriorityFeePerGas: bigint;
|
|
833
246
|
isSystemTx?: undefined;
|
|
834
247
|
mint?: undefined;
|
|
835
248
|
sourceHash?: undefined;
|
|
836
|
-
} | {
|
|
837
|
-
r: `0x${string}`;
|
|
838
|
-
s: `0x${string}`;
|
|
839
|
-
v: bigint;
|
|
840
|
-
to: `0x${string}` | null;
|
|
841
|
-
from: `0x${string}`;
|
|
842
|
-
gas: bigint;
|
|
843
|
-
nonce: number;
|
|
844
|
-
value: bigint;
|
|
845
|
-
blockHash: `0x${string}` | null;
|
|
846
|
-
blockNumber: bigint | null;
|
|
847
|
-
hash: `0x${string}`;
|
|
848
|
-
input: `0x${string}`;
|
|
849
|
-
transactionIndex: number | null;
|
|
850
|
-
typeHex: `0x${string}` | null;
|
|
851
|
-
gasPrice: undefined;
|
|
852
|
-
maxFeePerBlobGas?: undefined;
|
|
853
|
-
maxFeePerGas: bigint;
|
|
854
|
-
maxPriorityFeePerGas: bigint;
|
|
855
|
-
accessList?: undefined;
|
|
856
|
-
blobVersionedHashes?: undefined;
|
|
857
|
-
chainId?: number | undefined;
|
|
858
|
-
yParity: number;
|
|
859
|
-
type: "deposit";
|
|
860
|
-
isSystemTx?: boolean | undefined;
|
|
861
|
-
mint?: bigint | undefined;
|
|
862
|
-
sourceHash: `0x${string}`;
|
|
863
249
|
} | {
|
|
864
250
|
blockHash: `0x${string}` | null;
|
|
865
251
|
blockNumber: bigint | null;
|
|
@@ -876,14 +262,15 @@ export declare const CHAIN_MAP: {
|
|
|
876
262
|
v: bigint;
|
|
877
263
|
value: bigint;
|
|
878
264
|
yParity: number;
|
|
879
|
-
gasPrice: bigint;
|
|
880
|
-
maxFeePerBlobGas?: undefined;
|
|
881
|
-
maxFeePerGas?: undefined;
|
|
882
|
-
maxPriorityFeePerGas?: undefined;
|
|
883
265
|
accessList: import("viem").AccessList;
|
|
884
|
-
|
|
266
|
+
authorizationList?: undefined;
|
|
267
|
+
blobVersionedHashes: readonly `0x${string}`[];
|
|
885
268
|
chainId: number;
|
|
886
|
-
type: "
|
|
269
|
+
type: "eip4844";
|
|
270
|
+
gasPrice?: undefined;
|
|
271
|
+
maxFeePerBlobGas: bigint;
|
|
272
|
+
maxFeePerGas: bigint;
|
|
273
|
+
maxPriorityFeePerGas: bigint;
|
|
887
274
|
isSystemTx?: undefined;
|
|
888
275
|
mint?: undefined;
|
|
889
276
|
sourceHash?: undefined;
|
|
@@ -903,185 +290,24 @@ export declare const CHAIN_MAP: {
|
|
|
903
290
|
v: bigint;
|
|
904
291
|
value: bigint;
|
|
905
292
|
yParity: number;
|
|
906
|
-
gasPrice: undefined;
|
|
907
|
-
maxFeePerBlobGas?: undefined;
|
|
908
|
-
maxFeePerGas: bigint;
|
|
909
|
-
maxPriorityFeePerGas: bigint;
|
|
910
293
|
accessList: import("viem").AccessList;
|
|
294
|
+
authorizationList: import("viem/experimental").SignedAuthorizationList<number>;
|
|
911
295
|
blobVersionedHashes?: undefined;
|
|
912
296
|
chainId: number;
|
|
913
|
-
type: "
|
|
297
|
+
type: "eip7702";
|
|
298
|
+
gasPrice?: undefined;
|
|
299
|
+
maxFeePerBlobGas?: undefined;
|
|
300
|
+
maxFeePerGas: bigint;
|
|
301
|
+
maxPriorityFeePerGas: bigint;
|
|
914
302
|
isSystemTx?: undefined;
|
|
915
303
|
mint?: undefined;
|
|
916
304
|
sourceHash?: undefined;
|
|
917
|
-
} | {
|
|
918
|
-
blockHash: `0x${string}` | null;
|
|
919
|
-
blockNumber: bigint | null;
|
|
920
|
-
from: `0x${string}`;
|
|
921
|
-
gas: bigint;
|
|
922
|
-
hash: `0x${string}`;
|
|
923
|
-
input: `0x${string}`;
|
|
924
|
-
nonce: number;
|
|
925
|
-
r: `0x${string}`;
|
|
926
|
-
s: `0x${string}`;
|
|
927
|
-
to: `0x${string}` | null;
|
|
928
|
-
transactionIndex: number | null;
|
|
929
|
-
typeHex: `0x${string}` | null;
|
|
930
|
-
v: bigint;
|
|
931
|
-
value: bigint;
|
|
932
|
-
yParity: number;
|
|
933
|
-
gasPrice: undefined;
|
|
934
|
-
maxFeePerBlobGas?: undefined;
|
|
935
|
-
maxFeePerGas: bigint;
|
|
936
|
-
maxPriorityFeePerGas: bigint;
|
|
937
|
-
accessList: import("viem").AccessList;
|
|
938
|
-
blobVersionedHashes?: undefined;
|
|
939
|
-
chainId: number;
|
|
940
|
-
type: "deposit";
|
|
941
|
-
isSystemTx?: boolean | undefined;
|
|
942
|
-
mint?: bigint | undefined;
|
|
943
|
-
sourceHash: `0x${string}`;
|
|
944
|
-
} | {
|
|
945
|
-
blockHash: `0x${string}` | null;
|
|
946
|
-
blockNumber: bigint | null;
|
|
947
|
-
from: `0x${string}`;
|
|
948
|
-
gas: bigint;
|
|
949
|
-
hash: `0x${string}`;
|
|
950
|
-
input: `0x${string}`;
|
|
951
|
-
nonce: number;
|
|
952
|
-
r: `0x${string}`;
|
|
953
|
-
s: `0x${string}`;
|
|
954
|
-
to: `0x${string}` | null;
|
|
955
|
-
transactionIndex: number | null;
|
|
956
|
-
typeHex: `0x${string}` | null;
|
|
957
|
-
v: bigint;
|
|
958
|
-
value: bigint;
|
|
959
|
-
yParity: number;
|
|
960
|
-
gasPrice: bigint;
|
|
961
|
-
maxFeePerBlobGas?: undefined;
|
|
962
|
-
maxFeePerGas: undefined;
|
|
963
|
-
maxPriorityFeePerGas: undefined;
|
|
964
|
-
accessList: import("viem").AccessList;
|
|
965
|
-
blobVersionedHashes?: undefined;
|
|
966
|
-
chainId: number;
|
|
967
|
-
type: "eip2930";
|
|
968
|
-
isSystemTx?: undefined;
|
|
969
|
-
mint?: undefined;
|
|
970
|
-
sourceHash?: undefined;
|
|
971
|
-
} | {
|
|
972
|
-
blockHash: `0x${string}` | null;
|
|
973
|
-
blockNumber: bigint | null;
|
|
974
|
-
from: `0x${string}`;
|
|
975
|
-
gas: bigint;
|
|
976
|
-
hash: `0x${string}`;
|
|
977
|
-
input: `0x${string}`;
|
|
978
|
-
nonce: number;
|
|
979
|
-
r: `0x${string}`;
|
|
980
|
-
s: `0x${string}`;
|
|
981
|
-
to: `0x${string}` | null;
|
|
982
|
-
transactionIndex: number | null;
|
|
983
|
-
typeHex: `0x${string}` | null;
|
|
984
|
-
v: bigint;
|
|
985
|
-
value: bigint;
|
|
986
|
-
yParity: number;
|
|
987
|
-
gasPrice?: undefined;
|
|
988
|
-
maxFeePerBlobGas?: undefined;
|
|
989
|
-
maxFeePerGas: bigint;
|
|
990
|
-
maxPriorityFeePerGas: bigint;
|
|
991
|
-
accessList: import("viem").AccessList;
|
|
992
|
-
blobVersionedHashes?: undefined;
|
|
993
|
-
chainId: number;
|
|
994
|
-
type: "eip1559";
|
|
995
|
-
isSystemTx?: undefined;
|
|
996
|
-
mint?: undefined;
|
|
997
|
-
sourceHash?: undefined;
|
|
998
|
-
} | {
|
|
999
|
-
blockHash: `0x${string}` | null;
|
|
1000
|
-
blockNumber: bigint | null;
|
|
1001
|
-
from: `0x${string}`;
|
|
1002
|
-
gas: bigint;
|
|
1003
|
-
hash: `0x${string}`;
|
|
1004
|
-
input: `0x${string}`;
|
|
1005
|
-
nonce: number;
|
|
1006
|
-
r: `0x${string}`;
|
|
1007
|
-
s: `0x${string}`;
|
|
1008
|
-
to: `0x${string}` | null;
|
|
1009
|
-
transactionIndex: number | null;
|
|
1010
|
-
typeHex: `0x${string}` | null;
|
|
1011
|
-
v: bigint;
|
|
1012
|
-
value: bigint;
|
|
1013
|
-
yParity: number;
|
|
1014
|
-
gasPrice?: undefined;
|
|
1015
|
-
maxFeePerBlobGas?: undefined;
|
|
1016
|
-
maxFeePerGas: bigint;
|
|
1017
|
-
maxPriorityFeePerGas: bigint;
|
|
1018
|
-
accessList: import("viem").AccessList;
|
|
1019
|
-
blobVersionedHashes?: undefined;
|
|
1020
|
-
chainId: number;
|
|
1021
|
-
type: "deposit";
|
|
1022
|
-
isSystemTx?: boolean | undefined;
|
|
1023
|
-
mint?: bigint | undefined;
|
|
1024
|
-
sourceHash: `0x${string}`;
|
|
1025
|
-
} | {
|
|
1026
|
-
blockHash: `0x${string}` | null;
|
|
1027
|
-
blockNumber: bigint | null;
|
|
1028
|
-
from: `0x${string}`;
|
|
1029
|
-
gas: bigint;
|
|
1030
|
-
hash: `0x${string}`;
|
|
1031
|
-
input: `0x${string}`;
|
|
1032
|
-
nonce: number;
|
|
1033
|
-
r: `0x${string}`;
|
|
1034
|
-
s: `0x${string}`;
|
|
1035
|
-
to: `0x${string}` | null;
|
|
1036
|
-
transactionIndex: number | null;
|
|
1037
|
-
typeHex: `0x${string}` | null;
|
|
1038
|
-
v: bigint;
|
|
1039
|
-
value: bigint;
|
|
1040
|
-
yParity: number;
|
|
1041
|
-
gasPrice?: undefined;
|
|
1042
|
-
maxFeePerBlobGas: bigint;
|
|
1043
|
-
maxFeePerGas: bigint;
|
|
1044
|
-
maxPriorityFeePerGas: bigint;
|
|
1045
|
-
accessList: import("viem").AccessList;
|
|
1046
|
-
blobVersionedHashes: `0x${string}`[];
|
|
1047
|
-
chainId: number;
|
|
1048
|
-
type: "eip4844";
|
|
1049
|
-
isSystemTx?: undefined;
|
|
1050
|
-
mint?: undefined;
|
|
1051
|
-
sourceHash?: undefined;
|
|
1052
|
-
} | {
|
|
1053
|
-
blockHash: `0x${string}` | null;
|
|
1054
|
-
blockNumber: bigint | null;
|
|
1055
|
-
from: `0x${string}`;
|
|
1056
|
-
gas: bigint;
|
|
1057
|
-
hash: `0x${string}`;
|
|
1058
|
-
input: `0x${string}`;
|
|
1059
|
-
nonce: number;
|
|
1060
|
-
r: `0x${string}`;
|
|
1061
|
-
s: `0x${string}`;
|
|
1062
|
-
to: `0x${string}` | null;
|
|
1063
|
-
transactionIndex: number | null;
|
|
1064
|
-
typeHex: `0x${string}` | null;
|
|
1065
|
-
v: bigint;
|
|
1066
|
-
value: bigint;
|
|
1067
|
-
yParity: number;
|
|
1068
|
-
gasPrice?: undefined;
|
|
1069
|
-
maxFeePerBlobGas: undefined;
|
|
1070
|
-
maxFeePerGas: bigint;
|
|
1071
|
-
maxPriorityFeePerGas: bigint;
|
|
1072
|
-
accessList: import("viem").AccessList;
|
|
1073
|
-
blobVersionedHashes: `0x${string}`[];
|
|
1074
|
-
chainId: number;
|
|
1075
|
-
type: "deposit";
|
|
1076
|
-
isSystemTx?: boolean | undefined;
|
|
1077
|
-
mint?: bigint | undefined;
|
|
1078
|
-
sourceHash: `0x${string}`;
|
|
1079
305
|
};
|
|
1080
306
|
type: "transaction";
|
|
1081
307
|
};
|
|
1082
308
|
readonly transactionReceipt: {
|
|
1083
309
|
exclude: [] | undefined;
|
|
1084
|
-
format: (args: import("wagmi/chains").
|
|
310
|
+
format: (args: import("wagmi/chains").OpStackRpcTransactionReceipt) => {
|
|
1085
311
|
blobGasPrice?: bigint | undefined;
|
|
1086
312
|
blobGasUsed?: bigint | undefined;
|
|
1087
313
|
blockHash: `0x${string}`;
|
|
@@ -1110,7 +336,6 @@ export declare const CHAIN_MAP: {
|
|
|
1110
336
|
serializers: {
|
|
1111
337
|
readonly transaction: typeof import("wagmi/chains").serializeTransactionOpStack;
|
|
1112
338
|
};
|
|
1113
|
-
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
1114
339
|
};
|
|
1115
340
|
readonly 42161: {
|
|
1116
341
|
blockExplorers: {
|
|
@@ -1141,9 +366,9 @@ export declare const CHAIN_MAP: {
|
|
|
1141
366
|
sourceId?: number | undefined;
|
|
1142
367
|
testnet?: boolean | undefined;
|
|
1143
368
|
custom?: Record<string, unknown> | undefined;
|
|
1144
|
-
formatters?: undefined;
|
|
1145
|
-
serializers?: import("viem").ChainSerializers<undefined> | undefined;
|
|
1146
369
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
370
|
+
formatters?: undefined;
|
|
371
|
+
serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable<bigint, number>> | undefined;
|
|
1147
372
|
};
|
|
1148
373
|
readonly 8453: {
|
|
1149
374
|
blockExplorers: {
|
|
@@ -1154,6 +379,11 @@ export declare const CHAIN_MAP: {
|
|
|
1154
379
|
};
|
|
1155
380
|
};
|
|
1156
381
|
contracts: {
|
|
382
|
+
readonly disputeGameFactory: {
|
|
383
|
+
readonly 1: {
|
|
384
|
+
readonly address: "0x43edB88C4B80fDD2AdFF2412A7BebF9dF42cB40e";
|
|
385
|
+
};
|
|
386
|
+
};
|
|
1157
387
|
readonly l2OutputOracle: {
|
|
1158
388
|
readonly 1: {
|
|
1159
389
|
readonly address: "0x56315b90c40730925ec5485cf004d835058518A0";
|
|
@@ -1209,12 +439,11 @@ export declare const CHAIN_MAP: {
|
|
|
1209
439
|
sourceId: 1;
|
|
1210
440
|
testnet?: boolean | undefined;
|
|
1211
441
|
custom?: Record<string, unknown> | undefined;
|
|
442
|
+
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
1212
443
|
formatters: {
|
|
1213
444
|
readonly block: {
|
|
1214
445
|
exclude: [] | undefined;
|
|
1215
|
-
format: (args: import("wagmi/chains").
|
|
1216
|
-
transactions: `0x${string}`[] | import("wagmi/chains").OpStackRpcTransaction<boolean>[];
|
|
1217
|
-
}>) => {
|
|
446
|
+
format: (args: import("wagmi/chains").OpStackRpcBlock<import("viem").BlockTag, boolean>) => {
|
|
1218
447
|
baseFeePerGas: bigint | null;
|
|
1219
448
|
blobGasUsed: bigint;
|
|
1220
449
|
difficulty: bigint;
|
|
@@ -1228,6 +457,7 @@ export declare const CHAIN_MAP: {
|
|
|
1228
457
|
mixHash: `0x${string}`;
|
|
1229
458
|
nonce: `0x${string}` | null;
|
|
1230
459
|
number: bigint | null;
|
|
460
|
+
parentBeaconBlockRoot?: `0x${string}` | undefined;
|
|
1231
461
|
parentHash: `0x${string}`;
|
|
1232
462
|
receiptsRoot: `0x${string}`;
|
|
1233
463
|
sealFields: `0x${string}`[];
|
|
@@ -1246,765 +476,119 @@ export declare const CHAIN_MAP: {
|
|
|
1246
476
|
};
|
|
1247
477
|
readonly transaction: {
|
|
1248
478
|
exclude: [] | undefined;
|
|
1249
|
-
format: (args: ({
|
|
1250
|
-
r?: `0x${string}` | undefined;
|
|
1251
|
-
s?: `0x${string}` | undefined;
|
|
1252
|
-
v?: `0x${string}` | undefined;
|
|
1253
|
-
yParity?: `0x${string}` | undefined;
|
|
1254
|
-
gasPrice?: `0x${string}` | undefined;
|
|
1255
|
-
maxFeePerBlobGas?: `0x${string}` | undefined;
|
|
1256
|
-
maxFeePerGas?: `0x${string}` | undefined;
|
|
1257
|
-
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
|
1258
|
-
to?: `0x${string}` | null | undefined;
|
|
1259
|
-
from?: `0x${string}` | undefined;
|
|
1260
|
-
gas?: `0x${string}` | undefined;
|
|
1261
|
-
nonce?: `0x${string}` | undefined;
|
|
1262
|
-
value?: `0x${string}` | undefined;
|
|
1263
|
-
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
|
|
1264
|
-
accessList?: undefined;
|
|
1265
|
-
blockHash?: `0x${string}` | null | undefined;
|
|
1266
|
-
blockNumber?: `0x${string}` | null | undefined;
|
|
1267
|
-
hash?: `0x${string}` | undefined;
|
|
1268
|
-
input?: `0x${string}` | undefined;
|
|
1269
|
-
transactionIndex?: `0x${string}` | null | undefined;
|
|
1270
|
-
blobVersionedHashes?: undefined;
|
|
1271
|
-
chainId?: `0x${string}` | undefined;
|
|
1272
|
-
} & import("wagmi/chains").Omit<import("wagmi/chains").PartialBy<{
|
|
1273
|
-
r: `0x${string}`;
|
|
1274
|
-
s: `0x${string}`;
|
|
1275
|
-
v: `0x${string}`;
|
|
1276
|
-
to: `0x${string}` | null;
|
|
1277
|
-
from: `0x${string}`;
|
|
1278
|
-
gas: `0x${string}`;
|
|
1279
|
-
nonce: `0x${string}`;
|
|
1280
|
-
value: `0x${string}`;
|
|
479
|
+
format: (args: import("wagmi/chains").OpStackRpcTransaction<boolean>) => {
|
|
1281
480
|
blockHash: `0x${string}` | null;
|
|
1282
|
-
blockNumber:
|
|
481
|
+
blockNumber: bigint | null;
|
|
482
|
+
from: `0x${string}`;
|
|
483
|
+
gas: bigint;
|
|
1283
484
|
hash: `0x${string}`;
|
|
1284
485
|
input: `0x${string}`;
|
|
1285
|
-
|
|
486
|
+
nonce: number;
|
|
487
|
+
r: `0x${string}`;
|
|
488
|
+
s: `0x${string}`;
|
|
489
|
+
to: `0x${string}` | null;
|
|
490
|
+
transactionIndex: number | null;
|
|
1286
491
|
typeHex: `0x${string}` | null;
|
|
1287
|
-
|
|
492
|
+
v: bigint;
|
|
493
|
+
value: bigint;
|
|
494
|
+
yParity: number;
|
|
495
|
+
gasPrice?: undefined;
|
|
1288
496
|
maxFeePerBlobGas?: undefined;
|
|
1289
|
-
maxFeePerGas
|
|
1290
|
-
maxPriorityFeePerGas
|
|
1291
|
-
accessList?: undefined;
|
|
1292
|
-
blobVersionedHashes?: undefined;
|
|
1293
|
-
chainId?: `0x${string}` | undefined;
|
|
1294
|
-
yParity?: undefined;
|
|
1295
|
-
type: "0x0";
|
|
1296
|
-
}, "yParity">, "typeHex"> & {
|
|
1297
|
-
isSystemTx?: undefined;
|
|
1298
|
-
mint?: undefined;
|
|
1299
|
-
sourceHash?: undefined;
|
|
1300
|
-
}) | ({
|
|
1301
|
-
r?: `0x${string}` | undefined;
|
|
1302
|
-
s?: `0x${string}` | undefined;
|
|
1303
|
-
v?: `0x${string}` | undefined;
|
|
1304
|
-
yParity?: `0x${string}` | undefined;
|
|
1305
|
-
gasPrice?: `0x${string}` | undefined;
|
|
1306
|
-
maxFeePerBlobGas?: `0x${string}` | undefined;
|
|
1307
|
-
maxFeePerGas?: `0x${string}` | undefined;
|
|
1308
|
-
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
|
1309
|
-
to?: `0x${string}` | null | undefined;
|
|
1310
|
-
from?: `0x${string}` | undefined;
|
|
1311
|
-
gas?: `0x${string}` | undefined;
|
|
1312
|
-
nonce?: `0x${string}` | undefined;
|
|
1313
|
-
value?: `0x${string}` | undefined;
|
|
1314
|
-
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
|
|
1315
|
-
accessList?: undefined;
|
|
1316
|
-
blockHash?: `0x${string}` | null | undefined;
|
|
1317
|
-
blockNumber?: `0x${string}` | null | undefined;
|
|
1318
|
-
hash?: `0x${string}` | undefined;
|
|
1319
|
-
input?: `0x${string}` | undefined;
|
|
1320
|
-
transactionIndex?: `0x${string}` | null | undefined;
|
|
1321
|
-
blobVersionedHashes?: undefined;
|
|
1322
|
-
chainId?: `0x${string}` | undefined;
|
|
1323
|
-
} & Omit<import("viem").TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & import("viem").FeeValuesEIP1559<`0x${string}`> & {
|
|
497
|
+
maxFeePerGas: bigint;
|
|
498
|
+
maxPriorityFeePerGas: bigint;
|
|
1324
499
|
isSystemTx?: boolean | undefined;
|
|
1325
|
-
mint?:
|
|
500
|
+
mint?: bigint | undefined;
|
|
1326
501
|
sourceHash: `0x${string}`;
|
|
1327
|
-
type: "
|
|
1328
|
-
}
|
|
1329
|
-
r?: `0x${string}` | undefined;
|
|
1330
|
-
s?: `0x${string}` | undefined;
|
|
1331
|
-
v?: `0x${string}` | undefined;
|
|
1332
|
-
yParity?: `0x${string}` | undefined;
|
|
1333
|
-
gasPrice?: `0x${string}` | undefined;
|
|
1334
|
-
maxFeePerBlobGas?: `0x${string}` | undefined;
|
|
1335
|
-
maxFeePerGas?: `0x${string}` | undefined;
|
|
1336
|
-
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
|
1337
|
-
to?: `0x${string}` | null | undefined;
|
|
1338
|
-
from?: `0x${string}` | undefined;
|
|
1339
|
-
gas?: `0x${string}` | undefined;
|
|
1340
|
-
nonce?: `0x${string}` | undefined;
|
|
1341
|
-
value?: `0x${string}` | undefined;
|
|
1342
|
-
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
|
|
1343
|
-
accessList?: import("viem").AccessList | undefined;
|
|
1344
|
-
blockHash?: `0x${string}` | null | undefined;
|
|
1345
|
-
blockNumber?: `0x${string}` | null | undefined;
|
|
1346
|
-
hash?: `0x${string}` | undefined;
|
|
1347
|
-
input?: `0x${string}` | undefined;
|
|
1348
|
-
transactionIndex?: `0x${string}` | null | undefined;
|
|
1349
|
-
blobVersionedHashes?: undefined;
|
|
1350
|
-
chainId?: `0x${string}` | undefined;
|
|
1351
|
-
} & import("wagmi/chains").Omit<import("wagmi/chains").PartialBy<{
|
|
502
|
+
type: "deposit";
|
|
503
|
+
} | {
|
|
1352
504
|
r: `0x${string}`;
|
|
1353
505
|
s: `0x${string}`;
|
|
1354
|
-
v:
|
|
506
|
+
v: bigint;
|
|
1355
507
|
to: `0x${string}` | null;
|
|
1356
508
|
from: `0x${string}`;
|
|
1357
|
-
gas:
|
|
1358
|
-
nonce:
|
|
1359
|
-
value:
|
|
509
|
+
gas: bigint;
|
|
510
|
+
nonce: number;
|
|
511
|
+
value: bigint;
|
|
1360
512
|
blockHash: `0x${string}` | null;
|
|
1361
|
-
blockNumber:
|
|
513
|
+
blockNumber: bigint | null;
|
|
1362
514
|
hash: `0x${string}`;
|
|
1363
515
|
input: `0x${string}`;
|
|
1364
|
-
transactionIndex:
|
|
516
|
+
transactionIndex: number | null;
|
|
1365
517
|
typeHex: `0x${string}` | null;
|
|
1366
|
-
gasPrice: `0x${string}`;
|
|
1367
|
-
maxFeePerBlobGas?: undefined;
|
|
1368
|
-
maxFeePerGas?: undefined;
|
|
1369
|
-
maxPriorityFeePerGas?: undefined;
|
|
1370
518
|
accessList?: undefined;
|
|
519
|
+
authorizationList?: undefined;
|
|
1371
520
|
blobVersionedHashes?: undefined;
|
|
1372
|
-
chainId?:
|
|
521
|
+
chainId?: number | undefined;
|
|
1373
522
|
yParity?: undefined;
|
|
1374
|
-
type: "
|
|
1375
|
-
|
|
523
|
+
type: "legacy";
|
|
524
|
+
gasPrice: bigint;
|
|
525
|
+
maxFeePerBlobGas?: undefined;
|
|
526
|
+
maxFeePerGas?: undefined;
|
|
527
|
+
maxPriorityFeePerGas?: undefined;
|
|
1376
528
|
isSystemTx?: undefined;
|
|
1377
529
|
mint?: undefined;
|
|
1378
530
|
sourceHash?: undefined;
|
|
1379
|
-
}
|
|
1380
|
-
r?: `0x${string}` | undefined;
|
|
1381
|
-
s?: `0x${string}` | undefined;
|
|
1382
|
-
v?: `0x${string}` | undefined;
|
|
1383
|
-
yParity?: `0x${string}` | undefined;
|
|
1384
|
-
gasPrice?: `0x${string}` | undefined;
|
|
1385
|
-
maxFeePerBlobGas?: `0x${string}` | undefined;
|
|
1386
|
-
maxFeePerGas?: `0x${string}` | undefined;
|
|
1387
|
-
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
|
1388
|
-
to?: `0x${string}` | null | undefined;
|
|
1389
|
-
from?: `0x${string}` | undefined;
|
|
1390
|
-
gas?: `0x${string}` | undefined;
|
|
1391
|
-
nonce?: `0x${string}` | undefined;
|
|
1392
|
-
value?: `0x${string}` | undefined;
|
|
1393
|
-
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
|
|
1394
|
-
accessList?: import("viem").AccessList | undefined;
|
|
1395
|
-
blockHash?: `0x${string}` | null | undefined;
|
|
1396
|
-
blockNumber?: `0x${string}` | null | undefined;
|
|
1397
|
-
hash?: `0x${string}` | undefined;
|
|
1398
|
-
input?: `0x${string}` | undefined;
|
|
1399
|
-
transactionIndex?: `0x${string}` | null | undefined;
|
|
1400
|
-
blobVersionedHashes?: undefined;
|
|
1401
|
-
chainId?: `0x${string}` | undefined;
|
|
1402
|
-
} & import("wagmi/chains").Omit<import("wagmi/chains").PartialBy<{
|
|
531
|
+
} | {
|
|
1403
532
|
blockHash: `0x${string}` | null;
|
|
1404
|
-
blockNumber:
|
|
533
|
+
blockNumber: bigint | null;
|
|
1405
534
|
from: `0x${string}`;
|
|
1406
|
-
gas:
|
|
535
|
+
gas: bigint;
|
|
1407
536
|
hash: `0x${string}`;
|
|
1408
537
|
input: `0x${string}`;
|
|
1409
|
-
nonce:
|
|
538
|
+
nonce: number;
|
|
1410
539
|
r: `0x${string}`;
|
|
1411
540
|
s: `0x${string}`;
|
|
1412
541
|
to: `0x${string}` | null;
|
|
1413
|
-
transactionIndex:
|
|
542
|
+
transactionIndex: number | null;
|
|
1414
543
|
typeHex: `0x${string}` | null;
|
|
1415
|
-
v:
|
|
1416
|
-
value:
|
|
1417
|
-
yParity:
|
|
1418
|
-
|
|
544
|
+
v: bigint;
|
|
545
|
+
value: bigint;
|
|
546
|
+
yParity: number;
|
|
547
|
+
accessList: import("viem").AccessList;
|
|
548
|
+
authorizationList?: undefined;
|
|
549
|
+
blobVersionedHashes?: undefined;
|
|
550
|
+
chainId: number;
|
|
551
|
+
type: "eip2930";
|
|
552
|
+
gasPrice: bigint;
|
|
1419
553
|
maxFeePerBlobGas?: undefined;
|
|
1420
554
|
maxFeePerGas?: undefined;
|
|
1421
555
|
maxPriorityFeePerGas?: undefined;
|
|
1422
|
-
accessList: import("viem").AccessList;
|
|
1423
|
-
blobVersionedHashes?: undefined;
|
|
1424
|
-
chainId: `0x${string}`;
|
|
1425
|
-
type: "0x1";
|
|
1426
|
-
}, "yParity">, "typeHex"> & {
|
|
1427
556
|
isSystemTx?: undefined;
|
|
1428
557
|
mint?: undefined;
|
|
1429
558
|
sourceHash?: undefined;
|
|
1430
|
-
}
|
|
1431
|
-
r?: `0x${string}` | undefined;
|
|
1432
|
-
s?: `0x${string}` | undefined;
|
|
1433
|
-
v?: `0x${string}` | undefined;
|
|
1434
|
-
yParity?: `0x${string}` | undefined;
|
|
1435
|
-
gasPrice?: `0x${string}` | undefined;
|
|
1436
|
-
maxFeePerBlobGas?: `0x${string}` | undefined;
|
|
1437
|
-
maxFeePerGas?: `0x${string}` | undefined;
|
|
1438
|
-
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
|
1439
|
-
to?: `0x${string}` | null | undefined;
|
|
1440
|
-
from?: `0x${string}` | undefined;
|
|
1441
|
-
gas?: `0x${string}` | undefined;
|
|
1442
|
-
nonce?: `0x${string}` | undefined;
|
|
1443
|
-
value?: `0x${string}` | undefined;
|
|
1444
|
-
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
|
|
1445
|
-
accessList?: import("viem").AccessList | undefined;
|
|
1446
|
-
blockHash?: `0x${string}` | null | undefined;
|
|
1447
|
-
blockNumber?: `0x${string}` | null | undefined;
|
|
1448
|
-
hash?: `0x${string}` | undefined;
|
|
1449
|
-
input?: `0x${string}` | undefined;
|
|
1450
|
-
transactionIndex?: `0x${string}` | null | undefined;
|
|
1451
|
-
blobVersionedHashes?: undefined;
|
|
1452
|
-
chainId?: `0x${string}` | undefined;
|
|
1453
|
-
} & import("wagmi/chains").Omit<import("wagmi/chains").PartialBy<{
|
|
559
|
+
} | {
|
|
1454
560
|
blockHash: `0x${string}` | null;
|
|
1455
|
-
blockNumber:
|
|
561
|
+
blockNumber: bigint | null;
|
|
1456
562
|
from: `0x${string}`;
|
|
1457
|
-
gas:
|
|
563
|
+
gas: bigint;
|
|
1458
564
|
hash: `0x${string}`;
|
|
1459
565
|
input: `0x${string}`;
|
|
1460
|
-
nonce:
|
|
566
|
+
nonce: number;
|
|
1461
567
|
r: `0x${string}`;
|
|
1462
568
|
s: `0x${string}`;
|
|
1463
569
|
to: `0x${string}` | null;
|
|
1464
|
-
transactionIndex:
|
|
570
|
+
transactionIndex: number | null;
|
|
1465
571
|
typeHex: `0x${string}` | null;
|
|
1466
|
-
v:
|
|
1467
|
-
value:
|
|
1468
|
-
yParity:
|
|
1469
|
-
gasPrice?: undefined;
|
|
1470
|
-
maxFeePerBlobGas?: undefined;
|
|
1471
|
-
maxFeePerGas: `0x${string}`;
|
|
1472
|
-
maxPriorityFeePerGas: `0x${string}`;
|
|
572
|
+
v: bigint;
|
|
573
|
+
value: bigint;
|
|
574
|
+
yParity: number;
|
|
1473
575
|
accessList: import("viem").AccessList;
|
|
576
|
+
authorizationList?: undefined;
|
|
1474
577
|
blobVersionedHashes?: undefined;
|
|
1475
|
-
chainId:
|
|
1476
|
-
type: "
|
|
1477
|
-
|
|
578
|
+
chainId: number;
|
|
579
|
+
type: "eip1559";
|
|
580
|
+
gasPrice?: undefined;
|
|
581
|
+
maxFeePerBlobGas?: undefined;
|
|
582
|
+
maxFeePerGas: bigint;
|
|
583
|
+
maxPriorityFeePerGas: bigint;
|
|
1478
584
|
isSystemTx?: undefined;
|
|
1479
585
|
mint?: undefined;
|
|
1480
586
|
sourceHash?: undefined;
|
|
1481
|
-
}
|
|
1482
|
-
r?: `0x${string}` | undefined;
|
|
1483
|
-
s?: `0x${string}` | undefined;
|
|
1484
|
-
v?: `0x${string}` | undefined;
|
|
1485
|
-
yParity?: `0x${string}` | undefined;
|
|
1486
|
-
gasPrice?: `0x${string}` | undefined;
|
|
1487
|
-
maxFeePerBlobGas?: `0x${string}` | undefined;
|
|
1488
|
-
maxFeePerGas?: `0x${string}` | undefined;
|
|
1489
|
-
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
|
1490
|
-
to?: `0x${string}` | null | undefined;
|
|
1491
|
-
from?: `0x${string}` | undefined;
|
|
1492
|
-
gas?: `0x${string}` | undefined;
|
|
1493
|
-
nonce?: `0x${string}` | undefined;
|
|
1494
|
-
value?: `0x${string}` | undefined;
|
|
1495
|
-
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
|
|
1496
|
-
accessList?: import("viem").AccessList | undefined;
|
|
1497
|
-
blockHash?: `0x${string}` | null | undefined;
|
|
1498
|
-
blockNumber?: `0x${string}` | null | undefined;
|
|
1499
|
-
hash?: `0x${string}` | undefined;
|
|
1500
|
-
input?: `0x${string}` | undefined;
|
|
1501
|
-
transactionIndex?: `0x${string}` | null | undefined;
|
|
1502
|
-
blobVersionedHashes?: undefined;
|
|
1503
|
-
chainId?: `0x${string}` | undefined;
|
|
1504
|
-
} & Omit<import("viem").TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & import("viem").FeeValuesEIP1559<`0x${string}`> & {
|
|
1505
|
-
isSystemTx?: boolean | undefined;
|
|
1506
|
-
mint?: `0x${string}` | undefined;
|
|
1507
|
-
sourceHash: `0x${string}`;
|
|
1508
|
-
type: "0x7e";
|
|
1509
|
-
}) | ({
|
|
1510
|
-
r?: `0x${string}` | undefined;
|
|
1511
|
-
s?: `0x${string}` | undefined;
|
|
1512
|
-
v?: `0x${string}` | undefined;
|
|
1513
|
-
yParity?: `0x${string}` | undefined;
|
|
1514
|
-
gasPrice?: `0x${string}` | undefined;
|
|
1515
|
-
maxFeePerBlobGas?: `0x${string}` | undefined;
|
|
1516
|
-
maxFeePerGas?: `0x${string}` | undefined;
|
|
1517
|
-
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
|
1518
|
-
to?: `0x${string}` | null | undefined;
|
|
1519
|
-
from?: `0x${string}` | undefined;
|
|
1520
|
-
gas?: `0x${string}` | undefined;
|
|
1521
|
-
nonce?: `0x${string}` | undefined;
|
|
1522
|
-
value?: `0x${string}` | undefined;
|
|
1523
|
-
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
|
|
1524
|
-
accessList?: import("viem").AccessList | undefined;
|
|
1525
|
-
blockHash?: `0x${string}` | null | undefined;
|
|
1526
|
-
blockNumber?: `0x${string}` | null | undefined;
|
|
1527
|
-
hash?: `0x${string}` | undefined;
|
|
1528
|
-
input?: `0x${string}` | undefined;
|
|
1529
|
-
transactionIndex?: `0x${string}` | null | undefined;
|
|
1530
|
-
blobVersionedHashes?: undefined;
|
|
1531
|
-
chainId?: `0x${string}` | undefined;
|
|
1532
|
-
} & import("wagmi/chains").Omit<import("wagmi/chains").PartialBy<{
|
|
1533
|
-
r: `0x${string}`;
|
|
1534
|
-
s: `0x${string}`;
|
|
1535
|
-
v: `0x${string}`;
|
|
1536
|
-
to: `0x${string}` | null;
|
|
1537
|
-
from: `0x${string}`;
|
|
1538
|
-
gas: `0x${string}`;
|
|
1539
|
-
nonce: `0x${string}`;
|
|
1540
|
-
value: `0x${string}`;
|
|
587
|
+
} | {
|
|
1541
588
|
blockHash: `0x${string}` | null;
|
|
1542
|
-
blockNumber:
|
|
1543
|
-
|
|
1544
|
-
|
|
1545
|
-
transactionIndex: `0x${string}` | null;
|
|
1546
|
-
typeHex: `0x${string}` | null;
|
|
1547
|
-
gasPrice: `0x${string}`;
|
|
1548
|
-
maxFeePerBlobGas?: undefined;
|
|
1549
|
-
maxFeePerGas?: undefined;
|
|
1550
|
-
maxPriorityFeePerGas?: undefined;
|
|
1551
|
-
accessList?: undefined;
|
|
1552
|
-
blobVersionedHashes?: undefined;
|
|
1553
|
-
chainId?: `0x${string}` | undefined;
|
|
1554
|
-
yParity?: undefined;
|
|
1555
|
-
type: "0x0";
|
|
1556
|
-
}, "yParity">, "typeHex"> & {
|
|
1557
|
-
isSystemTx?: undefined;
|
|
1558
|
-
mint?: undefined;
|
|
1559
|
-
sourceHash?: undefined;
|
|
1560
|
-
}) | ({
|
|
1561
|
-
r?: `0x${string}` | undefined;
|
|
1562
|
-
s?: `0x${string}` | undefined;
|
|
1563
|
-
v?: `0x${string}` | undefined;
|
|
1564
|
-
yParity?: `0x${string}` | undefined;
|
|
1565
|
-
gasPrice?: `0x${string}` | undefined;
|
|
1566
|
-
maxFeePerBlobGas?: `0x${string}` | undefined;
|
|
1567
|
-
maxFeePerGas?: `0x${string}` | undefined;
|
|
1568
|
-
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
|
1569
|
-
to?: `0x${string}` | null | undefined;
|
|
1570
|
-
from?: `0x${string}` | undefined;
|
|
1571
|
-
gas?: `0x${string}` | undefined;
|
|
1572
|
-
nonce?: `0x${string}` | undefined;
|
|
1573
|
-
value?: `0x${string}` | undefined;
|
|
1574
|
-
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
|
|
1575
|
-
accessList?: import("viem").AccessList | undefined;
|
|
1576
|
-
blockHash?: `0x${string}` | null | undefined;
|
|
1577
|
-
blockNumber?: `0x${string}` | null | undefined;
|
|
1578
|
-
hash?: `0x${string}` | undefined;
|
|
1579
|
-
input?: `0x${string}` | undefined;
|
|
1580
|
-
transactionIndex?: `0x${string}` | null | undefined;
|
|
1581
|
-
blobVersionedHashes?: undefined;
|
|
1582
|
-
chainId?: `0x${string}` | undefined;
|
|
1583
|
-
} & import("wagmi/chains").Omit<import("wagmi/chains").PartialBy<{
|
|
1584
|
-
blockHash: `0x${string}` | null;
|
|
1585
|
-
blockNumber: `0x${string}` | null;
|
|
1586
|
-
from: `0x${string}`;
|
|
1587
|
-
gas: `0x${string}`;
|
|
1588
|
-
hash: `0x${string}`;
|
|
1589
|
-
input: `0x${string}`;
|
|
1590
|
-
nonce: `0x${string}`;
|
|
1591
|
-
r: `0x${string}`;
|
|
1592
|
-
s: `0x${string}`;
|
|
1593
|
-
to: `0x${string}` | null;
|
|
1594
|
-
transactionIndex: `0x${string}` | null;
|
|
1595
|
-
typeHex: `0x${string}` | null;
|
|
1596
|
-
v: `0x${string}`;
|
|
1597
|
-
value: `0x${string}`;
|
|
1598
|
-
yParity: `0x${string}`;
|
|
1599
|
-
gasPrice: `0x${string}`;
|
|
1600
|
-
maxFeePerBlobGas?: undefined;
|
|
1601
|
-
maxFeePerGas?: undefined;
|
|
1602
|
-
maxPriorityFeePerGas?: undefined;
|
|
1603
|
-
accessList: import("viem").AccessList;
|
|
1604
|
-
blobVersionedHashes?: undefined;
|
|
1605
|
-
chainId: `0x${string}`;
|
|
1606
|
-
type: "0x1";
|
|
1607
|
-
}, "yParity">, "typeHex"> & {
|
|
1608
|
-
isSystemTx?: undefined;
|
|
1609
|
-
mint?: undefined;
|
|
1610
|
-
sourceHash?: undefined;
|
|
1611
|
-
}) | ({
|
|
1612
|
-
r?: `0x${string}` | undefined;
|
|
1613
|
-
s?: `0x${string}` | undefined;
|
|
1614
|
-
v?: `0x${string}` | undefined;
|
|
1615
|
-
yParity?: `0x${string}` | undefined;
|
|
1616
|
-
gasPrice?: `0x${string}` | undefined;
|
|
1617
|
-
maxFeePerBlobGas?: `0x${string}` | undefined;
|
|
1618
|
-
maxFeePerGas?: `0x${string}` | undefined;
|
|
1619
|
-
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
|
1620
|
-
to?: `0x${string}` | null | undefined;
|
|
1621
|
-
from?: `0x${string}` | undefined;
|
|
1622
|
-
gas?: `0x${string}` | undefined;
|
|
1623
|
-
nonce?: `0x${string}` | undefined;
|
|
1624
|
-
value?: `0x${string}` | undefined;
|
|
1625
|
-
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
|
|
1626
|
-
accessList?: import("viem").AccessList | undefined;
|
|
1627
|
-
blockHash?: `0x${string}` | null | undefined;
|
|
1628
|
-
blockNumber?: `0x${string}` | null | undefined;
|
|
1629
|
-
hash?: `0x${string}` | undefined;
|
|
1630
|
-
input?: `0x${string}` | undefined;
|
|
1631
|
-
transactionIndex?: `0x${string}` | null | undefined;
|
|
1632
|
-
blobVersionedHashes?: undefined;
|
|
1633
|
-
chainId?: `0x${string}` | undefined;
|
|
1634
|
-
} & import("wagmi/chains").Omit<import("wagmi/chains").PartialBy<{
|
|
1635
|
-
blockHash: `0x${string}` | null;
|
|
1636
|
-
blockNumber: `0x${string}` | null;
|
|
1637
|
-
from: `0x${string}`;
|
|
1638
|
-
gas: `0x${string}`;
|
|
1639
|
-
hash: `0x${string}`;
|
|
1640
|
-
input: `0x${string}`;
|
|
1641
|
-
nonce: `0x${string}`;
|
|
1642
|
-
r: `0x${string}`;
|
|
1643
|
-
s: `0x${string}`;
|
|
1644
|
-
to: `0x${string}` | null;
|
|
1645
|
-
transactionIndex: `0x${string}` | null;
|
|
1646
|
-
typeHex: `0x${string}` | null;
|
|
1647
|
-
v: `0x${string}`;
|
|
1648
|
-
value: `0x${string}`;
|
|
1649
|
-
yParity: `0x${string}`;
|
|
1650
|
-
gasPrice?: undefined;
|
|
1651
|
-
maxFeePerBlobGas?: undefined;
|
|
1652
|
-
maxFeePerGas: `0x${string}`;
|
|
1653
|
-
maxPriorityFeePerGas: `0x${string}`;
|
|
1654
|
-
accessList: import("viem").AccessList;
|
|
1655
|
-
blobVersionedHashes?: undefined;
|
|
1656
|
-
chainId: `0x${string}`;
|
|
1657
|
-
type: "0x2";
|
|
1658
|
-
}, "yParity">, "typeHex"> & {
|
|
1659
|
-
isSystemTx?: undefined;
|
|
1660
|
-
mint?: undefined;
|
|
1661
|
-
sourceHash?: undefined;
|
|
1662
|
-
}) | ({
|
|
1663
|
-
r?: `0x${string}` | undefined;
|
|
1664
|
-
s?: `0x${string}` | undefined;
|
|
1665
|
-
v?: `0x${string}` | undefined;
|
|
1666
|
-
yParity?: `0x${string}` | undefined;
|
|
1667
|
-
gasPrice?: `0x${string}` | undefined;
|
|
1668
|
-
maxFeePerBlobGas?: `0x${string}` | undefined;
|
|
1669
|
-
maxFeePerGas?: `0x${string}` | undefined;
|
|
1670
|
-
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
|
1671
|
-
to?: `0x${string}` | null | undefined;
|
|
1672
|
-
from?: `0x${string}` | undefined;
|
|
1673
|
-
gas?: `0x${string}` | undefined;
|
|
1674
|
-
nonce?: `0x${string}` | undefined;
|
|
1675
|
-
value?: `0x${string}` | undefined;
|
|
1676
|
-
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
|
|
1677
|
-
accessList?: import("viem").AccessList | undefined;
|
|
1678
|
-
blockHash?: `0x${string}` | null | undefined;
|
|
1679
|
-
blockNumber?: `0x${string}` | null | undefined;
|
|
1680
|
-
hash?: `0x${string}` | undefined;
|
|
1681
|
-
input?: `0x${string}` | undefined;
|
|
1682
|
-
transactionIndex?: `0x${string}` | null | undefined;
|
|
1683
|
-
blobVersionedHashes?: undefined;
|
|
1684
|
-
chainId?: `0x${string}` | undefined;
|
|
1685
|
-
} & Omit<import("viem").TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & import("viem").FeeValuesEIP1559<`0x${string}`> & {
|
|
1686
|
-
isSystemTx?: boolean | undefined;
|
|
1687
|
-
mint?: `0x${string}` | undefined;
|
|
1688
|
-
sourceHash: `0x${string}`;
|
|
1689
|
-
type: "0x7e";
|
|
1690
|
-
}) | ({
|
|
1691
|
-
r?: `0x${string}` | undefined;
|
|
1692
|
-
s?: `0x${string}` | undefined;
|
|
1693
|
-
v?: `0x${string}` | undefined;
|
|
1694
|
-
yParity?: `0x${string}` | undefined;
|
|
1695
|
-
gasPrice?: `0x${string}` | undefined;
|
|
1696
|
-
maxFeePerBlobGas?: `0x${string}` | undefined;
|
|
1697
|
-
maxFeePerGas?: `0x${string}` | undefined;
|
|
1698
|
-
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
|
1699
|
-
to?: `0x${string}` | null | undefined;
|
|
1700
|
-
from?: `0x${string}` | undefined;
|
|
1701
|
-
gas?: `0x${string}` | undefined;
|
|
1702
|
-
nonce?: `0x${string}` | undefined;
|
|
1703
|
-
value?: `0x${string}` | undefined;
|
|
1704
|
-
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
|
|
1705
|
-
accessList?: import("viem").AccessList | undefined;
|
|
1706
|
-
blockHash?: `0x${string}` | null | undefined;
|
|
1707
|
-
blockNumber?: `0x${string}` | null | undefined;
|
|
1708
|
-
hash?: `0x${string}` | undefined;
|
|
1709
|
-
input?: `0x${string}` | undefined;
|
|
1710
|
-
transactionIndex?: `0x${string}` | null | undefined;
|
|
1711
|
-
blobVersionedHashes?: `0x${string}`[] | undefined;
|
|
1712
|
-
chainId?: `0x${string}` | undefined;
|
|
1713
|
-
} & import("wagmi/chains").Omit<import("wagmi/chains").PartialBy<{
|
|
1714
|
-
r: `0x${string}`;
|
|
1715
|
-
s: `0x${string}`;
|
|
1716
|
-
v: `0x${string}`;
|
|
1717
|
-
to: `0x${string}` | null;
|
|
1718
|
-
from: `0x${string}`;
|
|
1719
|
-
gas: `0x${string}`;
|
|
1720
|
-
nonce: `0x${string}`;
|
|
1721
|
-
value: `0x${string}`;
|
|
1722
|
-
blockHash: `0x${string}` | null;
|
|
1723
|
-
blockNumber: `0x${string}` | null;
|
|
1724
|
-
hash: `0x${string}`;
|
|
1725
|
-
input: `0x${string}`;
|
|
1726
|
-
transactionIndex: `0x${string}` | null;
|
|
1727
|
-
typeHex: `0x${string}` | null;
|
|
1728
|
-
gasPrice: `0x${string}`;
|
|
1729
|
-
maxFeePerBlobGas?: undefined;
|
|
1730
|
-
maxFeePerGas?: undefined;
|
|
1731
|
-
maxPriorityFeePerGas?: undefined;
|
|
1732
|
-
accessList?: undefined;
|
|
1733
|
-
blobVersionedHashes?: undefined;
|
|
1734
|
-
chainId?: `0x${string}` | undefined;
|
|
1735
|
-
yParity?: undefined;
|
|
1736
|
-
type: "0x0";
|
|
1737
|
-
}, "yParity">, "typeHex"> & {
|
|
1738
|
-
isSystemTx?: undefined;
|
|
1739
|
-
mint?: undefined;
|
|
1740
|
-
sourceHash?: undefined;
|
|
1741
|
-
}) | ({
|
|
1742
|
-
r?: `0x${string}` | undefined;
|
|
1743
|
-
s?: `0x${string}` | undefined;
|
|
1744
|
-
v?: `0x${string}` | undefined;
|
|
1745
|
-
yParity?: `0x${string}` | undefined;
|
|
1746
|
-
gasPrice?: `0x${string}` | undefined;
|
|
1747
|
-
maxFeePerBlobGas?: `0x${string}` | undefined;
|
|
1748
|
-
maxFeePerGas?: `0x${string}` | undefined;
|
|
1749
|
-
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
|
1750
|
-
to?: `0x${string}` | null | undefined;
|
|
1751
|
-
from?: `0x${string}` | undefined;
|
|
1752
|
-
gas?: `0x${string}` | undefined;
|
|
1753
|
-
nonce?: `0x${string}` | undefined;
|
|
1754
|
-
value?: `0x${string}` | undefined;
|
|
1755
|
-
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
|
|
1756
|
-
accessList?: import("viem").AccessList | undefined;
|
|
1757
|
-
blockHash?: `0x${string}` | null | undefined;
|
|
1758
|
-
blockNumber?: `0x${string}` | null | undefined;
|
|
1759
|
-
hash?: `0x${string}` | undefined;
|
|
1760
|
-
input?: `0x${string}` | undefined;
|
|
1761
|
-
transactionIndex?: `0x${string}` | null | undefined;
|
|
1762
|
-
blobVersionedHashes?: `0x${string}`[] | undefined;
|
|
1763
|
-
chainId?: `0x${string}` | undefined;
|
|
1764
|
-
} & import("wagmi/chains").Omit<import("wagmi/chains").PartialBy<{
|
|
1765
|
-
blockHash: `0x${string}` | null;
|
|
1766
|
-
blockNumber: `0x${string}` | null;
|
|
1767
|
-
from: `0x${string}`;
|
|
1768
|
-
gas: `0x${string}`;
|
|
1769
|
-
hash: `0x${string}`;
|
|
1770
|
-
input: `0x${string}`;
|
|
1771
|
-
nonce: `0x${string}`;
|
|
1772
|
-
r: `0x${string}`;
|
|
1773
|
-
s: `0x${string}`;
|
|
1774
|
-
to: `0x${string}` | null;
|
|
1775
|
-
transactionIndex: `0x${string}` | null;
|
|
1776
|
-
typeHex: `0x${string}` | null;
|
|
1777
|
-
v: `0x${string}`;
|
|
1778
|
-
value: `0x${string}`;
|
|
1779
|
-
yParity: `0x${string}`;
|
|
1780
|
-
gasPrice: `0x${string}`;
|
|
1781
|
-
maxFeePerBlobGas?: undefined;
|
|
1782
|
-
maxFeePerGas?: undefined;
|
|
1783
|
-
maxPriorityFeePerGas?: undefined;
|
|
1784
|
-
accessList: import("viem").AccessList;
|
|
1785
|
-
blobVersionedHashes?: undefined;
|
|
1786
|
-
chainId: `0x${string}`;
|
|
1787
|
-
type: "0x1";
|
|
1788
|
-
}, "yParity">, "typeHex"> & {
|
|
1789
|
-
isSystemTx?: undefined;
|
|
1790
|
-
mint?: undefined;
|
|
1791
|
-
sourceHash?: undefined;
|
|
1792
|
-
}) | ({
|
|
1793
|
-
r?: `0x${string}` | undefined;
|
|
1794
|
-
s?: `0x${string}` | undefined;
|
|
1795
|
-
v?: `0x${string}` | undefined;
|
|
1796
|
-
yParity?: `0x${string}` | undefined;
|
|
1797
|
-
gasPrice?: `0x${string}` | undefined;
|
|
1798
|
-
maxFeePerBlobGas?: `0x${string}` | undefined;
|
|
1799
|
-
maxFeePerGas?: `0x${string}` | undefined;
|
|
1800
|
-
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
|
1801
|
-
to?: `0x${string}` | null | undefined;
|
|
1802
|
-
from?: `0x${string}` | undefined;
|
|
1803
|
-
gas?: `0x${string}` | undefined;
|
|
1804
|
-
nonce?: `0x${string}` | undefined;
|
|
1805
|
-
value?: `0x${string}` | undefined;
|
|
1806
|
-
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
|
|
1807
|
-
accessList?: import("viem").AccessList | undefined;
|
|
1808
|
-
blockHash?: `0x${string}` | null | undefined;
|
|
1809
|
-
blockNumber?: `0x${string}` | null | undefined;
|
|
1810
|
-
hash?: `0x${string}` | undefined;
|
|
1811
|
-
input?: `0x${string}` | undefined;
|
|
1812
|
-
transactionIndex?: `0x${string}` | null | undefined;
|
|
1813
|
-
blobVersionedHashes?: `0x${string}`[] | undefined;
|
|
1814
|
-
chainId?: `0x${string}` | undefined;
|
|
1815
|
-
} & import("wagmi/chains").Omit<import("wagmi/chains").PartialBy<{
|
|
1816
|
-
blockHash: `0x${string}` | null;
|
|
1817
|
-
blockNumber: `0x${string}` | null;
|
|
1818
|
-
from: `0x${string}`;
|
|
1819
|
-
gas: `0x${string}`;
|
|
1820
|
-
hash: `0x${string}`;
|
|
1821
|
-
input: `0x${string}`;
|
|
1822
|
-
nonce: `0x${string}`;
|
|
1823
|
-
r: `0x${string}`;
|
|
1824
|
-
s: `0x${string}`;
|
|
1825
|
-
to: `0x${string}` | null;
|
|
1826
|
-
transactionIndex: `0x${string}` | null;
|
|
1827
|
-
typeHex: `0x${string}` | null;
|
|
1828
|
-
v: `0x${string}`;
|
|
1829
|
-
value: `0x${string}`;
|
|
1830
|
-
yParity: `0x${string}`;
|
|
1831
|
-
gasPrice?: undefined;
|
|
1832
|
-
maxFeePerBlobGas?: undefined;
|
|
1833
|
-
maxFeePerGas: `0x${string}`;
|
|
1834
|
-
maxPriorityFeePerGas: `0x${string}`;
|
|
1835
|
-
accessList: import("viem").AccessList;
|
|
1836
|
-
blobVersionedHashes?: undefined;
|
|
1837
|
-
chainId: `0x${string}`;
|
|
1838
|
-
type: "0x2";
|
|
1839
|
-
}, "yParity">, "typeHex"> & {
|
|
1840
|
-
isSystemTx?: undefined;
|
|
1841
|
-
mint?: undefined;
|
|
1842
|
-
sourceHash?: undefined;
|
|
1843
|
-
}) | ({
|
|
1844
|
-
r?: `0x${string}` | undefined;
|
|
1845
|
-
s?: `0x${string}` | undefined;
|
|
1846
|
-
v?: `0x${string}` | undefined;
|
|
1847
|
-
yParity?: `0x${string}` | undefined;
|
|
1848
|
-
gasPrice?: `0x${string}` | undefined;
|
|
1849
|
-
maxFeePerBlobGas?: `0x${string}` | undefined;
|
|
1850
|
-
maxFeePerGas?: `0x${string}` | undefined;
|
|
1851
|
-
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
|
1852
|
-
to?: `0x${string}` | null | undefined;
|
|
1853
|
-
from?: `0x${string}` | undefined;
|
|
1854
|
-
gas?: `0x${string}` | undefined;
|
|
1855
|
-
nonce?: `0x${string}` | undefined;
|
|
1856
|
-
value?: `0x${string}` | undefined;
|
|
1857
|
-
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
|
|
1858
|
-
accessList?: import("viem").AccessList | undefined;
|
|
1859
|
-
blockHash?: `0x${string}` | null | undefined;
|
|
1860
|
-
blockNumber?: `0x${string}` | null | undefined;
|
|
1861
|
-
hash?: `0x${string}` | undefined;
|
|
1862
|
-
input?: `0x${string}` | undefined;
|
|
1863
|
-
transactionIndex?: `0x${string}` | null | undefined;
|
|
1864
|
-
blobVersionedHashes?: `0x${string}`[] | undefined;
|
|
1865
|
-
chainId?: `0x${string}` | undefined;
|
|
1866
|
-
} & import("wagmi/chains").Omit<import("wagmi/chains").PartialBy<{
|
|
1867
|
-
blockHash: `0x${string}` | null;
|
|
1868
|
-
blockNumber: `0x${string}` | null;
|
|
1869
|
-
from: `0x${string}`;
|
|
1870
|
-
gas: `0x${string}`;
|
|
1871
|
-
hash: `0x${string}`;
|
|
1872
|
-
input: `0x${string}`;
|
|
1873
|
-
nonce: `0x${string}`;
|
|
1874
|
-
r: `0x${string}`;
|
|
1875
|
-
s: `0x${string}`;
|
|
1876
|
-
to: `0x${string}` | null;
|
|
1877
|
-
transactionIndex: `0x${string}` | null;
|
|
1878
|
-
typeHex: `0x${string}` | null;
|
|
1879
|
-
v: `0x${string}`;
|
|
1880
|
-
value: `0x${string}`;
|
|
1881
|
-
yParity: `0x${string}`;
|
|
1882
|
-
gasPrice?: undefined;
|
|
1883
|
-
maxFeePerBlobGas: `0x${string}`;
|
|
1884
|
-
maxFeePerGas: `0x${string}`;
|
|
1885
|
-
maxPriorityFeePerGas: `0x${string}`;
|
|
1886
|
-
accessList: import("viem").AccessList;
|
|
1887
|
-
blobVersionedHashes: `0x${string}`[];
|
|
1888
|
-
chainId: `0x${string}`;
|
|
1889
|
-
type: "0x3";
|
|
1890
|
-
}, "yParity">, "typeHex"> & {
|
|
1891
|
-
isSystemTx?: undefined;
|
|
1892
|
-
mint?: undefined;
|
|
1893
|
-
sourceHash?: undefined;
|
|
1894
|
-
}) | ({
|
|
1895
|
-
r?: `0x${string}` | undefined;
|
|
1896
|
-
s?: `0x${string}` | undefined;
|
|
1897
|
-
v?: `0x${string}` | undefined;
|
|
1898
|
-
yParity?: `0x${string}` | undefined;
|
|
1899
|
-
gasPrice?: `0x${string}` | undefined;
|
|
1900
|
-
maxFeePerBlobGas?: `0x${string}` | undefined;
|
|
1901
|
-
maxFeePerGas?: `0x${string}` | undefined;
|
|
1902
|
-
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
|
1903
|
-
to?: `0x${string}` | null | undefined;
|
|
1904
|
-
from?: `0x${string}` | undefined;
|
|
1905
|
-
gas?: `0x${string}` | undefined;
|
|
1906
|
-
nonce?: `0x${string}` | undefined;
|
|
1907
|
-
value?: `0x${string}` | undefined;
|
|
1908
|
-
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
|
|
1909
|
-
accessList?: import("viem").AccessList | undefined;
|
|
1910
|
-
blockHash?: `0x${string}` | null | undefined;
|
|
1911
|
-
blockNumber?: `0x${string}` | null | undefined;
|
|
1912
|
-
hash?: `0x${string}` | undefined;
|
|
1913
|
-
input?: `0x${string}` | undefined;
|
|
1914
|
-
transactionIndex?: `0x${string}` | null | undefined;
|
|
1915
|
-
blobVersionedHashes?: `0x${string}`[] | undefined;
|
|
1916
|
-
chainId?: `0x${string}` | undefined;
|
|
1917
|
-
} & Omit<import("viem").TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & import("viem").FeeValuesEIP1559<`0x${string}`> & {
|
|
1918
|
-
isSystemTx?: boolean | undefined;
|
|
1919
|
-
mint?: `0x${string}` | undefined;
|
|
1920
|
-
sourceHash: `0x${string}`;
|
|
1921
|
-
type: "0x7e";
|
|
1922
|
-
})) => {
|
|
1923
|
-
r: `0x${string}`;
|
|
1924
|
-
s: `0x${string}`;
|
|
1925
|
-
v: bigint;
|
|
1926
|
-
to: `0x${string}` | null;
|
|
1927
|
-
from: `0x${string}`;
|
|
1928
|
-
gas: bigint;
|
|
1929
|
-
nonce: number;
|
|
1930
|
-
value: bigint;
|
|
1931
|
-
blockHash: `0x${string}` | null;
|
|
1932
|
-
blockNumber: bigint | null;
|
|
1933
|
-
hash: `0x${string}`;
|
|
1934
|
-
input: `0x${string}`;
|
|
1935
|
-
transactionIndex: number | null;
|
|
1936
|
-
typeHex: `0x${string}` | null;
|
|
1937
|
-
gasPrice: bigint;
|
|
1938
|
-
maxFeePerBlobGas?: undefined;
|
|
1939
|
-
maxFeePerGas?: undefined;
|
|
1940
|
-
maxPriorityFeePerGas?: undefined;
|
|
1941
|
-
accessList?: undefined;
|
|
1942
|
-
blobVersionedHashes?: undefined;
|
|
1943
|
-
chainId?: number | undefined;
|
|
1944
|
-
yParity?: undefined;
|
|
1945
|
-
type: "legacy";
|
|
1946
|
-
isSystemTx?: undefined;
|
|
1947
|
-
mint?: undefined;
|
|
1948
|
-
sourceHash?: undefined;
|
|
1949
|
-
} | {
|
|
1950
|
-
r: `0x${string}`;
|
|
1951
|
-
s: `0x${string}`;
|
|
1952
|
-
v: bigint;
|
|
1953
|
-
to: `0x${string}` | null;
|
|
1954
|
-
from: `0x${string}`;
|
|
1955
|
-
gas: bigint;
|
|
1956
|
-
nonce: number;
|
|
1957
|
-
value: bigint;
|
|
1958
|
-
blockHash: `0x${string}` | null;
|
|
1959
|
-
blockNumber: bigint | null;
|
|
1960
|
-
hash: `0x${string}`;
|
|
1961
|
-
input: `0x${string}`;
|
|
1962
|
-
transactionIndex: number | null;
|
|
1963
|
-
typeHex: `0x${string}` | null;
|
|
1964
|
-
gasPrice: undefined;
|
|
1965
|
-
maxFeePerBlobGas?: undefined;
|
|
1966
|
-
maxFeePerGas: bigint;
|
|
1967
|
-
maxPriorityFeePerGas: bigint;
|
|
1968
|
-
accessList?: undefined;
|
|
1969
|
-
blobVersionedHashes?: undefined;
|
|
1970
|
-
chainId?: number | undefined;
|
|
1971
|
-
yParity: number;
|
|
1972
|
-
type: "deposit";
|
|
1973
|
-
isSystemTx?: boolean | undefined;
|
|
1974
|
-
mint?: bigint | undefined;
|
|
1975
|
-
sourceHash: `0x${string}`;
|
|
1976
|
-
} | {
|
|
1977
|
-
blockHash: `0x${string}` | null;
|
|
1978
|
-
blockNumber: bigint | null;
|
|
1979
|
-
from: `0x${string}`;
|
|
1980
|
-
gas: bigint;
|
|
1981
|
-
hash: `0x${string}`;
|
|
1982
|
-
input: `0x${string}`;
|
|
1983
|
-
nonce: number;
|
|
1984
|
-
r: `0x${string}`;
|
|
1985
|
-
s: `0x${string}`;
|
|
1986
|
-
to: `0x${string}` | null;
|
|
1987
|
-
transactionIndex: number | null;
|
|
1988
|
-
typeHex: `0x${string}` | null;
|
|
1989
|
-
v: bigint;
|
|
1990
|
-
value: bigint;
|
|
1991
|
-
yParity: number;
|
|
1992
|
-
gasPrice: bigint;
|
|
1993
|
-
maxFeePerBlobGas?: undefined;
|
|
1994
|
-
maxFeePerGas?: undefined;
|
|
1995
|
-
maxPriorityFeePerGas?: undefined;
|
|
1996
|
-
accessList: import("viem").AccessList;
|
|
1997
|
-
blobVersionedHashes?: undefined;
|
|
1998
|
-
chainId: number;
|
|
1999
|
-
type: "eip2930";
|
|
2000
|
-
isSystemTx?: undefined;
|
|
2001
|
-
mint?: undefined;
|
|
2002
|
-
sourceHash?: undefined;
|
|
2003
|
-
} | {
|
|
2004
|
-
blockHash: `0x${string}` | null;
|
|
2005
|
-
blockNumber: bigint | null;
|
|
2006
|
-
from: `0x${string}`;
|
|
2007
|
-
gas: bigint;
|
|
589
|
+
blockNumber: bigint | null;
|
|
590
|
+
from: `0x${string}`;
|
|
591
|
+
gas: bigint;
|
|
2008
592
|
hash: `0x${string}`;
|
|
2009
593
|
input: `0x${string}`;
|
|
2010
594
|
nonce: number;
|
|
@@ -2016,95 +600,15 @@ export declare const CHAIN_MAP: {
|
|
|
2016
600
|
v: bigint;
|
|
2017
601
|
value: bigint;
|
|
2018
602
|
yParity: number;
|
|
2019
|
-
gasPrice: undefined;
|
|
2020
|
-
maxFeePerBlobGas?: undefined;
|
|
2021
|
-
maxFeePerGas: bigint;
|
|
2022
|
-
maxPriorityFeePerGas: bigint;
|
|
2023
|
-
accessList: import("viem").AccessList;
|
|
2024
|
-
blobVersionedHashes?: undefined;
|
|
2025
|
-
chainId: number;
|
|
2026
|
-
type: "eip1559";
|
|
2027
|
-
isSystemTx?: undefined;
|
|
2028
|
-
mint?: undefined;
|
|
2029
|
-
sourceHash?: undefined;
|
|
2030
|
-
} | {
|
|
2031
|
-
blockHash: `0x${string}` | null;
|
|
2032
|
-
blockNumber: bigint | null;
|
|
2033
|
-
from: `0x${string}`;
|
|
2034
|
-
gas: bigint;
|
|
2035
|
-
hash: `0x${string}`;
|
|
2036
|
-
input: `0x${string}`;
|
|
2037
|
-
nonce: number;
|
|
2038
|
-
r: `0x${string}`;
|
|
2039
|
-
s: `0x${string}`;
|
|
2040
|
-
to: `0x${string}` | null;
|
|
2041
|
-
transactionIndex: number | null;
|
|
2042
|
-
typeHex: `0x${string}` | null;
|
|
2043
|
-
v: bigint;
|
|
2044
|
-
value: bigint;
|
|
2045
|
-
yParity: number;
|
|
2046
|
-
gasPrice: undefined;
|
|
2047
|
-
maxFeePerBlobGas?: undefined;
|
|
2048
|
-
maxFeePerGas: bigint;
|
|
2049
|
-
maxPriorityFeePerGas: bigint;
|
|
2050
|
-
accessList: import("viem").AccessList;
|
|
2051
|
-
blobVersionedHashes?: undefined;
|
|
2052
|
-
chainId: number;
|
|
2053
|
-
type: "deposit";
|
|
2054
|
-
isSystemTx?: boolean | undefined;
|
|
2055
|
-
mint?: bigint | undefined;
|
|
2056
|
-
sourceHash: `0x${string}`;
|
|
2057
|
-
} | {
|
|
2058
|
-
blockHash: `0x${string}` | null;
|
|
2059
|
-
blockNumber: bigint | null;
|
|
2060
|
-
from: `0x${string}`;
|
|
2061
|
-
gas: bigint;
|
|
2062
|
-
hash: `0x${string}`;
|
|
2063
|
-
input: `0x${string}`;
|
|
2064
|
-
nonce: number;
|
|
2065
|
-
r: `0x${string}`;
|
|
2066
|
-
s: `0x${string}`;
|
|
2067
|
-
to: `0x${string}` | null;
|
|
2068
|
-
transactionIndex: number | null;
|
|
2069
|
-
typeHex: `0x${string}` | null;
|
|
2070
|
-
v: bigint;
|
|
2071
|
-
value: bigint;
|
|
2072
|
-
yParity: number;
|
|
2073
|
-
gasPrice: bigint;
|
|
2074
|
-
maxFeePerBlobGas?: undefined;
|
|
2075
|
-
maxFeePerGas: undefined;
|
|
2076
|
-
maxPriorityFeePerGas: undefined;
|
|
2077
603
|
accessList: import("viem").AccessList;
|
|
2078
|
-
|
|
604
|
+
authorizationList?: undefined;
|
|
605
|
+
blobVersionedHashes: readonly `0x${string}`[];
|
|
2079
606
|
chainId: number;
|
|
2080
|
-
type: "
|
|
2081
|
-
isSystemTx?: undefined;
|
|
2082
|
-
mint?: undefined;
|
|
2083
|
-
sourceHash?: undefined;
|
|
2084
|
-
} | {
|
|
2085
|
-
blockHash: `0x${string}` | null;
|
|
2086
|
-
blockNumber: bigint | null;
|
|
2087
|
-
from: `0x${string}`;
|
|
2088
|
-
gas: bigint;
|
|
2089
|
-
hash: `0x${string}`;
|
|
2090
|
-
input: `0x${string}`;
|
|
2091
|
-
nonce: number;
|
|
2092
|
-
r: `0x${string}`;
|
|
2093
|
-
s: `0x${string}`;
|
|
2094
|
-
to: `0x${string}` | null;
|
|
2095
|
-
transactionIndex: number | null;
|
|
2096
|
-
typeHex: `0x${string}` | null;
|
|
2097
|
-
v: bigint;
|
|
2098
|
-
value: bigint;
|
|
2099
|
-
yParity: number;
|
|
607
|
+
type: "eip4844";
|
|
2100
608
|
gasPrice?: undefined;
|
|
2101
|
-
maxFeePerBlobGas
|
|
609
|
+
maxFeePerBlobGas: bigint;
|
|
2102
610
|
maxFeePerGas: bigint;
|
|
2103
611
|
maxPriorityFeePerGas: bigint;
|
|
2104
|
-
accessList: import("viem").AccessList;
|
|
2105
|
-
blobVersionedHashes?: undefined;
|
|
2106
|
-
chainId: number;
|
|
2107
|
-
type: "eip1559";
|
|
2108
612
|
isSystemTx?: undefined;
|
|
2109
613
|
mint?: undefined;
|
|
2110
614
|
sourceHash?: undefined;
|
|
@@ -2124,77 +628,24 @@ export declare const CHAIN_MAP: {
|
|
|
2124
628
|
v: bigint;
|
|
2125
629
|
value: bigint;
|
|
2126
630
|
yParity: number;
|
|
2127
|
-
gasPrice?: undefined;
|
|
2128
|
-
maxFeePerBlobGas?: undefined;
|
|
2129
|
-
maxFeePerGas: bigint;
|
|
2130
|
-
maxPriorityFeePerGas: bigint;
|
|
2131
631
|
accessList: import("viem").AccessList;
|
|
632
|
+
authorizationList: import("viem/experimental").SignedAuthorizationList<number>;
|
|
2132
633
|
blobVersionedHashes?: undefined;
|
|
2133
634
|
chainId: number;
|
|
2134
|
-
type: "
|
|
2135
|
-
isSystemTx?: boolean | undefined;
|
|
2136
|
-
mint?: bigint | undefined;
|
|
2137
|
-
sourceHash: `0x${string}`;
|
|
2138
|
-
} | {
|
|
2139
|
-
blockHash: `0x${string}` | null;
|
|
2140
|
-
blockNumber: bigint | null;
|
|
2141
|
-
from: `0x${string}`;
|
|
2142
|
-
gas: bigint;
|
|
2143
|
-
hash: `0x${string}`;
|
|
2144
|
-
input: `0x${string}`;
|
|
2145
|
-
nonce: number;
|
|
2146
|
-
r: `0x${string}`;
|
|
2147
|
-
s: `0x${string}`;
|
|
2148
|
-
to: `0x${string}` | null;
|
|
2149
|
-
transactionIndex: number | null;
|
|
2150
|
-
typeHex: `0x${string}` | null;
|
|
2151
|
-
v: bigint;
|
|
2152
|
-
value: bigint;
|
|
2153
|
-
yParity: number;
|
|
635
|
+
type: "eip7702";
|
|
2154
636
|
gasPrice?: undefined;
|
|
2155
|
-
maxFeePerBlobGas
|
|
637
|
+
maxFeePerBlobGas?: undefined;
|
|
2156
638
|
maxFeePerGas: bigint;
|
|
2157
639
|
maxPriorityFeePerGas: bigint;
|
|
2158
|
-
accessList: import("viem").AccessList;
|
|
2159
|
-
blobVersionedHashes: `0x${string}`[];
|
|
2160
|
-
chainId: number;
|
|
2161
|
-
type: "eip4844";
|
|
2162
640
|
isSystemTx?: undefined;
|
|
2163
641
|
mint?: undefined;
|
|
2164
642
|
sourceHash?: undefined;
|
|
2165
|
-
} | {
|
|
2166
|
-
blockHash: `0x${string}` | null;
|
|
2167
|
-
blockNumber: bigint | null;
|
|
2168
|
-
from: `0x${string}`;
|
|
2169
|
-
gas: bigint;
|
|
2170
|
-
hash: `0x${string}`;
|
|
2171
|
-
input: `0x${string}`;
|
|
2172
|
-
nonce: number;
|
|
2173
|
-
r: `0x${string}`;
|
|
2174
|
-
s: `0x${string}`;
|
|
2175
|
-
to: `0x${string}` | null;
|
|
2176
|
-
transactionIndex: number | null;
|
|
2177
|
-
typeHex: `0x${string}` | null;
|
|
2178
|
-
v: bigint;
|
|
2179
|
-
value: bigint;
|
|
2180
|
-
yParity: number;
|
|
2181
|
-
gasPrice?: undefined;
|
|
2182
|
-
maxFeePerBlobGas: undefined;
|
|
2183
|
-
maxFeePerGas: bigint;
|
|
2184
|
-
maxPriorityFeePerGas: bigint;
|
|
2185
|
-
accessList: import("viem").AccessList;
|
|
2186
|
-
blobVersionedHashes: `0x${string}`[];
|
|
2187
|
-
chainId: number;
|
|
2188
|
-
type: "deposit";
|
|
2189
|
-
isSystemTx?: boolean | undefined;
|
|
2190
|
-
mint?: bigint | undefined;
|
|
2191
|
-
sourceHash: `0x${string}`;
|
|
2192
643
|
};
|
|
2193
644
|
type: "transaction";
|
|
2194
645
|
};
|
|
2195
646
|
readonly transactionReceipt: {
|
|
2196
647
|
exclude: [] | undefined;
|
|
2197
|
-
format: (args: import("wagmi/chains").
|
|
648
|
+
format: (args: import("wagmi/chains").OpStackRpcTransactionReceipt) => {
|
|
2198
649
|
blobGasPrice?: bigint | undefined;
|
|
2199
650
|
blobGasUsed?: bigint | undefined;
|
|
2200
651
|
blockHash: `0x${string}`;
|
|
@@ -2223,7 +674,6 @@ export declare const CHAIN_MAP: {
|
|
|
2223
674
|
serializers: {
|
|
2224
675
|
readonly transaction: typeof import("wagmi/chains").serializeTransactionOpStack;
|
|
2225
676
|
};
|
|
2226
|
-
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
2227
677
|
};
|
|
2228
678
|
};
|
|
2229
679
|
export declare const CHAIN_NATIVE_TOKENS: ChainNativeTokenMap;
|