@folks-finance/xchain-sdk 0.0.57 → 0.0.59
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/dist/chains/evm/common/constants/chain.d.ts +480 -3510
- package/dist/chains/evm/common/constants/chain.js +6 -1
- package/dist/chains/evm/common/constants/chain.js.map +1 -1
- package/dist/chains/evm/common/utils/contract.d.ts +1444 -70
- package/dist/chains/evm/hub/constants/chain.js +10 -0
- package/dist/chains/evm/hub/constants/chain.js.map +1 -1
- package/dist/common/constants/chain.d.ts +2 -0
- package/dist/common/constants/chain.js +32 -1
- package/dist/common/constants/chain.js.map +1 -1
- package/dist/common/constants/gmp.js +8 -0
- package/dist/common/constants/gmp.js.map +1 -1
- package/dist/common/constants/pool.d.ts +1 -0
- package/dist/common/constants/pool.js +1 -0
- package/dist/common/constants/pool.js.map +1 -1
- package/dist/common/types/token.d.ts +1 -0
- package/dist/common/types/token.js +1 -0
- package/dist/common/types/token.js.map +1 -1
- package/dist/common/utils/adapter.js +1 -1
- package/dist/common/utils/adapter.js.map +1 -1
- package/dist/xchain/modules/folks-rewards.js +5 -1
- package/dist/xchain/modules/folks-rewards.js.map +1 -1
- package/package.json +2 -2
- package/src/chains/evm/common/constants/chain.ts +6 -0
- package/src/chains/evm/hub/constants/chain.ts +10 -0
- package/src/common/constants/chain.ts +44 -0
- package/src/common/constants/gmp.ts +8 -0
- package/src/common/constants/pool.ts +1 -0
- package/src/common/types/token.ts +1 -0
- package/src/common/utils/adapter.ts +1 -1
- package/src/xchain/modules/folks-rewards.ts +12 -7
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
export declare const MAINNET_EVM_CHAIN_NAMES: readonly ["AVALANCHE", "ETHEREUM", "BASE", "BSC", "ARBITRUM"];
|
|
2
|
-
export declare const TESTNET_EVM_CHAIN_NAMES: readonly ["AVALANCHE_FUJI", "ETHEREUM_SEPOLIA", "BASE_SEPOLIA", "BSC_TESTNET", "ARBITRUM_SEPOLIA"];
|
|
3
|
-
export declare const EVM_CHAIN_NAMES: readonly ["AVALANCHE", "ETHEREUM", "BASE", "BSC", "ARBITRUM", "AVALANCHE_FUJI", "ETHEREUM_SEPOLIA", "BASE_SEPOLIA", "BSC_TESTNET", "ARBITRUM_SEPOLIA"];
|
|
2
|
+
export declare const TESTNET_EVM_CHAIN_NAMES: readonly ["AVALANCHE_FUJI", "ETHEREUM_SEPOLIA", "BASE_SEPOLIA", "BSC_TESTNET", "ARBITRUM_SEPOLIA", "MONAD_TESTNET"];
|
|
3
|
+
export declare const EVM_CHAIN_NAMES: readonly ["AVALANCHE", "ETHEREUM", "BASE", "BSC", "ARBITRUM", "AVALANCHE_FUJI", "ETHEREUM_SEPOLIA", "BASE_SEPOLIA", "BSC_TESTNET", "ARBITRUM_SEPOLIA", "MONAD_TESTNET"];
|
|
4
4
|
export declare const MAINNET_EVM_CHAIN_ID: {
|
|
5
5
|
readonly AVALANCHE: 43114;
|
|
6
6
|
readonly ETHEREUM: 1;
|
|
@@ -14,6 +14,7 @@ export declare const TESTNET_EVM_CHAIN_ID: {
|
|
|
14
14
|
readonly BASE_SEPOLIA: 84532;
|
|
15
15
|
readonly BSC_TESTNET: 97;
|
|
16
16
|
readonly ARBITRUM_SEPOLIA: 421614;
|
|
17
|
+
readonly MONAD_TESTNET: 10143;
|
|
17
18
|
};
|
|
18
19
|
export declare const EVM_CHAIN_ID: {
|
|
19
20
|
readonly AVALANCHE_FUJI: 43113;
|
|
@@ -21,6 +22,7 @@ export declare const EVM_CHAIN_ID: {
|
|
|
21
22
|
readonly BASE_SEPOLIA: 84532;
|
|
22
23
|
readonly BSC_TESTNET: 97;
|
|
23
24
|
readonly ARBITRUM_SEPOLIA: 421614;
|
|
25
|
+
readonly MONAD_TESTNET: 10143;
|
|
24
26
|
readonly AVALANCHE: 43114;
|
|
25
27
|
readonly ETHEREUM: 1;
|
|
26
28
|
readonly BASE: 8453;
|
|
@@ -40,6 +42,7 @@ export declare const TESTNET_EVM_FOLKS_CHAIN_ID: {
|
|
|
40
42
|
readonly BASE_SEPOLIA: 7;
|
|
41
43
|
readonly BSC_TESTNET: 3;
|
|
42
44
|
readonly ARBITRUM_SEPOLIA: 8;
|
|
45
|
+
readonly MONAD_TESTNET: 10;
|
|
43
46
|
};
|
|
44
47
|
export declare const EVM_FOLKS_CHAIN_ID: {
|
|
45
48
|
readonly AVALANCHE_FUJI: 1;
|
|
@@ -47,6 +50,7 @@ export declare const EVM_FOLKS_CHAIN_ID: {
|
|
|
47
50
|
readonly BASE_SEPOLIA: 7;
|
|
48
51
|
readonly BSC_TESTNET: 3;
|
|
49
52
|
readonly ARBITRUM_SEPOLIA: 8;
|
|
53
|
+
readonly MONAD_TESTNET: 10;
|
|
50
54
|
readonly AVALANCHE: 100;
|
|
51
55
|
readonly ETHEREUM: 101;
|
|
52
56
|
readonly BASE: 102;
|
|
@@ -83,9 +87,9 @@ export declare const MAINNET_CHAIN_VIEM: {
|
|
|
83
87
|
sourceId?: number | undefined;
|
|
84
88
|
testnet?: boolean | undefined;
|
|
85
89
|
custom?: Record<string, unknown> | undefined;
|
|
86
|
-
formatters?: undefined;
|
|
87
|
-
serializers?: import("viem").ChainSerializers<undefined> | undefined;
|
|
88
90
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
91
|
+
formatters?: undefined;
|
|
92
|
+
serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable<bigint, number>> | undefined;
|
|
89
93
|
};
|
|
90
94
|
readonly 101: {
|
|
91
95
|
blockExplorers: {
|
|
@@ -117,15 +121,15 @@ export declare const MAINNET_CHAIN_VIEM: {
|
|
|
117
121
|
};
|
|
118
122
|
rpcUrls: {
|
|
119
123
|
readonly default: {
|
|
120
|
-
readonly http: readonly ["https://
|
|
124
|
+
readonly http: readonly ["https://eth.merkle.io"];
|
|
121
125
|
};
|
|
122
126
|
};
|
|
123
127
|
sourceId?: number | undefined;
|
|
124
128
|
testnet?: boolean | undefined;
|
|
125
129
|
custom?: Record<string, unknown> | undefined;
|
|
126
|
-
formatters?: undefined;
|
|
127
|
-
serializers?: import("viem").ChainSerializers<undefined> | undefined;
|
|
128
130
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
131
|
+
formatters?: undefined;
|
|
132
|
+
serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable<bigint, number>> | undefined;
|
|
129
133
|
};
|
|
130
134
|
readonly 102: {
|
|
131
135
|
blockExplorers: {
|
|
@@ -136,6 +140,11 @@ export declare const MAINNET_CHAIN_VIEM: {
|
|
|
136
140
|
};
|
|
137
141
|
};
|
|
138
142
|
contracts: {
|
|
143
|
+
readonly disputeGameFactory: {
|
|
144
|
+
readonly 1: {
|
|
145
|
+
readonly address: "0x43edB88C4B80fDD2AdFF2412A7BebF9dF42cB40e";
|
|
146
|
+
};
|
|
147
|
+
};
|
|
139
148
|
readonly l2OutputOracle: {
|
|
140
149
|
readonly 1: {
|
|
141
150
|
readonly address: "0x56315b90c40730925ec5485cf004d835058518A0";
|
|
@@ -191,12 +200,11 @@ export declare const MAINNET_CHAIN_VIEM: {
|
|
|
191
200
|
sourceId: 1;
|
|
192
201
|
testnet?: boolean | undefined;
|
|
193
202
|
custom?: Record<string, unknown> | undefined;
|
|
203
|
+
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
194
204
|
formatters: {
|
|
195
205
|
readonly block: {
|
|
196
206
|
exclude: [] | undefined;
|
|
197
|
-
format: (args: import("viem/chains").
|
|
198
|
-
transactions: `0x${string}`[] | import("viem/chains").OpStackRpcTransaction<boolean>[];
|
|
199
|
-
}>) => {
|
|
207
|
+
format: (args: import("viem/chains").OpStackRpcBlock<import("viem").BlockTag, boolean>) => {
|
|
200
208
|
baseFeePerGas: bigint | null;
|
|
201
209
|
blobGasUsed: bigint;
|
|
202
210
|
difficulty: bigint;
|
|
@@ -210,6 +218,7 @@ export declare const MAINNET_CHAIN_VIEM: {
|
|
|
210
218
|
mixHash: `0x${string}`;
|
|
211
219
|
nonce: `0x${string}` | null;
|
|
212
220
|
number: bigint | null;
|
|
221
|
+
parentBeaconBlockRoot?: `0x${string}` | undefined;
|
|
213
222
|
parentHash: `0x${string}`;
|
|
214
223
|
receiptsRoot: `0x${string}`;
|
|
215
224
|
sealFields: `0x${string}`[];
|
|
@@ -228,733 +237,114 @@ export declare const MAINNET_CHAIN_VIEM: {
|
|
|
228
237
|
};
|
|
229
238
|
readonly transaction: {
|
|
230
239
|
exclude: [] | undefined;
|
|
231
|
-
format: (args: ({
|
|
232
|
-
r?: `0x${string}` | undefined;
|
|
233
|
-
s?: `0x${string}` | undefined;
|
|
234
|
-
v?: `0x${string}` | undefined;
|
|
235
|
-
yParity?: `0x${string}` | undefined;
|
|
236
|
-
gasPrice?: `0x${string}` | undefined;
|
|
237
|
-
maxFeePerBlobGas?: `0x${string}` | undefined;
|
|
238
|
-
maxFeePerGas?: `0x${string}` | undefined;
|
|
239
|
-
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
|
240
|
-
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
|
|
241
|
-
to?: `0x${string}` | null | undefined;
|
|
242
|
-
from?: `0x${string}` | undefined;
|
|
243
|
-
gas?: `0x${string}` | undefined;
|
|
244
|
-
nonce?: `0x${string}` | undefined;
|
|
245
|
-
value?: `0x${string}` | undefined;
|
|
246
|
-
accessList?: undefined;
|
|
247
|
-
blobVersionedHashes?: undefined;
|
|
248
|
-
blockHash?: `0x${string}` | null | undefined;
|
|
249
|
-
blockNumber?: `0x${string}` | null | undefined;
|
|
250
|
-
hash?: `0x${string}` | undefined;
|
|
251
|
-
input?: `0x${string}` | undefined;
|
|
252
|
-
transactionIndex?: `0x${string}` | null | undefined;
|
|
253
|
-
chainId?: `0x${string}` | undefined;
|
|
254
|
-
} & import("viem/chains").Omit<import("viem/chains").PartialBy<{
|
|
255
|
-
r: `0x${string}`;
|
|
256
|
-
s: `0x${string}`;
|
|
257
|
-
v: `0x${string}`;
|
|
258
|
-
to: `0x${string}` | null;
|
|
259
|
-
from: `0x${string}`;
|
|
260
|
-
gas: `0x${string}`;
|
|
261
|
-
nonce: `0x${string}`;
|
|
262
|
-
value: `0x${string}`;
|
|
263
|
-
blockHash: `0x${string}` | null;
|
|
264
|
-
blockNumber: `0x${string}` | null;
|
|
265
|
-
hash: `0x${string}`;
|
|
266
|
-
input: `0x${string}`;
|
|
267
|
-
transactionIndex: `0x${string}` | null;
|
|
268
|
-
typeHex: `0x${string}` | null;
|
|
269
|
-
gasPrice: `0x${string}`;
|
|
270
|
-
maxFeePerBlobGas?: undefined;
|
|
271
|
-
maxFeePerGas?: undefined;
|
|
272
|
-
maxPriorityFeePerGas?: undefined;
|
|
273
|
-
accessList?: undefined;
|
|
274
|
-
blobVersionedHashes?: undefined;
|
|
275
|
-
chainId?: `0x${string}` | undefined;
|
|
276
|
-
yParity?: undefined;
|
|
277
|
-
type: "0x0";
|
|
278
|
-
}, "yParity">, "typeHex"> & {
|
|
279
|
-
isSystemTx?: undefined;
|
|
280
|
-
mint?: undefined;
|
|
281
|
-
sourceHash?: undefined;
|
|
282
|
-
}) | ({
|
|
283
|
-
r?: `0x${string}` | undefined;
|
|
284
|
-
s?: `0x${string}` | undefined;
|
|
285
|
-
v?: `0x${string}` | undefined;
|
|
286
|
-
yParity?: `0x${string}` | undefined;
|
|
287
|
-
gasPrice?: `0x${string}` | undefined;
|
|
288
|
-
maxFeePerBlobGas?: `0x${string}` | undefined;
|
|
289
|
-
maxFeePerGas?: `0x${string}` | undefined;
|
|
290
|
-
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
|
291
|
-
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
|
|
292
|
-
to?: `0x${string}` | null | undefined;
|
|
293
|
-
from?: `0x${string}` | undefined;
|
|
294
|
-
gas?: `0x${string}` | undefined;
|
|
295
|
-
nonce?: `0x${string}` | undefined;
|
|
296
|
-
value?: `0x${string}` | undefined;
|
|
297
|
-
accessList?: undefined;
|
|
298
|
-
blobVersionedHashes?: undefined;
|
|
299
|
-
blockHash?: `0x${string}` | null | undefined;
|
|
300
|
-
blockNumber?: `0x${string}` | null | undefined;
|
|
301
|
-
hash?: `0x${string}` | undefined;
|
|
302
|
-
input?: `0x${string}` | undefined;
|
|
303
|
-
transactionIndex?: `0x${string}` | null | undefined;
|
|
304
|
-
chainId?: `0x${string}` | undefined;
|
|
305
|
-
} & Omit<import("viem").TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & import("viem").FeeValuesEIP1559<`0x${string}`> & {
|
|
306
|
-
isSystemTx?: boolean | undefined;
|
|
307
|
-
mint?: `0x${string}` | undefined;
|
|
308
|
-
sourceHash: `0x${string}`;
|
|
309
|
-
type: "0x7e";
|
|
310
|
-
}) | ({
|
|
311
|
-
r?: `0x${string}` | undefined;
|
|
312
|
-
s?: `0x${string}` | undefined;
|
|
313
|
-
v?: `0x${string}` | undefined;
|
|
314
|
-
yParity?: `0x${string}` | undefined;
|
|
315
|
-
gasPrice?: `0x${string}` | undefined;
|
|
316
|
-
maxFeePerBlobGas?: `0x${string}` | undefined;
|
|
317
|
-
maxFeePerGas?: `0x${string}` | undefined;
|
|
318
|
-
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
|
319
|
-
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
|
|
320
|
-
to?: `0x${string}` | null | undefined;
|
|
321
|
-
from?: `0x${string}` | undefined;
|
|
322
|
-
gas?: `0x${string}` | undefined;
|
|
323
|
-
nonce?: `0x${string}` | undefined;
|
|
324
|
-
value?: `0x${string}` | undefined;
|
|
325
|
-
accessList?: import("viem").AccessList | undefined;
|
|
326
|
-
blobVersionedHashes?: undefined;
|
|
327
|
-
blockHash?: `0x${string}` | null | undefined;
|
|
328
|
-
blockNumber?: `0x${string}` | null | undefined;
|
|
329
|
-
hash?: `0x${string}` | undefined;
|
|
330
|
-
input?: `0x${string}` | undefined;
|
|
331
|
-
transactionIndex?: `0x${string}` | null | undefined;
|
|
332
|
-
chainId?: `0x${string}` | undefined;
|
|
333
|
-
} & import("viem/chains").Omit<import("viem/chains").PartialBy<{
|
|
334
|
-
r: `0x${string}`;
|
|
335
|
-
s: `0x${string}`;
|
|
336
|
-
v: `0x${string}`;
|
|
337
|
-
to: `0x${string}` | null;
|
|
338
|
-
from: `0x${string}`;
|
|
339
|
-
gas: `0x${string}`;
|
|
340
|
-
nonce: `0x${string}`;
|
|
341
|
-
value: `0x${string}`;
|
|
342
|
-
blockHash: `0x${string}` | null;
|
|
343
|
-
blockNumber: `0x${string}` | null;
|
|
344
|
-
hash: `0x${string}`;
|
|
345
|
-
input: `0x${string}`;
|
|
346
|
-
transactionIndex: `0x${string}` | null;
|
|
347
|
-
typeHex: `0x${string}` | null;
|
|
348
|
-
gasPrice: `0x${string}`;
|
|
349
|
-
maxFeePerBlobGas?: undefined;
|
|
350
|
-
maxFeePerGas?: undefined;
|
|
351
|
-
maxPriorityFeePerGas?: undefined;
|
|
352
|
-
accessList?: undefined;
|
|
353
|
-
blobVersionedHashes?: undefined;
|
|
354
|
-
chainId?: `0x${string}` | undefined;
|
|
355
|
-
yParity?: undefined;
|
|
356
|
-
type: "0x0";
|
|
357
|
-
}, "yParity">, "typeHex"> & {
|
|
358
|
-
isSystemTx?: undefined;
|
|
359
|
-
mint?: undefined;
|
|
360
|
-
sourceHash?: undefined;
|
|
361
|
-
}) | ({
|
|
362
|
-
r?: `0x${string}` | undefined;
|
|
363
|
-
s?: `0x${string}` | undefined;
|
|
364
|
-
v?: `0x${string}` | undefined;
|
|
365
|
-
yParity?: `0x${string}` | undefined;
|
|
366
|
-
gasPrice?: `0x${string}` | undefined;
|
|
367
|
-
maxFeePerBlobGas?: `0x${string}` | undefined;
|
|
368
|
-
maxFeePerGas?: `0x${string}` | undefined;
|
|
369
|
-
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
|
370
|
-
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
|
|
371
|
-
to?: `0x${string}` | null | undefined;
|
|
372
|
-
from?: `0x${string}` | undefined;
|
|
373
|
-
gas?: `0x${string}` | undefined;
|
|
374
|
-
nonce?: `0x${string}` | undefined;
|
|
375
|
-
value?: `0x${string}` | undefined;
|
|
376
|
-
accessList?: import("viem").AccessList | undefined;
|
|
377
|
-
blobVersionedHashes?: undefined;
|
|
378
|
-
blockHash?: `0x${string}` | null | undefined;
|
|
379
|
-
blockNumber?: `0x${string}` | null | undefined;
|
|
380
|
-
hash?: `0x${string}` | undefined;
|
|
381
|
-
input?: `0x${string}` | undefined;
|
|
382
|
-
transactionIndex?: `0x${string}` | null | undefined;
|
|
383
|
-
chainId?: `0x${string}` | undefined;
|
|
384
|
-
} & import("viem/chains").Omit<import("viem/chains").PartialBy<{
|
|
385
|
-
blockHash: `0x${string}` | null;
|
|
386
|
-
blockNumber: `0x${string}` | null;
|
|
387
|
-
from: `0x${string}`;
|
|
388
|
-
gas: `0x${string}`;
|
|
389
|
-
hash: `0x${string}`;
|
|
390
|
-
input: `0x${string}`;
|
|
391
|
-
nonce: `0x${string}`;
|
|
392
|
-
r: `0x${string}`;
|
|
393
|
-
s: `0x${string}`;
|
|
394
|
-
to: `0x${string}` | null;
|
|
395
|
-
transactionIndex: `0x${string}` | null;
|
|
396
|
-
typeHex: `0x${string}` | null;
|
|
397
|
-
v: `0x${string}`;
|
|
398
|
-
value: `0x${string}`;
|
|
399
|
-
yParity: `0x${string}`;
|
|
400
|
-
gasPrice: `0x${string}`;
|
|
401
|
-
maxFeePerBlobGas?: undefined;
|
|
402
|
-
maxFeePerGas?: undefined;
|
|
403
|
-
maxPriorityFeePerGas?: undefined;
|
|
404
|
-
accessList: import("viem").AccessList;
|
|
405
|
-
blobVersionedHashes?: undefined;
|
|
406
|
-
chainId: `0x${string}`;
|
|
407
|
-
type: "0x1";
|
|
408
|
-
}, "yParity">, "typeHex"> & {
|
|
409
|
-
isSystemTx?: undefined;
|
|
410
|
-
mint?: undefined;
|
|
411
|
-
sourceHash?: undefined;
|
|
412
|
-
}) | ({
|
|
413
|
-
r?: `0x${string}` | undefined;
|
|
414
|
-
s?: `0x${string}` | undefined;
|
|
415
|
-
v?: `0x${string}` | undefined;
|
|
416
|
-
yParity?: `0x${string}` | undefined;
|
|
417
|
-
gasPrice?: `0x${string}` | undefined;
|
|
418
|
-
maxFeePerBlobGas?: `0x${string}` | undefined;
|
|
419
|
-
maxFeePerGas?: `0x${string}` | undefined;
|
|
420
|
-
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
|
421
|
-
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
|
|
422
|
-
to?: `0x${string}` | null | undefined;
|
|
423
|
-
from?: `0x${string}` | undefined;
|
|
424
|
-
gas?: `0x${string}` | undefined;
|
|
425
|
-
nonce?: `0x${string}` | undefined;
|
|
426
|
-
value?: `0x${string}` | undefined;
|
|
427
|
-
accessList?: import("viem").AccessList | undefined;
|
|
428
|
-
blobVersionedHashes?: undefined;
|
|
429
|
-
blockHash?: `0x${string}` | null | undefined;
|
|
430
|
-
blockNumber?: `0x${string}` | null | undefined;
|
|
431
|
-
hash?: `0x${string}` | undefined;
|
|
432
|
-
input?: `0x${string}` | undefined;
|
|
433
|
-
transactionIndex?: `0x${string}` | null | undefined;
|
|
434
|
-
chainId?: `0x${string}` | undefined;
|
|
435
|
-
} & import("viem/chains").Omit<import("viem/chains").PartialBy<{
|
|
240
|
+
format: (args: import("viem/chains").OpStackRpcTransaction<boolean>) => {
|
|
436
241
|
blockHash: `0x${string}` | null;
|
|
437
|
-
blockNumber:
|
|
242
|
+
blockNumber: bigint | null;
|
|
438
243
|
from: `0x${string}`;
|
|
439
|
-
gas:
|
|
244
|
+
gas: bigint;
|
|
440
245
|
hash: `0x${string}`;
|
|
441
246
|
input: `0x${string}`;
|
|
442
|
-
nonce:
|
|
247
|
+
nonce: number;
|
|
443
248
|
r: `0x${string}`;
|
|
444
249
|
s: `0x${string}`;
|
|
445
250
|
to: `0x${string}` | null;
|
|
446
|
-
transactionIndex:
|
|
251
|
+
transactionIndex: number | null;
|
|
447
252
|
typeHex: `0x${string}` | null;
|
|
448
|
-
v:
|
|
449
|
-
value:
|
|
450
|
-
yParity:
|
|
253
|
+
v: bigint;
|
|
254
|
+
value: bigint;
|
|
255
|
+
yParity: number;
|
|
451
256
|
gasPrice?: undefined;
|
|
452
257
|
maxFeePerBlobGas?: undefined;
|
|
453
|
-
maxFeePerGas:
|
|
454
|
-
maxPriorityFeePerGas:
|
|
455
|
-
accessList: import("viem").AccessList;
|
|
456
|
-
blobVersionedHashes?: undefined;
|
|
457
|
-
chainId: `0x${string}`;
|
|
458
|
-
type: "0x2";
|
|
459
|
-
}, "yParity">, "typeHex"> & {
|
|
460
|
-
isSystemTx?: undefined;
|
|
461
|
-
mint?: undefined;
|
|
462
|
-
sourceHash?: undefined;
|
|
463
|
-
}) | ({
|
|
464
|
-
r?: `0x${string}` | undefined;
|
|
465
|
-
s?: `0x${string}` | undefined;
|
|
466
|
-
v?: `0x${string}` | undefined;
|
|
467
|
-
yParity?: `0x${string}` | undefined;
|
|
468
|
-
gasPrice?: `0x${string}` | undefined;
|
|
469
|
-
maxFeePerBlobGas?: `0x${string}` | undefined;
|
|
470
|
-
maxFeePerGas?: `0x${string}` | undefined;
|
|
471
|
-
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
|
472
|
-
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
|
|
473
|
-
to?: `0x${string}` | null | undefined;
|
|
474
|
-
from?: `0x${string}` | undefined;
|
|
475
|
-
gas?: `0x${string}` | undefined;
|
|
476
|
-
nonce?: `0x${string}` | undefined;
|
|
477
|
-
value?: `0x${string}` | undefined;
|
|
478
|
-
accessList?: import("viem").AccessList | undefined;
|
|
479
|
-
blobVersionedHashes?: undefined;
|
|
480
|
-
blockHash?: `0x${string}` | null | undefined;
|
|
481
|
-
blockNumber?: `0x${string}` | null | undefined;
|
|
482
|
-
hash?: `0x${string}` | undefined;
|
|
483
|
-
input?: `0x${string}` | undefined;
|
|
484
|
-
transactionIndex?: `0x${string}` | null | undefined;
|
|
485
|
-
chainId?: `0x${string}` | undefined;
|
|
486
|
-
} & Omit<import("viem").TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & import("viem").FeeValuesEIP1559<`0x${string}`> & {
|
|
258
|
+
maxFeePerGas: bigint;
|
|
259
|
+
maxPriorityFeePerGas: bigint;
|
|
487
260
|
isSystemTx?: boolean | undefined;
|
|
488
|
-
mint?:
|
|
261
|
+
mint?: bigint | undefined;
|
|
489
262
|
sourceHash: `0x${string}`;
|
|
490
|
-
type: "
|
|
491
|
-
}
|
|
492
|
-
r?: `0x${string}` | undefined;
|
|
493
|
-
s?: `0x${string}` | undefined;
|
|
494
|
-
v?: `0x${string}` | undefined;
|
|
495
|
-
yParity?: `0x${string}` | undefined;
|
|
496
|
-
gasPrice?: `0x${string}` | undefined;
|
|
497
|
-
maxFeePerBlobGas?: `0x${string}` | undefined;
|
|
498
|
-
maxFeePerGas?: `0x${string}` | undefined;
|
|
499
|
-
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
|
500
|
-
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
|
|
501
|
-
to?: `0x${string}` | null | undefined;
|
|
502
|
-
from?: `0x${string}` | undefined;
|
|
503
|
-
gas?: `0x${string}` | undefined;
|
|
504
|
-
nonce?: `0x${string}` | undefined;
|
|
505
|
-
value?: `0x${string}` | undefined;
|
|
506
|
-
accessList?: import("viem").AccessList | undefined;
|
|
507
|
-
blobVersionedHashes?: undefined;
|
|
508
|
-
blockHash?: `0x${string}` | null | undefined;
|
|
509
|
-
blockNumber?: `0x${string}` | null | undefined;
|
|
510
|
-
hash?: `0x${string}` | undefined;
|
|
511
|
-
input?: `0x${string}` | undefined;
|
|
512
|
-
transactionIndex?: `0x${string}` | null | undefined;
|
|
513
|
-
chainId?: `0x${string}` | undefined;
|
|
514
|
-
} & import("viem/chains").Omit<import("viem/chains").PartialBy<{
|
|
263
|
+
type: "deposit";
|
|
264
|
+
} | {
|
|
515
265
|
r: `0x${string}`;
|
|
516
266
|
s: `0x${string}`;
|
|
517
|
-
v:
|
|
267
|
+
v: bigint;
|
|
518
268
|
to: `0x${string}` | null;
|
|
519
269
|
from: `0x${string}`;
|
|
520
|
-
gas:
|
|
521
|
-
nonce:
|
|
522
|
-
value:
|
|
270
|
+
gas: bigint;
|
|
271
|
+
nonce: number;
|
|
272
|
+
value: bigint;
|
|
523
273
|
blockHash: `0x${string}` | null;
|
|
524
|
-
blockNumber:
|
|
274
|
+
blockNumber: bigint | null;
|
|
525
275
|
hash: `0x${string}`;
|
|
526
276
|
input: `0x${string}`;
|
|
527
|
-
transactionIndex:
|
|
277
|
+
transactionIndex: number | null;
|
|
528
278
|
typeHex: `0x${string}` | null;
|
|
529
|
-
gasPrice: `0x${string}`;
|
|
530
|
-
maxFeePerBlobGas?: undefined;
|
|
531
|
-
maxFeePerGas?: undefined;
|
|
532
|
-
maxPriorityFeePerGas?: undefined;
|
|
533
279
|
accessList?: undefined;
|
|
280
|
+
authorizationList?: undefined;
|
|
534
281
|
blobVersionedHashes?: undefined;
|
|
535
|
-
chainId?:
|
|
282
|
+
chainId?: number | undefined;
|
|
536
283
|
yParity?: undefined;
|
|
537
|
-
type: "
|
|
538
|
-
|
|
539
|
-
isSystemTx?: undefined;
|
|
540
|
-
mint?: undefined;
|
|
541
|
-
sourceHash?: undefined;
|
|
542
|
-
}) | ({
|
|
543
|
-
r?: `0x${string}` | undefined;
|
|
544
|
-
s?: `0x${string}` | undefined;
|
|
545
|
-
v?: `0x${string}` | undefined;
|
|
546
|
-
yParity?: `0x${string}` | undefined;
|
|
547
|
-
gasPrice?: `0x${string}` | undefined;
|
|
548
|
-
maxFeePerBlobGas?: `0x${string}` | undefined;
|
|
549
|
-
maxFeePerGas?: `0x${string}` | undefined;
|
|
550
|
-
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
|
551
|
-
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
|
|
552
|
-
to?: `0x${string}` | null | undefined;
|
|
553
|
-
from?: `0x${string}` | undefined;
|
|
554
|
-
gas?: `0x${string}` | undefined;
|
|
555
|
-
nonce?: `0x${string}` | undefined;
|
|
556
|
-
value?: `0x${string}` | undefined;
|
|
557
|
-
accessList?: import("viem").AccessList | undefined;
|
|
558
|
-
blobVersionedHashes?: undefined;
|
|
559
|
-
blockHash?: `0x${string}` | null | undefined;
|
|
560
|
-
blockNumber?: `0x${string}` | null | undefined;
|
|
561
|
-
hash?: `0x${string}` | undefined;
|
|
562
|
-
input?: `0x${string}` | undefined;
|
|
563
|
-
transactionIndex?: `0x${string}` | null | undefined;
|
|
564
|
-
chainId?: `0x${string}` | undefined;
|
|
565
|
-
} & import("viem/chains").Omit<import("viem/chains").PartialBy<{
|
|
566
|
-
blockHash: `0x${string}` | null;
|
|
567
|
-
blockNumber: `0x${string}` | null;
|
|
568
|
-
from: `0x${string}`;
|
|
569
|
-
gas: `0x${string}`;
|
|
570
|
-
hash: `0x${string}`;
|
|
571
|
-
input: `0x${string}`;
|
|
572
|
-
nonce: `0x${string}`;
|
|
573
|
-
r: `0x${string}`;
|
|
574
|
-
s: `0x${string}`;
|
|
575
|
-
to: `0x${string}` | null;
|
|
576
|
-
transactionIndex: `0x${string}` | null;
|
|
577
|
-
typeHex: `0x${string}` | null;
|
|
578
|
-
v: `0x${string}`;
|
|
579
|
-
value: `0x${string}`;
|
|
580
|
-
yParity: `0x${string}`;
|
|
581
|
-
gasPrice: `0x${string}`;
|
|
284
|
+
type: "legacy";
|
|
285
|
+
gasPrice: bigint;
|
|
582
286
|
maxFeePerBlobGas?: undefined;
|
|
583
287
|
maxFeePerGas?: undefined;
|
|
584
288
|
maxPriorityFeePerGas?: undefined;
|
|
585
|
-
accessList: import("viem").AccessList;
|
|
586
|
-
blobVersionedHashes?: undefined;
|
|
587
|
-
chainId: `0x${string}`;
|
|
588
|
-
type: "0x1";
|
|
589
|
-
}, "yParity">, "typeHex"> & {
|
|
590
289
|
isSystemTx?: undefined;
|
|
591
290
|
mint?: undefined;
|
|
592
291
|
sourceHash?: undefined;
|
|
593
|
-
}
|
|
594
|
-
r?: `0x${string}` | undefined;
|
|
595
|
-
s?: `0x${string}` | undefined;
|
|
596
|
-
v?: `0x${string}` | undefined;
|
|
597
|
-
yParity?: `0x${string}` | undefined;
|
|
598
|
-
gasPrice?: `0x${string}` | undefined;
|
|
599
|
-
maxFeePerBlobGas?: `0x${string}` | undefined;
|
|
600
|
-
maxFeePerGas?: `0x${string}` | undefined;
|
|
601
|
-
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
|
602
|
-
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
|
|
603
|
-
to?: `0x${string}` | null | undefined;
|
|
604
|
-
from?: `0x${string}` | undefined;
|
|
605
|
-
gas?: `0x${string}` | undefined;
|
|
606
|
-
nonce?: `0x${string}` | undefined;
|
|
607
|
-
value?: `0x${string}` | undefined;
|
|
608
|
-
accessList?: import("viem").AccessList | undefined;
|
|
609
|
-
blobVersionedHashes?: undefined;
|
|
610
|
-
blockHash?: `0x${string}` | null | undefined;
|
|
611
|
-
blockNumber?: `0x${string}` | null | undefined;
|
|
612
|
-
hash?: `0x${string}` | undefined;
|
|
613
|
-
input?: `0x${string}` | undefined;
|
|
614
|
-
transactionIndex?: `0x${string}` | null | undefined;
|
|
615
|
-
chainId?: `0x${string}` | undefined;
|
|
616
|
-
} & import("viem/chains").Omit<import("viem/chains").PartialBy<{
|
|
292
|
+
} | {
|
|
617
293
|
blockHash: `0x${string}` | null;
|
|
618
|
-
blockNumber:
|
|
294
|
+
blockNumber: bigint | null;
|
|
619
295
|
from: `0x${string}`;
|
|
620
|
-
gas:
|
|
296
|
+
gas: bigint;
|
|
621
297
|
hash: `0x${string}`;
|
|
622
298
|
input: `0x${string}`;
|
|
623
|
-
nonce:
|
|
299
|
+
nonce: number;
|
|
624
300
|
r: `0x${string}`;
|
|
625
301
|
s: `0x${string}`;
|
|
626
302
|
to: `0x${string}` | null;
|
|
627
|
-
transactionIndex:
|
|
303
|
+
transactionIndex: number | null;
|
|
628
304
|
typeHex: `0x${string}` | null;
|
|
629
|
-
v:
|
|
630
|
-
value:
|
|
631
|
-
yParity:
|
|
632
|
-
gasPrice?: undefined;
|
|
633
|
-
maxFeePerBlobGas?: undefined;
|
|
634
|
-
maxFeePerGas: `0x${string}`;
|
|
635
|
-
maxPriorityFeePerGas: `0x${string}`;
|
|
305
|
+
v: bigint;
|
|
306
|
+
value: bigint;
|
|
307
|
+
yParity: number;
|
|
636
308
|
accessList: import("viem").AccessList;
|
|
309
|
+
authorizationList?: undefined;
|
|
637
310
|
blobVersionedHashes?: undefined;
|
|
638
|
-
chainId:
|
|
639
|
-
type: "
|
|
640
|
-
|
|
641
|
-
isSystemTx?: undefined;
|
|
642
|
-
mint?: undefined;
|
|
643
|
-
sourceHash?: undefined;
|
|
644
|
-
}) | ({
|
|
645
|
-
r?: `0x${string}` | undefined;
|
|
646
|
-
s?: `0x${string}` | undefined;
|
|
647
|
-
v?: `0x${string}` | undefined;
|
|
648
|
-
yParity?: `0x${string}` | undefined;
|
|
649
|
-
gasPrice?: `0x${string}` | undefined;
|
|
650
|
-
maxFeePerBlobGas?: `0x${string}` | undefined;
|
|
651
|
-
maxFeePerGas?: `0x${string}` | undefined;
|
|
652
|
-
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
|
653
|
-
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
|
|
654
|
-
to?: `0x${string}` | null | undefined;
|
|
655
|
-
from?: `0x${string}` | undefined;
|
|
656
|
-
gas?: `0x${string}` | undefined;
|
|
657
|
-
nonce?: `0x${string}` | undefined;
|
|
658
|
-
value?: `0x${string}` | undefined;
|
|
659
|
-
accessList?: import("viem").AccessList | undefined;
|
|
660
|
-
blobVersionedHashes?: undefined;
|
|
661
|
-
blockHash?: `0x${string}` | null | undefined;
|
|
662
|
-
blockNumber?: `0x${string}` | null | undefined;
|
|
663
|
-
hash?: `0x${string}` | undefined;
|
|
664
|
-
input?: `0x${string}` | undefined;
|
|
665
|
-
transactionIndex?: `0x${string}` | null | undefined;
|
|
666
|
-
chainId?: `0x${string}` | undefined;
|
|
667
|
-
} & Omit<import("viem").TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & import("viem").FeeValuesEIP1559<`0x${string}`> & {
|
|
668
|
-
isSystemTx?: boolean | undefined;
|
|
669
|
-
mint?: `0x${string}` | undefined;
|
|
670
|
-
sourceHash: `0x${string}`;
|
|
671
|
-
type: "0x7e";
|
|
672
|
-
}) | ({
|
|
673
|
-
r?: `0x${string}` | undefined;
|
|
674
|
-
s?: `0x${string}` | undefined;
|
|
675
|
-
v?: `0x${string}` | undefined;
|
|
676
|
-
yParity?: `0x${string}` | undefined;
|
|
677
|
-
gasPrice?: `0x${string}` | undefined;
|
|
678
|
-
maxFeePerBlobGas?: `0x${string}` | undefined;
|
|
679
|
-
maxFeePerGas?: `0x${string}` | undefined;
|
|
680
|
-
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
|
681
|
-
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
|
|
682
|
-
to?: `0x${string}` | null | undefined;
|
|
683
|
-
from?: `0x${string}` | undefined;
|
|
684
|
-
gas?: `0x${string}` | undefined;
|
|
685
|
-
nonce?: `0x${string}` | undefined;
|
|
686
|
-
value?: `0x${string}` | undefined;
|
|
687
|
-
accessList?: import("viem").AccessList | undefined;
|
|
688
|
-
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
689
|
-
blockHash?: `0x${string}` | null | undefined;
|
|
690
|
-
blockNumber?: `0x${string}` | null | undefined;
|
|
691
|
-
hash?: `0x${string}` | undefined;
|
|
692
|
-
input?: `0x${string}` | undefined;
|
|
693
|
-
transactionIndex?: `0x${string}` | null | undefined;
|
|
694
|
-
chainId?: `0x${string}` | undefined;
|
|
695
|
-
} & import("viem/chains").Omit<import("viem/chains").PartialBy<{
|
|
696
|
-
r: `0x${string}`;
|
|
697
|
-
s: `0x${string}`;
|
|
698
|
-
v: `0x${string}`;
|
|
699
|
-
to: `0x${string}` | null;
|
|
700
|
-
from: `0x${string}`;
|
|
701
|
-
gas: `0x${string}`;
|
|
702
|
-
nonce: `0x${string}`;
|
|
703
|
-
value: `0x${string}`;
|
|
704
|
-
blockHash: `0x${string}` | null;
|
|
705
|
-
blockNumber: `0x${string}` | null;
|
|
706
|
-
hash: `0x${string}`;
|
|
707
|
-
input: `0x${string}`;
|
|
708
|
-
transactionIndex: `0x${string}` | null;
|
|
709
|
-
typeHex: `0x${string}` | null;
|
|
710
|
-
gasPrice: `0x${string}`;
|
|
711
|
-
maxFeePerBlobGas?: undefined;
|
|
712
|
-
maxFeePerGas?: undefined;
|
|
713
|
-
maxPriorityFeePerGas?: undefined;
|
|
714
|
-
accessList?: undefined;
|
|
715
|
-
blobVersionedHashes?: undefined;
|
|
716
|
-
chainId?: `0x${string}` | undefined;
|
|
717
|
-
yParity?: undefined;
|
|
718
|
-
type: "0x0";
|
|
719
|
-
}, "yParity">, "typeHex"> & {
|
|
720
|
-
isSystemTx?: undefined;
|
|
721
|
-
mint?: undefined;
|
|
722
|
-
sourceHash?: undefined;
|
|
723
|
-
}) | ({
|
|
724
|
-
r?: `0x${string}` | undefined;
|
|
725
|
-
s?: `0x${string}` | undefined;
|
|
726
|
-
v?: `0x${string}` | undefined;
|
|
727
|
-
yParity?: `0x${string}` | undefined;
|
|
728
|
-
gasPrice?: `0x${string}` | undefined;
|
|
729
|
-
maxFeePerBlobGas?: `0x${string}` | undefined;
|
|
730
|
-
maxFeePerGas?: `0x${string}` | undefined;
|
|
731
|
-
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
|
732
|
-
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
|
|
733
|
-
to?: `0x${string}` | null | undefined;
|
|
734
|
-
from?: `0x${string}` | undefined;
|
|
735
|
-
gas?: `0x${string}` | undefined;
|
|
736
|
-
nonce?: `0x${string}` | undefined;
|
|
737
|
-
value?: `0x${string}` | undefined;
|
|
738
|
-
accessList?: import("viem").AccessList | undefined;
|
|
739
|
-
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
740
|
-
blockHash?: `0x${string}` | null | undefined;
|
|
741
|
-
blockNumber?: `0x${string}` | null | undefined;
|
|
742
|
-
hash?: `0x${string}` | undefined;
|
|
743
|
-
input?: `0x${string}` | undefined;
|
|
744
|
-
transactionIndex?: `0x${string}` | null | undefined;
|
|
745
|
-
chainId?: `0x${string}` | undefined;
|
|
746
|
-
} & import("viem/chains").Omit<import("viem/chains").PartialBy<{
|
|
747
|
-
blockHash: `0x${string}` | null;
|
|
748
|
-
blockNumber: `0x${string}` | null;
|
|
749
|
-
from: `0x${string}`;
|
|
750
|
-
gas: `0x${string}`;
|
|
751
|
-
hash: `0x${string}`;
|
|
752
|
-
input: `0x${string}`;
|
|
753
|
-
nonce: `0x${string}`;
|
|
754
|
-
r: `0x${string}`;
|
|
755
|
-
s: `0x${string}`;
|
|
756
|
-
to: `0x${string}` | null;
|
|
757
|
-
transactionIndex: `0x${string}` | null;
|
|
758
|
-
typeHex: `0x${string}` | null;
|
|
759
|
-
v: `0x${string}`;
|
|
760
|
-
value: `0x${string}`;
|
|
761
|
-
yParity: `0x${string}`;
|
|
762
|
-
gasPrice: `0x${string}`;
|
|
311
|
+
chainId: number;
|
|
312
|
+
type: "eip2930";
|
|
313
|
+
gasPrice: bigint;
|
|
763
314
|
maxFeePerBlobGas?: undefined;
|
|
764
315
|
maxFeePerGas?: undefined;
|
|
765
316
|
maxPriorityFeePerGas?: undefined;
|
|
766
|
-
accessList: import("viem").AccessList;
|
|
767
|
-
blobVersionedHashes?: undefined;
|
|
768
|
-
chainId: `0x${string}`;
|
|
769
|
-
type: "0x1";
|
|
770
|
-
}, "yParity">, "typeHex"> & {
|
|
771
317
|
isSystemTx?: undefined;
|
|
772
318
|
mint?: undefined;
|
|
773
319
|
sourceHash?: undefined;
|
|
774
|
-
}
|
|
775
|
-
r?: `0x${string}` | undefined;
|
|
776
|
-
s?: `0x${string}` | undefined;
|
|
777
|
-
v?: `0x${string}` | undefined;
|
|
778
|
-
yParity?: `0x${string}` | undefined;
|
|
779
|
-
gasPrice?: `0x${string}` | undefined;
|
|
780
|
-
maxFeePerBlobGas?: `0x${string}` | undefined;
|
|
781
|
-
maxFeePerGas?: `0x${string}` | undefined;
|
|
782
|
-
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
|
783
|
-
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
|
|
784
|
-
to?: `0x${string}` | null | undefined;
|
|
785
|
-
from?: `0x${string}` | undefined;
|
|
786
|
-
gas?: `0x${string}` | undefined;
|
|
787
|
-
nonce?: `0x${string}` | undefined;
|
|
788
|
-
value?: `0x${string}` | undefined;
|
|
789
|
-
accessList?: import("viem").AccessList | undefined;
|
|
790
|
-
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
791
|
-
blockHash?: `0x${string}` | null | undefined;
|
|
792
|
-
blockNumber?: `0x${string}` | null | undefined;
|
|
793
|
-
hash?: `0x${string}` | undefined;
|
|
794
|
-
input?: `0x${string}` | undefined;
|
|
795
|
-
transactionIndex?: `0x${string}` | null | undefined;
|
|
796
|
-
chainId?: `0x${string}` | undefined;
|
|
797
|
-
} & import("viem/chains").Omit<import("viem/chains").PartialBy<{
|
|
320
|
+
} | {
|
|
798
321
|
blockHash: `0x${string}` | null;
|
|
799
|
-
blockNumber:
|
|
322
|
+
blockNumber: bigint | null;
|
|
800
323
|
from: `0x${string}`;
|
|
801
|
-
gas:
|
|
324
|
+
gas: bigint;
|
|
802
325
|
hash: `0x${string}`;
|
|
803
326
|
input: `0x${string}`;
|
|
804
|
-
nonce:
|
|
327
|
+
nonce: number;
|
|
805
328
|
r: `0x${string}`;
|
|
806
329
|
s: `0x${string}`;
|
|
807
330
|
to: `0x${string}` | null;
|
|
808
|
-
transactionIndex:
|
|
331
|
+
transactionIndex: number | null;
|
|
809
332
|
typeHex: `0x${string}` | null;
|
|
810
|
-
v:
|
|
811
|
-
value:
|
|
812
|
-
yParity:
|
|
813
|
-
gasPrice?: undefined;
|
|
814
|
-
maxFeePerBlobGas?: undefined;
|
|
815
|
-
maxFeePerGas: `0x${string}`;
|
|
816
|
-
maxPriorityFeePerGas: `0x${string}`;
|
|
333
|
+
v: bigint;
|
|
334
|
+
value: bigint;
|
|
335
|
+
yParity: number;
|
|
817
336
|
accessList: import("viem").AccessList;
|
|
337
|
+
authorizationList?: undefined;
|
|
818
338
|
blobVersionedHashes?: undefined;
|
|
819
|
-
chainId:
|
|
820
|
-
type: "
|
|
821
|
-
}, "yParity">, "typeHex"> & {
|
|
822
|
-
isSystemTx?: undefined;
|
|
823
|
-
mint?: undefined;
|
|
824
|
-
sourceHash?: undefined;
|
|
825
|
-
}) | ({
|
|
826
|
-
r?: `0x${string}` | undefined;
|
|
827
|
-
s?: `0x${string}` | undefined;
|
|
828
|
-
v?: `0x${string}` | undefined;
|
|
829
|
-
yParity?: `0x${string}` | undefined;
|
|
830
|
-
gasPrice?: `0x${string}` | undefined;
|
|
831
|
-
maxFeePerBlobGas?: `0x${string}` | undefined;
|
|
832
|
-
maxFeePerGas?: `0x${string}` | undefined;
|
|
833
|
-
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
|
834
|
-
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
|
|
835
|
-
to?: `0x${string}` | null | undefined;
|
|
836
|
-
from?: `0x${string}` | undefined;
|
|
837
|
-
gas?: `0x${string}` | undefined;
|
|
838
|
-
nonce?: `0x${string}` | undefined;
|
|
839
|
-
value?: `0x${string}` | undefined;
|
|
840
|
-
accessList?: import("viem").AccessList | undefined;
|
|
841
|
-
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
842
|
-
blockHash?: `0x${string}` | null | undefined;
|
|
843
|
-
blockNumber?: `0x${string}` | null | undefined;
|
|
844
|
-
hash?: `0x${string}` | undefined;
|
|
845
|
-
input?: `0x${string}` | undefined;
|
|
846
|
-
transactionIndex?: `0x${string}` | null | undefined;
|
|
847
|
-
chainId?: `0x${string}` | undefined;
|
|
848
|
-
} & import("viem/chains").Omit<import("viem/chains").PartialBy<{
|
|
849
|
-
blockHash: `0x${string}` | null;
|
|
850
|
-
blockNumber: `0x${string}` | null;
|
|
851
|
-
from: `0x${string}`;
|
|
852
|
-
gas: `0x${string}`;
|
|
853
|
-
hash: `0x${string}`;
|
|
854
|
-
input: `0x${string}`;
|
|
855
|
-
nonce: `0x${string}`;
|
|
856
|
-
r: `0x${string}`;
|
|
857
|
-
s: `0x${string}`;
|
|
858
|
-
to: `0x${string}` | null;
|
|
859
|
-
transactionIndex: `0x${string}` | null;
|
|
860
|
-
typeHex: `0x${string}` | null;
|
|
861
|
-
v: `0x${string}`;
|
|
862
|
-
value: `0x${string}`;
|
|
863
|
-
yParity: `0x${string}`;
|
|
339
|
+
chainId: number;
|
|
340
|
+
type: "eip1559";
|
|
864
341
|
gasPrice?: undefined;
|
|
865
|
-
maxFeePerBlobGas: `0x${string}`;
|
|
866
|
-
maxFeePerGas: `0x${string}`;
|
|
867
|
-
maxPriorityFeePerGas: `0x${string}`;
|
|
868
|
-
accessList: import("viem").AccessList;
|
|
869
|
-
blobVersionedHashes: readonly `0x${string}`[];
|
|
870
|
-
chainId: `0x${string}`;
|
|
871
|
-
type: "0x3";
|
|
872
|
-
}, "yParity">, "typeHex"> & {
|
|
873
|
-
isSystemTx?: undefined;
|
|
874
|
-
mint?: undefined;
|
|
875
|
-
sourceHash?: undefined;
|
|
876
|
-
}) | ({
|
|
877
|
-
r?: `0x${string}` | undefined;
|
|
878
|
-
s?: `0x${string}` | undefined;
|
|
879
|
-
v?: `0x${string}` | undefined;
|
|
880
|
-
yParity?: `0x${string}` | undefined;
|
|
881
|
-
gasPrice?: `0x${string}` | undefined;
|
|
882
|
-
maxFeePerBlobGas?: `0x${string}` | undefined;
|
|
883
|
-
maxFeePerGas?: `0x${string}` | undefined;
|
|
884
|
-
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
|
885
|
-
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
|
|
886
|
-
to?: `0x${string}` | null | undefined;
|
|
887
|
-
from?: `0x${string}` | undefined;
|
|
888
|
-
gas?: `0x${string}` | undefined;
|
|
889
|
-
nonce?: `0x${string}` | undefined;
|
|
890
|
-
value?: `0x${string}` | undefined;
|
|
891
|
-
accessList?: import("viem").AccessList | undefined;
|
|
892
|
-
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
893
|
-
blockHash?: `0x${string}` | null | undefined;
|
|
894
|
-
blockNumber?: `0x${string}` | null | undefined;
|
|
895
|
-
hash?: `0x${string}` | undefined;
|
|
896
|
-
input?: `0x${string}` | undefined;
|
|
897
|
-
transactionIndex?: `0x${string}` | null | undefined;
|
|
898
|
-
chainId?: `0x${string}` | undefined;
|
|
899
|
-
} & Omit<import("viem").TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & import("viem").FeeValuesEIP1559<`0x${string}`> & {
|
|
900
|
-
isSystemTx?: boolean | undefined;
|
|
901
|
-
mint?: `0x${string}` | undefined;
|
|
902
|
-
sourceHash: `0x${string}`;
|
|
903
|
-
type: "0x7e";
|
|
904
|
-
})) => {
|
|
905
|
-
r: `0x${string}`;
|
|
906
|
-
s: `0x${string}`;
|
|
907
|
-
v: bigint;
|
|
908
|
-
to: `0x${string}` | null;
|
|
909
|
-
from: `0x${string}`;
|
|
910
|
-
gas: bigint;
|
|
911
|
-
nonce: number;
|
|
912
|
-
value: bigint;
|
|
913
|
-
blockHash: `0x${string}` | null;
|
|
914
|
-
blockNumber: bigint | null;
|
|
915
|
-
hash: `0x${string}`;
|
|
916
|
-
input: `0x${string}`;
|
|
917
|
-
transactionIndex: number | null;
|
|
918
|
-
typeHex: `0x${string}` | null;
|
|
919
|
-
gasPrice: bigint;
|
|
920
342
|
maxFeePerBlobGas?: undefined;
|
|
921
|
-
maxFeePerGas
|
|
922
|
-
maxPriorityFeePerGas
|
|
923
|
-
accessList?: undefined;
|
|
924
|
-
blobVersionedHashes?: undefined;
|
|
925
|
-
chainId?: number | undefined;
|
|
926
|
-
yParity?: undefined;
|
|
927
|
-
type: "legacy";
|
|
343
|
+
maxFeePerGas: bigint;
|
|
344
|
+
maxPriorityFeePerGas: bigint;
|
|
928
345
|
isSystemTx?: undefined;
|
|
929
346
|
mint?: undefined;
|
|
930
347
|
sourceHash?: undefined;
|
|
931
|
-
} | {
|
|
932
|
-
r: `0x${string}`;
|
|
933
|
-
s: `0x${string}`;
|
|
934
|
-
v: bigint;
|
|
935
|
-
to: `0x${string}` | null;
|
|
936
|
-
from: `0x${string}`;
|
|
937
|
-
gas: bigint;
|
|
938
|
-
nonce: number;
|
|
939
|
-
value: bigint;
|
|
940
|
-
blockHash: `0x${string}` | null;
|
|
941
|
-
blockNumber: bigint | null;
|
|
942
|
-
hash: `0x${string}`;
|
|
943
|
-
input: `0x${string}`;
|
|
944
|
-
transactionIndex: number | null;
|
|
945
|
-
typeHex: `0x${string}` | null;
|
|
946
|
-
gasPrice: undefined;
|
|
947
|
-
maxFeePerBlobGas?: undefined;
|
|
948
|
-
maxFeePerGas: bigint;
|
|
949
|
-
maxPriorityFeePerGas: bigint;
|
|
950
|
-
accessList?: undefined;
|
|
951
|
-
blobVersionedHashes?: undefined;
|
|
952
|
-
chainId?: number | undefined;
|
|
953
|
-
yParity: number;
|
|
954
|
-
type: "deposit";
|
|
955
|
-
isSystemTx?: boolean | undefined;
|
|
956
|
-
mint?: bigint | undefined;
|
|
957
|
-
sourceHash: `0x${string}`;
|
|
958
348
|
} | {
|
|
959
349
|
blockHash: `0x${string}` | null;
|
|
960
350
|
blockNumber: bigint | null;
|
|
@@ -971,14 +361,15 @@ export declare const MAINNET_CHAIN_VIEM: {
|
|
|
971
361
|
v: bigint;
|
|
972
362
|
value: bigint;
|
|
973
363
|
yParity: number;
|
|
974
|
-
gasPrice: bigint;
|
|
975
|
-
maxFeePerBlobGas?: undefined;
|
|
976
|
-
maxFeePerGas?: undefined;
|
|
977
|
-
maxPriorityFeePerGas?: undefined;
|
|
978
364
|
accessList: import("viem").AccessList;
|
|
979
|
-
|
|
365
|
+
authorizationList?: undefined;
|
|
366
|
+
blobVersionedHashes: readonly `0x${string}`[];
|
|
980
367
|
chainId: number;
|
|
981
|
-
type: "
|
|
368
|
+
type: "eip4844";
|
|
369
|
+
gasPrice?: undefined;
|
|
370
|
+
maxFeePerBlobGas: bigint;
|
|
371
|
+
maxFeePerGas: bigint;
|
|
372
|
+
maxPriorityFeePerGas: bigint;
|
|
982
373
|
isSystemTx?: undefined;
|
|
983
374
|
mint?: undefined;
|
|
984
375
|
sourceHash?: undefined;
|
|
@@ -998,185 +389,24 @@ export declare const MAINNET_CHAIN_VIEM: {
|
|
|
998
389
|
v: bigint;
|
|
999
390
|
value: bigint;
|
|
1000
391
|
yParity: number;
|
|
1001
|
-
gasPrice: undefined;
|
|
1002
|
-
maxFeePerBlobGas?: undefined;
|
|
1003
|
-
maxFeePerGas: bigint;
|
|
1004
|
-
maxPriorityFeePerGas: bigint;
|
|
1005
392
|
accessList: import("viem").AccessList;
|
|
393
|
+
authorizationList: import("viem/experimental").SignedAuthorizationList<number>;
|
|
1006
394
|
blobVersionedHashes?: undefined;
|
|
1007
395
|
chainId: number;
|
|
1008
|
-
type: "
|
|
1009
|
-
isSystemTx?: undefined;
|
|
1010
|
-
mint?: undefined;
|
|
1011
|
-
sourceHash?: undefined;
|
|
1012
|
-
} | {
|
|
1013
|
-
blockHash: `0x${string}` | null;
|
|
1014
|
-
blockNumber: bigint | null;
|
|
1015
|
-
from: `0x${string}`;
|
|
1016
|
-
gas: bigint;
|
|
1017
|
-
hash: `0x${string}`;
|
|
1018
|
-
input: `0x${string}`;
|
|
1019
|
-
nonce: number;
|
|
1020
|
-
r: `0x${string}`;
|
|
1021
|
-
s: `0x${string}`;
|
|
1022
|
-
to: `0x${string}` | null;
|
|
1023
|
-
transactionIndex: number | null;
|
|
1024
|
-
typeHex: `0x${string}` | null;
|
|
1025
|
-
v: bigint;
|
|
1026
|
-
value: bigint;
|
|
1027
|
-
yParity: number;
|
|
1028
|
-
gasPrice: undefined;
|
|
1029
|
-
maxFeePerBlobGas?: undefined;
|
|
1030
|
-
maxFeePerGas: bigint;
|
|
1031
|
-
maxPriorityFeePerGas: bigint;
|
|
1032
|
-
accessList: import("viem").AccessList;
|
|
1033
|
-
blobVersionedHashes?: undefined;
|
|
1034
|
-
chainId: number;
|
|
1035
|
-
type: "deposit";
|
|
1036
|
-
isSystemTx?: boolean | undefined;
|
|
1037
|
-
mint?: bigint | undefined;
|
|
1038
|
-
sourceHash: `0x${string}`;
|
|
1039
|
-
} | {
|
|
1040
|
-
blockHash: `0x${string}` | null;
|
|
1041
|
-
blockNumber: bigint | null;
|
|
1042
|
-
from: `0x${string}`;
|
|
1043
|
-
gas: bigint;
|
|
1044
|
-
hash: `0x${string}`;
|
|
1045
|
-
input: `0x${string}`;
|
|
1046
|
-
nonce: number;
|
|
1047
|
-
r: `0x${string}`;
|
|
1048
|
-
s: `0x${string}`;
|
|
1049
|
-
to: `0x${string}` | null;
|
|
1050
|
-
transactionIndex: number | null;
|
|
1051
|
-
typeHex: `0x${string}` | null;
|
|
1052
|
-
v: bigint;
|
|
1053
|
-
value: bigint;
|
|
1054
|
-
yParity: number;
|
|
1055
|
-
gasPrice: bigint;
|
|
1056
|
-
maxFeePerBlobGas?: undefined;
|
|
1057
|
-
maxFeePerGas: undefined;
|
|
1058
|
-
maxPriorityFeePerGas: undefined;
|
|
1059
|
-
accessList: import("viem").AccessList;
|
|
1060
|
-
blobVersionedHashes?: undefined;
|
|
1061
|
-
chainId: number;
|
|
1062
|
-
type: "eip2930";
|
|
1063
|
-
isSystemTx?: undefined;
|
|
1064
|
-
mint?: undefined;
|
|
1065
|
-
sourceHash?: undefined;
|
|
1066
|
-
} | {
|
|
1067
|
-
blockHash: `0x${string}` | null;
|
|
1068
|
-
blockNumber: bigint | null;
|
|
1069
|
-
from: `0x${string}`;
|
|
1070
|
-
gas: bigint;
|
|
1071
|
-
hash: `0x${string}`;
|
|
1072
|
-
input: `0x${string}`;
|
|
1073
|
-
nonce: number;
|
|
1074
|
-
r: `0x${string}`;
|
|
1075
|
-
s: `0x${string}`;
|
|
1076
|
-
to: `0x${string}` | null;
|
|
1077
|
-
transactionIndex: number | null;
|
|
1078
|
-
typeHex: `0x${string}` | null;
|
|
1079
|
-
v: bigint;
|
|
1080
|
-
value: bigint;
|
|
1081
|
-
yParity: number;
|
|
1082
|
-
gasPrice?: undefined;
|
|
1083
|
-
maxFeePerBlobGas?: undefined;
|
|
1084
|
-
maxFeePerGas: bigint;
|
|
1085
|
-
maxPriorityFeePerGas: bigint;
|
|
1086
|
-
accessList: import("viem").AccessList;
|
|
1087
|
-
blobVersionedHashes?: undefined;
|
|
1088
|
-
chainId: number;
|
|
1089
|
-
type: "eip1559";
|
|
1090
|
-
isSystemTx?: undefined;
|
|
1091
|
-
mint?: undefined;
|
|
1092
|
-
sourceHash?: undefined;
|
|
1093
|
-
} | {
|
|
1094
|
-
blockHash: `0x${string}` | null;
|
|
1095
|
-
blockNumber: bigint | null;
|
|
1096
|
-
from: `0x${string}`;
|
|
1097
|
-
gas: bigint;
|
|
1098
|
-
hash: `0x${string}`;
|
|
1099
|
-
input: `0x${string}`;
|
|
1100
|
-
nonce: number;
|
|
1101
|
-
r: `0x${string}`;
|
|
1102
|
-
s: `0x${string}`;
|
|
1103
|
-
to: `0x${string}` | null;
|
|
1104
|
-
transactionIndex: number | null;
|
|
1105
|
-
typeHex: `0x${string}` | null;
|
|
1106
|
-
v: bigint;
|
|
1107
|
-
value: bigint;
|
|
1108
|
-
yParity: number;
|
|
396
|
+
type: "eip7702";
|
|
1109
397
|
gasPrice?: undefined;
|
|
1110
398
|
maxFeePerBlobGas?: undefined;
|
|
1111
399
|
maxFeePerGas: bigint;
|
|
1112
400
|
maxPriorityFeePerGas: bigint;
|
|
1113
|
-
accessList: import("viem").AccessList;
|
|
1114
|
-
blobVersionedHashes?: undefined;
|
|
1115
|
-
chainId: number;
|
|
1116
|
-
type: "deposit";
|
|
1117
|
-
isSystemTx?: boolean | undefined;
|
|
1118
|
-
mint?: bigint | undefined;
|
|
1119
|
-
sourceHash: `0x${string}`;
|
|
1120
|
-
} | {
|
|
1121
|
-
blockHash: `0x${string}` | null;
|
|
1122
|
-
blockNumber: bigint | null;
|
|
1123
|
-
from: `0x${string}`;
|
|
1124
|
-
gas: bigint;
|
|
1125
|
-
hash: `0x${string}`;
|
|
1126
|
-
input: `0x${string}`;
|
|
1127
|
-
nonce: number;
|
|
1128
|
-
r: `0x${string}`;
|
|
1129
|
-
s: `0x${string}`;
|
|
1130
|
-
to: `0x${string}` | null;
|
|
1131
|
-
transactionIndex: number | null;
|
|
1132
|
-
typeHex: `0x${string}` | null;
|
|
1133
|
-
v: bigint;
|
|
1134
|
-
value: bigint;
|
|
1135
|
-
yParity: number;
|
|
1136
|
-
gasPrice?: undefined;
|
|
1137
|
-
maxFeePerBlobGas: bigint;
|
|
1138
|
-
maxFeePerGas: bigint;
|
|
1139
|
-
maxPriorityFeePerGas: bigint;
|
|
1140
|
-
accessList: import("viem").AccessList;
|
|
1141
|
-
blobVersionedHashes: readonly `0x${string}`[];
|
|
1142
|
-
chainId: number;
|
|
1143
|
-
type: "eip4844";
|
|
1144
401
|
isSystemTx?: undefined;
|
|
1145
402
|
mint?: undefined;
|
|
1146
403
|
sourceHash?: undefined;
|
|
1147
|
-
} | {
|
|
1148
|
-
blockHash: `0x${string}` | null;
|
|
1149
|
-
blockNumber: bigint | null;
|
|
1150
|
-
from: `0x${string}`;
|
|
1151
|
-
gas: bigint;
|
|
1152
|
-
hash: `0x${string}`;
|
|
1153
|
-
input: `0x${string}`;
|
|
1154
|
-
nonce: number;
|
|
1155
|
-
r: `0x${string}`;
|
|
1156
|
-
s: `0x${string}`;
|
|
1157
|
-
to: `0x${string}` | null;
|
|
1158
|
-
transactionIndex: number | null;
|
|
1159
|
-
typeHex: `0x${string}` | null;
|
|
1160
|
-
v: bigint;
|
|
1161
|
-
value: bigint;
|
|
1162
|
-
yParity: number;
|
|
1163
|
-
gasPrice?: undefined;
|
|
1164
|
-
maxFeePerBlobGas: undefined;
|
|
1165
|
-
maxFeePerGas: bigint;
|
|
1166
|
-
maxPriorityFeePerGas: bigint;
|
|
1167
|
-
accessList: import("viem").AccessList;
|
|
1168
|
-
blobVersionedHashes: readonly `0x${string}`[];
|
|
1169
|
-
chainId: number;
|
|
1170
|
-
type: "deposit";
|
|
1171
|
-
isSystemTx?: boolean | undefined;
|
|
1172
|
-
mint?: bigint | undefined;
|
|
1173
|
-
sourceHash: `0x${string}`;
|
|
1174
404
|
};
|
|
1175
405
|
type: "transaction";
|
|
1176
406
|
};
|
|
1177
407
|
readonly transactionReceipt: {
|
|
1178
408
|
exclude: [] | undefined;
|
|
1179
|
-
format: (args: import("viem/chains").
|
|
409
|
+
format: (args: import("viem/chains").OpStackRpcTransactionReceipt) => {
|
|
1180
410
|
blobGasPrice?: bigint | undefined;
|
|
1181
411
|
blobGasUsed?: bigint | undefined;
|
|
1182
412
|
blockHash: `0x${string}`;
|
|
@@ -1205,7 +435,6 @@ export declare const MAINNET_CHAIN_VIEM: {
|
|
|
1205
435
|
serializers: {
|
|
1206
436
|
readonly transaction: typeof import("viem/chains").serializeTransactionOpStack;
|
|
1207
437
|
};
|
|
1208
|
-
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
1209
438
|
};
|
|
1210
439
|
readonly 103: {
|
|
1211
440
|
blockExplorers: {
|
|
@@ -1236,9 +465,9 @@ export declare const MAINNET_CHAIN_VIEM: {
|
|
|
1236
465
|
sourceId?: number | undefined;
|
|
1237
466
|
testnet?: boolean | undefined;
|
|
1238
467
|
custom?: Record<string, unknown> | undefined;
|
|
1239
|
-
formatters?: undefined;
|
|
1240
|
-
serializers?: import("viem").ChainSerializers<undefined> | undefined;
|
|
1241
468
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
469
|
+
formatters?: undefined;
|
|
470
|
+
serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable<bigint, number>> | undefined;
|
|
1242
471
|
};
|
|
1243
472
|
readonly 104: {
|
|
1244
473
|
blockExplorers: {
|
|
@@ -1269,9 +498,9 @@ export declare const MAINNET_CHAIN_VIEM: {
|
|
|
1269
498
|
sourceId?: number | undefined;
|
|
1270
499
|
testnet?: boolean | undefined;
|
|
1271
500
|
custom?: Record<string, unknown> | undefined;
|
|
1272
|
-
formatters?: undefined;
|
|
1273
|
-
serializers?: import("viem").ChainSerializers<undefined> | undefined;
|
|
1274
501
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
502
|
+
formatters?: undefined;
|
|
503
|
+
serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable<bigint, number>> | undefined;
|
|
1275
504
|
};
|
|
1276
505
|
};
|
|
1277
506
|
export declare const TESTNET_CHAIN_VIEM: {
|
|
@@ -1304,9 +533,9 @@ export declare const TESTNET_CHAIN_VIEM: {
|
|
|
1304
533
|
sourceId?: number | undefined;
|
|
1305
534
|
testnet: true;
|
|
1306
535
|
custom?: Record<string, unknown> | undefined;
|
|
1307
|
-
formatters?: undefined;
|
|
1308
|
-
serializers?: import("viem").ChainSerializers<undefined> | undefined;
|
|
1309
536
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
537
|
+
formatters?: undefined;
|
|
538
|
+
serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable<bigint, number>> | undefined;
|
|
1310
539
|
};
|
|
1311
540
|
readonly 6: {
|
|
1312
541
|
blockExplorers: {
|
|
@@ -1338,15 +567,15 @@ export declare const TESTNET_CHAIN_VIEM: {
|
|
|
1338
567
|
};
|
|
1339
568
|
rpcUrls: {
|
|
1340
569
|
readonly default: {
|
|
1341
|
-
readonly http: readonly ["https://
|
|
570
|
+
readonly http: readonly ["https://sepolia.drpc.org"];
|
|
1342
571
|
};
|
|
1343
572
|
};
|
|
1344
573
|
sourceId?: number | undefined;
|
|
1345
574
|
testnet: true;
|
|
1346
575
|
custom?: Record<string, unknown> | undefined;
|
|
1347
|
-
formatters?: undefined;
|
|
1348
|
-
serializers?: import("viem").ChainSerializers<undefined> | undefined;
|
|
1349
576
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
577
|
+
formatters?: undefined;
|
|
578
|
+
serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable<bigint, number>> | undefined;
|
|
1350
579
|
};
|
|
1351
580
|
readonly 7: {
|
|
1352
581
|
blockExplorers: {
|
|
@@ -1357,6 +586,11 @@ export declare const TESTNET_CHAIN_VIEM: {
|
|
|
1357
586
|
};
|
|
1358
587
|
};
|
|
1359
588
|
contracts: {
|
|
589
|
+
readonly disputeGameFactory: {
|
|
590
|
+
readonly 11155111: {
|
|
591
|
+
readonly address: "0xd6E6dBf4F7EA0ac412fD8b65ED297e64BB7a06E1";
|
|
592
|
+
};
|
|
593
|
+
};
|
|
1360
594
|
readonly l2OutputOracle: {
|
|
1361
595
|
readonly 11155111: {
|
|
1362
596
|
readonly address: "0x84457ca9D0163FbC4bbfe4Dfbb20ba46e48DF254";
|
|
@@ -1412,12 +646,11 @@ export declare const TESTNET_CHAIN_VIEM: {
|
|
|
1412
646
|
sourceId: 11155111;
|
|
1413
647
|
testnet: true;
|
|
1414
648
|
custom?: Record<string, unknown> | undefined;
|
|
649
|
+
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
1415
650
|
formatters: {
|
|
1416
651
|
readonly block: {
|
|
1417
652
|
exclude: [] | undefined;
|
|
1418
|
-
format: (args: import("viem/chains").
|
|
1419
|
-
transactions: `0x${string}`[] | import("viem/chains").OpStackRpcTransaction<boolean>[];
|
|
1420
|
-
}>) => {
|
|
653
|
+
format: (args: import("viem/chains").OpStackRpcBlock<import("viem").BlockTag, boolean>) => {
|
|
1421
654
|
baseFeePerGas: bigint | null;
|
|
1422
655
|
blobGasUsed: bigint;
|
|
1423
656
|
difficulty: bigint;
|
|
@@ -1431,6 +664,7 @@ export declare const TESTNET_CHAIN_VIEM: {
|
|
|
1431
664
|
mixHash: `0x${string}`;
|
|
1432
665
|
nonce: `0x${string}` | null;
|
|
1433
666
|
number: bigint | null;
|
|
667
|
+
parentBeaconBlockRoot?: `0x${string}` | undefined;
|
|
1434
668
|
parentHash: `0x${string}`;
|
|
1435
669
|
receiptsRoot: `0x${string}`;
|
|
1436
670
|
sealFields: `0x${string}`[];
|
|
@@ -1449,814 +683,114 @@ export declare const TESTNET_CHAIN_VIEM: {
|
|
|
1449
683
|
};
|
|
1450
684
|
readonly transaction: {
|
|
1451
685
|
exclude: [] | undefined;
|
|
1452
|
-
format: (args: ({
|
|
1453
|
-
r?: `0x${string}` | undefined;
|
|
1454
|
-
s?: `0x${string}` | undefined;
|
|
1455
|
-
v?: `0x${string}` | undefined;
|
|
1456
|
-
yParity?: `0x${string}` | undefined;
|
|
1457
|
-
gasPrice?: `0x${string}` | undefined;
|
|
1458
|
-
maxFeePerBlobGas?: `0x${string}` | undefined;
|
|
1459
|
-
maxFeePerGas?: `0x${string}` | undefined;
|
|
1460
|
-
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
|
1461
|
-
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
|
|
1462
|
-
to?: `0x${string}` | null | undefined;
|
|
1463
|
-
from?: `0x${string}` | undefined;
|
|
1464
|
-
gas?: `0x${string}` | undefined;
|
|
1465
|
-
nonce?: `0x${string}` | undefined;
|
|
1466
|
-
value?: `0x${string}` | undefined;
|
|
1467
|
-
accessList?: undefined;
|
|
1468
|
-
blobVersionedHashes?: undefined;
|
|
1469
|
-
blockHash?: `0x${string}` | null | undefined;
|
|
1470
|
-
blockNumber?: `0x${string}` | null | undefined;
|
|
1471
|
-
hash?: `0x${string}` | undefined;
|
|
1472
|
-
input?: `0x${string}` | undefined;
|
|
1473
|
-
transactionIndex?: `0x${string}` | null | undefined;
|
|
1474
|
-
chainId?: `0x${string}` | undefined;
|
|
1475
|
-
} & import("viem/chains").Omit<import("viem/chains").PartialBy<{
|
|
1476
|
-
r: `0x${string}`;
|
|
1477
|
-
s: `0x${string}`;
|
|
1478
|
-
v: `0x${string}`;
|
|
1479
|
-
to: `0x${string}` | null;
|
|
1480
|
-
from: `0x${string}`;
|
|
1481
|
-
gas: `0x${string}`;
|
|
1482
|
-
nonce: `0x${string}`;
|
|
1483
|
-
value: `0x${string}`;
|
|
686
|
+
format: (args: import("viem/chains").OpStackRpcTransaction<boolean>) => {
|
|
1484
687
|
blockHash: `0x${string}` | null;
|
|
1485
|
-
blockNumber:
|
|
688
|
+
blockNumber: bigint | null;
|
|
689
|
+
from: `0x${string}`;
|
|
690
|
+
gas: bigint;
|
|
1486
691
|
hash: `0x${string}`;
|
|
1487
692
|
input: `0x${string}`;
|
|
1488
|
-
|
|
693
|
+
nonce: number;
|
|
694
|
+
r: `0x${string}`;
|
|
695
|
+
s: `0x${string}`;
|
|
696
|
+
to: `0x${string}` | null;
|
|
697
|
+
transactionIndex: number | null;
|
|
1489
698
|
typeHex: `0x${string}` | null;
|
|
1490
|
-
|
|
699
|
+
v: bigint;
|
|
700
|
+
value: bigint;
|
|
701
|
+
yParity: number;
|
|
702
|
+
gasPrice?: undefined;
|
|
1491
703
|
maxFeePerBlobGas?: undefined;
|
|
1492
|
-
maxFeePerGas
|
|
1493
|
-
maxPriorityFeePerGas
|
|
1494
|
-
accessList?: undefined;
|
|
1495
|
-
blobVersionedHashes?: undefined;
|
|
1496
|
-
chainId?: `0x${string}` | undefined;
|
|
1497
|
-
yParity?: undefined;
|
|
1498
|
-
type: "0x0";
|
|
1499
|
-
}, "yParity">, "typeHex"> & {
|
|
1500
|
-
isSystemTx?: undefined;
|
|
1501
|
-
mint?: undefined;
|
|
1502
|
-
sourceHash?: undefined;
|
|
1503
|
-
}) | ({
|
|
1504
|
-
r?: `0x${string}` | undefined;
|
|
1505
|
-
s?: `0x${string}` | undefined;
|
|
1506
|
-
v?: `0x${string}` | undefined;
|
|
1507
|
-
yParity?: `0x${string}` | undefined;
|
|
1508
|
-
gasPrice?: `0x${string}` | undefined;
|
|
1509
|
-
maxFeePerBlobGas?: `0x${string}` | undefined;
|
|
1510
|
-
maxFeePerGas?: `0x${string}` | undefined;
|
|
1511
|
-
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
|
1512
|
-
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
|
|
1513
|
-
to?: `0x${string}` | null | undefined;
|
|
1514
|
-
from?: `0x${string}` | undefined;
|
|
1515
|
-
gas?: `0x${string}` | undefined;
|
|
1516
|
-
nonce?: `0x${string}` | undefined;
|
|
1517
|
-
value?: `0x${string}` | undefined;
|
|
1518
|
-
accessList?: undefined;
|
|
1519
|
-
blobVersionedHashes?: undefined;
|
|
1520
|
-
blockHash?: `0x${string}` | null | undefined;
|
|
1521
|
-
blockNumber?: `0x${string}` | null | undefined;
|
|
1522
|
-
hash?: `0x${string}` | undefined;
|
|
1523
|
-
input?: `0x${string}` | undefined;
|
|
1524
|
-
transactionIndex?: `0x${string}` | null | undefined;
|
|
1525
|
-
chainId?: `0x${string}` | undefined;
|
|
1526
|
-
} & Omit<import("viem").TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & import("viem").FeeValuesEIP1559<`0x${string}`> & {
|
|
704
|
+
maxFeePerGas: bigint;
|
|
705
|
+
maxPriorityFeePerGas: bigint;
|
|
1527
706
|
isSystemTx?: boolean | undefined;
|
|
1528
|
-
mint?:
|
|
707
|
+
mint?: bigint | undefined;
|
|
1529
708
|
sourceHash: `0x${string}`;
|
|
1530
|
-
type: "
|
|
1531
|
-
}
|
|
1532
|
-
r?: `0x${string}` | undefined;
|
|
1533
|
-
s?: `0x${string}` | undefined;
|
|
1534
|
-
v?: `0x${string}` | undefined;
|
|
1535
|
-
yParity?: `0x${string}` | undefined;
|
|
1536
|
-
gasPrice?: `0x${string}` | undefined;
|
|
1537
|
-
maxFeePerBlobGas?: `0x${string}` | undefined;
|
|
1538
|
-
maxFeePerGas?: `0x${string}` | undefined;
|
|
1539
|
-
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
|
1540
|
-
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
|
|
1541
|
-
to?: `0x${string}` | null | undefined;
|
|
1542
|
-
from?: `0x${string}` | undefined;
|
|
1543
|
-
gas?: `0x${string}` | undefined;
|
|
1544
|
-
nonce?: `0x${string}` | undefined;
|
|
1545
|
-
value?: `0x${string}` | undefined;
|
|
1546
|
-
accessList?: import("viem").AccessList | undefined;
|
|
1547
|
-
blobVersionedHashes?: undefined;
|
|
1548
|
-
blockHash?: `0x${string}` | null | undefined;
|
|
1549
|
-
blockNumber?: `0x${string}` | null | undefined;
|
|
1550
|
-
hash?: `0x${string}` | undefined;
|
|
1551
|
-
input?: `0x${string}` | undefined;
|
|
1552
|
-
transactionIndex?: `0x${string}` | null | undefined;
|
|
1553
|
-
chainId?: `0x${string}` | undefined;
|
|
1554
|
-
} & import("viem/chains").Omit<import("viem/chains").PartialBy<{
|
|
709
|
+
type: "deposit";
|
|
710
|
+
} | {
|
|
1555
711
|
r: `0x${string}`;
|
|
1556
712
|
s: `0x${string}`;
|
|
1557
|
-
v:
|
|
713
|
+
v: bigint;
|
|
1558
714
|
to: `0x${string}` | null;
|
|
1559
715
|
from: `0x${string}`;
|
|
1560
|
-
gas:
|
|
1561
|
-
nonce:
|
|
1562
|
-
value:
|
|
716
|
+
gas: bigint;
|
|
717
|
+
nonce: number;
|
|
718
|
+
value: bigint;
|
|
1563
719
|
blockHash: `0x${string}` | null;
|
|
1564
|
-
blockNumber:
|
|
720
|
+
blockNumber: bigint | null;
|
|
1565
721
|
hash: `0x${string}`;
|
|
1566
722
|
input: `0x${string}`;
|
|
1567
|
-
transactionIndex:
|
|
723
|
+
transactionIndex: number | null;
|
|
1568
724
|
typeHex: `0x${string}` | null;
|
|
1569
|
-
gasPrice: `0x${string}`;
|
|
1570
|
-
maxFeePerBlobGas?: undefined;
|
|
1571
|
-
maxFeePerGas?: undefined;
|
|
1572
|
-
maxPriorityFeePerGas?: undefined;
|
|
1573
725
|
accessList?: undefined;
|
|
726
|
+
authorizationList?: undefined;
|
|
1574
727
|
blobVersionedHashes?: undefined;
|
|
1575
|
-
chainId?:
|
|
728
|
+
chainId?: number | undefined;
|
|
1576
729
|
yParity?: undefined;
|
|
1577
|
-
type: "
|
|
1578
|
-
|
|
730
|
+
type: "legacy";
|
|
731
|
+
gasPrice: bigint;
|
|
732
|
+
maxFeePerBlobGas?: undefined;
|
|
733
|
+
maxFeePerGas?: undefined;
|
|
734
|
+
maxPriorityFeePerGas?: undefined;
|
|
1579
735
|
isSystemTx?: undefined;
|
|
1580
736
|
mint?: undefined;
|
|
1581
737
|
sourceHash?: undefined;
|
|
1582
|
-
}
|
|
1583
|
-
r?: `0x${string}` | undefined;
|
|
1584
|
-
s?: `0x${string}` | undefined;
|
|
1585
|
-
v?: `0x${string}` | undefined;
|
|
1586
|
-
yParity?: `0x${string}` | undefined;
|
|
1587
|
-
gasPrice?: `0x${string}` | undefined;
|
|
1588
|
-
maxFeePerBlobGas?: `0x${string}` | undefined;
|
|
1589
|
-
maxFeePerGas?: `0x${string}` | undefined;
|
|
1590
|
-
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
|
1591
|
-
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
|
|
1592
|
-
to?: `0x${string}` | null | undefined;
|
|
1593
|
-
from?: `0x${string}` | undefined;
|
|
1594
|
-
gas?: `0x${string}` | undefined;
|
|
1595
|
-
nonce?: `0x${string}` | undefined;
|
|
1596
|
-
value?: `0x${string}` | undefined;
|
|
1597
|
-
accessList?: import("viem").AccessList | undefined;
|
|
1598
|
-
blobVersionedHashes?: undefined;
|
|
1599
|
-
blockHash?: `0x${string}` | null | undefined;
|
|
1600
|
-
blockNumber?: `0x${string}` | null | undefined;
|
|
1601
|
-
hash?: `0x${string}` | undefined;
|
|
1602
|
-
input?: `0x${string}` | undefined;
|
|
1603
|
-
transactionIndex?: `0x${string}` | null | undefined;
|
|
1604
|
-
chainId?: `0x${string}` | undefined;
|
|
1605
|
-
} & import("viem/chains").Omit<import("viem/chains").PartialBy<{
|
|
738
|
+
} | {
|
|
1606
739
|
blockHash: `0x${string}` | null;
|
|
1607
|
-
blockNumber:
|
|
740
|
+
blockNumber: bigint | null;
|
|
1608
741
|
from: `0x${string}`;
|
|
1609
|
-
gas:
|
|
742
|
+
gas: bigint;
|
|
1610
743
|
hash: `0x${string}`;
|
|
1611
744
|
input: `0x${string}`;
|
|
1612
|
-
nonce:
|
|
745
|
+
nonce: number;
|
|
1613
746
|
r: `0x${string}`;
|
|
1614
747
|
s: `0x${string}`;
|
|
1615
748
|
to: `0x${string}` | null;
|
|
1616
|
-
transactionIndex:
|
|
749
|
+
transactionIndex: number | null;
|
|
1617
750
|
typeHex: `0x${string}` | null;
|
|
1618
|
-
v:
|
|
1619
|
-
value:
|
|
1620
|
-
yParity:
|
|
1621
|
-
|
|
751
|
+
v: bigint;
|
|
752
|
+
value: bigint;
|
|
753
|
+
yParity: number;
|
|
754
|
+
accessList: import("viem").AccessList;
|
|
755
|
+
authorizationList?: undefined;
|
|
756
|
+
blobVersionedHashes?: undefined;
|
|
757
|
+
chainId: number;
|
|
758
|
+
type: "eip2930";
|
|
759
|
+
gasPrice: bigint;
|
|
1622
760
|
maxFeePerBlobGas?: undefined;
|
|
1623
761
|
maxFeePerGas?: undefined;
|
|
1624
762
|
maxPriorityFeePerGas?: undefined;
|
|
1625
|
-
accessList: import("viem").AccessList;
|
|
1626
|
-
blobVersionedHashes?: undefined;
|
|
1627
|
-
chainId: `0x${string}`;
|
|
1628
|
-
type: "0x1";
|
|
1629
|
-
}, "yParity">, "typeHex"> & {
|
|
1630
763
|
isSystemTx?: undefined;
|
|
1631
764
|
mint?: undefined;
|
|
1632
765
|
sourceHash?: undefined;
|
|
1633
|
-
}
|
|
1634
|
-
r?: `0x${string}` | undefined;
|
|
1635
|
-
s?: `0x${string}` | undefined;
|
|
1636
|
-
v?: `0x${string}` | undefined;
|
|
1637
|
-
yParity?: `0x${string}` | undefined;
|
|
1638
|
-
gasPrice?: `0x${string}` | undefined;
|
|
1639
|
-
maxFeePerBlobGas?: `0x${string}` | undefined;
|
|
1640
|
-
maxFeePerGas?: `0x${string}` | undefined;
|
|
1641
|
-
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
|
1642
|
-
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
|
|
1643
|
-
to?: `0x${string}` | null | undefined;
|
|
1644
|
-
from?: `0x${string}` | undefined;
|
|
1645
|
-
gas?: `0x${string}` | undefined;
|
|
1646
|
-
nonce?: `0x${string}` | undefined;
|
|
1647
|
-
value?: `0x${string}` | undefined;
|
|
1648
|
-
accessList?: import("viem").AccessList | undefined;
|
|
1649
|
-
blobVersionedHashes?: undefined;
|
|
1650
|
-
blockHash?: `0x${string}` | null | undefined;
|
|
1651
|
-
blockNumber?: `0x${string}` | null | undefined;
|
|
1652
|
-
hash?: `0x${string}` | undefined;
|
|
1653
|
-
input?: `0x${string}` | undefined;
|
|
1654
|
-
transactionIndex?: `0x${string}` | null | undefined;
|
|
1655
|
-
chainId?: `0x${string}` | undefined;
|
|
1656
|
-
} & import("viem/chains").Omit<import("viem/chains").PartialBy<{
|
|
766
|
+
} | {
|
|
1657
767
|
blockHash: `0x${string}` | null;
|
|
1658
|
-
blockNumber:
|
|
768
|
+
blockNumber: bigint | null;
|
|
1659
769
|
from: `0x${string}`;
|
|
1660
|
-
gas:
|
|
770
|
+
gas: bigint;
|
|
1661
771
|
hash: `0x${string}`;
|
|
1662
772
|
input: `0x${string}`;
|
|
1663
|
-
nonce:
|
|
773
|
+
nonce: number;
|
|
1664
774
|
r: `0x${string}`;
|
|
1665
775
|
s: `0x${string}`;
|
|
1666
776
|
to: `0x${string}` | null;
|
|
1667
|
-
transactionIndex:
|
|
777
|
+
transactionIndex: number | null;
|
|
1668
778
|
typeHex: `0x${string}` | null;
|
|
1669
|
-
v:
|
|
1670
|
-
value:
|
|
1671
|
-
yParity:
|
|
1672
|
-
gasPrice?: undefined;
|
|
1673
|
-
maxFeePerBlobGas?: undefined;
|
|
1674
|
-
maxFeePerGas: `0x${string}`;
|
|
1675
|
-
maxPriorityFeePerGas: `0x${string}`;
|
|
779
|
+
v: bigint;
|
|
780
|
+
value: bigint;
|
|
781
|
+
yParity: number;
|
|
1676
782
|
accessList: import("viem").AccessList;
|
|
783
|
+
authorizationList?: undefined;
|
|
1677
784
|
blobVersionedHashes?: undefined;
|
|
1678
|
-
chainId:
|
|
1679
|
-
type: "
|
|
1680
|
-
|
|
785
|
+
chainId: number;
|
|
786
|
+
type: "eip1559";
|
|
787
|
+
gasPrice?: undefined;
|
|
788
|
+
maxFeePerBlobGas?: undefined;
|
|
789
|
+
maxFeePerGas: bigint;
|
|
790
|
+
maxPriorityFeePerGas: bigint;
|
|
1681
791
|
isSystemTx?: undefined;
|
|
1682
792
|
mint?: undefined;
|
|
1683
793
|
sourceHash?: undefined;
|
|
1684
|
-
}) | ({
|
|
1685
|
-
r?: `0x${string}` | undefined;
|
|
1686
|
-
s?: `0x${string}` | undefined;
|
|
1687
|
-
v?: `0x${string}` | undefined;
|
|
1688
|
-
yParity?: `0x${string}` | undefined;
|
|
1689
|
-
gasPrice?: `0x${string}` | undefined;
|
|
1690
|
-
maxFeePerBlobGas?: `0x${string}` | undefined;
|
|
1691
|
-
maxFeePerGas?: `0x${string}` | undefined;
|
|
1692
|
-
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
|
1693
|
-
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
|
|
1694
|
-
to?: `0x${string}` | null | undefined;
|
|
1695
|
-
from?: `0x${string}` | undefined;
|
|
1696
|
-
gas?: `0x${string}` | undefined;
|
|
1697
|
-
nonce?: `0x${string}` | undefined;
|
|
1698
|
-
value?: `0x${string}` | undefined;
|
|
1699
|
-
accessList?: import("viem").AccessList | undefined;
|
|
1700
|
-
blobVersionedHashes?: undefined;
|
|
1701
|
-
blockHash?: `0x${string}` | null | undefined;
|
|
1702
|
-
blockNumber?: `0x${string}` | null | undefined;
|
|
1703
|
-
hash?: `0x${string}` | undefined;
|
|
1704
|
-
input?: `0x${string}` | undefined;
|
|
1705
|
-
transactionIndex?: `0x${string}` | null | undefined;
|
|
1706
|
-
chainId?: `0x${string}` | undefined;
|
|
1707
|
-
} & Omit<import("viem").TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & import("viem").FeeValuesEIP1559<`0x${string}`> & {
|
|
1708
|
-
isSystemTx?: boolean | undefined;
|
|
1709
|
-
mint?: `0x${string}` | undefined;
|
|
1710
|
-
sourceHash: `0x${string}`;
|
|
1711
|
-
type: "0x7e";
|
|
1712
|
-
}) | ({
|
|
1713
|
-
r?: `0x${string}` | undefined;
|
|
1714
|
-
s?: `0x${string}` | undefined;
|
|
1715
|
-
v?: `0x${string}` | undefined;
|
|
1716
|
-
yParity?: `0x${string}` | undefined;
|
|
1717
|
-
gasPrice?: `0x${string}` | undefined;
|
|
1718
|
-
maxFeePerBlobGas?: `0x${string}` | undefined;
|
|
1719
|
-
maxFeePerGas?: `0x${string}` | undefined;
|
|
1720
|
-
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
|
1721
|
-
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
|
|
1722
|
-
to?: `0x${string}` | null | undefined;
|
|
1723
|
-
from?: `0x${string}` | undefined;
|
|
1724
|
-
gas?: `0x${string}` | undefined;
|
|
1725
|
-
nonce?: `0x${string}` | undefined;
|
|
1726
|
-
value?: `0x${string}` | undefined;
|
|
1727
|
-
accessList?: import("viem").AccessList | undefined;
|
|
1728
|
-
blobVersionedHashes?: undefined;
|
|
1729
|
-
blockHash?: `0x${string}` | null | undefined;
|
|
1730
|
-
blockNumber?: `0x${string}` | null | undefined;
|
|
1731
|
-
hash?: `0x${string}` | undefined;
|
|
1732
|
-
input?: `0x${string}` | undefined;
|
|
1733
|
-
transactionIndex?: `0x${string}` | null | undefined;
|
|
1734
|
-
chainId?: `0x${string}` | undefined;
|
|
1735
|
-
} & import("viem/chains").Omit<import("viem/chains").PartialBy<{
|
|
1736
|
-
r: `0x${string}`;
|
|
1737
|
-
s: `0x${string}`;
|
|
1738
|
-
v: `0x${string}`;
|
|
1739
|
-
to: `0x${string}` | null;
|
|
1740
|
-
from: `0x${string}`;
|
|
1741
|
-
gas: `0x${string}`;
|
|
1742
|
-
nonce: `0x${string}`;
|
|
1743
|
-
value: `0x${string}`;
|
|
1744
|
-
blockHash: `0x${string}` | null;
|
|
1745
|
-
blockNumber: `0x${string}` | null;
|
|
1746
|
-
hash: `0x${string}`;
|
|
1747
|
-
input: `0x${string}`;
|
|
1748
|
-
transactionIndex: `0x${string}` | null;
|
|
1749
|
-
typeHex: `0x${string}` | null;
|
|
1750
|
-
gasPrice: `0x${string}`;
|
|
1751
|
-
maxFeePerBlobGas?: undefined;
|
|
1752
|
-
maxFeePerGas?: undefined;
|
|
1753
|
-
maxPriorityFeePerGas?: undefined;
|
|
1754
|
-
accessList?: undefined;
|
|
1755
|
-
blobVersionedHashes?: undefined;
|
|
1756
|
-
chainId?: `0x${string}` | undefined;
|
|
1757
|
-
yParity?: undefined;
|
|
1758
|
-
type: "0x0";
|
|
1759
|
-
}, "yParity">, "typeHex"> & {
|
|
1760
|
-
isSystemTx?: undefined;
|
|
1761
|
-
mint?: undefined;
|
|
1762
|
-
sourceHash?: undefined;
|
|
1763
|
-
}) | ({
|
|
1764
|
-
r?: `0x${string}` | undefined;
|
|
1765
|
-
s?: `0x${string}` | undefined;
|
|
1766
|
-
v?: `0x${string}` | undefined;
|
|
1767
|
-
yParity?: `0x${string}` | undefined;
|
|
1768
|
-
gasPrice?: `0x${string}` | undefined;
|
|
1769
|
-
maxFeePerBlobGas?: `0x${string}` | undefined;
|
|
1770
|
-
maxFeePerGas?: `0x${string}` | undefined;
|
|
1771
|
-
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
|
1772
|
-
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
|
|
1773
|
-
to?: `0x${string}` | null | undefined;
|
|
1774
|
-
from?: `0x${string}` | undefined;
|
|
1775
|
-
gas?: `0x${string}` | undefined;
|
|
1776
|
-
nonce?: `0x${string}` | undefined;
|
|
1777
|
-
value?: `0x${string}` | undefined;
|
|
1778
|
-
accessList?: import("viem").AccessList | undefined;
|
|
1779
|
-
blobVersionedHashes?: undefined;
|
|
1780
|
-
blockHash?: `0x${string}` | null | undefined;
|
|
1781
|
-
blockNumber?: `0x${string}` | null | undefined;
|
|
1782
|
-
hash?: `0x${string}` | undefined;
|
|
1783
|
-
input?: `0x${string}` | undefined;
|
|
1784
|
-
transactionIndex?: `0x${string}` | null | undefined;
|
|
1785
|
-
chainId?: `0x${string}` | undefined;
|
|
1786
|
-
} & import("viem/chains").Omit<import("viem/chains").PartialBy<{
|
|
1787
|
-
blockHash: `0x${string}` | null;
|
|
1788
|
-
blockNumber: `0x${string}` | null;
|
|
1789
|
-
from: `0x${string}`;
|
|
1790
|
-
gas: `0x${string}`;
|
|
1791
|
-
hash: `0x${string}`;
|
|
1792
|
-
input: `0x${string}`;
|
|
1793
|
-
nonce: `0x${string}`;
|
|
1794
|
-
r: `0x${string}`;
|
|
1795
|
-
s: `0x${string}`;
|
|
1796
|
-
to: `0x${string}` | null;
|
|
1797
|
-
transactionIndex: `0x${string}` | null;
|
|
1798
|
-
typeHex: `0x${string}` | null;
|
|
1799
|
-
v: `0x${string}`;
|
|
1800
|
-
value: `0x${string}`;
|
|
1801
|
-
yParity: `0x${string}`;
|
|
1802
|
-
gasPrice: `0x${string}`;
|
|
1803
|
-
maxFeePerBlobGas?: undefined;
|
|
1804
|
-
maxFeePerGas?: undefined;
|
|
1805
|
-
maxPriorityFeePerGas?: undefined;
|
|
1806
|
-
accessList: import("viem").AccessList;
|
|
1807
|
-
blobVersionedHashes?: undefined;
|
|
1808
|
-
chainId: `0x${string}`;
|
|
1809
|
-
type: "0x1";
|
|
1810
|
-
}, "yParity">, "typeHex"> & {
|
|
1811
|
-
isSystemTx?: undefined;
|
|
1812
|
-
mint?: undefined;
|
|
1813
|
-
sourceHash?: undefined;
|
|
1814
|
-
}) | ({
|
|
1815
|
-
r?: `0x${string}` | undefined;
|
|
1816
|
-
s?: `0x${string}` | undefined;
|
|
1817
|
-
v?: `0x${string}` | undefined;
|
|
1818
|
-
yParity?: `0x${string}` | undefined;
|
|
1819
|
-
gasPrice?: `0x${string}` | undefined;
|
|
1820
|
-
maxFeePerBlobGas?: `0x${string}` | undefined;
|
|
1821
|
-
maxFeePerGas?: `0x${string}` | undefined;
|
|
1822
|
-
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
|
1823
|
-
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
|
|
1824
|
-
to?: `0x${string}` | null | undefined;
|
|
1825
|
-
from?: `0x${string}` | undefined;
|
|
1826
|
-
gas?: `0x${string}` | undefined;
|
|
1827
|
-
nonce?: `0x${string}` | undefined;
|
|
1828
|
-
value?: `0x${string}` | undefined;
|
|
1829
|
-
accessList?: import("viem").AccessList | undefined;
|
|
1830
|
-
blobVersionedHashes?: undefined;
|
|
1831
|
-
blockHash?: `0x${string}` | null | undefined;
|
|
1832
|
-
blockNumber?: `0x${string}` | null | undefined;
|
|
1833
|
-
hash?: `0x${string}` | undefined;
|
|
1834
|
-
input?: `0x${string}` | undefined;
|
|
1835
|
-
transactionIndex?: `0x${string}` | null | undefined;
|
|
1836
|
-
chainId?: `0x${string}` | undefined;
|
|
1837
|
-
} & import("viem/chains").Omit<import("viem/chains").PartialBy<{
|
|
1838
|
-
blockHash: `0x${string}` | null;
|
|
1839
|
-
blockNumber: `0x${string}` | null;
|
|
1840
|
-
from: `0x${string}`;
|
|
1841
|
-
gas: `0x${string}`;
|
|
1842
|
-
hash: `0x${string}`;
|
|
1843
|
-
input: `0x${string}`;
|
|
1844
|
-
nonce: `0x${string}`;
|
|
1845
|
-
r: `0x${string}`;
|
|
1846
|
-
s: `0x${string}`;
|
|
1847
|
-
to: `0x${string}` | null;
|
|
1848
|
-
transactionIndex: `0x${string}` | null;
|
|
1849
|
-
typeHex: `0x${string}` | null;
|
|
1850
|
-
v: `0x${string}`;
|
|
1851
|
-
value: `0x${string}`;
|
|
1852
|
-
yParity: `0x${string}`;
|
|
1853
|
-
gasPrice?: undefined;
|
|
1854
|
-
maxFeePerBlobGas?: undefined;
|
|
1855
|
-
maxFeePerGas: `0x${string}`;
|
|
1856
|
-
maxPriorityFeePerGas: `0x${string}`;
|
|
1857
|
-
accessList: import("viem").AccessList;
|
|
1858
|
-
blobVersionedHashes?: undefined;
|
|
1859
|
-
chainId: `0x${string}`;
|
|
1860
|
-
type: "0x2";
|
|
1861
|
-
}, "yParity">, "typeHex"> & {
|
|
1862
|
-
isSystemTx?: undefined;
|
|
1863
|
-
mint?: undefined;
|
|
1864
|
-
sourceHash?: undefined;
|
|
1865
|
-
}) | ({
|
|
1866
|
-
r?: `0x${string}` | undefined;
|
|
1867
|
-
s?: `0x${string}` | undefined;
|
|
1868
|
-
v?: `0x${string}` | undefined;
|
|
1869
|
-
yParity?: `0x${string}` | undefined;
|
|
1870
|
-
gasPrice?: `0x${string}` | undefined;
|
|
1871
|
-
maxFeePerBlobGas?: `0x${string}` | undefined;
|
|
1872
|
-
maxFeePerGas?: `0x${string}` | undefined;
|
|
1873
|
-
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
|
1874
|
-
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
|
|
1875
|
-
to?: `0x${string}` | null | undefined;
|
|
1876
|
-
from?: `0x${string}` | undefined;
|
|
1877
|
-
gas?: `0x${string}` | undefined;
|
|
1878
|
-
nonce?: `0x${string}` | undefined;
|
|
1879
|
-
value?: `0x${string}` | undefined;
|
|
1880
|
-
accessList?: import("viem").AccessList | undefined;
|
|
1881
|
-
blobVersionedHashes?: undefined;
|
|
1882
|
-
blockHash?: `0x${string}` | null | undefined;
|
|
1883
|
-
blockNumber?: `0x${string}` | null | undefined;
|
|
1884
|
-
hash?: `0x${string}` | undefined;
|
|
1885
|
-
input?: `0x${string}` | undefined;
|
|
1886
|
-
transactionIndex?: `0x${string}` | null | undefined;
|
|
1887
|
-
chainId?: `0x${string}` | undefined;
|
|
1888
|
-
} & Omit<import("viem").TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & import("viem").FeeValuesEIP1559<`0x${string}`> & {
|
|
1889
|
-
isSystemTx?: boolean | undefined;
|
|
1890
|
-
mint?: `0x${string}` | undefined;
|
|
1891
|
-
sourceHash: `0x${string}`;
|
|
1892
|
-
type: "0x7e";
|
|
1893
|
-
}) | ({
|
|
1894
|
-
r?: `0x${string}` | undefined;
|
|
1895
|
-
s?: `0x${string}` | undefined;
|
|
1896
|
-
v?: `0x${string}` | undefined;
|
|
1897
|
-
yParity?: `0x${string}` | undefined;
|
|
1898
|
-
gasPrice?: `0x${string}` | undefined;
|
|
1899
|
-
maxFeePerBlobGas?: `0x${string}` | undefined;
|
|
1900
|
-
maxFeePerGas?: `0x${string}` | undefined;
|
|
1901
|
-
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
|
1902
|
-
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | 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
|
-
accessList?: import("viem").AccessList | undefined;
|
|
1909
|
-
blobVersionedHashes?: readonly `0x${string}`[] | 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
|
-
chainId?: `0x${string}` | undefined;
|
|
1916
|
-
} & import("viem/chains").Omit<import("viem/chains").PartialBy<{
|
|
1917
|
-
r: `0x${string}`;
|
|
1918
|
-
s: `0x${string}`;
|
|
1919
|
-
v: `0x${string}`;
|
|
1920
|
-
to: `0x${string}` | null;
|
|
1921
|
-
from: `0x${string}`;
|
|
1922
|
-
gas: `0x${string}`;
|
|
1923
|
-
nonce: `0x${string}`;
|
|
1924
|
-
value: `0x${string}`;
|
|
1925
|
-
blockHash: `0x${string}` | null;
|
|
1926
|
-
blockNumber: `0x${string}` | null;
|
|
1927
|
-
hash: `0x${string}`;
|
|
1928
|
-
input: `0x${string}`;
|
|
1929
|
-
transactionIndex: `0x${string}` | null;
|
|
1930
|
-
typeHex: `0x${string}` | null;
|
|
1931
|
-
gasPrice: `0x${string}`;
|
|
1932
|
-
maxFeePerBlobGas?: undefined;
|
|
1933
|
-
maxFeePerGas?: undefined;
|
|
1934
|
-
maxPriorityFeePerGas?: undefined;
|
|
1935
|
-
accessList?: undefined;
|
|
1936
|
-
blobVersionedHashes?: undefined;
|
|
1937
|
-
chainId?: `0x${string}` | undefined;
|
|
1938
|
-
yParity?: undefined;
|
|
1939
|
-
type: "0x0";
|
|
1940
|
-
}, "yParity">, "typeHex"> & {
|
|
1941
|
-
isSystemTx?: undefined;
|
|
1942
|
-
mint?: undefined;
|
|
1943
|
-
sourceHash?: undefined;
|
|
1944
|
-
}) | ({
|
|
1945
|
-
r?: `0x${string}` | undefined;
|
|
1946
|
-
s?: `0x${string}` | undefined;
|
|
1947
|
-
v?: `0x${string}` | undefined;
|
|
1948
|
-
yParity?: `0x${string}` | undefined;
|
|
1949
|
-
gasPrice?: `0x${string}` | undefined;
|
|
1950
|
-
maxFeePerBlobGas?: `0x${string}` | undefined;
|
|
1951
|
-
maxFeePerGas?: `0x${string}` | undefined;
|
|
1952
|
-
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
|
1953
|
-
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
|
|
1954
|
-
to?: `0x${string}` | null | undefined;
|
|
1955
|
-
from?: `0x${string}` | undefined;
|
|
1956
|
-
gas?: `0x${string}` | undefined;
|
|
1957
|
-
nonce?: `0x${string}` | undefined;
|
|
1958
|
-
value?: `0x${string}` | undefined;
|
|
1959
|
-
accessList?: import("viem").AccessList | undefined;
|
|
1960
|
-
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
1961
|
-
blockHash?: `0x${string}` | null | undefined;
|
|
1962
|
-
blockNumber?: `0x${string}` | null | undefined;
|
|
1963
|
-
hash?: `0x${string}` | undefined;
|
|
1964
|
-
input?: `0x${string}` | undefined;
|
|
1965
|
-
transactionIndex?: `0x${string}` | null | undefined;
|
|
1966
|
-
chainId?: `0x${string}` | undefined;
|
|
1967
|
-
} & import("viem/chains").Omit<import("viem/chains").PartialBy<{
|
|
1968
|
-
blockHash: `0x${string}` | null;
|
|
1969
|
-
blockNumber: `0x${string}` | null;
|
|
1970
|
-
from: `0x${string}`;
|
|
1971
|
-
gas: `0x${string}`;
|
|
1972
|
-
hash: `0x${string}`;
|
|
1973
|
-
input: `0x${string}`;
|
|
1974
|
-
nonce: `0x${string}`;
|
|
1975
|
-
r: `0x${string}`;
|
|
1976
|
-
s: `0x${string}`;
|
|
1977
|
-
to: `0x${string}` | null;
|
|
1978
|
-
transactionIndex: `0x${string}` | null;
|
|
1979
|
-
typeHex: `0x${string}` | null;
|
|
1980
|
-
v: `0x${string}`;
|
|
1981
|
-
value: `0x${string}`;
|
|
1982
|
-
yParity: `0x${string}`;
|
|
1983
|
-
gasPrice: `0x${string}`;
|
|
1984
|
-
maxFeePerBlobGas?: undefined;
|
|
1985
|
-
maxFeePerGas?: undefined;
|
|
1986
|
-
maxPriorityFeePerGas?: undefined;
|
|
1987
|
-
accessList: import("viem").AccessList;
|
|
1988
|
-
blobVersionedHashes?: undefined;
|
|
1989
|
-
chainId: `0x${string}`;
|
|
1990
|
-
type: "0x1";
|
|
1991
|
-
}, "yParity">, "typeHex"> & {
|
|
1992
|
-
isSystemTx?: undefined;
|
|
1993
|
-
mint?: undefined;
|
|
1994
|
-
sourceHash?: undefined;
|
|
1995
|
-
}) | ({
|
|
1996
|
-
r?: `0x${string}` | undefined;
|
|
1997
|
-
s?: `0x${string}` | undefined;
|
|
1998
|
-
v?: `0x${string}` | undefined;
|
|
1999
|
-
yParity?: `0x${string}` | undefined;
|
|
2000
|
-
gasPrice?: `0x${string}` | undefined;
|
|
2001
|
-
maxFeePerBlobGas?: `0x${string}` | undefined;
|
|
2002
|
-
maxFeePerGas?: `0x${string}` | undefined;
|
|
2003
|
-
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
|
2004
|
-
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
|
|
2005
|
-
to?: `0x${string}` | null | undefined;
|
|
2006
|
-
from?: `0x${string}` | undefined;
|
|
2007
|
-
gas?: `0x${string}` | undefined;
|
|
2008
|
-
nonce?: `0x${string}` | undefined;
|
|
2009
|
-
value?: `0x${string}` | undefined;
|
|
2010
|
-
accessList?: import("viem").AccessList | undefined;
|
|
2011
|
-
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
2012
|
-
blockHash?: `0x${string}` | null | undefined;
|
|
2013
|
-
blockNumber?: `0x${string}` | null | undefined;
|
|
2014
|
-
hash?: `0x${string}` | undefined;
|
|
2015
|
-
input?: `0x${string}` | undefined;
|
|
2016
|
-
transactionIndex?: `0x${string}` | null | undefined;
|
|
2017
|
-
chainId?: `0x${string}` | undefined;
|
|
2018
|
-
} & import("viem/chains").Omit<import("viem/chains").PartialBy<{
|
|
2019
|
-
blockHash: `0x${string}` | null;
|
|
2020
|
-
blockNumber: `0x${string}` | null;
|
|
2021
|
-
from: `0x${string}`;
|
|
2022
|
-
gas: `0x${string}`;
|
|
2023
|
-
hash: `0x${string}`;
|
|
2024
|
-
input: `0x${string}`;
|
|
2025
|
-
nonce: `0x${string}`;
|
|
2026
|
-
r: `0x${string}`;
|
|
2027
|
-
s: `0x${string}`;
|
|
2028
|
-
to: `0x${string}` | null;
|
|
2029
|
-
transactionIndex: `0x${string}` | null;
|
|
2030
|
-
typeHex: `0x${string}` | null;
|
|
2031
|
-
v: `0x${string}`;
|
|
2032
|
-
value: `0x${string}`;
|
|
2033
|
-
yParity: `0x${string}`;
|
|
2034
|
-
gasPrice?: undefined;
|
|
2035
|
-
maxFeePerBlobGas?: undefined;
|
|
2036
|
-
maxFeePerGas: `0x${string}`;
|
|
2037
|
-
maxPriorityFeePerGas: `0x${string}`;
|
|
2038
|
-
accessList: import("viem").AccessList;
|
|
2039
|
-
blobVersionedHashes?: undefined;
|
|
2040
|
-
chainId: `0x${string}`;
|
|
2041
|
-
type: "0x2";
|
|
2042
|
-
}, "yParity">, "typeHex"> & {
|
|
2043
|
-
isSystemTx?: undefined;
|
|
2044
|
-
mint?: undefined;
|
|
2045
|
-
sourceHash?: undefined;
|
|
2046
|
-
}) | ({
|
|
2047
|
-
r?: `0x${string}` | undefined;
|
|
2048
|
-
s?: `0x${string}` | undefined;
|
|
2049
|
-
v?: `0x${string}` | undefined;
|
|
2050
|
-
yParity?: `0x${string}` | undefined;
|
|
2051
|
-
gasPrice?: `0x${string}` | undefined;
|
|
2052
|
-
maxFeePerBlobGas?: `0x${string}` | undefined;
|
|
2053
|
-
maxFeePerGas?: `0x${string}` | undefined;
|
|
2054
|
-
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
|
2055
|
-
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
|
|
2056
|
-
to?: `0x${string}` | null | undefined;
|
|
2057
|
-
from?: `0x${string}` | undefined;
|
|
2058
|
-
gas?: `0x${string}` | undefined;
|
|
2059
|
-
nonce?: `0x${string}` | undefined;
|
|
2060
|
-
value?: `0x${string}` | undefined;
|
|
2061
|
-
accessList?: import("viem").AccessList | undefined;
|
|
2062
|
-
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
2063
|
-
blockHash?: `0x${string}` | null | undefined;
|
|
2064
|
-
blockNumber?: `0x${string}` | null | undefined;
|
|
2065
|
-
hash?: `0x${string}` | undefined;
|
|
2066
|
-
input?: `0x${string}` | undefined;
|
|
2067
|
-
transactionIndex?: `0x${string}` | null | undefined;
|
|
2068
|
-
chainId?: `0x${string}` | undefined;
|
|
2069
|
-
} & import("viem/chains").Omit<import("viem/chains").PartialBy<{
|
|
2070
|
-
blockHash: `0x${string}` | null;
|
|
2071
|
-
blockNumber: `0x${string}` | null;
|
|
2072
|
-
from: `0x${string}`;
|
|
2073
|
-
gas: `0x${string}`;
|
|
2074
|
-
hash: `0x${string}`;
|
|
2075
|
-
input: `0x${string}`;
|
|
2076
|
-
nonce: `0x${string}`;
|
|
2077
|
-
r: `0x${string}`;
|
|
2078
|
-
s: `0x${string}`;
|
|
2079
|
-
to: `0x${string}` | null;
|
|
2080
|
-
transactionIndex: `0x${string}` | null;
|
|
2081
|
-
typeHex: `0x${string}` | null;
|
|
2082
|
-
v: `0x${string}`;
|
|
2083
|
-
value: `0x${string}`;
|
|
2084
|
-
yParity: `0x${string}`;
|
|
2085
|
-
gasPrice?: undefined;
|
|
2086
|
-
maxFeePerBlobGas: `0x${string}`;
|
|
2087
|
-
maxFeePerGas: `0x${string}`;
|
|
2088
|
-
maxPriorityFeePerGas: `0x${string}`;
|
|
2089
|
-
accessList: import("viem").AccessList;
|
|
2090
|
-
blobVersionedHashes: readonly `0x${string}`[];
|
|
2091
|
-
chainId: `0x${string}`;
|
|
2092
|
-
type: "0x3";
|
|
2093
|
-
}, "yParity">, "typeHex"> & {
|
|
2094
|
-
isSystemTx?: undefined;
|
|
2095
|
-
mint?: undefined;
|
|
2096
|
-
sourceHash?: undefined;
|
|
2097
|
-
}) | ({
|
|
2098
|
-
r?: `0x${string}` | undefined;
|
|
2099
|
-
s?: `0x${string}` | undefined;
|
|
2100
|
-
v?: `0x${string}` | undefined;
|
|
2101
|
-
yParity?: `0x${string}` | undefined;
|
|
2102
|
-
gasPrice?: `0x${string}` | undefined;
|
|
2103
|
-
maxFeePerBlobGas?: `0x${string}` | undefined;
|
|
2104
|
-
maxFeePerGas?: `0x${string}` | undefined;
|
|
2105
|
-
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
|
2106
|
-
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
|
|
2107
|
-
to?: `0x${string}` | null | undefined;
|
|
2108
|
-
from?: `0x${string}` | undefined;
|
|
2109
|
-
gas?: `0x${string}` | undefined;
|
|
2110
|
-
nonce?: `0x${string}` | undefined;
|
|
2111
|
-
value?: `0x${string}` | undefined;
|
|
2112
|
-
accessList?: import("viem").AccessList | undefined;
|
|
2113
|
-
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
2114
|
-
blockHash?: `0x${string}` | null | undefined;
|
|
2115
|
-
blockNumber?: `0x${string}` | null | undefined;
|
|
2116
|
-
hash?: `0x${string}` | undefined;
|
|
2117
|
-
input?: `0x${string}` | undefined;
|
|
2118
|
-
transactionIndex?: `0x${string}` | null | undefined;
|
|
2119
|
-
chainId?: `0x${string}` | undefined;
|
|
2120
|
-
} & Omit<import("viem").TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & import("viem").FeeValuesEIP1559<`0x${string}`> & {
|
|
2121
|
-
isSystemTx?: boolean | undefined;
|
|
2122
|
-
mint?: `0x${string}` | undefined;
|
|
2123
|
-
sourceHash: `0x${string}`;
|
|
2124
|
-
type: "0x7e";
|
|
2125
|
-
})) => {
|
|
2126
|
-
r: `0x${string}`;
|
|
2127
|
-
s: `0x${string}`;
|
|
2128
|
-
v: bigint;
|
|
2129
|
-
to: `0x${string}` | null;
|
|
2130
|
-
from: `0x${string}`;
|
|
2131
|
-
gas: bigint;
|
|
2132
|
-
nonce: number;
|
|
2133
|
-
value: bigint;
|
|
2134
|
-
blockHash: `0x${string}` | null;
|
|
2135
|
-
blockNumber: bigint | null;
|
|
2136
|
-
hash: `0x${string}`;
|
|
2137
|
-
input: `0x${string}`;
|
|
2138
|
-
transactionIndex: number | null;
|
|
2139
|
-
typeHex: `0x${string}` | null;
|
|
2140
|
-
gasPrice: bigint;
|
|
2141
|
-
maxFeePerBlobGas?: undefined;
|
|
2142
|
-
maxFeePerGas?: undefined;
|
|
2143
|
-
maxPriorityFeePerGas?: undefined;
|
|
2144
|
-
accessList?: undefined;
|
|
2145
|
-
blobVersionedHashes?: undefined;
|
|
2146
|
-
chainId?: number | undefined;
|
|
2147
|
-
yParity?: undefined;
|
|
2148
|
-
type: "legacy";
|
|
2149
|
-
isSystemTx?: undefined;
|
|
2150
|
-
mint?: undefined;
|
|
2151
|
-
sourceHash?: undefined;
|
|
2152
|
-
} | {
|
|
2153
|
-
r: `0x${string}`;
|
|
2154
|
-
s: `0x${string}`;
|
|
2155
|
-
v: bigint;
|
|
2156
|
-
to: `0x${string}` | null;
|
|
2157
|
-
from: `0x${string}`;
|
|
2158
|
-
gas: bigint;
|
|
2159
|
-
nonce: number;
|
|
2160
|
-
value: bigint;
|
|
2161
|
-
blockHash: `0x${string}` | null;
|
|
2162
|
-
blockNumber: bigint | null;
|
|
2163
|
-
hash: `0x${string}`;
|
|
2164
|
-
input: `0x${string}`;
|
|
2165
|
-
transactionIndex: number | null;
|
|
2166
|
-
typeHex: `0x${string}` | null;
|
|
2167
|
-
gasPrice: undefined;
|
|
2168
|
-
maxFeePerBlobGas?: undefined;
|
|
2169
|
-
maxFeePerGas: bigint;
|
|
2170
|
-
maxPriorityFeePerGas: bigint;
|
|
2171
|
-
accessList?: undefined;
|
|
2172
|
-
blobVersionedHashes?: undefined;
|
|
2173
|
-
chainId?: number | undefined;
|
|
2174
|
-
yParity: number;
|
|
2175
|
-
type: "deposit";
|
|
2176
|
-
isSystemTx?: boolean | undefined;
|
|
2177
|
-
mint?: bigint | undefined;
|
|
2178
|
-
sourceHash: `0x${string}`;
|
|
2179
|
-
} | {
|
|
2180
|
-
blockHash: `0x${string}` | null;
|
|
2181
|
-
blockNumber: bigint | null;
|
|
2182
|
-
from: `0x${string}`;
|
|
2183
|
-
gas: bigint;
|
|
2184
|
-
hash: `0x${string}`;
|
|
2185
|
-
input: `0x${string}`;
|
|
2186
|
-
nonce: number;
|
|
2187
|
-
r: `0x${string}`;
|
|
2188
|
-
s: `0x${string}`;
|
|
2189
|
-
to: `0x${string}` | null;
|
|
2190
|
-
transactionIndex: number | null;
|
|
2191
|
-
typeHex: `0x${string}` | null;
|
|
2192
|
-
v: bigint;
|
|
2193
|
-
value: bigint;
|
|
2194
|
-
yParity: number;
|
|
2195
|
-
gasPrice: bigint;
|
|
2196
|
-
maxFeePerBlobGas?: undefined;
|
|
2197
|
-
maxFeePerGas?: undefined;
|
|
2198
|
-
maxPriorityFeePerGas?: undefined;
|
|
2199
|
-
accessList: import("viem").AccessList;
|
|
2200
|
-
blobVersionedHashes?: undefined;
|
|
2201
|
-
chainId: number;
|
|
2202
|
-
type: "eip2930";
|
|
2203
|
-
isSystemTx?: undefined;
|
|
2204
|
-
mint?: undefined;
|
|
2205
|
-
sourceHash?: undefined;
|
|
2206
|
-
} | {
|
|
2207
|
-
blockHash: `0x${string}` | null;
|
|
2208
|
-
blockNumber: bigint | null;
|
|
2209
|
-
from: `0x${string}`;
|
|
2210
|
-
gas: bigint;
|
|
2211
|
-
hash: `0x${string}`;
|
|
2212
|
-
input: `0x${string}`;
|
|
2213
|
-
nonce: number;
|
|
2214
|
-
r: `0x${string}`;
|
|
2215
|
-
s: `0x${string}`;
|
|
2216
|
-
to: `0x${string}` | null;
|
|
2217
|
-
transactionIndex: number | null;
|
|
2218
|
-
typeHex: `0x${string}` | null;
|
|
2219
|
-
v: bigint;
|
|
2220
|
-
value: bigint;
|
|
2221
|
-
yParity: number;
|
|
2222
|
-
gasPrice: undefined;
|
|
2223
|
-
maxFeePerBlobGas?: undefined;
|
|
2224
|
-
maxFeePerGas: bigint;
|
|
2225
|
-
maxPriorityFeePerGas: bigint;
|
|
2226
|
-
accessList: import("viem").AccessList;
|
|
2227
|
-
blobVersionedHashes?: undefined;
|
|
2228
|
-
chainId: number;
|
|
2229
|
-
type: "eip1559";
|
|
2230
|
-
isSystemTx?: undefined;
|
|
2231
|
-
mint?: undefined;
|
|
2232
|
-
sourceHash?: undefined;
|
|
2233
|
-
} | {
|
|
2234
|
-
blockHash: `0x${string}` | null;
|
|
2235
|
-
blockNumber: bigint | null;
|
|
2236
|
-
from: `0x${string}`;
|
|
2237
|
-
gas: bigint;
|
|
2238
|
-
hash: `0x${string}`;
|
|
2239
|
-
input: `0x${string}`;
|
|
2240
|
-
nonce: number;
|
|
2241
|
-
r: `0x${string}`;
|
|
2242
|
-
s: `0x${string}`;
|
|
2243
|
-
to: `0x${string}` | null;
|
|
2244
|
-
transactionIndex: number | null;
|
|
2245
|
-
typeHex: `0x${string}` | null;
|
|
2246
|
-
v: bigint;
|
|
2247
|
-
value: bigint;
|
|
2248
|
-
yParity: number;
|
|
2249
|
-
gasPrice: undefined;
|
|
2250
|
-
maxFeePerBlobGas?: undefined;
|
|
2251
|
-
maxFeePerGas: bigint;
|
|
2252
|
-
maxPriorityFeePerGas: bigint;
|
|
2253
|
-
accessList: import("viem").AccessList;
|
|
2254
|
-
blobVersionedHashes?: undefined;
|
|
2255
|
-
chainId: number;
|
|
2256
|
-
type: "deposit";
|
|
2257
|
-
isSystemTx?: boolean | undefined;
|
|
2258
|
-
mint?: bigint | undefined;
|
|
2259
|
-
sourceHash: `0x${string}`;
|
|
2260
794
|
} | {
|
|
2261
795
|
blockHash: `0x${string}` | null;
|
|
2262
796
|
blockNumber: bigint | null;
|
|
@@ -2273,41 +807,15 @@ export declare const TESTNET_CHAIN_VIEM: {
|
|
|
2273
807
|
v: bigint;
|
|
2274
808
|
value: bigint;
|
|
2275
809
|
yParity: number;
|
|
2276
|
-
gasPrice: bigint;
|
|
2277
|
-
maxFeePerBlobGas?: undefined;
|
|
2278
|
-
maxFeePerGas: undefined;
|
|
2279
|
-
maxPriorityFeePerGas: undefined;
|
|
2280
810
|
accessList: import("viem").AccessList;
|
|
2281
|
-
|
|
811
|
+
authorizationList?: undefined;
|
|
812
|
+
blobVersionedHashes: readonly `0x${string}`[];
|
|
2282
813
|
chainId: number;
|
|
2283
|
-
type: "
|
|
2284
|
-
isSystemTx?: undefined;
|
|
2285
|
-
mint?: undefined;
|
|
2286
|
-
sourceHash?: undefined;
|
|
2287
|
-
} | {
|
|
2288
|
-
blockHash: `0x${string}` | null;
|
|
2289
|
-
blockNumber: bigint | null;
|
|
2290
|
-
from: `0x${string}`;
|
|
2291
|
-
gas: bigint;
|
|
2292
|
-
hash: `0x${string}`;
|
|
2293
|
-
input: `0x${string}`;
|
|
2294
|
-
nonce: number;
|
|
2295
|
-
r: `0x${string}`;
|
|
2296
|
-
s: `0x${string}`;
|
|
2297
|
-
to: `0x${string}` | null;
|
|
2298
|
-
transactionIndex: number | null;
|
|
2299
|
-
typeHex: `0x${string}` | null;
|
|
2300
|
-
v: bigint;
|
|
2301
|
-
value: bigint;
|
|
2302
|
-
yParity: number;
|
|
814
|
+
type: "eip4844";
|
|
2303
815
|
gasPrice?: undefined;
|
|
2304
|
-
maxFeePerBlobGas
|
|
816
|
+
maxFeePerBlobGas: bigint;
|
|
2305
817
|
maxFeePerGas: bigint;
|
|
2306
818
|
maxPriorityFeePerGas: bigint;
|
|
2307
|
-
accessList: import("viem").AccessList;
|
|
2308
|
-
blobVersionedHashes?: undefined;
|
|
2309
|
-
chainId: number;
|
|
2310
|
-
type: "eip1559";
|
|
2311
819
|
isSystemTx?: undefined;
|
|
2312
820
|
mint?: undefined;
|
|
2313
821
|
sourceHash?: undefined;
|
|
@@ -2327,77 +835,24 @@ export declare const TESTNET_CHAIN_VIEM: {
|
|
|
2327
835
|
v: bigint;
|
|
2328
836
|
value: bigint;
|
|
2329
837
|
yParity: number;
|
|
2330
|
-
gasPrice?: undefined;
|
|
2331
|
-
maxFeePerBlobGas?: undefined;
|
|
2332
|
-
maxFeePerGas: bigint;
|
|
2333
|
-
maxPriorityFeePerGas: bigint;
|
|
2334
838
|
accessList: import("viem").AccessList;
|
|
839
|
+
authorizationList: import("viem/experimental").SignedAuthorizationList<number>;
|
|
2335
840
|
blobVersionedHashes?: undefined;
|
|
2336
841
|
chainId: number;
|
|
2337
|
-
type: "
|
|
2338
|
-
isSystemTx?: boolean | undefined;
|
|
2339
|
-
mint?: bigint | undefined;
|
|
2340
|
-
sourceHash: `0x${string}`;
|
|
2341
|
-
} | {
|
|
2342
|
-
blockHash: `0x${string}` | null;
|
|
2343
|
-
blockNumber: bigint | null;
|
|
2344
|
-
from: `0x${string}`;
|
|
2345
|
-
gas: bigint;
|
|
2346
|
-
hash: `0x${string}`;
|
|
2347
|
-
input: `0x${string}`;
|
|
2348
|
-
nonce: number;
|
|
2349
|
-
r: `0x${string}`;
|
|
2350
|
-
s: `0x${string}`;
|
|
2351
|
-
to: `0x${string}` | null;
|
|
2352
|
-
transactionIndex: number | null;
|
|
2353
|
-
typeHex: `0x${string}` | null;
|
|
2354
|
-
v: bigint;
|
|
2355
|
-
value: bigint;
|
|
2356
|
-
yParity: number;
|
|
842
|
+
type: "eip7702";
|
|
2357
843
|
gasPrice?: undefined;
|
|
2358
|
-
maxFeePerBlobGas
|
|
844
|
+
maxFeePerBlobGas?: undefined;
|
|
2359
845
|
maxFeePerGas: bigint;
|
|
2360
846
|
maxPriorityFeePerGas: bigint;
|
|
2361
|
-
accessList: import("viem").AccessList;
|
|
2362
|
-
blobVersionedHashes: readonly `0x${string}`[];
|
|
2363
|
-
chainId: number;
|
|
2364
|
-
type: "eip4844";
|
|
2365
847
|
isSystemTx?: undefined;
|
|
2366
848
|
mint?: undefined;
|
|
2367
849
|
sourceHash?: undefined;
|
|
2368
|
-
} | {
|
|
2369
|
-
blockHash: `0x${string}` | null;
|
|
2370
|
-
blockNumber: bigint | null;
|
|
2371
|
-
from: `0x${string}`;
|
|
2372
|
-
gas: bigint;
|
|
2373
|
-
hash: `0x${string}`;
|
|
2374
|
-
input: `0x${string}`;
|
|
2375
|
-
nonce: number;
|
|
2376
|
-
r: `0x${string}`;
|
|
2377
|
-
s: `0x${string}`;
|
|
2378
|
-
to: `0x${string}` | null;
|
|
2379
|
-
transactionIndex: number | null;
|
|
2380
|
-
typeHex: `0x${string}` | null;
|
|
2381
|
-
v: bigint;
|
|
2382
|
-
value: bigint;
|
|
2383
|
-
yParity: number;
|
|
2384
|
-
gasPrice?: undefined;
|
|
2385
|
-
maxFeePerBlobGas: undefined;
|
|
2386
|
-
maxFeePerGas: bigint;
|
|
2387
|
-
maxPriorityFeePerGas: bigint;
|
|
2388
|
-
accessList: import("viem").AccessList;
|
|
2389
|
-
blobVersionedHashes: readonly `0x${string}`[];
|
|
2390
|
-
chainId: number;
|
|
2391
|
-
type: "deposit";
|
|
2392
|
-
isSystemTx?: boolean | undefined;
|
|
2393
|
-
mint?: bigint | undefined;
|
|
2394
|
-
sourceHash: `0x${string}`;
|
|
2395
850
|
};
|
|
2396
851
|
type: "transaction";
|
|
2397
852
|
};
|
|
2398
853
|
readonly transactionReceipt: {
|
|
2399
854
|
exclude: [] | undefined;
|
|
2400
|
-
format: (args: import("viem/chains").
|
|
855
|
+
format: (args: import("viem/chains").OpStackRpcTransactionReceipt) => {
|
|
2401
856
|
blobGasPrice?: bigint | undefined;
|
|
2402
857
|
blobGasUsed?: bigint | undefined;
|
|
2403
858
|
blockHash: `0x${string}`;
|
|
@@ -2426,7 +881,6 @@ export declare const TESTNET_CHAIN_VIEM: {
|
|
|
2426
881
|
serializers: {
|
|
2427
882
|
readonly transaction: typeof import("viem/chains").serializeTransactionOpStack;
|
|
2428
883
|
};
|
|
2429
|
-
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
2430
884
|
readonly network: "base-sepolia";
|
|
2431
885
|
};
|
|
2432
886
|
readonly 3: {
|
|
@@ -2434,7 +888,7 @@ export declare const TESTNET_CHAIN_VIEM: {
|
|
|
2434
888
|
readonly default: {
|
|
2435
889
|
readonly name: "BscScan";
|
|
2436
890
|
readonly url: "https://testnet.bscscan.com";
|
|
2437
|
-
readonly apiUrl: "https://testnet.bscscan.com/api";
|
|
891
|
+
readonly apiUrl: "https://api-testnet.bscscan.com/api";
|
|
2438
892
|
};
|
|
2439
893
|
};
|
|
2440
894
|
contracts: {
|
|
@@ -2447,53 +901,85 @@ export declare const TESTNET_CHAIN_VIEM: {
|
|
|
2447
901
|
name: "Binance Smart Chain Testnet";
|
|
2448
902
|
nativeCurrency: {
|
|
2449
903
|
readonly decimals: 18;
|
|
2450
|
-
readonly name: "BNB";
|
|
2451
|
-
readonly symbol: "tBNB";
|
|
904
|
+
readonly name: "BNB";
|
|
905
|
+
readonly symbol: "tBNB";
|
|
906
|
+
};
|
|
907
|
+
rpcUrls: {
|
|
908
|
+
readonly default: {
|
|
909
|
+
readonly http: readonly ["https://data-seed-prebsc-1-s1.bnbchain.org:8545"];
|
|
910
|
+
};
|
|
911
|
+
};
|
|
912
|
+
sourceId?: number | undefined;
|
|
913
|
+
testnet: true;
|
|
914
|
+
custom?: Record<string, unknown> | undefined;
|
|
915
|
+
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
916
|
+
formatters?: undefined;
|
|
917
|
+
serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable<bigint, number>> | undefined;
|
|
918
|
+
};
|
|
919
|
+
readonly 8: {
|
|
920
|
+
blockExplorers: {
|
|
921
|
+
readonly default: {
|
|
922
|
+
readonly name: "Arbiscan";
|
|
923
|
+
readonly url: "https://sepolia.arbiscan.io";
|
|
924
|
+
readonly apiUrl: "https://api-sepolia.arbiscan.io/api";
|
|
925
|
+
};
|
|
926
|
+
};
|
|
927
|
+
contracts: {
|
|
928
|
+
readonly multicall3: {
|
|
929
|
+
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
930
|
+
readonly blockCreated: 81930;
|
|
931
|
+
};
|
|
932
|
+
};
|
|
933
|
+
id: 421614;
|
|
934
|
+
name: "Arbitrum Sepolia";
|
|
935
|
+
nativeCurrency: {
|
|
936
|
+
readonly name: "Arbitrum Sepolia Ether";
|
|
937
|
+
readonly symbol: "ETH";
|
|
938
|
+
readonly decimals: 18;
|
|
2452
939
|
};
|
|
2453
940
|
rpcUrls: {
|
|
2454
941
|
readonly default: {
|
|
2455
|
-
readonly http: readonly ["https://
|
|
942
|
+
readonly http: readonly ["https://sepolia-rollup.arbitrum.io/rpc"];
|
|
2456
943
|
};
|
|
2457
944
|
};
|
|
2458
945
|
sourceId?: number | undefined;
|
|
2459
946
|
testnet: true;
|
|
2460
947
|
custom?: Record<string, unknown> | undefined;
|
|
2461
|
-
formatters?: undefined;
|
|
2462
|
-
serializers?: import("viem").ChainSerializers<undefined> | undefined;
|
|
2463
948
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
949
|
+
formatters?: undefined;
|
|
950
|
+
serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable<bigint, number>> | undefined;
|
|
2464
951
|
};
|
|
2465
|
-
readonly
|
|
952
|
+
readonly 10: {
|
|
2466
953
|
blockExplorers: {
|
|
2467
954
|
readonly default: {
|
|
2468
|
-
readonly name: "
|
|
2469
|
-
readonly url: "https://
|
|
2470
|
-
readonly apiUrl: "https://api-sepolia.arbiscan.io/api";
|
|
955
|
+
readonly name: "Monad Testnet explorer";
|
|
956
|
+
readonly url: "https://testnet.monadexplorer.com";
|
|
2471
957
|
};
|
|
2472
958
|
};
|
|
2473
959
|
contracts: {
|
|
2474
960
|
readonly multicall3: {
|
|
2475
|
-
readonly address: "
|
|
2476
|
-
readonly blockCreated:
|
|
961
|
+
readonly address: "0xcA11bde05977b3631167028862bE2a173976CA11";
|
|
962
|
+
readonly blockCreated: 251449;
|
|
2477
963
|
};
|
|
2478
964
|
};
|
|
2479
|
-
id:
|
|
2480
|
-
name: "
|
|
965
|
+
id: 10143;
|
|
966
|
+
name: "Monad Testnet";
|
|
2481
967
|
nativeCurrency: {
|
|
2482
|
-
readonly name: "
|
|
2483
|
-
readonly symbol: "
|
|
968
|
+
readonly name: "Testnet MON Token";
|
|
969
|
+
readonly symbol: "MON";
|
|
2484
970
|
readonly decimals: 18;
|
|
2485
971
|
};
|
|
2486
972
|
rpcUrls: {
|
|
2487
973
|
readonly default: {
|
|
2488
|
-
readonly http: readonly ["https://
|
|
974
|
+
readonly http: readonly ["https://testnet-rpc.monad.xyz"];
|
|
2489
975
|
};
|
|
2490
976
|
};
|
|
2491
977
|
sourceId?: number | undefined;
|
|
2492
978
|
testnet: true;
|
|
2493
979
|
custom?: Record<string, unknown> | undefined;
|
|
2494
|
-
formatters?: undefined;
|
|
2495
|
-
serializers?: import("viem").ChainSerializers<undefined> | undefined;
|
|
2496
980
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
981
|
+
formatters?: undefined;
|
|
982
|
+
serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable<bigint, number>> | undefined;
|
|
2497
983
|
};
|
|
2498
984
|
};
|
|
2499
985
|
export declare const CHAIN_VIEM: {
|
|
@@ -2526,9 +1012,9 @@ export declare const CHAIN_VIEM: {
|
|
|
2526
1012
|
sourceId?: number | undefined;
|
|
2527
1013
|
testnet: true;
|
|
2528
1014
|
custom?: Record<string, unknown> | undefined;
|
|
2529
|
-
formatters?: undefined;
|
|
2530
|
-
serializers?: import("viem").ChainSerializers<undefined> | undefined;
|
|
2531
1015
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
1016
|
+
formatters?: undefined;
|
|
1017
|
+
serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable<bigint, number>> | undefined;
|
|
2532
1018
|
};
|
|
2533
1019
|
readonly 6: {
|
|
2534
1020
|
blockExplorers: {
|
|
@@ -2560,15 +1046,15 @@ export declare const CHAIN_VIEM: {
|
|
|
2560
1046
|
};
|
|
2561
1047
|
rpcUrls: {
|
|
2562
1048
|
readonly default: {
|
|
2563
|
-
readonly http: readonly ["https://
|
|
1049
|
+
readonly http: readonly ["https://sepolia.drpc.org"];
|
|
2564
1050
|
};
|
|
2565
1051
|
};
|
|
2566
1052
|
sourceId?: number | undefined;
|
|
2567
1053
|
testnet: true;
|
|
2568
1054
|
custom?: Record<string, unknown> | undefined;
|
|
2569
|
-
formatters?: undefined;
|
|
2570
|
-
serializers?: import("viem").ChainSerializers<undefined> | undefined;
|
|
2571
1055
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
1056
|
+
formatters?: undefined;
|
|
1057
|
+
serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable<bigint, number>> | undefined;
|
|
2572
1058
|
};
|
|
2573
1059
|
readonly 7: {
|
|
2574
1060
|
blockExplorers: {
|
|
@@ -2579,6 +1065,11 @@ export declare const CHAIN_VIEM: {
|
|
|
2579
1065
|
};
|
|
2580
1066
|
};
|
|
2581
1067
|
contracts: {
|
|
1068
|
+
readonly disputeGameFactory: {
|
|
1069
|
+
readonly 11155111: {
|
|
1070
|
+
readonly address: "0xd6E6dBf4F7EA0ac412fD8b65ED297e64BB7a06E1";
|
|
1071
|
+
};
|
|
1072
|
+
};
|
|
2582
1073
|
readonly l2OutputOracle: {
|
|
2583
1074
|
readonly 11155111: {
|
|
2584
1075
|
readonly address: "0x84457ca9D0163FbC4bbfe4Dfbb20ba46e48DF254";
|
|
@@ -2602,749 +1093,100 @@ export declare const CHAIN_VIEM: {
|
|
|
2602
1093
|
};
|
|
2603
1094
|
readonly gasPriceOracle: {
|
|
2604
1095
|
readonly address: "0x420000000000000000000000000000000000000F";
|
|
2605
|
-
};
|
|
2606
|
-
readonly l1Block: {
|
|
2607
|
-
readonly address: "0x4200000000000000000000000000000000000015";
|
|
2608
|
-
};
|
|
2609
|
-
readonly l2CrossDomainMessenger: {
|
|
2610
|
-
readonly address: "0x4200000000000000000000000000000000000007";
|
|
2611
|
-
};
|
|
2612
|
-
readonly l2Erc721Bridge: {
|
|
2613
|
-
readonly address: "0x4200000000000000000000000000000000000014";
|
|
2614
|
-
};
|
|
2615
|
-
readonly l2StandardBridge: {
|
|
2616
|
-
readonly address: "0x4200000000000000000000000000000000000010";
|
|
2617
|
-
};
|
|
2618
|
-
readonly l2ToL1MessagePasser: {
|
|
2619
|
-
readonly address: "0x4200000000000000000000000000000000000016";
|
|
2620
|
-
};
|
|
2621
|
-
};
|
|
2622
|
-
id: 84532;
|
|
2623
|
-
name: "Base Sepolia";
|
|
2624
|
-
nativeCurrency: {
|
|
2625
|
-
readonly name: "Sepolia Ether";
|
|
2626
|
-
readonly symbol: "ETH";
|
|
2627
|
-
readonly decimals: 18;
|
|
2628
|
-
};
|
|
2629
|
-
rpcUrls: {
|
|
2630
|
-
readonly default: {
|
|
2631
|
-
readonly http: readonly ["https://sepolia.base.org"];
|
|
2632
|
-
};
|
|
2633
|
-
};
|
|
2634
|
-
sourceId: 11155111;
|
|
2635
|
-
testnet: true;
|
|
2636
|
-
custom?: Record<string, unknown> | undefined;
|
|
2637
|
-
|
|
2638
|
-
|
|
2639
|
-
|
|
2640
|
-
|
|
2641
|
-
|
|
2642
|
-
|
|
2643
|
-
|
|
2644
|
-
|
|
2645
|
-
|
|
2646
|
-
|
|
2647
|
-
|
|
2648
|
-
|
|
2649
|
-
|
|
2650
|
-
|
|
2651
|
-
|
|
2652
|
-
|
|
2653
|
-
|
|
2654
|
-
|
|
2655
|
-
|
|
2656
|
-
parentHash: `0x${string}`;
|
|
2657
|
-
receiptsRoot: `0x${string}`;
|
|
2658
|
-
sealFields: `0x${string}`[];
|
|
2659
|
-
sha3Uncles: `0x${string}`;
|
|
2660
|
-
size: bigint;
|
|
2661
|
-
stateRoot: `0x${string}`;
|
|
2662
|
-
timestamp: bigint;
|
|
2663
|
-
totalDifficulty: bigint | null;
|
|
2664
|
-
transactions: `0x${string}`[] | import("viem/chains").OpStackTransaction<boolean>[];
|
|
2665
|
-
transactionsRoot: `0x${string}`;
|
|
2666
|
-
uncles: `0x${string}`[];
|
|
2667
|
-
withdrawals?: import("viem").Withdrawal[] | undefined;
|
|
2668
|
-
withdrawalsRoot?: `0x${string}` | undefined;
|
|
2669
|
-
};
|
|
2670
|
-
type: "block";
|
|
2671
|
-
};
|
|
2672
|
-
readonly transaction: {
|
|
2673
|
-
exclude: [] | undefined;
|
|
2674
|
-
format: (args: ({
|
|
2675
|
-
r?: `0x${string}` | undefined;
|
|
2676
|
-
s?: `0x${string}` | undefined;
|
|
2677
|
-
v?: `0x${string}` | undefined;
|
|
2678
|
-
yParity?: `0x${string}` | undefined;
|
|
2679
|
-
gasPrice?: `0x${string}` | undefined;
|
|
2680
|
-
maxFeePerBlobGas?: `0x${string}` | undefined;
|
|
2681
|
-
maxFeePerGas?: `0x${string}` | undefined;
|
|
2682
|
-
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
|
2683
|
-
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
|
|
2684
|
-
to?: `0x${string}` | null | undefined;
|
|
2685
|
-
from?: `0x${string}` | undefined;
|
|
2686
|
-
gas?: `0x${string}` | undefined;
|
|
2687
|
-
nonce?: `0x${string}` | undefined;
|
|
2688
|
-
value?: `0x${string}` | undefined;
|
|
2689
|
-
accessList?: undefined;
|
|
2690
|
-
blobVersionedHashes?: undefined;
|
|
2691
|
-
blockHash?: `0x${string}` | null | undefined;
|
|
2692
|
-
blockNumber?: `0x${string}` | null | undefined;
|
|
2693
|
-
hash?: `0x${string}` | undefined;
|
|
2694
|
-
input?: `0x${string}` | undefined;
|
|
2695
|
-
transactionIndex?: `0x${string}` | null | undefined;
|
|
2696
|
-
chainId?: `0x${string}` | undefined;
|
|
2697
|
-
} & import("viem/chains").Omit<import("viem/chains").PartialBy<{
|
|
2698
|
-
r: `0x${string}`;
|
|
2699
|
-
s: `0x${string}`;
|
|
2700
|
-
v: `0x${string}`;
|
|
2701
|
-
to: `0x${string}` | null;
|
|
2702
|
-
from: `0x${string}`;
|
|
2703
|
-
gas: `0x${string}`;
|
|
2704
|
-
nonce: `0x${string}`;
|
|
2705
|
-
value: `0x${string}`;
|
|
2706
|
-
blockHash: `0x${string}` | null;
|
|
2707
|
-
blockNumber: `0x${string}` | null;
|
|
2708
|
-
hash: `0x${string}`;
|
|
2709
|
-
input: `0x${string}`;
|
|
2710
|
-
transactionIndex: `0x${string}` | null;
|
|
2711
|
-
typeHex: `0x${string}` | null;
|
|
2712
|
-
gasPrice: `0x${string}`;
|
|
2713
|
-
maxFeePerBlobGas?: undefined;
|
|
2714
|
-
maxFeePerGas?: undefined;
|
|
2715
|
-
maxPriorityFeePerGas?: undefined;
|
|
2716
|
-
accessList?: undefined;
|
|
2717
|
-
blobVersionedHashes?: undefined;
|
|
2718
|
-
chainId?: `0x${string}` | undefined;
|
|
2719
|
-
yParity?: undefined;
|
|
2720
|
-
type: "0x0";
|
|
2721
|
-
}, "yParity">, "typeHex"> & {
|
|
2722
|
-
isSystemTx?: undefined;
|
|
2723
|
-
mint?: undefined;
|
|
2724
|
-
sourceHash?: undefined;
|
|
2725
|
-
}) | ({
|
|
2726
|
-
r?: `0x${string}` | undefined;
|
|
2727
|
-
s?: `0x${string}` | undefined;
|
|
2728
|
-
v?: `0x${string}` | undefined;
|
|
2729
|
-
yParity?: `0x${string}` | undefined;
|
|
2730
|
-
gasPrice?: `0x${string}` | undefined;
|
|
2731
|
-
maxFeePerBlobGas?: `0x${string}` | undefined;
|
|
2732
|
-
maxFeePerGas?: `0x${string}` | undefined;
|
|
2733
|
-
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
|
2734
|
-
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
|
|
2735
|
-
to?: `0x${string}` | null | undefined;
|
|
2736
|
-
from?: `0x${string}` | undefined;
|
|
2737
|
-
gas?: `0x${string}` | undefined;
|
|
2738
|
-
nonce?: `0x${string}` | undefined;
|
|
2739
|
-
value?: `0x${string}` | undefined;
|
|
2740
|
-
accessList?: undefined;
|
|
2741
|
-
blobVersionedHashes?: undefined;
|
|
2742
|
-
blockHash?: `0x${string}` | null | undefined;
|
|
2743
|
-
blockNumber?: `0x${string}` | null | undefined;
|
|
2744
|
-
hash?: `0x${string}` | undefined;
|
|
2745
|
-
input?: `0x${string}` | undefined;
|
|
2746
|
-
transactionIndex?: `0x${string}` | null | undefined;
|
|
2747
|
-
chainId?: `0x${string}` | undefined;
|
|
2748
|
-
} & Omit<import("viem").TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & import("viem").FeeValuesEIP1559<`0x${string}`> & {
|
|
2749
|
-
isSystemTx?: boolean | undefined;
|
|
2750
|
-
mint?: `0x${string}` | undefined;
|
|
2751
|
-
sourceHash: `0x${string}`;
|
|
2752
|
-
type: "0x7e";
|
|
2753
|
-
}) | ({
|
|
2754
|
-
r?: `0x${string}` | undefined;
|
|
2755
|
-
s?: `0x${string}` | undefined;
|
|
2756
|
-
v?: `0x${string}` | undefined;
|
|
2757
|
-
yParity?: `0x${string}` | undefined;
|
|
2758
|
-
gasPrice?: `0x${string}` | undefined;
|
|
2759
|
-
maxFeePerBlobGas?: `0x${string}` | undefined;
|
|
2760
|
-
maxFeePerGas?: `0x${string}` | undefined;
|
|
2761
|
-
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
|
2762
|
-
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
|
|
2763
|
-
to?: `0x${string}` | null | undefined;
|
|
2764
|
-
from?: `0x${string}` | undefined;
|
|
2765
|
-
gas?: `0x${string}` | undefined;
|
|
2766
|
-
nonce?: `0x${string}` | undefined;
|
|
2767
|
-
value?: `0x${string}` | undefined;
|
|
2768
|
-
accessList?: import("viem").AccessList | undefined;
|
|
2769
|
-
blobVersionedHashes?: undefined;
|
|
2770
|
-
blockHash?: `0x${string}` | null | undefined;
|
|
2771
|
-
blockNumber?: `0x${string}` | null | undefined;
|
|
2772
|
-
hash?: `0x${string}` | undefined;
|
|
2773
|
-
input?: `0x${string}` | undefined;
|
|
2774
|
-
transactionIndex?: `0x${string}` | null | undefined;
|
|
2775
|
-
chainId?: `0x${string}` | undefined;
|
|
2776
|
-
} & import("viem/chains").Omit<import("viem/chains").PartialBy<{
|
|
2777
|
-
r: `0x${string}`;
|
|
2778
|
-
s: `0x${string}`;
|
|
2779
|
-
v: `0x${string}`;
|
|
2780
|
-
to: `0x${string}` | null;
|
|
2781
|
-
from: `0x${string}`;
|
|
2782
|
-
gas: `0x${string}`;
|
|
2783
|
-
nonce: `0x${string}`;
|
|
2784
|
-
value: `0x${string}`;
|
|
2785
|
-
blockHash: `0x${string}` | null;
|
|
2786
|
-
blockNumber: `0x${string}` | null;
|
|
2787
|
-
hash: `0x${string}`;
|
|
2788
|
-
input: `0x${string}`;
|
|
2789
|
-
transactionIndex: `0x${string}` | null;
|
|
2790
|
-
typeHex: `0x${string}` | null;
|
|
2791
|
-
gasPrice: `0x${string}`;
|
|
2792
|
-
maxFeePerBlobGas?: undefined;
|
|
2793
|
-
maxFeePerGas?: undefined;
|
|
2794
|
-
maxPriorityFeePerGas?: undefined;
|
|
2795
|
-
accessList?: undefined;
|
|
2796
|
-
blobVersionedHashes?: undefined;
|
|
2797
|
-
chainId?: `0x${string}` | undefined;
|
|
2798
|
-
yParity?: undefined;
|
|
2799
|
-
type: "0x0";
|
|
2800
|
-
}, "yParity">, "typeHex"> & {
|
|
2801
|
-
isSystemTx?: undefined;
|
|
2802
|
-
mint?: undefined;
|
|
2803
|
-
sourceHash?: undefined;
|
|
2804
|
-
}) | ({
|
|
2805
|
-
r?: `0x${string}` | undefined;
|
|
2806
|
-
s?: `0x${string}` | undefined;
|
|
2807
|
-
v?: `0x${string}` | undefined;
|
|
2808
|
-
yParity?: `0x${string}` | undefined;
|
|
2809
|
-
gasPrice?: `0x${string}` | undefined;
|
|
2810
|
-
maxFeePerBlobGas?: `0x${string}` | undefined;
|
|
2811
|
-
maxFeePerGas?: `0x${string}` | undefined;
|
|
2812
|
-
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
|
2813
|
-
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
|
|
2814
|
-
to?: `0x${string}` | null | undefined;
|
|
2815
|
-
from?: `0x${string}` | undefined;
|
|
2816
|
-
gas?: `0x${string}` | undefined;
|
|
2817
|
-
nonce?: `0x${string}` | undefined;
|
|
2818
|
-
value?: `0x${string}` | undefined;
|
|
2819
|
-
accessList?: import("viem").AccessList | undefined;
|
|
2820
|
-
blobVersionedHashes?: undefined;
|
|
2821
|
-
blockHash?: `0x${string}` | null | undefined;
|
|
2822
|
-
blockNumber?: `0x${string}` | null | undefined;
|
|
2823
|
-
hash?: `0x${string}` | undefined;
|
|
2824
|
-
input?: `0x${string}` | undefined;
|
|
2825
|
-
transactionIndex?: `0x${string}` | null | undefined;
|
|
2826
|
-
chainId?: `0x${string}` | undefined;
|
|
2827
|
-
} & import("viem/chains").Omit<import("viem/chains").PartialBy<{
|
|
2828
|
-
blockHash: `0x${string}` | null;
|
|
2829
|
-
blockNumber: `0x${string}` | null;
|
|
2830
|
-
from: `0x${string}`;
|
|
2831
|
-
gas: `0x${string}`;
|
|
2832
|
-
hash: `0x${string}`;
|
|
2833
|
-
input: `0x${string}`;
|
|
2834
|
-
nonce: `0x${string}`;
|
|
2835
|
-
r: `0x${string}`;
|
|
2836
|
-
s: `0x${string}`;
|
|
2837
|
-
to: `0x${string}` | null;
|
|
2838
|
-
transactionIndex: `0x${string}` | null;
|
|
2839
|
-
typeHex: `0x${string}` | null;
|
|
2840
|
-
v: `0x${string}`;
|
|
2841
|
-
value: `0x${string}`;
|
|
2842
|
-
yParity: `0x${string}`;
|
|
2843
|
-
gasPrice: `0x${string}`;
|
|
2844
|
-
maxFeePerBlobGas?: undefined;
|
|
2845
|
-
maxFeePerGas?: undefined;
|
|
2846
|
-
maxPriorityFeePerGas?: undefined;
|
|
2847
|
-
accessList: import("viem").AccessList;
|
|
2848
|
-
blobVersionedHashes?: undefined;
|
|
2849
|
-
chainId: `0x${string}`;
|
|
2850
|
-
type: "0x1";
|
|
2851
|
-
}, "yParity">, "typeHex"> & {
|
|
2852
|
-
isSystemTx?: undefined;
|
|
2853
|
-
mint?: undefined;
|
|
2854
|
-
sourceHash?: undefined;
|
|
2855
|
-
}) | ({
|
|
2856
|
-
r?: `0x${string}` | undefined;
|
|
2857
|
-
s?: `0x${string}` | undefined;
|
|
2858
|
-
v?: `0x${string}` | undefined;
|
|
2859
|
-
yParity?: `0x${string}` | undefined;
|
|
2860
|
-
gasPrice?: `0x${string}` | undefined;
|
|
2861
|
-
maxFeePerBlobGas?: `0x${string}` | undefined;
|
|
2862
|
-
maxFeePerGas?: `0x${string}` | undefined;
|
|
2863
|
-
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
|
2864
|
-
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
|
|
2865
|
-
to?: `0x${string}` | null | undefined;
|
|
2866
|
-
from?: `0x${string}` | undefined;
|
|
2867
|
-
gas?: `0x${string}` | undefined;
|
|
2868
|
-
nonce?: `0x${string}` | undefined;
|
|
2869
|
-
value?: `0x${string}` | undefined;
|
|
2870
|
-
accessList?: import("viem").AccessList | undefined;
|
|
2871
|
-
blobVersionedHashes?: undefined;
|
|
2872
|
-
blockHash?: `0x${string}` | null | undefined;
|
|
2873
|
-
blockNumber?: `0x${string}` | null | undefined;
|
|
2874
|
-
hash?: `0x${string}` | undefined;
|
|
2875
|
-
input?: `0x${string}` | undefined;
|
|
2876
|
-
transactionIndex?: `0x${string}` | null | undefined;
|
|
2877
|
-
chainId?: `0x${string}` | undefined;
|
|
2878
|
-
} & import("viem/chains").Omit<import("viem/chains").PartialBy<{
|
|
2879
|
-
blockHash: `0x${string}` | null;
|
|
2880
|
-
blockNumber: `0x${string}` | null;
|
|
2881
|
-
from: `0x${string}`;
|
|
2882
|
-
gas: `0x${string}`;
|
|
2883
|
-
hash: `0x${string}`;
|
|
2884
|
-
input: `0x${string}`;
|
|
2885
|
-
nonce: `0x${string}`;
|
|
2886
|
-
r: `0x${string}`;
|
|
2887
|
-
s: `0x${string}`;
|
|
2888
|
-
to: `0x${string}` | null;
|
|
2889
|
-
transactionIndex: `0x${string}` | null;
|
|
2890
|
-
typeHex: `0x${string}` | null;
|
|
2891
|
-
v: `0x${string}`;
|
|
2892
|
-
value: `0x${string}`;
|
|
2893
|
-
yParity: `0x${string}`;
|
|
2894
|
-
gasPrice?: undefined;
|
|
2895
|
-
maxFeePerBlobGas?: undefined;
|
|
2896
|
-
maxFeePerGas: `0x${string}`;
|
|
2897
|
-
maxPriorityFeePerGas: `0x${string}`;
|
|
2898
|
-
accessList: import("viem").AccessList;
|
|
2899
|
-
blobVersionedHashes?: undefined;
|
|
2900
|
-
chainId: `0x${string}`;
|
|
2901
|
-
type: "0x2";
|
|
2902
|
-
}, "yParity">, "typeHex"> & {
|
|
2903
|
-
isSystemTx?: undefined;
|
|
2904
|
-
mint?: undefined;
|
|
2905
|
-
sourceHash?: undefined;
|
|
2906
|
-
}) | ({
|
|
2907
|
-
r?: `0x${string}` | undefined;
|
|
2908
|
-
s?: `0x${string}` | undefined;
|
|
2909
|
-
v?: `0x${string}` | undefined;
|
|
2910
|
-
yParity?: `0x${string}` | undefined;
|
|
2911
|
-
gasPrice?: `0x${string}` | undefined;
|
|
2912
|
-
maxFeePerBlobGas?: `0x${string}` | undefined;
|
|
2913
|
-
maxFeePerGas?: `0x${string}` | undefined;
|
|
2914
|
-
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
|
2915
|
-
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
|
|
2916
|
-
to?: `0x${string}` | null | undefined;
|
|
2917
|
-
from?: `0x${string}` | undefined;
|
|
2918
|
-
gas?: `0x${string}` | undefined;
|
|
2919
|
-
nonce?: `0x${string}` | undefined;
|
|
2920
|
-
value?: `0x${string}` | undefined;
|
|
2921
|
-
accessList?: import("viem").AccessList | undefined;
|
|
2922
|
-
blobVersionedHashes?: undefined;
|
|
2923
|
-
blockHash?: `0x${string}` | null | undefined;
|
|
2924
|
-
blockNumber?: `0x${string}` | null | undefined;
|
|
2925
|
-
hash?: `0x${string}` | undefined;
|
|
2926
|
-
input?: `0x${string}` | undefined;
|
|
2927
|
-
transactionIndex?: `0x${string}` | null | undefined;
|
|
2928
|
-
chainId?: `0x${string}` | undefined;
|
|
2929
|
-
} & Omit<import("viem").TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & import("viem").FeeValuesEIP1559<`0x${string}`> & {
|
|
2930
|
-
isSystemTx?: boolean | undefined;
|
|
2931
|
-
mint?: `0x${string}` | undefined;
|
|
2932
|
-
sourceHash: `0x${string}`;
|
|
2933
|
-
type: "0x7e";
|
|
2934
|
-
}) | ({
|
|
2935
|
-
r?: `0x${string}` | undefined;
|
|
2936
|
-
s?: `0x${string}` | undefined;
|
|
2937
|
-
v?: `0x${string}` | undefined;
|
|
2938
|
-
yParity?: `0x${string}` | undefined;
|
|
2939
|
-
gasPrice?: `0x${string}` | undefined;
|
|
2940
|
-
maxFeePerBlobGas?: `0x${string}` | undefined;
|
|
2941
|
-
maxFeePerGas?: `0x${string}` | undefined;
|
|
2942
|
-
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
|
2943
|
-
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
|
|
2944
|
-
to?: `0x${string}` | null | undefined;
|
|
2945
|
-
from?: `0x${string}` | undefined;
|
|
2946
|
-
gas?: `0x${string}` | undefined;
|
|
2947
|
-
nonce?: `0x${string}` | undefined;
|
|
2948
|
-
value?: `0x${string}` | undefined;
|
|
2949
|
-
accessList?: import("viem").AccessList | undefined;
|
|
2950
|
-
blobVersionedHashes?: undefined;
|
|
2951
|
-
blockHash?: `0x${string}` | null | undefined;
|
|
2952
|
-
blockNumber?: `0x${string}` | null | undefined;
|
|
2953
|
-
hash?: `0x${string}` | undefined;
|
|
2954
|
-
input?: `0x${string}` | undefined;
|
|
2955
|
-
transactionIndex?: `0x${string}` | null | undefined;
|
|
2956
|
-
chainId?: `0x${string}` | undefined;
|
|
2957
|
-
} & import("viem/chains").Omit<import("viem/chains").PartialBy<{
|
|
2958
|
-
r: `0x${string}`;
|
|
2959
|
-
s: `0x${string}`;
|
|
2960
|
-
v: `0x${string}`;
|
|
2961
|
-
to: `0x${string}` | null;
|
|
2962
|
-
from: `0x${string}`;
|
|
2963
|
-
gas: `0x${string}`;
|
|
2964
|
-
nonce: `0x${string}`;
|
|
2965
|
-
value: `0x${string}`;
|
|
2966
|
-
blockHash: `0x${string}` | null;
|
|
2967
|
-
blockNumber: `0x${string}` | null;
|
|
2968
|
-
hash: `0x${string}`;
|
|
2969
|
-
input: `0x${string}`;
|
|
2970
|
-
transactionIndex: `0x${string}` | null;
|
|
2971
|
-
typeHex: `0x${string}` | null;
|
|
2972
|
-
gasPrice: `0x${string}`;
|
|
2973
|
-
maxFeePerBlobGas?: undefined;
|
|
2974
|
-
maxFeePerGas?: undefined;
|
|
2975
|
-
maxPriorityFeePerGas?: undefined;
|
|
2976
|
-
accessList?: undefined;
|
|
2977
|
-
blobVersionedHashes?: undefined;
|
|
2978
|
-
chainId?: `0x${string}` | undefined;
|
|
2979
|
-
yParity?: undefined;
|
|
2980
|
-
type: "0x0";
|
|
2981
|
-
}, "yParity">, "typeHex"> & {
|
|
2982
|
-
isSystemTx?: undefined;
|
|
2983
|
-
mint?: undefined;
|
|
2984
|
-
sourceHash?: undefined;
|
|
2985
|
-
}) | ({
|
|
2986
|
-
r?: `0x${string}` | undefined;
|
|
2987
|
-
s?: `0x${string}` | undefined;
|
|
2988
|
-
v?: `0x${string}` | undefined;
|
|
2989
|
-
yParity?: `0x${string}` | undefined;
|
|
2990
|
-
gasPrice?: `0x${string}` | undefined;
|
|
2991
|
-
maxFeePerBlobGas?: `0x${string}` | undefined;
|
|
2992
|
-
maxFeePerGas?: `0x${string}` | undefined;
|
|
2993
|
-
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
|
2994
|
-
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
|
|
2995
|
-
to?: `0x${string}` | null | undefined;
|
|
2996
|
-
from?: `0x${string}` | undefined;
|
|
2997
|
-
gas?: `0x${string}` | undefined;
|
|
2998
|
-
nonce?: `0x${string}` | undefined;
|
|
2999
|
-
value?: `0x${string}` | undefined;
|
|
3000
|
-
accessList?: import("viem").AccessList | undefined;
|
|
3001
|
-
blobVersionedHashes?: undefined;
|
|
3002
|
-
blockHash?: `0x${string}` | null | undefined;
|
|
3003
|
-
blockNumber?: `0x${string}` | null | undefined;
|
|
3004
|
-
hash?: `0x${string}` | undefined;
|
|
3005
|
-
input?: `0x${string}` | undefined;
|
|
3006
|
-
transactionIndex?: `0x${string}` | null | undefined;
|
|
3007
|
-
chainId?: `0x${string}` | undefined;
|
|
3008
|
-
} & import("viem/chains").Omit<import("viem/chains").PartialBy<{
|
|
3009
|
-
blockHash: `0x${string}` | null;
|
|
3010
|
-
blockNumber: `0x${string}` | null;
|
|
3011
|
-
from: `0x${string}`;
|
|
3012
|
-
gas: `0x${string}`;
|
|
3013
|
-
hash: `0x${string}`;
|
|
3014
|
-
input: `0x${string}`;
|
|
3015
|
-
nonce: `0x${string}`;
|
|
3016
|
-
r: `0x${string}`;
|
|
3017
|
-
s: `0x${string}`;
|
|
3018
|
-
to: `0x${string}` | null;
|
|
3019
|
-
transactionIndex: `0x${string}` | null;
|
|
3020
|
-
typeHex: `0x${string}` | null;
|
|
3021
|
-
v: `0x${string}`;
|
|
3022
|
-
value: `0x${string}`;
|
|
3023
|
-
yParity: `0x${string}`;
|
|
3024
|
-
gasPrice: `0x${string}`;
|
|
3025
|
-
maxFeePerBlobGas?: undefined;
|
|
3026
|
-
maxFeePerGas?: undefined;
|
|
3027
|
-
maxPriorityFeePerGas?: undefined;
|
|
3028
|
-
accessList: import("viem").AccessList;
|
|
3029
|
-
blobVersionedHashes?: undefined;
|
|
3030
|
-
chainId: `0x${string}`;
|
|
3031
|
-
type: "0x1";
|
|
3032
|
-
}, "yParity">, "typeHex"> & {
|
|
3033
|
-
isSystemTx?: undefined;
|
|
3034
|
-
mint?: undefined;
|
|
3035
|
-
sourceHash?: undefined;
|
|
3036
|
-
}) | ({
|
|
3037
|
-
r?: `0x${string}` | undefined;
|
|
3038
|
-
s?: `0x${string}` | undefined;
|
|
3039
|
-
v?: `0x${string}` | undefined;
|
|
3040
|
-
yParity?: `0x${string}` | undefined;
|
|
3041
|
-
gasPrice?: `0x${string}` | undefined;
|
|
3042
|
-
maxFeePerBlobGas?: `0x${string}` | undefined;
|
|
3043
|
-
maxFeePerGas?: `0x${string}` | undefined;
|
|
3044
|
-
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
|
3045
|
-
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
|
|
3046
|
-
to?: `0x${string}` | null | undefined;
|
|
3047
|
-
from?: `0x${string}` | undefined;
|
|
3048
|
-
gas?: `0x${string}` | undefined;
|
|
3049
|
-
nonce?: `0x${string}` | undefined;
|
|
3050
|
-
value?: `0x${string}` | undefined;
|
|
3051
|
-
accessList?: import("viem").AccessList | undefined;
|
|
3052
|
-
blobVersionedHashes?: undefined;
|
|
3053
|
-
blockHash?: `0x${string}` | null | undefined;
|
|
3054
|
-
blockNumber?: `0x${string}` | null | undefined;
|
|
3055
|
-
hash?: `0x${string}` | undefined;
|
|
3056
|
-
input?: `0x${string}` | undefined;
|
|
3057
|
-
transactionIndex?: `0x${string}` | null | undefined;
|
|
3058
|
-
chainId?: `0x${string}` | undefined;
|
|
3059
|
-
} & import("viem/chains").Omit<import("viem/chains").PartialBy<{
|
|
3060
|
-
blockHash: `0x${string}` | null;
|
|
3061
|
-
blockNumber: `0x${string}` | null;
|
|
3062
|
-
from: `0x${string}`;
|
|
3063
|
-
gas: `0x${string}`;
|
|
3064
|
-
hash: `0x${string}`;
|
|
3065
|
-
input: `0x${string}`;
|
|
3066
|
-
nonce: `0x${string}`;
|
|
3067
|
-
r: `0x${string}`;
|
|
3068
|
-
s: `0x${string}`;
|
|
3069
|
-
to: `0x${string}` | null;
|
|
3070
|
-
transactionIndex: `0x${string}` | null;
|
|
3071
|
-
typeHex: `0x${string}` | null;
|
|
3072
|
-
v: `0x${string}`;
|
|
3073
|
-
value: `0x${string}`;
|
|
3074
|
-
yParity: `0x${string}`;
|
|
3075
|
-
gasPrice?: undefined;
|
|
3076
|
-
maxFeePerBlobGas?: undefined;
|
|
3077
|
-
maxFeePerGas: `0x${string}`;
|
|
3078
|
-
maxPriorityFeePerGas: `0x${string}`;
|
|
3079
|
-
accessList: import("viem").AccessList;
|
|
3080
|
-
blobVersionedHashes?: undefined;
|
|
3081
|
-
chainId: `0x${string}`;
|
|
3082
|
-
type: "0x2";
|
|
3083
|
-
}, "yParity">, "typeHex"> & {
|
|
3084
|
-
isSystemTx?: undefined;
|
|
3085
|
-
mint?: undefined;
|
|
3086
|
-
sourceHash?: undefined;
|
|
3087
|
-
}) | ({
|
|
3088
|
-
r?: `0x${string}` | undefined;
|
|
3089
|
-
s?: `0x${string}` | undefined;
|
|
3090
|
-
v?: `0x${string}` | undefined;
|
|
3091
|
-
yParity?: `0x${string}` | undefined;
|
|
3092
|
-
gasPrice?: `0x${string}` | undefined;
|
|
3093
|
-
maxFeePerBlobGas?: `0x${string}` | undefined;
|
|
3094
|
-
maxFeePerGas?: `0x${string}` | undefined;
|
|
3095
|
-
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
|
3096
|
-
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
|
|
3097
|
-
to?: `0x${string}` | null | undefined;
|
|
3098
|
-
from?: `0x${string}` | undefined;
|
|
3099
|
-
gas?: `0x${string}` | undefined;
|
|
3100
|
-
nonce?: `0x${string}` | undefined;
|
|
3101
|
-
value?: `0x${string}` | undefined;
|
|
3102
|
-
accessList?: import("viem").AccessList | undefined;
|
|
3103
|
-
blobVersionedHashes?: undefined;
|
|
3104
|
-
blockHash?: `0x${string}` | null | undefined;
|
|
3105
|
-
blockNumber?: `0x${string}` | null | undefined;
|
|
3106
|
-
hash?: `0x${string}` | undefined;
|
|
3107
|
-
input?: `0x${string}` | undefined;
|
|
3108
|
-
transactionIndex?: `0x${string}` | null | undefined;
|
|
3109
|
-
chainId?: `0x${string}` | undefined;
|
|
3110
|
-
} & Omit<import("viem").TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & import("viem").FeeValuesEIP1559<`0x${string}`> & {
|
|
3111
|
-
isSystemTx?: boolean | undefined;
|
|
3112
|
-
mint?: `0x${string}` | undefined;
|
|
3113
|
-
sourceHash: `0x${string}`;
|
|
3114
|
-
type: "0x7e";
|
|
3115
|
-
}) | ({
|
|
3116
|
-
r?: `0x${string}` | undefined;
|
|
3117
|
-
s?: `0x${string}` | undefined;
|
|
3118
|
-
v?: `0x${string}` | undefined;
|
|
3119
|
-
yParity?: `0x${string}` | undefined;
|
|
3120
|
-
gasPrice?: `0x${string}` | undefined;
|
|
3121
|
-
maxFeePerBlobGas?: `0x${string}` | undefined;
|
|
3122
|
-
maxFeePerGas?: `0x${string}` | undefined;
|
|
3123
|
-
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
|
3124
|
-
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
|
|
3125
|
-
to?: `0x${string}` | null | undefined;
|
|
3126
|
-
from?: `0x${string}` | undefined;
|
|
3127
|
-
gas?: `0x${string}` | undefined;
|
|
3128
|
-
nonce?: `0x${string}` | undefined;
|
|
3129
|
-
value?: `0x${string}` | undefined;
|
|
3130
|
-
accessList?: import("viem").AccessList | undefined;
|
|
3131
|
-
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
3132
|
-
blockHash?: `0x${string}` | null | undefined;
|
|
3133
|
-
blockNumber?: `0x${string}` | null | undefined;
|
|
3134
|
-
hash?: `0x${string}` | undefined;
|
|
3135
|
-
input?: `0x${string}` | undefined;
|
|
3136
|
-
transactionIndex?: `0x${string}` | null | undefined;
|
|
3137
|
-
chainId?: `0x${string}` | undefined;
|
|
3138
|
-
} & import("viem/chains").Omit<import("viem/chains").PartialBy<{
|
|
3139
|
-
r: `0x${string}`;
|
|
3140
|
-
s: `0x${string}`;
|
|
3141
|
-
v: `0x${string}`;
|
|
3142
|
-
to: `0x${string}` | null;
|
|
3143
|
-
from: `0x${string}`;
|
|
3144
|
-
gas: `0x${string}`;
|
|
3145
|
-
nonce: `0x${string}`;
|
|
3146
|
-
value: `0x${string}`;
|
|
3147
|
-
blockHash: `0x${string}` | null;
|
|
3148
|
-
blockNumber: `0x${string}` | null;
|
|
3149
|
-
hash: `0x${string}`;
|
|
3150
|
-
input: `0x${string}`;
|
|
3151
|
-
transactionIndex: `0x${string}` | null;
|
|
3152
|
-
typeHex: `0x${string}` | null;
|
|
3153
|
-
gasPrice: `0x${string}`;
|
|
3154
|
-
maxFeePerBlobGas?: undefined;
|
|
3155
|
-
maxFeePerGas?: undefined;
|
|
3156
|
-
maxPriorityFeePerGas?: undefined;
|
|
3157
|
-
accessList?: undefined;
|
|
3158
|
-
blobVersionedHashes?: undefined;
|
|
3159
|
-
chainId?: `0x${string}` | undefined;
|
|
3160
|
-
yParity?: undefined;
|
|
3161
|
-
type: "0x0";
|
|
3162
|
-
}, "yParity">, "typeHex"> & {
|
|
3163
|
-
isSystemTx?: undefined;
|
|
3164
|
-
mint?: undefined;
|
|
3165
|
-
sourceHash?: undefined;
|
|
3166
|
-
}) | ({
|
|
3167
|
-
r?: `0x${string}` | undefined;
|
|
3168
|
-
s?: `0x${string}` | undefined;
|
|
3169
|
-
v?: `0x${string}` | undefined;
|
|
3170
|
-
yParity?: `0x${string}` | undefined;
|
|
3171
|
-
gasPrice?: `0x${string}` | undefined;
|
|
3172
|
-
maxFeePerBlobGas?: `0x${string}` | undefined;
|
|
3173
|
-
maxFeePerGas?: `0x${string}` | undefined;
|
|
3174
|
-
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
|
3175
|
-
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
|
|
3176
|
-
to?: `0x${string}` | null | undefined;
|
|
3177
|
-
from?: `0x${string}` | undefined;
|
|
3178
|
-
gas?: `0x${string}` | undefined;
|
|
3179
|
-
nonce?: `0x${string}` | undefined;
|
|
3180
|
-
value?: `0x${string}` | undefined;
|
|
3181
|
-
accessList?: import("viem").AccessList | undefined;
|
|
3182
|
-
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
3183
|
-
blockHash?: `0x${string}` | null | undefined;
|
|
3184
|
-
blockNumber?: `0x${string}` | null | undefined;
|
|
3185
|
-
hash?: `0x${string}` | undefined;
|
|
3186
|
-
input?: `0x${string}` | undefined;
|
|
3187
|
-
transactionIndex?: `0x${string}` | null | undefined;
|
|
3188
|
-
chainId?: `0x${string}` | undefined;
|
|
3189
|
-
} & import("viem/chains").Omit<import("viem/chains").PartialBy<{
|
|
3190
|
-
blockHash: `0x${string}` | null;
|
|
3191
|
-
blockNumber: `0x${string}` | null;
|
|
3192
|
-
from: `0x${string}`;
|
|
3193
|
-
gas: `0x${string}`;
|
|
3194
|
-
hash: `0x${string}`;
|
|
3195
|
-
input: `0x${string}`;
|
|
3196
|
-
nonce: `0x${string}`;
|
|
3197
|
-
r: `0x${string}`;
|
|
3198
|
-
s: `0x${string}`;
|
|
3199
|
-
to: `0x${string}` | null;
|
|
3200
|
-
transactionIndex: `0x${string}` | null;
|
|
3201
|
-
typeHex: `0x${string}` | null;
|
|
3202
|
-
v: `0x${string}`;
|
|
3203
|
-
value: `0x${string}`;
|
|
3204
|
-
yParity: `0x${string}`;
|
|
3205
|
-
gasPrice: `0x${string}`;
|
|
3206
|
-
maxFeePerBlobGas?: undefined;
|
|
3207
|
-
maxFeePerGas?: undefined;
|
|
3208
|
-
maxPriorityFeePerGas?: undefined;
|
|
3209
|
-
accessList: import("viem").AccessList;
|
|
3210
|
-
blobVersionedHashes?: undefined;
|
|
3211
|
-
chainId: `0x${string}`;
|
|
3212
|
-
type: "0x1";
|
|
3213
|
-
}, "yParity">, "typeHex"> & {
|
|
3214
|
-
isSystemTx?: undefined;
|
|
3215
|
-
mint?: undefined;
|
|
3216
|
-
sourceHash?: undefined;
|
|
3217
|
-
}) | ({
|
|
3218
|
-
r?: `0x${string}` | undefined;
|
|
3219
|
-
s?: `0x${string}` | undefined;
|
|
3220
|
-
v?: `0x${string}` | undefined;
|
|
3221
|
-
yParity?: `0x${string}` | undefined;
|
|
3222
|
-
gasPrice?: `0x${string}` | undefined;
|
|
3223
|
-
maxFeePerBlobGas?: `0x${string}` | undefined;
|
|
3224
|
-
maxFeePerGas?: `0x${string}` | undefined;
|
|
3225
|
-
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
|
3226
|
-
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
|
|
3227
|
-
to?: `0x${string}` | null | undefined;
|
|
3228
|
-
from?: `0x${string}` | undefined;
|
|
3229
|
-
gas?: `0x${string}` | undefined;
|
|
3230
|
-
nonce?: `0x${string}` | undefined;
|
|
3231
|
-
value?: `0x${string}` | undefined;
|
|
3232
|
-
accessList?: import("viem").AccessList | undefined;
|
|
3233
|
-
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
3234
|
-
blockHash?: `0x${string}` | null | undefined;
|
|
3235
|
-
blockNumber?: `0x${string}` | null | undefined;
|
|
3236
|
-
hash?: `0x${string}` | undefined;
|
|
3237
|
-
input?: `0x${string}` | undefined;
|
|
3238
|
-
transactionIndex?: `0x${string}` | null | undefined;
|
|
3239
|
-
chainId?: `0x${string}` | undefined;
|
|
3240
|
-
} & import("viem/chains").Omit<import("viem/chains").PartialBy<{
|
|
1096
|
+
};
|
|
1097
|
+
readonly l1Block: {
|
|
1098
|
+
readonly address: "0x4200000000000000000000000000000000000015";
|
|
1099
|
+
};
|
|
1100
|
+
readonly l2CrossDomainMessenger: {
|
|
1101
|
+
readonly address: "0x4200000000000000000000000000000000000007";
|
|
1102
|
+
};
|
|
1103
|
+
readonly l2Erc721Bridge: {
|
|
1104
|
+
readonly address: "0x4200000000000000000000000000000000000014";
|
|
1105
|
+
};
|
|
1106
|
+
readonly l2StandardBridge: {
|
|
1107
|
+
readonly address: "0x4200000000000000000000000000000000000010";
|
|
1108
|
+
};
|
|
1109
|
+
readonly l2ToL1MessagePasser: {
|
|
1110
|
+
readonly address: "0x4200000000000000000000000000000000000016";
|
|
1111
|
+
};
|
|
1112
|
+
};
|
|
1113
|
+
id: 84532;
|
|
1114
|
+
name: "Base Sepolia";
|
|
1115
|
+
nativeCurrency: {
|
|
1116
|
+
readonly name: "Sepolia Ether";
|
|
1117
|
+
readonly symbol: "ETH";
|
|
1118
|
+
readonly decimals: 18;
|
|
1119
|
+
};
|
|
1120
|
+
rpcUrls: {
|
|
1121
|
+
readonly default: {
|
|
1122
|
+
readonly http: readonly ["https://sepolia.base.org"];
|
|
1123
|
+
};
|
|
1124
|
+
};
|
|
1125
|
+
sourceId: 11155111;
|
|
1126
|
+
testnet: true;
|
|
1127
|
+
custom?: Record<string, unknown> | undefined;
|
|
1128
|
+
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
1129
|
+
formatters: {
|
|
1130
|
+
readonly block: {
|
|
1131
|
+
exclude: [] | undefined;
|
|
1132
|
+
format: (args: import("viem/chains").OpStackRpcBlock<import("viem").BlockTag, boolean>) => {
|
|
1133
|
+
baseFeePerGas: bigint | null;
|
|
1134
|
+
blobGasUsed: bigint;
|
|
1135
|
+
difficulty: bigint;
|
|
1136
|
+
excessBlobGas: bigint;
|
|
1137
|
+
extraData: `0x${string}`;
|
|
1138
|
+
gasLimit: bigint;
|
|
1139
|
+
gasUsed: bigint;
|
|
1140
|
+
hash: `0x${string}` | null;
|
|
1141
|
+
logsBloom: `0x${string}` | null;
|
|
1142
|
+
miner: `0x${string}`;
|
|
1143
|
+
mixHash: `0x${string}`;
|
|
1144
|
+
nonce: `0x${string}` | null;
|
|
1145
|
+
number: bigint | null;
|
|
1146
|
+
parentBeaconBlockRoot?: `0x${string}` | undefined;
|
|
1147
|
+
parentHash: `0x${string}`;
|
|
1148
|
+
receiptsRoot: `0x${string}`;
|
|
1149
|
+
sealFields: `0x${string}`[];
|
|
1150
|
+
sha3Uncles: `0x${string}`;
|
|
1151
|
+
size: bigint;
|
|
1152
|
+
stateRoot: `0x${string}`;
|
|
1153
|
+
timestamp: bigint;
|
|
1154
|
+
totalDifficulty: bigint | null;
|
|
1155
|
+
transactions: `0x${string}`[] | import("viem/chains").OpStackTransaction<boolean>[];
|
|
1156
|
+
transactionsRoot: `0x${string}`;
|
|
1157
|
+
uncles: `0x${string}`[];
|
|
1158
|
+
withdrawals?: import("viem").Withdrawal[] | undefined;
|
|
1159
|
+
withdrawalsRoot?: `0x${string}` | undefined;
|
|
1160
|
+
};
|
|
1161
|
+
type: "block";
|
|
1162
|
+
};
|
|
1163
|
+
readonly transaction: {
|
|
1164
|
+
exclude: [] | undefined;
|
|
1165
|
+
format: (args: import("viem/chains").OpStackRpcTransaction<boolean>) => {
|
|
3241
1166
|
blockHash: `0x${string}` | null;
|
|
3242
|
-
blockNumber:
|
|
1167
|
+
blockNumber: bigint | null;
|
|
3243
1168
|
from: `0x${string}`;
|
|
3244
|
-
gas:
|
|
1169
|
+
gas: bigint;
|
|
3245
1170
|
hash: `0x${string}`;
|
|
3246
1171
|
input: `0x${string}`;
|
|
3247
|
-
nonce:
|
|
1172
|
+
nonce: number;
|
|
3248
1173
|
r: `0x${string}`;
|
|
3249
1174
|
s: `0x${string}`;
|
|
3250
1175
|
to: `0x${string}` | null;
|
|
3251
|
-
transactionIndex:
|
|
1176
|
+
transactionIndex: number | null;
|
|
3252
1177
|
typeHex: `0x${string}` | null;
|
|
3253
|
-
v:
|
|
3254
|
-
value:
|
|
3255
|
-
yParity:
|
|
1178
|
+
v: bigint;
|
|
1179
|
+
value: bigint;
|
|
1180
|
+
yParity: number;
|
|
3256
1181
|
gasPrice?: undefined;
|
|
3257
1182
|
maxFeePerBlobGas?: undefined;
|
|
3258
|
-
maxFeePerGas:
|
|
3259
|
-
maxPriorityFeePerGas:
|
|
3260
|
-
accessList: import("viem").AccessList;
|
|
3261
|
-
blobVersionedHashes?: undefined;
|
|
3262
|
-
chainId: `0x${string}`;
|
|
3263
|
-
type: "0x2";
|
|
3264
|
-
}, "yParity">, "typeHex"> & {
|
|
3265
|
-
isSystemTx?: undefined;
|
|
3266
|
-
mint?: undefined;
|
|
3267
|
-
sourceHash?: undefined;
|
|
3268
|
-
}) | ({
|
|
3269
|
-
r?: `0x${string}` | undefined;
|
|
3270
|
-
s?: `0x${string}` | undefined;
|
|
3271
|
-
v?: `0x${string}` | undefined;
|
|
3272
|
-
yParity?: `0x${string}` | undefined;
|
|
3273
|
-
gasPrice?: `0x${string}` | undefined;
|
|
3274
|
-
maxFeePerBlobGas?: `0x${string}` | undefined;
|
|
3275
|
-
maxFeePerGas?: `0x${string}` | undefined;
|
|
3276
|
-
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
|
3277
|
-
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
|
|
3278
|
-
to?: `0x${string}` | null | undefined;
|
|
3279
|
-
from?: `0x${string}` | undefined;
|
|
3280
|
-
gas?: `0x${string}` | undefined;
|
|
3281
|
-
nonce?: `0x${string}` | undefined;
|
|
3282
|
-
value?: `0x${string}` | undefined;
|
|
3283
|
-
accessList?: import("viem").AccessList | undefined;
|
|
3284
|
-
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
3285
|
-
blockHash?: `0x${string}` | null | undefined;
|
|
3286
|
-
blockNumber?: `0x${string}` | null | undefined;
|
|
3287
|
-
hash?: `0x${string}` | undefined;
|
|
3288
|
-
input?: `0x${string}` | undefined;
|
|
3289
|
-
transactionIndex?: `0x${string}` | null | undefined;
|
|
3290
|
-
chainId?: `0x${string}` | undefined;
|
|
3291
|
-
} & import("viem/chains").Omit<import("viem/chains").PartialBy<{
|
|
3292
|
-
blockHash: `0x${string}` | null;
|
|
3293
|
-
blockNumber: `0x${string}` | null;
|
|
3294
|
-
from: `0x${string}`;
|
|
3295
|
-
gas: `0x${string}`;
|
|
3296
|
-
hash: `0x${string}`;
|
|
3297
|
-
input: `0x${string}`;
|
|
3298
|
-
nonce: `0x${string}`;
|
|
3299
|
-
r: `0x${string}`;
|
|
3300
|
-
s: `0x${string}`;
|
|
3301
|
-
to: `0x${string}` | null;
|
|
3302
|
-
transactionIndex: `0x${string}` | null;
|
|
3303
|
-
typeHex: `0x${string}` | null;
|
|
3304
|
-
v: `0x${string}`;
|
|
3305
|
-
value: `0x${string}`;
|
|
3306
|
-
yParity: `0x${string}`;
|
|
3307
|
-
gasPrice?: undefined;
|
|
3308
|
-
maxFeePerBlobGas: `0x${string}`;
|
|
3309
|
-
maxFeePerGas: `0x${string}`;
|
|
3310
|
-
maxPriorityFeePerGas: `0x${string}`;
|
|
3311
|
-
accessList: import("viem").AccessList;
|
|
3312
|
-
blobVersionedHashes: readonly `0x${string}`[];
|
|
3313
|
-
chainId: `0x${string}`;
|
|
3314
|
-
type: "0x3";
|
|
3315
|
-
}, "yParity">, "typeHex"> & {
|
|
3316
|
-
isSystemTx?: undefined;
|
|
3317
|
-
mint?: undefined;
|
|
3318
|
-
sourceHash?: undefined;
|
|
3319
|
-
}) | ({
|
|
3320
|
-
r?: `0x${string}` | undefined;
|
|
3321
|
-
s?: `0x${string}` | undefined;
|
|
3322
|
-
v?: `0x${string}` | undefined;
|
|
3323
|
-
yParity?: `0x${string}` | undefined;
|
|
3324
|
-
gasPrice?: `0x${string}` | undefined;
|
|
3325
|
-
maxFeePerBlobGas?: `0x${string}` | undefined;
|
|
3326
|
-
maxFeePerGas?: `0x${string}` | undefined;
|
|
3327
|
-
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
|
3328
|
-
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
|
|
3329
|
-
to?: `0x${string}` | null | undefined;
|
|
3330
|
-
from?: `0x${string}` | undefined;
|
|
3331
|
-
gas?: `0x${string}` | undefined;
|
|
3332
|
-
nonce?: `0x${string}` | undefined;
|
|
3333
|
-
value?: `0x${string}` | undefined;
|
|
3334
|
-
accessList?: import("viem").AccessList | undefined;
|
|
3335
|
-
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
3336
|
-
blockHash?: `0x${string}` | null | undefined;
|
|
3337
|
-
blockNumber?: `0x${string}` | null | undefined;
|
|
3338
|
-
hash?: `0x${string}` | undefined;
|
|
3339
|
-
input?: `0x${string}` | undefined;
|
|
3340
|
-
transactionIndex?: `0x${string}` | null | undefined;
|
|
3341
|
-
chainId?: `0x${string}` | undefined;
|
|
3342
|
-
} & Omit<import("viem").TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & import("viem").FeeValuesEIP1559<`0x${string}`> & {
|
|
1183
|
+
maxFeePerGas: bigint;
|
|
1184
|
+
maxPriorityFeePerGas: bigint;
|
|
3343
1185
|
isSystemTx?: boolean | undefined;
|
|
3344
|
-
mint?:
|
|
1186
|
+
mint?: bigint | undefined;
|
|
3345
1187
|
sourceHash: `0x${string}`;
|
|
3346
|
-
type: "
|
|
3347
|
-
}
|
|
1188
|
+
type: "deposit";
|
|
1189
|
+
} | {
|
|
3348
1190
|
r: `0x${string}`;
|
|
3349
1191
|
s: `0x${string}`;
|
|
3350
1192
|
v: bigint;
|
|
@@ -3359,69 +1201,16 @@ export declare const CHAIN_VIEM: {
|
|
|
3359
1201
|
input: `0x${string}`;
|
|
3360
1202
|
transactionIndex: number | null;
|
|
3361
1203
|
typeHex: `0x${string}` | null;
|
|
3362
|
-
gasPrice: bigint;
|
|
3363
|
-
maxFeePerBlobGas?: undefined;
|
|
3364
|
-
maxFeePerGas?: undefined;
|
|
3365
|
-
maxPriorityFeePerGas?: undefined;
|
|
3366
1204
|
accessList?: undefined;
|
|
1205
|
+
authorizationList?: undefined;
|
|
3367
1206
|
blobVersionedHashes?: undefined;
|
|
3368
1207
|
chainId?: number | undefined;
|
|
3369
1208
|
yParity?: undefined;
|
|
3370
1209
|
type: "legacy";
|
|
3371
|
-
isSystemTx?: undefined;
|
|
3372
|
-
mint?: undefined;
|
|
3373
|
-
sourceHash?: undefined;
|
|
3374
|
-
} | {
|
|
3375
|
-
r: `0x${string}`;
|
|
3376
|
-
s: `0x${string}`;
|
|
3377
|
-
v: bigint;
|
|
3378
|
-
to: `0x${string}` | null;
|
|
3379
|
-
from: `0x${string}`;
|
|
3380
|
-
gas: bigint;
|
|
3381
|
-
nonce: number;
|
|
3382
|
-
value: bigint;
|
|
3383
|
-
blockHash: `0x${string}` | null;
|
|
3384
|
-
blockNumber: bigint | null;
|
|
3385
|
-
hash: `0x${string}`;
|
|
3386
|
-
input: `0x${string}`;
|
|
3387
|
-
transactionIndex: number | null;
|
|
3388
|
-
typeHex: `0x${string}` | null;
|
|
3389
|
-
gasPrice: undefined;
|
|
3390
|
-
maxFeePerBlobGas?: undefined;
|
|
3391
|
-
maxFeePerGas: bigint;
|
|
3392
|
-
maxPriorityFeePerGas: bigint;
|
|
3393
|
-
accessList?: undefined;
|
|
3394
|
-
blobVersionedHashes?: undefined;
|
|
3395
|
-
chainId?: number | undefined;
|
|
3396
|
-
yParity: number;
|
|
3397
|
-
type: "deposit";
|
|
3398
|
-
isSystemTx?: boolean | undefined;
|
|
3399
|
-
mint?: bigint | undefined;
|
|
3400
|
-
sourceHash: `0x${string}`;
|
|
3401
|
-
} | {
|
|
3402
|
-
blockHash: `0x${string}` | null;
|
|
3403
|
-
blockNumber: bigint | null;
|
|
3404
|
-
from: `0x${string}`;
|
|
3405
|
-
gas: bigint;
|
|
3406
|
-
hash: `0x${string}`;
|
|
3407
|
-
input: `0x${string}`;
|
|
3408
|
-
nonce: number;
|
|
3409
|
-
r: `0x${string}`;
|
|
3410
|
-
s: `0x${string}`;
|
|
3411
|
-
to: `0x${string}` | null;
|
|
3412
|
-
transactionIndex: number | null;
|
|
3413
|
-
typeHex: `0x${string}` | null;
|
|
3414
|
-
v: bigint;
|
|
3415
|
-
value: bigint;
|
|
3416
|
-
yParity: number;
|
|
3417
1210
|
gasPrice: bigint;
|
|
3418
1211
|
maxFeePerBlobGas?: undefined;
|
|
3419
1212
|
maxFeePerGas?: undefined;
|
|
3420
1213
|
maxPriorityFeePerGas?: undefined;
|
|
3421
|
-
accessList: import("viem").AccessList;
|
|
3422
|
-
blobVersionedHashes?: undefined;
|
|
3423
|
-
chainId: number;
|
|
3424
|
-
type: "eip2930";
|
|
3425
1214
|
isSystemTx?: undefined;
|
|
3426
1215
|
mint?: undefined;
|
|
3427
1216
|
sourceHash?: undefined;
|
|
@@ -3441,14 +1230,15 @@ export declare const CHAIN_VIEM: {
|
|
|
3441
1230
|
v: bigint;
|
|
3442
1231
|
value: bigint;
|
|
3443
1232
|
yParity: number;
|
|
3444
|
-
gasPrice: undefined;
|
|
3445
|
-
maxFeePerBlobGas?: undefined;
|
|
3446
|
-
maxFeePerGas: bigint;
|
|
3447
|
-
maxPriorityFeePerGas: bigint;
|
|
3448
1233
|
accessList: import("viem").AccessList;
|
|
1234
|
+
authorizationList?: undefined;
|
|
3449
1235
|
blobVersionedHashes?: undefined;
|
|
3450
1236
|
chainId: number;
|
|
3451
|
-
type: "
|
|
1237
|
+
type: "eip2930";
|
|
1238
|
+
gasPrice: bigint;
|
|
1239
|
+
maxFeePerBlobGas?: undefined;
|
|
1240
|
+
maxFeePerGas?: undefined;
|
|
1241
|
+
maxPriorityFeePerGas?: undefined;
|
|
3452
1242
|
isSystemTx?: undefined;
|
|
3453
1243
|
mint?: undefined;
|
|
3454
1244
|
sourceHash?: undefined;
|
|
@@ -3468,68 +1258,15 @@ export declare const CHAIN_VIEM: {
|
|
|
3468
1258
|
v: bigint;
|
|
3469
1259
|
value: bigint;
|
|
3470
1260
|
yParity: number;
|
|
3471
|
-
gasPrice: undefined;
|
|
3472
|
-
maxFeePerBlobGas?: undefined;
|
|
3473
|
-
maxFeePerGas: bigint;
|
|
3474
|
-
maxPriorityFeePerGas: bigint;
|
|
3475
|
-
accessList: import("viem").AccessList;
|
|
3476
|
-
blobVersionedHashes?: undefined;
|
|
3477
|
-
chainId: number;
|
|
3478
|
-
type: "deposit";
|
|
3479
|
-
isSystemTx?: boolean | undefined;
|
|
3480
|
-
mint?: bigint | undefined;
|
|
3481
|
-
sourceHash: `0x${string}`;
|
|
3482
|
-
} | {
|
|
3483
|
-
blockHash: `0x${string}` | null;
|
|
3484
|
-
blockNumber: bigint | null;
|
|
3485
|
-
from: `0x${string}`;
|
|
3486
|
-
gas: bigint;
|
|
3487
|
-
hash: `0x${string}`;
|
|
3488
|
-
input: `0x${string}`;
|
|
3489
|
-
nonce: number;
|
|
3490
|
-
r: `0x${string}`;
|
|
3491
|
-
s: `0x${string}`;
|
|
3492
|
-
to: `0x${string}` | null;
|
|
3493
|
-
transactionIndex: number | null;
|
|
3494
|
-
typeHex: `0x${string}` | null;
|
|
3495
|
-
v: bigint;
|
|
3496
|
-
value: bigint;
|
|
3497
|
-
yParity: number;
|
|
3498
|
-
gasPrice: bigint;
|
|
3499
|
-
maxFeePerBlobGas?: undefined;
|
|
3500
|
-
maxFeePerGas: undefined;
|
|
3501
|
-
maxPriorityFeePerGas: undefined;
|
|
3502
1261
|
accessList: import("viem").AccessList;
|
|
1262
|
+
authorizationList?: undefined;
|
|
3503
1263
|
blobVersionedHashes?: undefined;
|
|
3504
1264
|
chainId: number;
|
|
3505
|
-
type: "
|
|
3506
|
-
isSystemTx?: undefined;
|
|
3507
|
-
mint?: undefined;
|
|
3508
|
-
sourceHash?: undefined;
|
|
3509
|
-
} | {
|
|
3510
|
-
blockHash: `0x${string}` | null;
|
|
3511
|
-
blockNumber: bigint | null;
|
|
3512
|
-
from: `0x${string}`;
|
|
3513
|
-
gas: bigint;
|
|
3514
|
-
hash: `0x${string}`;
|
|
3515
|
-
input: `0x${string}`;
|
|
3516
|
-
nonce: number;
|
|
3517
|
-
r: `0x${string}`;
|
|
3518
|
-
s: `0x${string}`;
|
|
3519
|
-
to: `0x${string}` | null;
|
|
3520
|
-
transactionIndex: number | null;
|
|
3521
|
-
typeHex: `0x${string}` | null;
|
|
3522
|
-
v: bigint;
|
|
3523
|
-
value: bigint;
|
|
3524
|
-
yParity: number;
|
|
1265
|
+
type: "eip1559";
|
|
3525
1266
|
gasPrice?: undefined;
|
|
3526
1267
|
maxFeePerBlobGas?: undefined;
|
|
3527
1268
|
maxFeePerGas: bigint;
|
|
3528
1269
|
maxPriorityFeePerGas: bigint;
|
|
3529
|
-
accessList: import("viem").AccessList;
|
|
3530
|
-
blobVersionedHashes?: undefined;
|
|
3531
|
-
chainId: number;
|
|
3532
|
-
type: "eip1559";
|
|
3533
1270
|
isSystemTx?: undefined;
|
|
3534
1271
|
mint?: undefined;
|
|
3535
1272
|
sourceHash?: undefined;
|
|
@@ -3549,41 +1286,15 @@ export declare const CHAIN_VIEM: {
|
|
|
3549
1286
|
v: bigint;
|
|
3550
1287
|
value: bigint;
|
|
3551
1288
|
yParity: number;
|
|
3552
|
-
gasPrice?: undefined;
|
|
3553
|
-
maxFeePerBlobGas?: undefined;
|
|
3554
|
-
maxFeePerGas: bigint;
|
|
3555
|
-
maxPriorityFeePerGas: bigint;
|
|
3556
1289
|
accessList: import("viem").AccessList;
|
|
3557
|
-
|
|
1290
|
+
authorizationList?: undefined;
|
|
1291
|
+
blobVersionedHashes: readonly `0x${string}`[];
|
|
3558
1292
|
chainId: number;
|
|
3559
|
-
type: "
|
|
3560
|
-
isSystemTx?: boolean | undefined;
|
|
3561
|
-
mint?: bigint | undefined;
|
|
3562
|
-
sourceHash: `0x${string}`;
|
|
3563
|
-
} | {
|
|
3564
|
-
blockHash: `0x${string}` | null;
|
|
3565
|
-
blockNumber: bigint | null;
|
|
3566
|
-
from: `0x${string}`;
|
|
3567
|
-
gas: bigint;
|
|
3568
|
-
hash: `0x${string}`;
|
|
3569
|
-
input: `0x${string}`;
|
|
3570
|
-
nonce: number;
|
|
3571
|
-
r: `0x${string}`;
|
|
3572
|
-
s: `0x${string}`;
|
|
3573
|
-
to: `0x${string}` | null;
|
|
3574
|
-
transactionIndex: number | null;
|
|
3575
|
-
typeHex: `0x${string}` | null;
|
|
3576
|
-
v: bigint;
|
|
3577
|
-
value: bigint;
|
|
3578
|
-
yParity: number;
|
|
1293
|
+
type: "eip4844";
|
|
3579
1294
|
gasPrice?: undefined;
|
|
3580
1295
|
maxFeePerBlobGas: bigint;
|
|
3581
1296
|
maxFeePerGas: bigint;
|
|
3582
1297
|
maxPriorityFeePerGas: bigint;
|
|
3583
|
-
accessList: import("viem").AccessList;
|
|
3584
|
-
blobVersionedHashes: readonly `0x${string}`[];
|
|
3585
|
-
chainId: number;
|
|
3586
|
-
type: "eip4844";
|
|
3587
1298
|
isSystemTx?: undefined;
|
|
3588
1299
|
mint?: undefined;
|
|
3589
1300
|
sourceHash?: undefined;
|
|
@@ -3603,23 +1314,24 @@ export declare const CHAIN_VIEM: {
|
|
|
3603
1314
|
v: bigint;
|
|
3604
1315
|
value: bigint;
|
|
3605
1316
|
yParity: number;
|
|
1317
|
+
accessList: import("viem").AccessList;
|
|
1318
|
+
authorizationList: import("viem/experimental").SignedAuthorizationList<number>;
|
|
1319
|
+
blobVersionedHashes?: undefined;
|
|
1320
|
+
chainId: number;
|
|
1321
|
+
type: "eip7702";
|
|
3606
1322
|
gasPrice?: undefined;
|
|
3607
|
-
maxFeePerBlobGas
|
|
1323
|
+
maxFeePerBlobGas?: undefined;
|
|
3608
1324
|
maxFeePerGas: bigint;
|
|
3609
1325
|
maxPriorityFeePerGas: bigint;
|
|
3610
|
-
|
|
3611
|
-
|
|
3612
|
-
|
|
3613
|
-
type: "deposit";
|
|
3614
|
-
isSystemTx?: boolean | undefined;
|
|
3615
|
-
mint?: bigint | undefined;
|
|
3616
|
-
sourceHash: `0x${string}`;
|
|
1326
|
+
isSystemTx?: undefined;
|
|
1327
|
+
mint?: undefined;
|
|
1328
|
+
sourceHash?: undefined;
|
|
3617
1329
|
};
|
|
3618
1330
|
type: "transaction";
|
|
3619
1331
|
};
|
|
3620
1332
|
readonly transactionReceipt: {
|
|
3621
1333
|
exclude: [] | undefined;
|
|
3622
|
-
format: (args: import("viem/chains").
|
|
1334
|
+
format: (args: import("viem/chains").OpStackRpcTransactionReceipt) => {
|
|
3623
1335
|
blobGasPrice?: bigint | undefined;
|
|
3624
1336
|
blobGasUsed?: bigint | undefined;
|
|
3625
1337
|
blockHash: `0x${string}`;
|
|
@@ -3648,7 +1360,6 @@ export declare const CHAIN_VIEM: {
|
|
|
3648
1360
|
serializers: {
|
|
3649
1361
|
readonly transaction: typeof import("viem/chains").serializeTransactionOpStack;
|
|
3650
1362
|
};
|
|
3651
|
-
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
3652
1363
|
readonly network: "base-sepolia";
|
|
3653
1364
|
};
|
|
3654
1365
|
readonly 3: {
|
|
@@ -3656,7 +1367,7 @@ export declare const CHAIN_VIEM: {
|
|
|
3656
1367
|
readonly default: {
|
|
3657
1368
|
readonly name: "BscScan";
|
|
3658
1369
|
readonly url: "https://testnet.bscscan.com";
|
|
3659
|
-
readonly apiUrl: "https://testnet.bscscan.com/api";
|
|
1370
|
+
readonly apiUrl: "https://api-testnet.bscscan.com/api";
|
|
3660
1371
|
};
|
|
3661
1372
|
};
|
|
3662
1373
|
contracts: {
|
|
@@ -3680,9 +1391,9 @@ export declare const CHAIN_VIEM: {
|
|
|
3680
1391
|
sourceId?: number | undefined;
|
|
3681
1392
|
testnet: true;
|
|
3682
1393
|
custom?: Record<string, unknown> | undefined;
|
|
3683
|
-
formatters?: undefined;
|
|
3684
|
-
serializers?: import("viem").ChainSerializers<undefined> | undefined;
|
|
3685
1394
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
1395
|
+
formatters?: undefined;
|
|
1396
|
+
serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable<bigint, number>> | undefined;
|
|
3686
1397
|
};
|
|
3687
1398
|
readonly 8: {
|
|
3688
1399
|
blockExplorers: {
|
|
@@ -3713,9 +1424,41 @@ export declare const CHAIN_VIEM: {
|
|
|
3713
1424
|
sourceId?: number | undefined;
|
|
3714
1425
|
testnet: true;
|
|
3715
1426
|
custom?: Record<string, unknown> | undefined;
|
|
1427
|
+
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
3716
1428
|
formatters?: undefined;
|
|
3717
|
-
serializers?: import("viem").ChainSerializers<undefined
|
|
1429
|
+
serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable<bigint, number>> | undefined;
|
|
1430
|
+
};
|
|
1431
|
+
readonly 10: {
|
|
1432
|
+
blockExplorers: {
|
|
1433
|
+
readonly default: {
|
|
1434
|
+
readonly name: "Monad Testnet explorer";
|
|
1435
|
+
readonly url: "https://testnet.monadexplorer.com";
|
|
1436
|
+
};
|
|
1437
|
+
};
|
|
1438
|
+
contracts: {
|
|
1439
|
+
readonly multicall3: {
|
|
1440
|
+
readonly address: "0xcA11bde05977b3631167028862bE2a173976CA11";
|
|
1441
|
+
readonly blockCreated: 251449;
|
|
1442
|
+
};
|
|
1443
|
+
};
|
|
1444
|
+
id: 10143;
|
|
1445
|
+
name: "Monad Testnet";
|
|
1446
|
+
nativeCurrency: {
|
|
1447
|
+
readonly name: "Testnet MON Token";
|
|
1448
|
+
readonly symbol: "MON";
|
|
1449
|
+
readonly decimals: 18;
|
|
1450
|
+
};
|
|
1451
|
+
rpcUrls: {
|
|
1452
|
+
readonly default: {
|
|
1453
|
+
readonly http: readonly ["https://testnet-rpc.monad.xyz"];
|
|
1454
|
+
};
|
|
1455
|
+
};
|
|
1456
|
+
sourceId?: number | undefined;
|
|
1457
|
+
testnet: true;
|
|
1458
|
+
custom?: Record<string, unknown> | undefined;
|
|
3718
1459
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
1460
|
+
formatters?: undefined;
|
|
1461
|
+
serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable<bigint, number>> | undefined;
|
|
3719
1462
|
};
|
|
3720
1463
|
readonly 100: {
|
|
3721
1464
|
blockExplorers: {
|
|
@@ -3746,9 +1489,9 @@ export declare const CHAIN_VIEM: {
|
|
|
3746
1489
|
sourceId?: number | undefined;
|
|
3747
1490
|
testnet?: boolean | undefined;
|
|
3748
1491
|
custom?: Record<string, unknown> | undefined;
|
|
3749
|
-
formatters?: undefined;
|
|
3750
|
-
serializers?: import("viem").ChainSerializers<undefined> | undefined;
|
|
3751
1492
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
1493
|
+
formatters?: undefined;
|
|
1494
|
+
serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable<bigint, number>> | undefined;
|
|
3752
1495
|
};
|
|
3753
1496
|
readonly 101: {
|
|
3754
1497
|
blockExplorers: {
|
|
@@ -3780,15 +1523,15 @@ export declare const CHAIN_VIEM: {
|
|
|
3780
1523
|
};
|
|
3781
1524
|
rpcUrls: {
|
|
3782
1525
|
readonly default: {
|
|
3783
|
-
readonly http: readonly ["https://
|
|
1526
|
+
readonly http: readonly ["https://eth.merkle.io"];
|
|
3784
1527
|
};
|
|
3785
1528
|
};
|
|
3786
1529
|
sourceId?: number | undefined;
|
|
3787
1530
|
testnet?: boolean | undefined;
|
|
3788
1531
|
custom?: Record<string, unknown> | undefined;
|
|
3789
|
-
formatters?: undefined;
|
|
3790
|
-
serializers?: import("viem").ChainSerializers<undefined> | undefined;
|
|
3791
1532
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
1533
|
+
formatters?: undefined;
|
|
1534
|
+
serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable<bigint, number>> | undefined;
|
|
3792
1535
|
};
|
|
3793
1536
|
readonly 102: {
|
|
3794
1537
|
blockExplorers: {
|
|
@@ -3799,6 +1542,11 @@ export declare const CHAIN_VIEM: {
|
|
|
3799
1542
|
};
|
|
3800
1543
|
};
|
|
3801
1544
|
contracts: {
|
|
1545
|
+
readonly disputeGameFactory: {
|
|
1546
|
+
readonly 1: {
|
|
1547
|
+
readonly address: "0x43edB88C4B80fDD2AdFF2412A7BebF9dF42cB40e";
|
|
1548
|
+
};
|
|
1549
|
+
};
|
|
3802
1550
|
readonly l2OutputOracle: {
|
|
3803
1551
|
readonly 1: {
|
|
3804
1552
|
readonly address: "0x56315b90c40730925ec5485cf004d835058518A0";
|
|
@@ -3829,742 +1577,93 @@ export declare const CHAIN_VIEM: {
|
|
|
3829
1577
|
readonly l2CrossDomainMessenger: {
|
|
3830
1578
|
readonly address: "0x4200000000000000000000000000000000000007";
|
|
3831
1579
|
};
|
|
3832
|
-
readonly l2Erc721Bridge: {
|
|
3833
|
-
readonly address: "0x4200000000000000000000000000000000000014";
|
|
3834
|
-
};
|
|
3835
|
-
readonly l2StandardBridge: {
|
|
3836
|
-
readonly address: "0x4200000000000000000000000000000000000010";
|
|
3837
|
-
};
|
|
3838
|
-
readonly l2ToL1MessagePasser: {
|
|
3839
|
-
readonly address: "0x4200000000000000000000000000000000000016";
|
|
3840
|
-
};
|
|
3841
|
-
};
|
|
3842
|
-
id: 8453;
|
|
3843
|
-
name: "Base";
|
|
3844
|
-
nativeCurrency: {
|
|
3845
|
-
readonly name: "Ether";
|
|
3846
|
-
readonly symbol: "ETH";
|
|
3847
|
-
readonly decimals: 18;
|
|
3848
|
-
};
|
|
3849
|
-
rpcUrls: {
|
|
3850
|
-
readonly default: {
|
|
3851
|
-
readonly http: readonly ["https://mainnet.base.org"];
|
|
3852
|
-
};
|
|
3853
|
-
};
|
|
3854
|
-
sourceId: 1;
|
|
3855
|
-
testnet?: boolean | undefined;
|
|
3856
|
-
custom?: Record<string, unknown> | undefined;
|
|
3857
|
-
|
|
3858
|
-
|
|
3859
|
-
|
|
3860
|
-
|
|
3861
|
-
|
|
3862
|
-
|
|
3863
|
-
|
|
3864
|
-
|
|
3865
|
-
|
|
3866
|
-
|
|
3867
|
-
|
|
3868
|
-
|
|
3869
|
-
|
|
3870
|
-
|
|
3871
|
-
|
|
3872
|
-
|
|
3873
|
-
|
|
3874
|
-
|
|
3875
|
-
|
|
3876
|
-
parentHash: `0x${string}`;
|
|
3877
|
-
receiptsRoot: `0x${string}`;
|
|
3878
|
-
sealFields: `0x${string}`[];
|
|
3879
|
-
sha3Uncles: `0x${string}`;
|
|
3880
|
-
size: bigint;
|
|
3881
|
-
stateRoot: `0x${string}`;
|
|
3882
|
-
timestamp: bigint;
|
|
3883
|
-
totalDifficulty: bigint | null;
|
|
3884
|
-
transactions: `0x${string}`[] | import("viem/chains").OpStackTransaction<boolean>[];
|
|
3885
|
-
transactionsRoot: `0x${string}`;
|
|
3886
|
-
uncles: `0x${string}`[];
|
|
3887
|
-
withdrawals?: import("viem").Withdrawal[] | undefined;
|
|
3888
|
-
withdrawalsRoot?: `0x${string}` | undefined;
|
|
3889
|
-
};
|
|
3890
|
-
type: "block";
|
|
3891
|
-
};
|
|
3892
|
-
readonly transaction: {
|
|
3893
|
-
exclude: [] | undefined;
|
|
3894
|
-
format: (args: ({
|
|
3895
|
-
r?: `0x${string}` | undefined;
|
|
3896
|
-
s?: `0x${string}` | undefined;
|
|
3897
|
-
v?: `0x${string}` | undefined;
|
|
3898
|
-
yParity?: `0x${string}` | undefined;
|
|
3899
|
-
gasPrice?: `0x${string}` | undefined;
|
|
3900
|
-
maxFeePerBlobGas?: `0x${string}` | undefined;
|
|
3901
|
-
maxFeePerGas?: `0x${string}` | undefined;
|
|
3902
|
-
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
|
3903
|
-
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
|
|
3904
|
-
to?: `0x${string}` | null | undefined;
|
|
3905
|
-
from?: `0x${string}` | undefined;
|
|
3906
|
-
gas?: `0x${string}` | undefined;
|
|
3907
|
-
nonce?: `0x${string}` | undefined;
|
|
3908
|
-
value?: `0x${string}` | undefined;
|
|
3909
|
-
accessList?: undefined;
|
|
3910
|
-
blobVersionedHashes?: undefined;
|
|
3911
|
-
blockHash?: `0x${string}` | null | undefined;
|
|
3912
|
-
blockNumber?: `0x${string}` | null | undefined;
|
|
3913
|
-
hash?: `0x${string}` | undefined;
|
|
3914
|
-
input?: `0x${string}` | undefined;
|
|
3915
|
-
transactionIndex?: `0x${string}` | null | undefined;
|
|
3916
|
-
chainId?: `0x${string}` | undefined;
|
|
3917
|
-
} & import("viem/chains").Omit<import("viem/chains").PartialBy<{
|
|
3918
|
-
r: `0x${string}`;
|
|
3919
|
-
s: `0x${string}`;
|
|
3920
|
-
v: `0x${string}`;
|
|
3921
|
-
to: `0x${string}` | null;
|
|
3922
|
-
from: `0x${string}`;
|
|
3923
|
-
gas: `0x${string}`;
|
|
3924
|
-
nonce: `0x${string}`;
|
|
3925
|
-
value: `0x${string}`;
|
|
3926
|
-
blockHash: `0x${string}` | null;
|
|
3927
|
-
blockNumber: `0x${string}` | null;
|
|
3928
|
-
hash: `0x${string}`;
|
|
3929
|
-
input: `0x${string}`;
|
|
3930
|
-
transactionIndex: `0x${string}` | null;
|
|
3931
|
-
typeHex: `0x${string}` | null;
|
|
3932
|
-
gasPrice: `0x${string}`;
|
|
3933
|
-
maxFeePerBlobGas?: undefined;
|
|
3934
|
-
maxFeePerGas?: undefined;
|
|
3935
|
-
maxPriorityFeePerGas?: undefined;
|
|
3936
|
-
accessList?: undefined;
|
|
3937
|
-
blobVersionedHashes?: undefined;
|
|
3938
|
-
chainId?: `0x${string}` | undefined;
|
|
3939
|
-
yParity?: undefined;
|
|
3940
|
-
type: "0x0";
|
|
3941
|
-
}, "yParity">, "typeHex"> & {
|
|
3942
|
-
isSystemTx?: undefined;
|
|
3943
|
-
mint?: undefined;
|
|
3944
|
-
sourceHash?: undefined;
|
|
3945
|
-
}) | ({
|
|
3946
|
-
r?: `0x${string}` | undefined;
|
|
3947
|
-
s?: `0x${string}` | undefined;
|
|
3948
|
-
v?: `0x${string}` | undefined;
|
|
3949
|
-
yParity?: `0x${string}` | undefined;
|
|
3950
|
-
gasPrice?: `0x${string}` | undefined;
|
|
3951
|
-
maxFeePerBlobGas?: `0x${string}` | undefined;
|
|
3952
|
-
maxFeePerGas?: `0x${string}` | undefined;
|
|
3953
|
-
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
|
3954
|
-
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
|
|
3955
|
-
to?: `0x${string}` | null | undefined;
|
|
3956
|
-
from?: `0x${string}` | undefined;
|
|
3957
|
-
gas?: `0x${string}` | undefined;
|
|
3958
|
-
nonce?: `0x${string}` | undefined;
|
|
3959
|
-
value?: `0x${string}` | undefined;
|
|
3960
|
-
accessList?: undefined;
|
|
3961
|
-
blobVersionedHashes?: undefined;
|
|
3962
|
-
blockHash?: `0x${string}` | null | undefined;
|
|
3963
|
-
blockNumber?: `0x${string}` | null | undefined;
|
|
3964
|
-
hash?: `0x${string}` | undefined;
|
|
3965
|
-
input?: `0x${string}` | undefined;
|
|
3966
|
-
transactionIndex?: `0x${string}` | null | undefined;
|
|
3967
|
-
chainId?: `0x${string}` | undefined;
|
|
3968
|
-
} & Omit<import("viem").TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & import("viem").FeeValuesEIP1559<`0x${string}`> & {
|
|
3969
|
-
isSystemTx?: boolean | undefined;
|
|
3970
|
-
mint?: `0x${string}` | undefined;
|
|
3971
|
-
sourceHash: `0x${string}`;
|
|
3972
|
-
type: "0x7e";
|
|
3973
|
-
}) | ({
|
|
3974
|
-
r?: `0x${string}` | undefined;
|
|
3975
|
-
s?: `0x${string}` | undefined;
|
|
3976
|
-
v?: `0x${string}` | undefined;
|
|
3977
|
-
yParity?: `0x${string}` | undefined;
|
|
3978
|
-
gasPrice?: `0x${string}` | undefined;
|
|
3979
|
-
maxFeePerBlobGas?: `0x${string}` | undefined;
|
|
3980
|
-
maxFeePerGas?: `0x${string}` | undefined;
|
|
3981
|
-
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
|
3982
|
-
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
|
|
3983
|
-
to?: `0x${string}` | null | undefined;
|
|
3984
|
-
from?: `0x${string}` | undefined;
|
|
3985
|
-
gas?: `0x${string}` | undefined;
|
|
3986
|
-
nonce?: `0x${string}` | undefined;
|
|
3987
|
-
value?: `0x${string}` | undefined;
|
|
3988
|
-
accessList?: import("viem").AccessList | undefined;
|
|
3989
|
-
blobVersionedHashes?: undefined;
|
|
3990
|
-
blockHash?: `0x${string}` | null | undefined;
|
|
3991
|
-
blockNumber?: `0x${string}` | null | undefined;
|
|
3992
|
-
hash?: `0x${string}` | undefined;
|
|
3993
|
-
input?: `0x${string}` | undefined;
|
|
3994
|
-
transactionIndex?: `0x${string}` | null | undefined;
|
|
3995
|
-
chainId?: `0x${string}` | undefined;
|
|
3996
|
-
} & import("viem/chains").Omit<import("viem/chains").PartialBy<{
|
|
3997
|
-
r: `0x${string}`;
|
|
3998
|
-
s: `0x${string}`;
|
|
3999
|
-
v: `0x${string}`;
|
|
4000
|
-
to: `0x${string}` | null;
|
|
4001
|
-
from: `0x${string}`;
|
|
4002
|
-
gas: `0x${string}`;
|
|
4003
|
-
nonce: `0x${string}`;
|
|
4004
|
-
value: `0x${string}`;
|
|
4005
|
-
blockHash: `0x${string}` | null;
|
|
4006
|
-
blockNumber: `0x${string}` | null;
|
|
4007
|
-
hash: `0x${string}`;
|
|
4008
|
-
input: `0x${string}`;
|
|
4009
|
-
transactionIndex: `0x${string}` | null;
|
|
4010
|
-
typeHex: `0x${string}` | null;
|
|
4011
|
-
gasPrice: `0x${string}`;
|
|
4012
|
-
maxFeePerBlobGas?: undefined;
|
|
4013
|
-
maxFeePerGas?: undefined;
|
|
4014
|
-
maxPriorityFeePerGas?: undefined;
|
|
4015
|
-
accessList?: undefined;
|
|
4016
|
-
blobVersionedHashes?: undefined;
|
|
4017
|
-
chainId?: `0x${string}` | undefined;
|
|
4018
|
-
yParity?: undefined;
|
|
4019
|
-
type: "0x0";
|
|
4020
|
-
}, "yParity">, "typeHex"> & {
|
|
4021
|
-
isSystemTx?: undefined;
|
|
4022
|
-
mint?: undefined;
|
|
4023
|
-
sourceHash?: undefined;
|
|
4024
|
-
}) | ({
|
|
4025
|
-
r?: `0x${string}` | undefined;
|
|
4026
|
-
s?: `0x${string}` | undefined;
|
|
4027
|
-
v?: `0x${string}` | undefined;
|
|
4028
|
-
yParity?: `0x${string}` | undefined;
|
|
4029
|
-
gasPrice?: `0x${string}` | undefined;
|
|
4030
|
-
maxFeePerBlobGas?: `0x${string}` | undefined;
|
|
4031
|
-
maxFeePerGas?: `0x${string}` | undefined;
|
|
4032
|
-
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
|
4033
|
-
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
|
|
4034
|
-
to?: `0x${string}` | null | undefined;
|
|
4035
|
-
from?: `0x${string}` | undefined;
|
|
4036
|
-
gas?: `0x${string}` | undefined;
|
|
4037
|
-
nonce?: `0x${string}` | undefined;
|
|
4038
|
-
value?: `0x${string}` | undefined;
|
|
4039
|
-
accessList?: import("viem").AccessList | undefined;
|
|
4040
|
-
blobVersionedHashes?: undefined;
|
|
4041
|
-
blockHash?: `0x${string}` | null | undefined;
|
|
4042
|
-
blockNumber?: `0x${string}` | null | undefined;
|
|
4043
|
-
hash?: `0x${string}` | undefined;
|
|
4044
|
-
input?: `0x${string}` | undefined;
|
|
4045
|
-
transactionIndex?: `0x${string}` | null | undefined;
|
|
4046
|
-
chainId?: `0x${string}` | undefined;
|
|
4047
|
-
} & import("viem/chains").Omit<import("viem/chains").PartialBy<{
|
|
4048
|
-
blockHash: `0x${string}` | null;
|
|
4049
|
-
blockNumber: `0x${string}` | null;
|
|
4050
|
-
from: `0x${string}`;
|
|
4051
|
-
gas: `0x${string}`;
|
|
4052
|
-
hash: `0x${string}`;
|
|
4053
|
-
input: `0x${string}`;
|
|
4054
|
-
nonce: `0x${string}`;
|
|
4055
|
-
r: `0x${string}`;
|
|
4056
|
-
s: `0x${string}`;
|
|
4057
|
-
to: `0x${string}` | null;
|
|
4058
|
-
transactionIndex: `0x${string}` | null;
|
|
4059
|
-
typeHex: `0x${string}` | null;
|
|
4060
|
-
v: `0x${string}`;
|
|
4061
|
-
value: `0x${string}`;
|
|
4062
|
-
yParity: `0x${string}`;
|
|
4063
|
-
gasPrice: `0x${string}`;
|
|
4064
|
-
maxFeePerBlobGas?: undefined;
|
|
4065
|
-
maxFeePerGas?: undefined;
|
|
4066
|
-
maxPriorityFeePerGas?: undefined;
|
|
4067
|
-
accessList: import("viem").AccessList;
|
|
4068
|
-
blobVersionedHashes?: undefined;
|
|
4069
|
-
chainId: `0x${string}`;
|
|
4070
|
-
type: "0x1";
|
|
4071
|
-
}, "yParity">, "typeHex"> & {
|
|
4072
|
-
isSystemTx?: undefined;
|
|
4073
|
-
mint?: undefined;
|
|
4074
|
-
sourceHash?: undefined;
|
|
4075
|
-
}) | ({
|
|
4076
|
-
r?: `0x${string}` | undefined;
|
|
4077
|
-
s?: `0x${string}` | undefined;
|
|
4078
|
-
v?: `0x${string}` | undefined;
|
|
4079
|
-
yParity?: `0x${string}` | undefined;
|
|
4080
|
-
gasPrice?: `0x${string}` | undefined;
|
|
4081
|
-
maxFeePerBlobGas?: `0x${string}` | undefined;
|
|
4082
|
-
maxFeePerGas?: `0x${string}` | undefined;
|
|
4083
|
-
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
|
4084
|
-
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
|
|
4085
|
-
to?: `0x${string}` | null | undefined;
|
|
4086
|
-
from?: `0x${string}` | undefined;
|
|
4087
|
-
gas?: `0x${string}` | undefined;
|
|
4088
|
-
nonce?: `0x${string}` | undefined;
|
|
4089
|
-
value?: `0x${string}` | undefined;
|
|
4090
|
-
accessList?: import("viem").AccessList | undefined;
|
|
4091
|
-
blobVersionedHashes?: undefined;
|
|
4092
|
-
blockHash?: `0x${string}` | null | undefined;
|
|
4093
|
-
blockNumber?: `0x${string}` | null | undefined;
|
|
4094
|
-
hash?: `0x${string}` | undefined;
|
|
4095
|
-
input?: `0x${string}` | undefined;
|
|
4096
|
-
transactionIndex?: `0x${string}` | null | undefined;
|
|
4097
|
-
chainId?: `0x${string}` | undefined;
|
|
4098
|
-
} & import("viem/chains").Omit<import("viem/chains").PartialBy<{
|
|
4099
|
-
blockHash: `0x${string}` | null;
|
|
4100
|
-
blockNumber: `0x${string}` | null;
|
|
4101
|
-
from: `0x${string}`;
|
|
4102
|
-
gas: `0x${string}`;
|
|
4103
|
-
hash: `0x${string}`;
|
|
4104
|
-
input: `0x${string}`;
|
|
4105
|
-
nonce: `0x${string}`;
|
|
4106
|
-
r: `0x${string}`;
|
|
4107
|
-
s: `0x${string}`;
|
|
4108
|
-
to: `0x${string}` | null;
|
|
4109
|
-
transactionIndex: `0x${string}` | null;
|
|
4110
|
-
typeHex: `0x${string}` | null;
|
|
4111
|
-
v: `0x${string}`;
|
|
4112
|
-
value: `0x${string}`;
|
|
4113
|
-
yParity: `0x${string}`;
|
|
4114
|
-
gasPrice?: undefined;
|
|
4115
|
-
maxFeePerBlobGas?: undefined;
|
|
4116
|
-
maxFeePerGas: `0x${string}`;
|
|
4117
|
-
maxPriorityFeePerGas: `0x${string}`;
|
|
4118
|
-
accessList: import("viem").AccessList;
|
|
4119
|
-
blobVersionedHashes?: undefined;
|
|
4120
|
-
chainId: `0x${string}`;
|
|
4121
|
-
type: "0x2";
|
|
4122
|
-
}, "yParity">, "typeHex"> & {
|
|
4123
|
-
isSystemTx?: undefined;
|
|
4124
|
-
mint?: undefined;
|
|
4125
|
-
sourceHash?: undefined;
|
|
4126
|
-
}) | ({
|
|
4127
|
-
r?: `0x${string}` | undefined;
|
|
4128
|
-
s?: `0x${string}` | undefined;
|
|
4129
|
-
v?: `0x${string}` | undefined;
|
|
4130
|
-
yParity?: `0x${string}` | undefined;
|
|
4131
|
-
gasPrice?: `0x${string}` | undefined;
|
|
4132
|
-
maxFeePerBlobGas?: `0x${string}` | undefined;
|
|
4133
|
-
maxFeePerGas?: `0x${string}` | undefined;
|
|
4134
|
-
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
|
4135
|
-
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
|
|
4136
|
-
to?: `0x${string}` | null | undefined;
|
|
4137
|
-
from?: `0x${string}` | undefined;
|
|
4138
|
-
gas?: `0x${string}` | undefined;
|
|
4139
|
-
nonce?: `0x${string}` | undefined;
|
|
4140
|
-
value?: `0x${string}` | undefined;
|
|
4141
|
-
accessList?: import("viem").AccessList | undefined;
|
|
4142
|
-
blobVersionedHashes?: undefined;
|
|
4143
|
-
blockHash?: `0x${string}` | null | undefined;
|
|
4144
|
-
blockNumber?: `0x${string}` | null | undefined;
|
|
4145
|
-
hash?: `0x${string}` | undefined;
|
|
4146
|
-
input?: `0x${string}` | undefined;
|
|
4147
|
-
transactionIndex?: `0x${string}` | null | undefined;
|
|
4148
|
-
chainId?: `0x${string}` | undefined;
|
|
4149
|
-
} & Omit<import("viem").TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & import("viem").FeeValuesEIP1559<`0x${string}`> & {
|
|
4150
|
-
isSystemTx?: boolean | undefined;
|
|
4151
|
-
mint?: `0x${string}` | undefined;
|
|
4152
|
-
sourceHash: `0x${string}`;
|
|
4153
|
-
type: "0x7e";
|
|
4154
|
-
}) | ({
|
|
4155
|
-
r?: `0x${string}` | undefined;
|
|
4156
|
-
s?: `0x${string}` | undefined;
|
|
4157
|
-
v?: `0x${string}` | undefined;
|
|
4158
|
-
yParity?: `0x${string}` | undefined;
|
|
4159
|
-
gasPrice?: `0x${string}` | undefined;
|
|
4160
|
-
maxFeePerBlobGas?: `0x${string}` | undefined;
|
|
4161
|
-
maxFeePerGas?: `0x${string}` | undefined;
|
|
4162
|
-
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
|
4163
|
-
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
|
|
4164
|
-
to?: `0x${string}` | null | undefined;
|
|
4165
|
-
from?: `0x${string}` | undefined;
|
|
4166
|
-
gas?: `0x${string}` | undefined;
|
|
4167
|
-
nonce?: `0x${string}` | undefined;
|
|
4168
|
-
value?: `0x${string}` | undefined;
|
|
4169
|
-
accessList?: import("viem").AccessList | undefined;
|
|
4170
|
-
blobVersionedHashes?: undefined;
|
|
4171
|
-
blockHash?: `0x${string}` | null | undefined;
|
|
4172
|
-
blockNumber?: `0x${string}` | null | undefined;
|
|
4173
|
-
hash?: `0x${string}` | undefined;
|
|
4174
|
-
input?: `0x${string}` | undefined;
|
|
4175
|
-
transactionIndex?: `0x${string}` | null | undefined;
|
|
4176
|
-
chainId?: `0x${string}` | undefined;
|
|
4177
|
-
} & import("viem/chains").Omit<import("viem/chains").PartialBy<{
|
|
4178
|
-
r: `0x${string}`;
|
|
4179
|
-
s: `0x${string}`;
|
|
4180
|
-
v: `0x${string}`;
|
|
4181
|
-
to: `0x${string}` | null;
|
|
4182
|
-
from: `0x${string}`;
|
|
4183
|
-
gas: `0x${string}`;
|
|
4184
|
-
nonce: `0x${string}`;
|
|
4185
|
-
value: `0x${string}`;
|
|
4186
|
-
blockHash: `0x${string}` | null;
|
|
4187
|
-
blockNumber: `0x${string}` | null;
|
|
4188
|
-
hash: `0x${string}`;
|
|
4189
|
-
input: `0x${string}`;
|
|
4190
|
-
transactionIndex: `0x${string}` | null;
|
|
4191
|
-
typeHex: `0x${string}` | null;
|
|
4192
|
-
gasPrice: `0x${string}`;
|
|
4193
|
-
maxFeePerBlobGas?: undefined;
|
|
4194
|
-
maxFeePerGas?: undefined;
|
|
4195
|
-
maxPriorityFeePerGas?: undefined;
|
|
4196
|
-
accessList?: undefined;
|
|
4197
|
-
blobVersionedHashes?: undefined;
|
|
4198
|
-
chainId?: `0x${string}` | undefined;
|
|
4199
|
-
yParity?: undefined;
|
|
4200
|
-
type: "0x0";
|
|
4201
|
-
}, "yParity">, "typeHex"> & {
|
|
4202
|
-
isSystemTx?: undefined;
|
|
4203
|
-
mint?: undefined;
|
|
4204
|
-
sourceHash?: undefined;
|
|
4205
|
-
}) | ({
|
|
4206
|
-
r?: `0x${string}` | undefined;
|
|
4207
|
-
s?: `0x${string}` | undefined;
|
|
4208
|
-
v?: `0x${string}` | undefined;
|
|
4209
|
-
yParity?: `0x${string}` | undefined;
|
|
4210
|
-
gasPrice?: `0x${string}` | undefined;
|
|
4211
|
-
maxFeePerBlobGas?: `0x${string}` | undefined;
|
|
4212
|
-
maxFeePerGas?: `0x${string}` | undefined;
|
|
4213
|
-
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
|
4214
|
-
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
|
|
4215
|
-
to?: `0x${string}` | null | undefined;
|
|
4216
|
-
from?: `0x${string}` | undefined;
|
|
4217
|
-
gas?: `0x${string}` | undefined;
|
|
4218
|
-
nonce?: `0x${string}` | undefined;
|
|
4219
|
-
value?: `0x${string}` | undefined;
|
|
4220
|
-
accessList?: import("viem").AccessList | undefined;
|
|
4221
|
-
blobVersionedHashes?: undefined;
|
|
4222
|
-
blockHash?: `0x${string}` | null | undefined;
|
|
4223
|
-
blockNumber?: `0x${string}` | null | undefined;
|
|
4224
|
-
hash?: `0x${string}` | undefined;
|
|
4225
|
-
input?: `0x${string}` | undefined;
|
|
4226
|
-
transactionIndex?: `0x${string}` | null | undefined;
|
|
4227
|
-
chainId?: `0x${string}` | undefined;
|
|
4228
|
-
} & import("viem/chains").Omit<import("viem/chains").PartialBy<{
|
|
4229
|
-
blockHash: `0x${string}` | null;
|
|
4230
|
-
blockNumber: `0x${string}` | null;
|
|
4231
|
-
from: `0x${string}`;
|
|
4232
|
-
gas: `0x${string}`;
|
|
4233
|
-
hash: `0x${string}`;
|
|
4234
|
-
input: `0x${string}`;
|
|
4235
|
-
nonce: `0x${string}`;
|
|
4236
|
-
r: `0x${string}`;
|
|
4237
|
-
s: `0x${string}`;
|
|
4238
|
-
to: `0x${string}` | null;
|
|
4239
|
-
transactionIndex: `0x${string}` | null;
|
|
4240
|
-
typeHex: `0x${string}` | null;
|
|
4241
|
-
v: `0x${string}`;
|
|
4242
|
-
value: `0x${string}`;
|
|
4243
|
-
yParity: `0x${string}`;
|
|
4244
|
-
gasPrice: `0x${string}`;
|
|
4245
|
-
maxFeePerBlobGas?: undefined;
|
|
4246
|
-
maxFeePerGas?: undefined;
|
|
4247
|
-
maxPriorityFeePerGas?: undefined;
|
|
4248
|
-
accessList: import("viem").AccessList;
|
|
4249
|
-
blobVersionedHashes?: undefined;
|
|
4250
|
-
chainId: `0x${string}`;
|
|
4251
|
-
type: "0x1";
|
|
4252
|
-
}, "yParity">, "typeHex"> & {
|
|
4253
|
-
isSystemTx?: undefined;
|
|
4254
|
-
mint?: undefined;
|
|
4255
|
-
sourceHash?: undefined;
|
|
4256
|
-
}) | ({
|
|
4257
|
-
r?: `0x${string}` | undefined;
|
|
4258
|
-
s?: `0x${string}` | undefined;
|
|
4259
|
-
v?: `0x${string}` | undefined;
|
|
4260
|
-
yParity?: `0x${string}` | undefined;
|
|
4261
|
-
gasPrice?: `0x${string}` | undefined;
|
|
4262
|
-
maxFeePerBlobGas?: `0x${string}` | undefined;
|
|
4263
|
-
maxFeePerGas?: `0x${string}` | undefined;
|
|
4264
|
-
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
|
4265
|
-
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
|
|
4266
|
-
to?: `0x${string}` | null | undefined;
|
|
4267
|
-
from?: `0x${string}` | undefined;
|
|
4268
|
-
gas?: `0x${string}` | undefined;
|
|
4269
|
-
nonce?: `0x${string}` | undefined;
|
|
4270
|
-
value?: `0x${string}` | undefined;
|
|
4271
|
-
accessList?: import("viem").AccessList | undefined;
|
|
4272
|
-
blobVersionedHashes?: undefined;
|
|
4273
|
-
blockHash?: `0x${string}` | null | undefined;
|
|
4274
|
-
blockNumber?: `0x${string}` | null | undefined;
|
|
4275
|
-
hash?: `0x${string}` | undefined;
|
|
4276
|
-
input?: `0x${string}` | undefined;
|
|
4277
|
-
transactionIndex?: `0x${string}` | null | undefined;
|
|
4278
|
-
chainId?: `0x${string}` | undefined;
|
|
4279
|
-
} & import("viem/chains").Omit<import("viem/chains").PartialBy<{
|
|
4280
|
-
blockHash: `0x${string}` | null;
|
|
4281
|
-
blockNumber: `0x${string}` | null;
|
|
4282
|
-
from: `0x${string}`;
|
|
4283
|
-
gas: `0x${string}`;
|
|
4284
|
-
hash: `0x${string}`;
|
|
4285
|
-
input: `0x${string}`;
|
|
4286
|
-
nonce: `0x${string}`;
|
|
4287
|
-
r: `0x${string}`;
|
|
4288
|
-
s: `0x${string}`;
|
|
4289
|
-
to: `0x${string}` | null;
|
|
4290
|
-
transactionIndex: `0x${string}` | null;
|
|
4291
|
-
typeHex: `0x${string}` | null;
|
|
4292
|
-
v: `0x${string}`;
|
|
4293
|
-
value: `0x${string}`;
|
|
4294
|
-
yParity: `0x${string}`;
|
|
4295
|
-
gasPrice?: undefined;
|
|
4296
|
-
maxFeePerBlobGas?: undefined;
|
|
4297
|
-
maxFeePerGas: `0x${string}`;
|
|
4298
|
-
maxPriorityFeePerGas: `0x${string}`;
|
|
4299
|
-
accessList: import("viem").AccessList;
|
|
4300
|
-
blobVersionedHashes?: undefined;
|
|
4301
|
-
chainId: `0x${string}`;
|
|
4302
|
-
type: "0x2";
|
|
4303
|
-
}, "yParity">, "typeHex"> & {
|
|
4304
|
-
isSystemTx?: undefined;
|
|
4305
|
-
mint?: undefined;
|
|
4306
|
-
sourceHash?: undefined;
|
|
4307
|
-
}) | ({
|
|
4308
|
-
r?: `0x${string}` | undefined;
|
|
4309
|
-
s?: `0x${string}` | undefined;
|
|
4310
|
-
v?: `0x${string}` | undefined;
|
|
4311
|
-
yParity?: `0x${string}` | undefined;
|
|
4312
|
-
gasPrice?: `0x${string}` | undefined;
|
|
4313
|
-
maxFeePerBlobGas?: `0x${string}` | undefined;
|
|
4314
|
-
maxFeePerGas?: `0x${string}` | undefined;
|
|
4315
|
-
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
|
4316
|
-
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
|
|
4317
|
-
to?: `0x${string}` | null | undefined;
|
|
4318
|
-
from?: `0x${string}` | undefined;
|
|
4319
|
-
gas?: `0x${string}` | undefined;
|
|
4320
|
-
nonce?: `0x${string}` | undefined;
|
|
4321
|
-
value?: `0x${string}` | undefined;
|
|
4322
|
-
accessList?: import("viem").AccessList | undefined;
|
|
4323
|
-
blobVersionedHashes?: undefined;
|
|
4324
|
-
blockHash?: `0x${string}` | null | undefined;
|
|
4325
|
-
blockNumber?: `0x${string}` | null | undefined;
|
|
4326
|
-
hash?: `0x${string}` | undefined;
|
|
4327
|
-
input?: `0x${string}` | undefined;
|
|
4328
|
-
transactionIndex?: `0x${string}` | null | undefined;
|
|
4329
|
-
chainId?: `0x${string}` | undefined;
|
|
4330
|
-
} & Omit<import("viem").TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & import("viem").FeeValuesEIP1559<`0x${string}`> & {
|
|
4331
|
-
isSystemTx?: boolean | undefined;
|
|
4332
|
-
mint?: `0x${string}` | undefined;
|
|
4333
|
-
sourceHash: `0x${string}`;
|
|
4334
|
-
type: "0x7e";
|
|
4335
|
-
}) | ({
|
|
4336
|
-
r?: `0x${string}` | undefined;
|
|
4337
|
-
s?: `0x${string}` | undefined;
|
|
4338
|
-
v?: `0x${string}` | undefined;
|
|
4339
|
-
yParity?: `0x${string}` | undefined;
|
|
4340
|
-
gasPrice?: `0x${string}` | undefined;
|
|
4341
|
-
maxFeePerBlobGas?: `0x${string}` | undefined;
|
|
4342
|
-
maxFeePerGas?: `0x${string}` | undefined;
|
|
4343
|
-
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
|
4344
|
-
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
|
|
4345
|
-
to?: `0x${string}` | null | undefined;
|
|
4346
|
-
from?: `0x${string}` | undefined;
|
|
4347
|
-
gas?: `0x${string}` | undefined;
|
|
4348
|
-
nonce?: `0x${string}` | undefined;
|
|
4349
|
-
value?: `0x${string}` | undefined;
|
|
4350
|
-
accessList?: import("viem").AccessList | undefined;
|
|
4351
|
-
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
4352
|
-
blockHash?: `0x${string}` | null | undefined;
|
|
4353
|
-
blockNumber?: `0x${string}` | null | undefined;
|
|
4354
|
-
hash?: `0x${string}` | undefined;
|
|
4355
|
-
input?: `0x${string}` | undefined;
|
|
4356
|
-
transactionIndex?: `0x${string}` | null | undefined;
|
|
4357
|
-
chainId?: `0x${string}` | undefined;
|
|
4358
|
-
} & import("viem/chains").Omit<import("viem/chains").PartialBy<{
|
|
4359
|
-
r: `0x${string}`;
|
|
4360
|
-
s: `0x${string}`;
|
|
4361
|
-
v: `0x${string}`;
|
|
4362
|
-
to: `0x${string}` | null;
|
|
4363
|
-
from: `0x${string}`;
|
|
4364
|
-
gas: `0x${string}`;
|
|
4365
|
-
nonce: `0x${string}`;
|
|
4366
|
-
value: `0x${string}`;
|
|
4367
|
-
blockHash: `0x${string}` | null;
|
|
4368
|
-
blockNumber: `0x${string}` | null;
|
|
4369
|
-
hash: `0x${string}`;
|
|
4370
|
-
input: `0x${string}`;
|
|
4371
|
-
transactionIndex: `0x${string}` | null;
|
|
4372
|
-
typeHex: `0x${string}` | null;
|
|
4373
|
-
gasPrice: `0x${string}`;
|
|
4374
|
-
maxFeePerBlobGas?: undefined;
|
|
4375
|
-
maxFeePerGas?: undefined;
|
|
4376
|
-
maxPriorityFeePerGas?: undefined;
|
|
4377
|
-
accessList?: undefined;
|
|
4378
|
-
blobVersionedHashes?: undefined;
|
|
4379
|
-
chainId?: `0x${string}` | undefined;
|
|
4380
|
-
yParity?: undefined;
|
|
4381
|
-
type: "0x0";
|
|
4382
|
-
}, "yParity">, "typeHex"> & {
|
|
4383
|
-
isSystemTx?: undefined;
|
|
4384
|
-
mint?: undefined;
|
|
4385
|
-
sourceHash?: undefined;
|
|
4386
|
-
}) | ({
|
|
4387
|
-
r?: `0x${string}` | undefined;
|
|
4388
|
-
s?: `0x${string}` | undefined;
|
|
4389
|
-
v?: `0x${string}` | undefined;
|
|
4390
|
-
yParity?: `0x${string}` | undefined;
|
|
4391
|
-
gasPrice?: `0x${string}` | undefined;
|
|
4392
|
-
maxFeePerBlobGas?: `0x${string}` | undefined;
|
|
4393
|
-
maxFeePerGas?: `0x${string}` | undefined;
|
|
4394
|
-
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
|
4395
|
-
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
|
|
4396
|
-
to?: `0x${string}` | null | undefined;
|
|
4397
|
-
from?: `0x${string}` | undefined;
|
|
4398
|
-
gas?: `0x${string}` | undefined;
|
|
4399
|
-
nonce?: `0x${string}` | undefined;
|
|
4400
|
-
value?: `0x${string}` | undefined;
|
|
4401
|
-
accessList?: import("viem").AccessList | undefined;
|
|
4402
|
-
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
4403
|
-
blockHash?: `0x${string}` | null | undefined;
|
|
4404
|
-
blockNumber?: `0x${string}` | null | undefined;
|
|
4405
|
-
hash?: `0x${string}` | undefined;
|
|
4406
|
-
input?: `0x${string}` | undefined;
|
|
4407
|
-
transactionIndex?: `0x${string}` | null | undefined;
|
|
4408
|
-
chainId?: `0x${string}` | undefined;
|
|
4409
|
-
} & import("viem/chains").Omit<import("viem/chains").PartialBy<{
|
|
4410
|
-
blockHash: `0x${string}` | null;
|
|
4411
|
-
blockNumber: `0x${string}` | null;
|
|
4412
|
-
from: `0x${string}`;
|
|
4413
|
-
gas: `0x${string}`;
|
|
4414
|
-
hash: `0x${string}`;
|
|
4415
|
-
input: `0x${string}`;
|
|
4416
|
-
nonce: `0x${string}`;
|
|
4417
|
-
r: `0x${string}`;
|
|
4418
|
-
s: `0x${string}`;
|
|
4419
|
-
to: `0x${string}` | null;
|
|
4420
|
-
transactionIndex: `0x${string}` | null;
|
|
4421
|
-
typeHex: `0x${string}` | null;
|
|
4422
|
-
v: `0x${string}`;
|
|
4423
|
-
value: `0x${string}`;
|
|
4424
|
-
yParity: `0x${string}`;
|
|
4425
|
-
gasPrice: `0x${string}`;
|
|
4426
|
-
maxFeePerBlobGas?: undefined;
|
|
4427
|
-
maxFeePerGas?: undefined;
|
|
4428
|
-
maxPriorityFeePerGas?: undefined;
|
|
4429
|
-
accessList: import("viem").AccessList;
|
|
4430
|
-
blobVersionedHashes?: undefined;
|
|
4431
|
-
chainId: `0x${string}`;
|
|
4432
|
-
type: "0x1";
|
|
4433
|
-
}, "yParity">, "typeHex"> & {
|
|
4434
|
-
isSystemTx?: undefined;
|
|
4435
|
-
mint?: undefined;
|
|
4436
|
-
sourceHash?: undefined;
|
|
4437
|
-
}) | ({
|
|
4438
|
-
r?: `0x${string}` | undefined;
|
|
4439
|
-
s?: `0x${string}` | undefined;
|
|
4440
|
-
v?: `0x${string}` | undefined;
|
|
4441
|
-
yParity?: `0x${string}` | undefined;
|
|
4442
|
-
gasPrice?: `0x${string}` | undefined;
|
|
4443
|
-
maxFeePerBlobGas?: `0x${string}` | undefined;
|
|
4444
|
-
maxFeePerGas?: `0x${string}` | undefined;
|
|
4445
|
-
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
|
4446
|
-
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
|
|
4447
|
-
to?: `0x${string}` | null | undefined;
|
|
4448
|
-
from?: `0x${string}` | undefined;
|
|
4449
|
-
gas?: `0x${string}` | undefined;
|
|
4450
|
-
nonce?: `0x${string}` | undefined;
|
|
4451
|
-
value?: `0x${string}` | undefined;
|
|
4452
|
-
accessList?: import("viem").AccessList | undefined;
|
|
4453
|
-
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
4454
|
-
blockHash?: `0x${string}` | null | undefined;
|
|
4455
|
-
blockNumber?: `0x${string}` | null | undefined;
|
|
4456
|
-
hash?: `0x${string}` | undefined;
|
|
4457
|
-
input?: `0x${string}` | undefined;
|
|
4458
|
-
transactionIndex?: `0x${string}` | null | undefined;
|
|
4459
|
-
chainId?: `0x${string}` | undefined;
|
|
4460
|
-
} & import("viem/chains").Omit<import("viem/chains").PartialBy<{
|
|
1580
|
+
readonly l2Erc721Bridge: {
|
|
1581
|
+
readonly address: "0x4200000000000000000000000000000000000014";
|
|
1582
|
+
};
|
|
1583
|
+
readonly l2StandardBridge: {
|
|
1584
|
+
readonly address: "0x4200000000000000000000000000000000000010";
|
|
1585
|
+
};
|
|
1586
|
+
readonly l2ToL1MessagePasser: {
|
|
1587
|
+
readonly address: "0x4200000000000000000000000000000000000016";
|
|
1588
|
+
};
|
|
1589
|
+
};
|
|
1590
|
+
id: 8453;
|
|
1591
|
+
name: "Base";
|
|
1592
|
+
nativeCurrency: {
|
|
1593
|
+
readonly name: "Ether";
|
|
1594
|
+
readonly symbol: "ETH";
|
|
1595
|
+
readonly decimals: 18;
|
|
1596
|
+
};
|
|
1597
|
+
rpcUrls: {
|
|
1598
|
+
readonly default: {
|
|
1599
|
+
readonly http: readonly ["https://mainnet.base.org"];
|
|
1600
|
+
};
|
|
1601
|
+
};
|
|
1602
|
+
sourceId: 1;
|
|
1603
|
+
testnet?: boolean | undefined;
|
|
1604
|
+
custom?: Record<string, unknown> | undefined;
|
|
1605
|
+
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
1606
|
+
formatters: {
|
|
1607
|
+
readonly block: {
|
|
1608
|
+
exclude: [] | undefined;
|
|
1609
|
+
format: (args: import("viem/chains").OpStackRpcBlock<import("viem").BlockTag, boolean>) => {
|
|
1610
|
+
baseFeePerGas: bigint | null;
|
|
1611
|
+
blobGasUsed: bigint;
|
|
1612
|
+
difficulty: bigint;
|
|
1613
|
+
excessBlobGas: bigint;
|
|
1614
|
+
extraData: `0x${string}`;
|
|
1615
|
+
gasLimit: bigint;
|
|
1616
|
+
gasUsed: bigint;
|
|
1617
|
+
hash: `0x${string}` | null;
|
|
1618
|
+
logsBloom: `0x${string}` | null;
|
|
1619
|
+
miner: `0x${string}`;
|
|
1620
|
+
mixHash: `0x${string}`;
|
|
1621
|
+
nonce: `0x${string}` | null;
|
|
1622
|
+
number: bigint | null;
|
|
1623
|
+
parentBeaconBlockRoot?: `0x${string}` | undefined;
|
|
1624
|
+
parentHash: `0x${string}`;
|
|
1625
|
+
receiptsRoot: `0x${string}`;
|
|
1626
|
+
sealFields: `0x${string}`[];
|
|
1627
|
+
sha3Uncles: `0x${string}`;
|
|
1628
|
+
size: bigint;
|
|
1629
|
+
stateRoot: `0x${string}`;
|
|
1630
|
+
timestamp: bigint;
|
|
1631
|
+
totalDifficulty: bigint | null;
|
|
1632
|
+
transactions: `0x${string}`[] | import("viem/chains").OpStackTransaction<boolean>[];
|
|
1633
|
+
transactionsRoot: `0x${string}`;
|
|
1634
|
+
uncles: `0x${string}`[];
|
|
1635
|
+
withdrawals?: import("viem").Withdrawal[] | undefined;
|
|
1636
|
+
withdrawalsRoot?: `0x${string}` | undefined;
|
|
1637
|
+
};
|
|
1638
|
+
type: "block";
|
|
1639
|
+
};
|
|
1640
|
+
readonly transaction: {
|
|
1641
|
+
exclude: [] | undefined;
|
|
1642
|
+
format: (args: import("viem/chains").OpStackRpcTransaction<boolean>) => {
|
|
4461
1643
|
blockHash: `0x${string}` | null;
|
|
4462
|
-
blockNumber:
|
|
1644
|
+
blockNumber: bigint | null;
|
|
4463
1645
|
from: `0x${string}`;
|
|
4464
|
-
gas:
|
|
1646
|
+
gas: bigint;
|
|
4465
1647
|
hash: `0x${string}`;
|
|
4466
1648
|
input: `0x${string}`;
|
|
4467
|
-
nonce:
|
|
1649
|
+
nonce: number;
|
|
4468
1650
|
r: `0x${string}`;
|
|
4469
1651
|
s: `0x${string}`;
|
|
4470
1652
|
to: `0x${string}` | null;
|
|
4471
|
-
transactionIndex:
|
|
1653
|
+
transactionIndex: number | null;
|
|
4472
1654
|
typeHex: `0x${string}` | null;
|
|
4473
|
-
v:
|
|
4474
|
-
value:
|
|
4475
|
-
yParity:
|
|
1655
|
+
v: bigint;
|
|
1656
|
+
value: bigint;
|
|
1657
|
+
yParity: number;
|
|
4476
1658
|
gasPrice?: undefined;
|
|
4477
1659
|
maxFeePerBlobGas?: undefined;
|
|
4478
|
-
maxFeePerGas:
|
|
4479
|
-
maxPriorityFeePerGas:
|
|
4480
|
-
accessList: import("viem").AccessList;
|
|
4481
|
-
blobVersionedHashes?: undefined;
|
|
4482
|
-
chainId: `0x${string}`;
|
|
4483
|
-
type: "0x2";
|
|
4484
|
-
}, "yParity">, "typeHex"> & {
|
|
4485
|
-
isSystemTx?: undefined;
|
|
4486
|
-
mint?: undefined;
|
|
4487
|
-
sourceHash?: undefined;
|
|
4488
|
-
}) | ({
|
|
4489
|
-
r?: `0x${string}` | undefined;
|
|
4490
|
-
s?: `0x${string}` | undefined;
|
|
4491
|
-
v?: `0x${string}` | undefined;
|
|
4492
|
-
yParity?: `0x${string}` | undefined;
|
|
4493
|
-
gasPrice?: `0x${string}` | undefined;
|
|
4494
|
-
maxFeePerBlobGas?: `0x${string}` | undefined;
|
|
4495
|
-
maxFeePerGas?: `0x${string}` | undefined;
|
|
4496
|
-
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
|
4497
|
-
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
|
|
4498
|
-
to?: `0x${string}` | null | undefined;
|
|
4499
|
-
from?: `0x${string}` | undefined;
|
|
4500
|
-
gas?: `0x${string}` | undefined;
|
|
4501
|
-
nonce?: `0x${string}` | undefined;
|
|
4502
|
-
value?: `0x${string}` | undefined;
|
|
4503
|
-
accessList?: import("viem").AccessList | undefined;
|
|
4504
|
-
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
4505
|
-
blockHash?: `0x${string}` | null | undefined;
|
|
4506
|
-
blockNumber?: `0x${string}` | null | undefined;
|
|
4507
|
-
hash?: `0x${string}` | undefined;
|
|
4508
|
-
input?: `0x${string}` | undefined;
|
|
4509
|
-
transactionIndex?: `0x${string}` | null | undefined;
|
|
4510
|
-
chainId?: `0x${string}` | undefined;
|
|
4511
|
-
} & import("viem/chains").Omit<import("viem/chains").PartialBy<{
|
|
4512
|
-
blockHash: `0x${string}` | null;
|
|
4513
|
-
blockNumber: `0x${string}` | null;
|
|
4514
|
-
from: `0x${string}`;
|
|
4515
|
-
gas: `0x${string}`;
|
|
4516
|
-
hash: `0x${string}`;
|
|
4517
|
-
input: `0x${string}`;
|
|
4518
|
-
nonce: `0x${string}`;
|
|
4519
|
-
r: `0x${string}`;
|
|
4520
|
-
s: `0x${string}`;
|
|
4521
|
-
to: `0x${string}` | null;
|
|
4522
|
-
transactionIndex: `0x${string}` | null;
|
|
4523
|
-
typeHex: `0x${string}` | null;
|
|
4524
|
-
v: `0x${string}`;
|
|
4525
|
-
value: `0x${string}`;
|
|
4526
|
-
yParity: `0x${string}`;
|
|
4527
|
-
gasPrice?: undefined;
|
|
4528
|
-
maxFeePerBlobGas: `0x${string}`;
|
|
4529
|
-
maxFeePerGas: `0x${string}`;
|
|
4530
|
-
maxPriorityFeePerGas: `0x${string}`;
|
|
4531
|
-
accessList: import("viem").AccessList;
|
|
4532
|
-
blobVersionedHashes: readonly `0x${string}`[];
|
|
4533
|
-
chainId: `0x${string}`;
|
|
4534
|
-
type: "0x3";
|
|
4535
|
-
}, "yParity">, "typeHex"> & {
|
|
4536
|
-
isSystemTx?: undefined;
|
|
4537
|
-
mint?: undefined;
|
|
4538
|
-
sourceHash?: undefined;
|
|
4539
|
-
}) | ({
|
|
4540
|
-
r?: `0x${string}` | undefined;
|
|
4541
|
-
s?: `0x${string}` | undefined;
|
|
4542
|
-
v?: `0x${string}` | undefined;
|
|
4543
|
-
yParity?: `0x${string}` | undefined;
|
|
4544
|
-
gasPrice?: `0x${string}` | undefined;
|
|
4545
|
-
maxFeePerBlobGas?: `0x${string}` | undefined;
|
|
4546
|
-
maxFeePerGas?: `0x${string}` | undefined;
|
|
4547
|
-
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
|
4548
|
-
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
|
|
4549
|
-
to?: `0x${string}` | null | undefined;
|
|
4550
|
-
from?: `0x${string}` | undefined;
|
|
4551
|
-
gas?: `0x${string}` | undefined;
|
|
4552
|
-
nonce?: `0x${string}` | undefined;
|
|
4553
|
-
value?: `0x${string}` | undefined;
|
|
4554
|
-
accessList?: import("viem").AccessList | undefined;
|
|
4555
|
-
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
4556
|
-
blockHash?: `0x${string}` | null | undefined;
|
|
4557
|
-
blockNumber?: `0x${string}` | null | undefined;
|
|
4558
|
-
hash?: `0x${string}` | undefined;
|
|
4559
|
-
input?: `0x${string}` | undefined;
|
|
4560
|
-
transactionIndex?: `0x${string}` | null | undefined;
|
|
4561
|
-
chainId?: `0x${string}` | undefined;
|
|
4562
|
-
} & Omit<import("viem").TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & import("viem").FeeValuesEIP1559<`0x${string}`> & {
|
|
1660
|
+
maxFeePerGas: bigint;
|
|
1661
|
+
maxPriorityFeePerGas: bigint;
|
|
4563
1662
|
isSystemTx?: boolean | undefined;
|
|
4564
|
-
mint?:
|
|
1663
|
+
mint?: bigint | undefined;
|
|
4565
1664
|
sourceHash: `0x${string}`;
|
|
4566
|
-
type: "
|
|
4567
|
-
}
|
|
1665
|
+
type: "deposit";
|
|
1666
|
+
} | {
|
|
4568
1667
|
r: `0x${string}`;
|
|
4569
1668
|
s: `0x${string}`;
|
|
4570
1669
|
v: bigint;
|
|
@@ -4579,69 +1678,16 @@ export declare const CHAIN_VIEM: {
|
|
|
4579
1678
|
input: `0x${string}`;
|
|
4580
1679
|
transactionIndex: number | null;
|
|
4581
1680
|
typeHex: `0x${string}` | null;
|
|
4582
|
-
gasPrice: bigint;
|
|
4583
|
-
maxFeePerBlobGas?: undefined;
|
|
4584
|
-
maxFeePerGas?: undefined;
|
|
4585
|
-
maxPriorityFeePerGas?: undefined;
|
|
4586
1681
|
accessList?: undefined;
|
|
1682
|
+
authorizationList?: undefined;
|
|
4587
1683
|
blobVersionedHashes?: undefined;
|
|
4588
1684
|
chainId?: number | undefined;
|
|
4589
1685
|
yParity?: undefined;
|
|
4590
1686
|
type: "legacy";
|
|
4591
|
-
isSystemTx?: undefined;
|
|
4592
|
-
mint?: undefined;
|
|
4593
|
-
sourceHash?: undefined;
|
|
4594
|
-
} | {
|
|
4595
|
-
r: `0x${string}`;
|
|
4596
|
-
s: `0x${string}`;
|
|
4597
|
-
v: bigint;
|
|
4598
|
-
to: `0x${string}` | null;
|
|
4599
|
-
from: `0x${string}`;
|
|
4600
|
-
gas: bigint;
|
|
4601
|
-
nonce: number;
|
|
4602
|
-
value: bigint;
|
|
4603
|
-
blockHash: `0x${string}` | null;
|
|
4604
|
-
blockNumber: bigint | null;
|
|
4605
|
-
hash: `0x${string}`;
|
|
4606
|
-
input: `0x${string}`;
|
|
4607
|
-
transactionIndex: number | null;
|
|
4608
|
-
typeHex: `0x${string}` | null;
|
|
4609
|
-
gasPrice: undefined;
|
|
4610
|
-
maxFeePerBlobGas?: undefined;
|
|
4611
|
-
maxFeePerGas: bigint;
|
|
4612
|
-
maxPriorityFeePerGas: bigint;
|
|
4613
|
-
accessList?: undefined;
|
|
4614
|
-
blobVersionedHashes?: undefined;
|
|
4615
|
-
chainId?: number | undefined;
|
|
4616
|
-
yParity: number;
|
|
4617
|
-
type: "deposit";
|
|
4618
|
-
isSystemTx?: boolean | undefined;
|
|
4619
|
-
mint?: bigint | undefined;
|
|
4620
|
-
sourceHash: `0x${string}`;
|
|
4621
|
-
} | {
|
|
4622
|
-
blockHash: `0x${string}` | null;
|
|
4623
|
-
blockNumber: bigint | null;
|
|
4624
|
-
from: `0x${string}`;
|
|
4625
|
-
gas: bigint;
|
|
4626
|
-
hash: `0x${string}`;
|
|
4627
|
-
input: `0x${string}`;
|
|
4628
|
-
nonce: number;
|
|
4629
|
-
r: `0x${string}`;
|
|
4630
|
-
s: `0x${string}`;
|
|
4631
|
-
to: `0x${string}` | null;
|
|
4632
|
-
transactionIndex: number | null;
|
|
4633
|
-
typeHex: `0x${string}` | null;
|
|
4634
|
-
v: bigint;
|
|
4635
|
-
value: bigint;
|
|
4636
|
-
yParity: number;
|
|
4637
1687
|
gasPrice: bigint;
|
|
4638
1688
|
maxFeePerBlobGas?: undefined;
|
|
4639
1689
|
maxFeePerGas?: undefined;
|
|
4640
1690
|
maxPriorityFeePerGas?: undefined;
|
|
4641
|
-
accessList: import("viem").AccessList;
|
|
4642
|
-
blobVersionedHashes?: undefined;
|
|
4643
|
-
chainId: number;
|
|
4644
|
-
type: "eip2930";
|
|
4645
1691
|
isSystemTx?: undefined;
|
|
4646
1692
|
mint?: undefined;
|
|
4647
1693
|
sourceHash?: undefined;
|
|
@@ -4661,14 +1707,15 @@ export declare const CHAIN_VIEM: {
|
|
|
4661
1707
|
v: bigint;
|
|
4662
1708
|
value: bigint;
|
|
4663
1709
|
yParity: number;
|
|
4664
|
-
gasPrice: undefined;
|
|
4665
|
-
maxFeePerBlobGas?: undefined;
|
|
4666
|
-
maxFeePerGas: bigint;
|
|
4667
|
-
maxPriorityFeePerGas: bigint;
|
|
4668
1710
|
accessList: import("viem").AccessList;
|
|
1711
|
+
authorizationList?: undefined;
|
|
4669
1712
|
blobVersionedHashes?: undefined;
|
|
4670
1713
|
chainId: number;
|
|
4671
|
-
type: "
|
|
1714
|
+
type: "eip2930";
|
|
1715
|
+
gasPrice: bigint;
|
|
1716
|
+
maxFeePerBlobGas?: undefined;
|
|
1717
|
+
maxFeePerGas?: undefined;
|
|
1718
|
+
maxPriorityFeePerGas?: undefined;
|
|
4672
1719
|
isSystemTx?: undefined;
|
|
4673
1720
|
mint?: undefined;
|
|
4674
1721
|
sourceHash?: undefined;
|
|
@@ -4688,68 +1735,15 @@ export declare const CHAIN_VIEM: {
|
|
|
4688
1735
|
v: bigint;
|
|
4689
1736
|
value: bigint;
|
|
4690
1737
|
yParity: number;
|
|
4691
|
-
gasPrice: undefined;
|
|
4692
|
-
maxFeePerBlobGas?: undefined;
|
|
4693
|
-
maxFeePerGas: bigint;
|
|
4694
|
-
maxPriorityFeePerGas: bigint;
|
|
4695
|
-
accessList: import("viem").AccessList;
|
|
4696
|
-
blobVersionedHashes?: undefined;
|
|
4697
|
-
chainId: number;
|
|
4698
|
-
type: "deposit";
|
|
4699
|
-
isSystemTx?: boolean | undefined;
|
|
4700
|
-
mint?: bigint | undefined;
|
|
4701
|
-
sourceHash: `0x${string}`;
|
|
4702
|
-
} | {
|
|
4703
|
-
blockHash: `0x${string}` | null;
|
|
4704
|
-
blockNumber: bigint | null;
|
|
4705
|
-
from: `0x${string}`;
|
|
4706
|
-
gas: bigint;
|
|
4707
|
-
hash: `0x${string}`;
|
|
4708
|
-
input: `0x${string}`;
|
|
4709
|
-
nonce: number;
|
|
4710
|
-
r: `0x${string}`;
|
|
4711
|
-
s: `0x${string}`;
|
|
4712
|
-
to: `0x${string}` | null;
|
|
4713
|
-
transactionIndex: number | null;
|
|
4714
|
-
typeHex: `0x${string}` | null;
|
|
4715
|
-
v: bigint;
|
|
4716
|
-
value: bigint;
|
|
4717
|
-
yParity: number;
|
|
4718
|
-
gasPrice: bigint;
|
|
4719
|
-
maxFeePerBlobGas?: undefined;
|
|
4720
|
-
maxFeePerGas: undefined;
|
|
4721
|
-
maxPriorityFeePerGas: undefined;
|
|
4722
1738
|
accessList: import("viem").AccessList;
|
|
1739
|
+
authorizationList?: undefined;
|
|
4723
1740
|
blobVersionedHashes?: undefined;
|
|
4724
1741
|
chainId: number;
|
|
4725
|
-
type: "
|
|
4726
|
-
isSystemTx?: undefined;
|
|
4727
|
-
mint?: undefined;
|
|
4728
|
-
sourceHash?: undefined;
|
|
4729
|
-
} | {
|
|
4730
|
-
blockHash: `0x${string}` | null;
|
|
4731
|
-
blockNumber: bigint | null;
|
|
4732
|
-
from: `0x${string}`;
|
|
4733
|
-
gas: bigint;
|
|
4734
|
-
hash: `0x${string}`;
|
|
4735
|
-
input: `0x${string}`;
|
|
4736
|
-
nonce: number;
|
|
4737
|
-
r: `0x${string}`;
|
|
4738
|
-
s: `0x${string}`;
|
|
4739
|
-
to: `0x${string}` | null;
|
|
4740
|
-
transactionIndex: number | null;
|
|
4741
|
-
typeHex: `0x${string}` | null;
|
|
4742
|
-
v: bigint;
|
|
4743
|
-
value: bigint;
|
|
4744
|
-
yParity: number;
|
|
1742
|
+
type: "eip1559";
|
|
4745
1743
|
gasPrice?: undefined;
|
|
4746
1744
|
maxFeePerBlobGas?: undefined;
|
|
4747
1745
|
maxFeePerGas: bigint;
|
|
4748
1746
|
maxPriorityFeePerGas: bigint;
|
|
4749
|
-
accessList: import("viem").AccessList;
|
|
4750
|
-
blobVersionedHashes?: undefined;
|
|
4751
|
-
chainId: number;
|
|
4752
|
-
type: "eip1559";
|
|
4753
1747
|
isSystemTx?: undefined;
|
|
4754
1748
|
mint?: undefined;
|
|
4755
1749
|
sourceHash?: undefined;
|
|
@@ -4769,41 +1763,15 @@ export declare const CHAIN_VIEM: {
|
|
|
4769
1763
|
v: bigint;
|
|
4770
1764
|
value: bigint;
|
|
4771
1765
|
yParity: number;
|
|
4772
|
-
gasPrice?: undefined;
|
|
4773
|
-
maxFeePerBlobGas?: undefined;
|
|
4774
|
-
maxFeePerGas: bigint;
|
|
4775
|
-
maxPriorityFeePerGas: bigint;
|
|
4776
1766
|
accessList: import("viem").AccessList;
|
|
4777
|
-
|
|
1767
|
+
authorizationList?: undefined;
|
|
1768
|
+
blobVersionedHashes: readonly `0x${string}`[];
|
|
4778
1769
|
chainId: number;
|
|
4779
|
-
type: "
|
|
4780
|
-
isSystemTx?: boolean | undefined;
|
|
4781
|
-
mint?: bigint | undefined;
|
|
4782
|
-
sourceHash: `0x${string}`;
|
|
4783
|
-
} | {
|
|
4784
|
-
blockHash: `0x${string}` | null;
|
|
4785
|
-
blockNumber: bigint | null;
|
|
4786
|
-
from: `0x${string}`;
|
|
4787
|
-
gas: bigint;
|
|
4788
|
-
hash: `0x${string}`;
|
|
4789
|
-
input: `0x${string}`;
|
|
4790
|
-
nonce: number;
|
|
4791
|
-
r: `0x${string}`;
|
|
4792
|
-
s: `0x${string}`;
|
|
4793
|
-
to: `0x${string}` | null;
|
|
4794
|
-
transactionIndex: number | null;
|
|
4795
|
-
typeHex: `0x${string}` | null;
|
|
4796
|
-
v: bigint;
|
|
4797
|
-
value: bigint;
|
|
4798
|
-
yParity: number;
|
|
1770
|
+
type: "eip4844";
|
|
4799
1771
|
gasPrice?: undefined;
|
|
4800
1772
|
maxFeePerBlobGas: bigint;
|
|
4801
1773
|
maxFeePerGas: bigint;
|
|
4802
1774
|
maxPriorityFeePerGas: bigint;
|
|
4803
|
-
accessList: import("viem").AccessList;
|
|
4804
|
-
blobVersionedHashes: readonly `0x${string}`[];
|
|
4805
|
-
chainId: number;
|
|
4806
|
-
type: "eip4844";
|
|
4807
1775
|
isSystemTx?: undefined;
|
|
4808
1776
|
mint?: undefined;
|
|
4809
1777
|
sourceHash?: undefined;
|
|
@@ -4823,23 +1791,24 @@ export declare const CHAIN_VIEM: {
|
|
|
4823
1791
|
v: bigint;
|
|
4824
1792
|
value: bigint;
|
|
4825
1793
|
yParity: number;
|
|
1794
|
+
accessList: import("viem").AccessList;
|
|
1795
|
+
authorizationList: import("viem/experimental").SignedAuthorizationList<number>;
|
|
1796
|
+
blobVersionedHashes?: undefined;
|
|
1797
|
+
chainId: number;
|
|
1798
|
+
type: "eip7702";
|
|
4826
1799
|
gasPrice?: undefined;
|
|
4827
|
-
maxFeePerBlobGas
|
|
1800
|
+
maxFeePerBlobGas?: undefined;
|
|
4828
1801
|
maxFeePerGas: bigint;
|
|
4829
1802
|
maxPriorityFeePerGas: bigint;
|
|
4830
|
-
|
|
4831
|
-
|
|
4832
|
-
|
|
4833
|
-
type: "deposit";
|
|
4834
|
-
isSystemTx?: boolean | undefined;
|
|
4835
|
-
mint?: bigint | undefined;
|
|
4836
|
-
sourceHash: `0x${string}`;
|
|
1803
|
+
isSystemTx?: undefined;
|
|
1804
|
+
mint?: undefined;
|
|
1805
|
+
sourceHash?: undefined;
|
|
4837
1806
|
};
|
|
4838
1807
|
type: "transaction";
|
|
4839
1808
|
};
|
|
4840
1809
|
readonly transactionReceipt: {
|
|
4841
1810
|
exclude: [] | undefined;
|
|
4842
|
-
format: (args: import("viem/chains").
|
|
1811
|
+
format: (args: import("viem/chains").OpStackRpcTransactionReceipt) => {
|
|
4843
1812
|
blobGasPrice?: bigint | undefined;
|
|
4844
1813
|
blobGasUsed?: bigint | undefined;
|
|
4845
1814
|
blockHash: `0x${string}`;
|
|
@@ -4868,7 +1837,6 @@ export declare const CHAIN_VIEM: {
|
|
|
4868
1837
|
serializers: {
|
|
4869
1838
|
readonly transaction: typeof import("viem/chains").serializeTransactionOpStack;
|
|
4870
1839
|
};
|
|
4871
|
-
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
4872
1840
|
};
|
|
4873
1841
|
readonly 103: {
|
|
4874
1842
|
blockExplorers: {
|
|
@@ -4899,9 +1867,9 @@ export declare const CHAIN_VIEM: {
|
|
|
4899
1867
|
sourceId?: number | undefined;
|
|
4900
1868
|
testnet?: boolean | undefined;
|
|
4901
1869
|
custom?: Record<string, unknown> | undefined;
|
|
4902
|
-
formatters?: undefined;
|
|
4903
|
-
serializers?: import("viem").ChainSerializers<undefined> | undefined;
|
|
4904
1870
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
1871
|
+
formatters?: undefined;
|
|
1872
|
+
serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable<bigint, number>> | undefined;
|
|
4905
1873
|
};
|
|
4906
1874
|
readonly 104: {
|
|
4907
1875
|
blockExplorers: {
|
|
@@ -4932,33 +1900,35 @@ export declare const CHAIN_VIEM: {
|
|
|
4932
1900
|
sourceId?: number | undefined;
|
|
4933
1901
|
testnet?: boolean | undefined;
|
|
4934
1902
|
custom?: Record<string, unknown> | undefined;
|
|
4935
|
-
formatters?: undefined;
|
|
4936
|
-
serializers?: import("viem").ChainSerializers<undefined> | undefined;
|
|
4937
1903
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
1904
|
+
formatters?: undefined;
|
|
1905
|
+
serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable<bigint, number>> | undefined;
|
|
4938
1906
|
};
|
|
4939
1907
|
};
|
|
4940
1908
|
export declare const MAINNET_CHAIN_NODE: {
|
|
4941
1909
|
100: "https://api.avax.network/ext/bc/C/rpc"[];
|
|
4942
|
-
101: "https://
|
|
1910
|
+
101: "https://eth.merkle.io"[];
|
|
4943
1911
|
102: "https://mainnet.base.org"[];
|
|
4944
1912
|
103: "https://rpc.ankr.com/bsc"[];
|
|
4945
1913
|
104: "https://arb1.arbitrum.io/rpc"[];
|
|
4946
1914
|
};
|
|
4947
1915
|
export declare const TESTNET_CHAIN_NODE: {
|
|
4948
1916
|
1: "https://api.avax-test.network/ext/bc/C/rpc"[];
|
|
4949
|
-
6: "https://
|
|
1917
|
+
6: "https://sepolia.drpc.org"[];
|
|
4950
1918
|
7: "https://sepolia.base.org"[];
|
|
4951
1919
|
3: "https://data-seed-prebsc-1-s1.bnbchain.org:8545"[];
|
|
4952
1920
|
8: "https://sepolia-rollup.arbitrum.io/rpc"[];
|
|
1921
|
+
10: "https://testnet-rpc.monad.xyz"[];
|
|
4953
1922
|
};
|
|
4954
1923
|
export declare const CHAIN_NODE: {
|
|
4955
1924
|
readonly 1: "https://api.avax-test.network/ext/bc/C/rpc"[];
|
|
4956
|
-
readonly 6: "https://
|
|
1925
|
+
readonly 6: "https://sepolia.drpc.org"[];
|
|
4957
1926
|
readonly 7: "https://sepolia.base.org"[];
|
|
4958
1927
|
readonly 3: "https://data-seed-prebsc-1-s1.bnbchain.org:8545"[];
|
|
4959
1928
|
readonly 8: "https://sepolia-rollup.arbitrum.io/rpc"[];
|
|
1929
|
+
readonly 10: "https://testnet-rpc.monad.xyz"[];
|
|
4960
1930
|
readonly 100: "https://api.avax.network/ext/bc/C/rpc"[];
|
|
4961
|
-
readonly 101: "https://
|
|
1931
|
+
readonly 101: "https://eth.merkle.io"[];
|
|
4962
1932
|
readonly 102: "https://mainnet.base.org"[];
|
|
4963
1933
|
readonly 103: "https://rpc.ankr.com/bsc"[];
|
|
4964
1934
|
readonly 104: "https://arb1.arbitrum.io/rpc"[];
|