@folks-finance/xchain-sdk 0.0.27 → 0.0.28

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.
Files changed (50) hide show
  1. package/dist/chains/evm/common/constants/chain.d.ts +2447 -119
  2. package/dist/chains/evm/common/constants/chain.js +22 -6
  3. package/dist/chains/evm/common/constants/chain.js.map +1 -1
  4. package/dist/chains/evm/common/constants/contract.d.ts +1 -0
  5. package/dist/chains/evm/common/constants/contract.js +1 -0
  6. package/dist/chains/evm/common/constants/contract.js.map +1 -1
  7. package/dist/chains/evm/common/constants/tokens.d.ts +1 -1
  8. package/dist/chains/evm/common/constants/tokens.js +46 -6
  9. package/dist/chains/evm/common/constants/tokens.js.map +1 -1
  10. package/dist/chains/evm/hub/constants/chain.js +118 -36
  11. package/dist/chains/evm/hub/constants/chain.js.map +1 -1
  12. package/dist/chains/evm/hub/modules/folks-hub-loan.js +4 -4
  13. package/dist/chains/evm/hub/modules/folks-hub-loan.js.map +1 -1
  14. package/dist/chains/evm/hub/modules/folks-hub-pool.js +4 -1
  15. package/dist/chains/evm/hub/modules/folks-hub-pool.js.map +1 -1
  16. package/dist/chains/evm/hub/types/pool.d.ts +4 -0
  17. package/dist/common/constants/chain.d.ts +8 -1
  18. package/dist/common/constants/chain.js +191 -35
  19. package/dist/common/constants/chain.js.map +1 -1
  20. package/dist/common/constants/gmp.js +24 -0
  21. package/dist/common/constants/gmp.js.map +1 -1
  22. package/dist/common/constants/pool.d.ts +10 -1
  23. package/dist/common/constants/pool.js +18 -9
  24. package/dist/common/constants/pool.js.map +1 -1
  25. package/dist/common/constants/token.d.ts +2 -2
  26. package/dist/common/constants/token.js +2 -2
  27. package/dist/common/constants/token.js.map +1 -1
  28. package/dist/common/types/token.d.ts +22 -9
  29. package/dist/common/types/token.js +19 -10
  30. package/dist/common/types/token.js.map +1 -1
  31. package/dist/common/utils/formulae.js +9 -3
  32. package/dist/common/utils/formulae.js.map +1 -1
  33. package/dist/common/utils/math-lib.d.ts +1 -0
  34. package/dist/common/utils/math-lib.js +3 -0
  35. package/dist/common/utils/math-lib.js.map +1 -1
  36. package/package.json +1 -1
  37. package/src/chains/evm/common/constants/chain.ts +31 -6
  38. package/src/chains/evm/common/constants/contract.ts +1 -0
  39. package/src/chains/evm/common/constants/tokens.ts +47 -6
  40. package/src/chains/evm/hub/constants/chain.ts +149 -38
  41. package/src/chains/evm/hub/modules/folks-hub-loan.ts +8 -4
  42. package/src/chains/evm/hub/modules/folks-hub-pool.ts +6 -1
  43. package/src/chains/evm/hub/types/pool.ts +4 -0
  44. package/src/common/constants/chain.ts +275 -35
  45. package/src/common/constants/gmp.ts +24 -0
  46. package/src/common/constants/pool.ts +20 -9
  47. package/src/common/constants/token.ts +4 -2
  48. package/src/common/types/token.ts +24 -9
  49. package/src/common/utils/formulae.ts +9 -3
  50. package/src/common/utils/math-lib.ts +4 -0
@@ -1,7 +1,11 @@
1
- export declare const MAINNET_EVM_CHAIN_NAMES: readonly [];
1
+ export declare const MAINNET_EVM_CHAIN_NAMES: readonly ["AVALANCHE", "ETHEREUM", "BASE"];
2
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_FUJI", "ETHEREUM_SEPOLIA", "BASE_SEPOLIA", "BSC_TESTNET", "ARBITRUM_SEPOLIA"];
4
- export declare const MAINNET_EVM_CHAIN_ID: {};
3
+ export declare const EVM_CHAIN_NAMES: readonly ["AVALANCHE", "ETHEREUM", "BASE", "AVALANCHE_FUJI", "ETHEREUM_SEPOLIA", "BASE_SEPOLIA", "BSC_TESTNET", "ARBITRUM_SEPOLIA"];
4
+ export declare const MAINNET_EVM_CHAIN_ID: {
5
+ readonly AVALANCHE: 43114;
6
+ readonly ETHEREUM: 1;
7
+ readonly BASE: 8453;
8
+ };
5
9
  export declare const TESTNET_EVM_CHAIN_ID: {
6
10
  readonly AVALANCHE_FUJI: 43113;
7
11
  readonly ETHEREUM_SEPOLIA: 11155111;
@@ -15,8 +19,15 @@ export declare const EVM_CHAIN_ID: {
15
19
  readonly BASE_SEPOLIA: 84532;
16
20
  readonly BSC_TESTNET: 97;
17
21
  readonly ARBITRUM_SEPOLIA: 421614;
22
+ readonly AVALANCHE: 43114;
23
+ readonly ETHEREUM: 1;
24
+ readonly BASE: 8453;
25
+ };
26
+ export declare const MAINNET_EVM_FOLKS_CHAIN_ID: {
27
+ readonly AVALANCHE: 100;
28
+ readonly ETHEREUM: 101;
29
+ readonly BASE: 102;
18
30
  };
19
- export declare const MAINNET_EVM_FOLKS_CHAIN_ID: {};
20
31
  export declare const TESTNET_EVM_FOLKS_CHAIN_ID: {
21
32
  readonly AVALANCHE_FUJI: 1;
22
33
  readonly ETHEREUM_SEPOLIA: 6;
@@ -30,112 +41,114 @@ export declare const EVM_FOLKS_CHAIN_ID: {
30
41
  readonly BASE_SEPOLIA: 7;
31
42
  readonly BSC_TESTNET: 3;
32
43
  readonly ARBITRUM_SEPOLIA: 8;
44
+ readonly AVALANCHE: 100;
45
+ readonly ETHEREUM: 101;
46
+ readonly BASE: 102;
33
47
  };
34
- export declare const MAINNET_CHAIN_VIEM: {};
35
- export declare const TESTNET_CHAIN_VIEM: {
36
- readonly 1: {
48
+ export declare const MAINNET_CHAIN_VIEM: {
49
+ readonly 100: {
37
50
  blockExplorers: {
38
51
  readonly default: {
39
52
  readonly name: "SnowTrace";
40
- readonly url: "https://testnet.snowtrace.io";
41
- readonly apiUrl: "https://api-testnet.snowtrace.io";
53
+ readonly url: "https://snowtrace.io";
54
+ readonly apiUrl: "https://api.snowtrace.io";
42
55
  };
43
56
  };
44
57
  contracts: {
45
58
  readonly multicall3: {
46
59
  readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
47
- readonly blockCreated: 7096959;
60
+ readonly blockCreated: 11907934;
48
61
  };
49
62
  };
50
- id: 43113;
51
- name: "Avalanche Fuji";
63
+ id: 43114;
64
+ name: "Avalanche";
52
65
  nativeCurrency: {
53
66
  readonly decimals: 18;
54
- readonly name: "Avalanche Fuji";
67
+ readonly name: "Avalanche";
55
68
  readonly symbol: "AVAX";
56
69
  };
57
70
  rpcUrls: {
58
71
  readonly default: {
59
- readonly http: readonly ["https://api.avax-test.network/ext/bc/C/rpc"];
72
+ readonly http: readonly ["https://api.avax.network/ext/bc/C/rpc"];
60
73
  };
61
74
  };
62
75
  sourceId?: number | undefined;
63
- testnet: true;
76
+ testnet?: boolean | undefined;
64
77
  custom?: Record<string, unknown> | undefined;
65
78
  formatters?: undefined;
66
79
  serializers?: import("viem").ChainSerializers<undefined> | undefined;
67
80
  fees?: import("viem").ChainFees<undefined> | undefined;
68
81
  };
69
- readonly 6: {
82
+ readonly 101: {
70
83
  blockExplorers: {
71
84
  readonly default: {
72
85
  readonly name: "Etherscan";
73
- readonly url: "https://sepolia.etherscan.io";
74
- readonly apiUrl: "https://api-sepolia.etherscan.io/api";
86
+ readonly url: "https://etherscan.io";
87
+ readonly apiUrl: "https://api.etherscan.io/api";
75
88
  };
76
89
  };
77
90
  contracts: {
78
- readonly multicall3: {
79
- readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
80
- readonly blockCreated: 751532;
81
- };
82
91
  readonly ensRegistry: {
83
92
  readonly address: "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e";
84
93
  };
85
94
  readonly ensUniversalResolver: {
86
- readonly address: "0xc8Af999e38273D658BE1b921b88A9Ddf005769cC";
87
- readonly blockCreated: 5317080;
95
+ readonly address: "0xce01f8eee7E479C928F8919abD53E553a36CeF67";
96
+ readonly blockCreated: 19258213;
97
+ };
98
+ readonly multicall3: {
99
+ readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
100
+ readonly blockCreated: 14353601;
88
101
  };
89
102
  };
90
- id: 11155111;
91
- name: "Sepolia";
103
+ id: 1;
104
+ name: "Ethereum";
92
105
  nativeCurrency: {
93
- readonly name: "Sepolia Ether";
106
+ readonly name: "Ether";
94
107
  readonly symbol: "ETH";
95
108
  readonly decimals: 18;
96
109
  };
97
110
  rpcUrls: {
98
111
  readonly default: {
99
- readonly http: readonly ["https://rpc.sepolia.org"];
112
+ readonly http: readonly ["https://cloudflare-eth.com"];
100
113
  };
101
114
  };
102
115
  sourceId?: number | undefined;
103
- testnet: true;
116
+ testnet?: boolean | undefined;
104
117
  custom?: Record<string, unknown> | undefined;
105
118
  formatters?: undefined;
106
119
  serializers?: import("viem").ChainSerializers<undefined> | undefined;
107
120
  fees?: import("viem").ChainFees<undefined> | undefined;
108
121
  };
109
- readonly 7: {
122
+ readonly 102: {
110
123
  blockExplorers: {
111
124
  readonly default: {
112
125
  readonly name: "Basescan";
113
- readonly url: "https://sepolia.basescan.org";
114
- readonly apiUrl: "https://api-sepolia.basescan.org/api";
126
+ readonly url: "https://basescan.org";
127
+ readonly apiUrl: "https://api.basescan.org/api";
115
128
  };
116
129
  };
117
130
  contracts: {
118
131
  readonly l2OutputOracle: {
119
- readonly 11155111: {
120
- readonly address: "0x84457ca9D0163FbC4bbfe4Dfbb20ba46e48DF254";
132
+ readonly 1: {
133
+ readonly address: "0x56315b90c40730925ec5485cf004d835058518A0";
121
134
  };
122
135
  };
136
+ readonly multicall3: {
137
+ readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
138
+ readonly blockCreated: 5022;
139
+ };
123
140
  readonly portal: {
124
- readonly 11155111: {
125
- readonly address: "0x49f53e41452c74589e85ca1677426ba426459e85";
126
- readonly blockCreated: 4446677;
141
+ readonly 1: {
142
+ readonly address: "0x49048044D57e1C92A77f79988d21Fa8fAF74E97e";
143
+ readonly blockCreated: 17482143;
127
144
  };
128
145
  };
129
146
  readonly l1StandardBridge: {
130
- readonly 11155111: {
131
- readonly address: "0xfd0Bf71F60660E2f608ed56e1659C450eB113120";
132
- readonly blockCreated: 4446677;
147
+ readonly 1: {
148
+ readonly address: "0x3154Cf16ccdb4C6d922629664174b904d80F2C35";
149
+ readonly blockCreated: 17482143;
133
150
  };
134
151
  };
135
- readonly multicall3: {
136
- readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
137
- readonly blockCreated: 1059647;
138
- };
139
152
  readonly gasPriceOracle: {
140
153
  readonly address: "0x420000000000000000000000000000000000000F";
141
154
  };
@@ -155,20 +168,20 @@ export declare const TESTNET_CHAIN_VIEM: {
155
168
  readonly address: "0x4200000000000000000000000000000000000016";
156
169
  };
157
170
  };
158
- id: 84532;
159
- name: "Base Sepolia";
171
+ id: 8453;
172
+ name: "Base";
160
173
  nativeCurrency: {
161
- readonly name: "Sepolia Ether";
174
+ readonly name: "Ether";
162
175
  readonly symbol: "ETH";
163
176
  readonly decimals: 18;
164
177
  };
165
178
  rpcUrls: {
166
179
  readonly default: {
167
- readonly http: readonly ["https://sepolia.base.org"];
180
+ readonly http: readonly ["https://mainnet.base.org"];
168
181
  };
169
182
  };
170
- sourceId: 11155111;
171
- testnet: true;
183
+ sourceId: 1;
184
+ testnet?: boolean | undefined;
172
185
  custom?: Record<string, unknown> | undefined;
173
186
  formatters: {
174
187
  readonly block: {
@@ -1185,76 +1198,9 @@ export declare const TESTNET_CHAIN_VIEM: {
1185
1198
  readonly transaction: typeof import("viem/chains").serializeTransactionOpStack;
1186
1199
  };
1187
1200
  fees?: import("viem").ChainFees<undefined> | undefined;
1188
- readonly network: "base-sepolia";
1189
- };
1190
- readonly 3: {
1191
- blockExplorers: {
1192
- readonly default: {
1193
- readonly name: "BscScan";
1194
- readonly url: "https://testnet.bscscan.com";
1195
- readonly apiUrl: "https://testnet.bscscan.com/api";
1196
- };
1197
- };
1198
- contracts: {
1199
- readonly multicall3: {
1200
- readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
1201
- readonly blockCreated: 17422483;
1202
- };
1203
- };
1204
- id: 97;
1205
- name: "Binance Smart Chain Testnet";
1206
- nativeCurrency: {
1207
- readonly decimals: 18;
1208
- readonly name: "BNB";
1209
- readonly symbol: "tBNB";
1210
- };
1211
- rpcUrls: {
1212
- readonly default: {
1213
- readonly http: readonly ["https://data-seed-prebsc-1-s1.bnbchain.org:8545"];
1214
- };
1215
- };
1216
- sourceId?: number | undefined;
1217
- testnet: true;
1218
- custom?: Record<string, unknown> | undefined;
1219
- formatters?: undefined;
1220
- serializers?: import("viem").ChainSerializers<undefined> | undefined;
1221
- fees?: import("viem").ChainFees<undefined> | undefined;
1222
- };
1223
- readonly 8: {
1224
- blockExplorers: {
1225
- readonly default: {
1226
- readonly name: "Arbiscan";
1227
- readonly url: "https://sepolia.arbiscan.io";
1228
- readonly apiUrl: "https://api-sepolia.arbiscan.io/api";
1229
- };
1230
- };
1231
- contracts: {
1232
- readonly multicall3: {
1233
- readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
1234
- readonly blockCreated: 81930;
1235
- };
1236
- };
1237
- id: 421614;
1238
- name: "Arbitrum Sepolia";
1239
- nativeCurrency: {
1240
- readonly name: "Arbitrum Sepolia Ether";
1241
- readonly symbol: "ETH";
1242
- readonly decimals: 18;
1243
- };
1244
- rpcUrls: {
1245
- readonly default: {
1246
- readonly http: readonly ["https://sepolia-rollup.arbitrum.io/rpc"];
1247
- };
1248
- };
1249
- sourceId?: number | undefined;
1250
- testnet: true;
1251
- custom?: Record<string, unknown> | undefined;
1252
- formatters?: undefined;
1253
- serializers?: import("viem").ChainSerializers<undefined> | undefined;
1254
- fees?: import("viem").ChainFees<undefined> | undefined;
1255
1201
  };
1256
1202
  };
1257
- export declare const CHAIN_VIEM: {
1203
+ export declare const TESTNET_CHAIN_VIEM: {
1258
1204
  readonly 1: {
1259
1205
  blockExplorers: {
1260
1206
  readonly default: {
@@ -2476,7 +2422,2386 @@ export declare const CHAIN_VIEM: {
2476
2422
  fees?: import("viem").ChainFees<undefined> | undefined;
2477
2423
  };
2478
2424
  };
2479
- export declare const MAINNET_CHAIN_NODE: {};
2425
+ export declare const CHAIN_VIEM: {
2426
+ readonly 1: {
2427
+ blockExplorers: {
2428
+ readonly default: {
2429
+ readonly name: "SnowTrace";
2430
+ readonly url: "https://testnet.snowtrace.io";
2431
+ readonly apiUrl: "https://api-testnet.snowtrace.io";
2432
+ };
2433
+ };
2434
+ contracts: {
2435
+ readonly multicall3: {
2436
+ readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
2437
+ readonly blockCreated: 7096959;
2438
+ };
2439
+ };
2440
+ id: 43113;
2441
+ name: "Avalanche Fuji";
2442
+ nativeCurrency: {
2443
+ readonly decimals: 18;
2444
+ readonly name: "Avalanche Fuji";
2445
+ readonly symbol: "AVAX";
2446
+ };
2447
+ rpcUrls: {
2448
+ readonly default: {
2449
+ readonly http: readonly ["https://api.avax-test.network/ext/bc/C/rpc"];
2450
+ };
2451
+ };
2452
+ sourceId?: number | undefined;
2453
+ testnet: true;
2454
+ custom?: Record<string, unknown> | undefined;
2455
+ formatters?: undefined;
2456
+ serializers?: import("viem").ChainSerializers<undefined> | undefined;
2457
+ fees?: import("viem").ChainFees<undefined> | undefined;
2458
+ };
2459
+ readonly 6: {
2460
+ blockExplorers: {
2461
+ readonly default: {
2462
+ readonly name: "Etherscan";
2463
+ readonly url: "https://sepolia.etherscan.io";
2464
+ readonly apiUrl: "https://api-sepolia.etherscan.io/api";
2465
+ };
2466
+ };
2467
+ contracts: {
2468
+ readonly multicall3: {
2469
+ readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
2470
+ readonly blockCreated: 751532;
2471
+ };
2472
+ readonly ensRegistry: {
2473
+ readonly address: "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e";
2474
+ };
2475
+ readonly ensUniversalResolver: {
2476
+ readonly address: "0xc8Af999e38273D658BE1b921b88A9Ddf005769cC";
2477
+ readonly blockCreated: 5317080;
2478
+ };
2479
+ };
2480
+ id: 11155111;
2481
+ name: "Sepolia";
2482
+ nativeCurrency: {
2483
+ readonly name: "Sepolia Ether";
2484
+ readonly symbol: "ETH";
2485
+ readonly decimals: 18;
2486
+ };
2487
+ rpcUrls: {
2488
+ readonly default: {
2489
+ readonly http: readonly ["https://rpc.sepolia.org"];
2490
+ };
2491
+ };
2492
+ sourceId?: number | undefined;
2493
+ testnet: true;
2494
+ custom?: Record<string, unknown> | undefined;
2495
+ formatters?: undefined;
2496
+ serializers?: import("viem").ChainSerializers<undefined> | undefined;
2497
+ fees?: import("viem").ChainFees<undefined> | undefined;
2498
+ };
2499
+ readonly 7: {
2500
+ blockExplorers: {
2501
+ readonly default: {
2502
+ readonly name: "Basescan";
2503
+ readonly url: "https://sepolia.basescan.org";
2504
+ readonly apiUrl: "https://api-sepolia.basescan.org/api";
2505
+ };
2506
+ };
2507
+ contracts: {
2508
+ readonly l2OutputOracle: {
2509
+ readonly 11155111: {
2510
+ readonly address: "0x84457ca9D0163FbC4bbfe4Dfbb20ba46e48DF254";
2511
+ };
2512
+ };
2513
+ readonly portal: {
2514
+ readonly 11155111: {
2515
+ readonly address: "0x49f53e41452c74589e85ca1677426ba426459e85";
2516
+ readonly blockCreated: 4446677;
2517
+ };
2518
+ };
2519
+ readonly l1StandardBridge: {
2520
+ readonly 11155111: {
2521
+ readonly address: "0xfd0Bf71F60660E2f608ed56e1659C450eB113120";
2522
+ readonly blockCreated: 4446677;
2523
+ };
2524
+ };
2525
+ readonly multicall3: {
2526
+ readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
2527
+ readonly blockCreated: 1059647;
2528
+ };
2529
+ readonly gasPriceOracle: {
2530
+ readonly address: "0x420000000000000000000000000000000000000F";
2531
+ };
2532
+ readonly l1Block: {
2533
+ readonly address: "0x4200000000000000000000000000000000000015";
2534
+ };
2535
+ readonly l2CrossDomainMessenger: {
2536
+ readonly address: "0x4200000000000000000000000000000000000007";
2537
+ };
2538
+ readonly l2Erc721Bridge: {
2539
+ readonly address: "0x4200000000000000000000000000000000000014";
2540
+ };
2541
+ readonly l2StandardBridge: {
2542
+ readonly address: "0x4200000000000000000000000000000000000010";
2543
+ };
2544
+ readonly l2ToL1MessagePasser: {
2545
+ readonly address: "0x4200000000000000000000000000000000000016";
2546
+ };
2547
+ };
2548
+ id: 84532;
2549
+ name: "Base Sepolia";
2550
+ nativeCurrency: {
2551
+ readonly name: "Sepolia Ether";
2552
+ readonly symbol: "ETH";
2553
+ readonly decimals: 18;
2554
+ };
2555
+ rpcUrls: {
2556
+ readonly default: {
2557
+ readonly http: readonly ["https://sepolia.base.org"];
2558
+ };
2559
+ };
2560
+ sourceId: 11155111;
2561
+ testnet: true;
2562
+ custom?: Record<string, unknown> | undefined;
2563
+ formatters: {
2564
+ readonly block: {
2565
+ exclude: [] | undefined;
2566
+ format: (args: import("viem/chains").Assign<import("viem").ExactPartial<import("viem").RpcBlock<import("viem").BlockTag, boolean, import("viem").RpcTransaction<boolean>>>, import("viem/chains").OpStackRpcBlockOverrides & {
2567
+ transactions: `0x${string}`[] | import("viem/chains").OpStackRpcTransaction<boolean>[];
2568
+ }>) => {
2569
+ baseFeePerGas: bigint | null;
2570
+ blobGasUsed: bigint;
2571
+ difficulty: bigint;
2572
+ excessBlobGas: bigint;
2573
+ extraData: `0x${string}`;
2574
+ gasLimit: bigint;
2575
+ gasUsed: bigint;
2576
+ hash: `0x${string}` | null;
2577
+ logsBloom: `0x${string}` | null;
2578
+ miner: `0x${string}`;
2579
+ mixHash: `0x${string}`;
2580
+ nonce: `0x${string}` | null;
2581
+ number: bigint | null;
2582
+ parentHash: `0x${string}`;
2583
+ receiptsRoot: `0x${string}`;
2584
+ sealFields: `0x${string}`[];
2585
+ sha3Uncles: `0x${string}`;
2586
+ size: bigint;
2587
+ stateRoot: `0x${string}`;
2588
+ timestamp: bigint;
2589
+ totalDifficulty: bigint | null;
2590
+ transactions: `0x${string}`[] | import("viem/chains").OpStackTransaction<boolean>[];
2591
+ transactionsRoot: `0x${string}`;
2592
+ uncles: `0x${string}`[];
2593
+ withdrawals?: import("viem").Withdrawal[] | undefined;
2594
+ withdrawalsRoot?: `0x${string}` | undefined;
2595
+ };
2596
+ type: "block";
2597
+ };
2598
+ readonly transaction: {
2599
+ exclude: [] | undefined;
2600
+ format: (args: ({
2601
+ r?: `0x${string}` | undefined;
2602
+ s?: `0x${string}` | undefined;
2603
+ v?: `0x${string}` | undefined;
2604
+ yParity?: `0x${string}` | undefined;
2605
+ gasPrice?: `0x${string}` | undefined;
2606
+ maxFeePerBlobGas?: `0x${string}` | undefined;
2607
+ maxFeePerGas?: `0x${string}` | undefined;
2608
+ maxPriorityFeePerGas?: `0x${string}` | undefined;
2609
+ type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
2610
+ to?: `0x${string}` | null | undefined;
2611
+ from?: `0x${string}` | undefined;
2612
+ gas?: `0x${string}` | undefined;
2613
+ nonce?: `0x${string}` | undefined;
2614
+ value?: `0x${string}` | undefined;
2615
+ accessList?: undefined;
2616
+ blobVersionedHashes?: undefined;
2617
+ blockHash?: `0x${string}` | null | undefined;
2618
+ blockNumber?: `0x${string}` | null | undefined;
2619
+ hash?: `0x${string}` | undefined;
2620
+ input?: `0x${string}` | undefined;
2621
+ transactionIndex?: `0x${string}` | null | undefined;
2622
+ chainId?: `0x${string}` | undefined;
2623
+ } & import("viem/chains").Omit<import("viem/chains").PartialBy<{
2624
+ r: `0x${string}`;
2625
+ s: `0x${string}`;
2626
+ v: `0x${string}`;
2627
+ to: `0x${string}` | null;
2628
+ from: `0x${string}`;
2629
+ gas: `0x${string}`;
2630
+ nonce: `0x${string}`;
2631
+ value: `0x${string}`;
2632
+ blockHash: `0x${string}` | null;
2633
+ blockNumber: `0x${string}` | null;
2634
+ hash: `0x${string}`;
2635
+ input: `0x${string}`;
2636
+ transactionIndex: `0x${string}` | null;
2637
+ typeHex: `0x${string}` | null;
2638
+ gasPrice: `0x${string}`;
2639
+ maxFeePerBlobGas?: undefined;
2640
+ maxFeePerGas?: undefined;
2641
+ maxPriorityFeePerGas?: undefined;
2642
+ accessList?: undefined;
2643
+ blobVersionedHashes?: undefined;
2644
+ chainId?: `0x${string}` | undefined;
2645
+ yParity?: undefined;
2646
+ type: "0x0";
2647
+ }, "yParity">, "typeHex"> & {
2648
+ isSystemTx?: undefined;
2649
+ mint?: undefined;
2650
+ sourceHash?: undefined;
2651
+ }) | ({
2652
+ r?: `0x${string}` | undefined;
2653
+ s?: `0x${string}` | undefined;
2654
+ v?: `0x${string}` | undefined;
2655
+ yParity?: `0x${string}` | undefined;
2656
+ gasPrice?: `0x${string}` | undefined;
2657
+ maxFeePerBlobGas?: `0x${string}` | undefined;
2658
+ maxFeePerGas?: `0x${string}` | undefined;
2659
+ maxPriorityFeePerGas?: `0x${string}` | undefined;
2660
+ type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
2661
+ to?: `0x${string}` | null | undefined;
2662
+ from?: `0x${string}` | undefined;
2663
+ gas?: `0x${string}` | undefined;
2664
+ nonce?: `0x${string}` | undefined;
2665
+ value?: `0x${string}` | undefined;
2666
+ accessList?: undefined;
2667
+ blobVersionedHashes?: undefined;
2668
+ blockHash?: `0x${string}` | null | undefined;
2669
+ blockNumber?: `0x${string}` | null | undefined;
2670
+ hash?: `0x${string}` | undefined;
2671
+ input?: `0x${string}` | undefined;
2672
+ transactionIndex?: `0x${string}` | null | undefined;
2673
+ chainId?: `0x${string}` | undefined;
2674
+ } & Omit<import("viem").TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & import("viem").FeeValuesEIP1559<`0x${string}`> & {
2675
+ isSystemTx?: boolean | undefined;
2676
+ mint?: `0x${string}` | undefined;
2677
+ sourceHash: `0x${string}`;
2678
+ type: "0x7e";
2679
+ }) | ({
2680
+ r?: `0x${string}` | undefined;
2681
+ s?: `0x${string}` | undefined;
2682
+ v?: `0x${string}` | undefined;
2683
+ yParity?: `0x${string}` | undefined;
2684
+ gasPrice?: `0x${string}` | undefined;
2685
+ maxFeePerBlobGas?: `0x${string}` | undefined;
2686
+ maxFeePerGas?: `0x${string}` | undefined;
2687
+ maxPriorityFeePerGas?: `0x${string}` | undefined;
2688
+ type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
2689
+ to?: `0x${string}` | null | undefined;
2690
+ from?: `0x${string}` | undefined;
2691
+ gas?: `0x${string}` | undefined;
2692
+ nonce?: `0x${string}` | undefined;
2693
+ value?: `0x${string}` | undefined;
2694
+ accessList?: import("viem").AccessList | undefined;
2695
+ blobVersionedHashes?: undefined;
2696
+ blockHash?: `0x${string}` | null | undefined;
2697
+ blockNumber?: `0x${string}` | null | undefined;
2698
+ hash?: `0x${string}` | undefined;
2699
+ input?: `0x${string}` | undefined;
2700
+ transactionIndex?: `0x${string}` | null | undefined;
2701
+ chainId?: `0x${string}` | undefined;
2702
+ } & import("viem/chains").Omit<import("viem/chains").PartialBy<{
2703
+ r: `0x${string}`;
2704
+ s: `0x${string}`;
2705
+ v: `0x${string}`;
2706
+ to: `0x${string}` | null;
2707
+ from: `0x${string}`;
2708
+ gas: `0x${string}`;
2709
+ nonce: `0x${string}`;
2710
+ value: `0x${string}`;
2711
+ blockHash: `0x${string}` | null;
2712
+ blockNumber: `0x${string}` | null;
2713
+ hash: `0x${string}`;
2714
+ input: `0x${string}`;
2715
+ transactionIndex: `0x${string}` | null;
2716
+ typeHex: `0x${string}` | null;
2717
+ gasPrice: `0x${string}`;
2718
+ maxFeePerBlobGas?: undefined;
2719
+ maxFeePerGas?: undefined;
2720
+ maxPriorityFeePerGas?: undefined;
2721
+ accessList?: undefined;
2722
+ blobVersionedHashes?: undefined;
2723
+ chainId?: `0x${string}` | undefined;
2724
+ yParity?: undefined;
2725
+ type: "0x0";
2726
+ }, "yParity">, "typeHex"> & {
2727
+ isSystemTx?: undefined;
2728
+ mint?: undefined;
2729
+ sourceHash?: undefined;
2730
+ }) | ({
2731
+ r?: `0x${string}` | undefined;
2732
+ s?: `0x${string}` | undefined;
2733
+ v?: `0x${string}` | undefined;
2734
+ yParity?: `0x${string}` | undefined;
2735
+ gasPrice?: `0x${string}` | undefined;
2736
+ maxFeePerBlobGas?: `0x${string}` | undefined;
2737
+ maxFeePerGas?: `0x${string}` | undefined;
2738
+ maxPriorityFeePerGas?: `0x${string}` | undefined;
2739
+ type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
2740
+ to?: `0x${string}` | null | undefined;
2741
+ from?: `0x${string}` | undefined;
2742
+ gas?: `0x${string}` | undefined;
2743
+ nonce?: `0x${string}` | undefined;
2744
+ value?: `0x${string}` | undefined;
2745
+ accessList?: import("viem").AccessList | undefined;
2746
+ blobVersionedHashes?: undefined;
2747
+ blockHash?: `0x${string}` | null | undefined;
2748
+ blockNumber?: `0x${string}` | null | undefined;
2749
+ hash?: `0x${string}` | undefined;
2750
+ input?: `0x${string}` | undefined;
2751
+ transactionIndex?: `0x${string}` | null | undefined;
2752
+ chainId?: `0x${string}` | undefined;
2753
+ } & import("viem/chains").Omit<import("viem/chains").PartialBy<{
2754
+ blockHash: `0x${string}` | null;
2755
+ blockNumber: `0x${string}` | null;
2756
+ from: `0x${string}`;
2757
+ gas: `0x${string}`;
2758
+ hash: `0x${string}`;
2759
+ input: `0x${string}`;
2760
+ nonce: `0x${string}`;
2761
+ r: `0x${string}`;
2762
+ s: `0x${string}`;
2763
+ to: `0x${string}` | null;
2764
+ transactionIndex: `0x${string}` | null;
2765
+ typeHex: `0x${string}` | null;
2766
+ v: `0x${string}`;
2767
+ value: `0x${string}`;
2768
+ yParity: `0x${string}`;
2769
+ gasPrice: `0x${string}`;
2770
+ maxFeePerBlobGas?: undefined;
2771
+ maxFeePerGas?: undefined;
2772
+ maxPriorityFeePerGas?: undefined;
2773
+ accessList: import("viem").AccessList;
2774
+ blobVersionedHashes?: undefined;
2775
+ chainId: `0x${string}`;
2776
+ type: "0x1";
2777
+ }, "yParity">, "typeHex"> & {
2778
+ isSystemTx?: undefined;
2779
+ mint?: undefined;
2780
+ sourceHash?: undefined;
2781
+ }) | ({
2782
+ r?: `0x${string}` | undefined;
2783
+ s?: `0x${string}` | undefined;
2784
+ v?: `0x${string}` | undefined;
2785
+ yParity?: `0x${string}` | undefined;
2786
+ gasPrice?: `0x${string}` | undefined;
2787
+ maxFeePerBlobGas?: `0x${string}` | undefined;
2788
+ maxFeePerGas?: `0x${string}` | undefined;
2789
+ maxPriorityFeePerGas?: `0x${string}` | undefined;
2790
+ type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
2791
+ to?: `0x${string}` | null | undefined;
2792
+ from?: `0x${string}` | undefined;
2793
+ gas?: `0x${string}` | undefined;
2794
+ nonce?: `0x${string}` | undefined;
2795
+ value?: `0x${string}` | undefined;
2796
+ accessList?: import("viem").AccessList | undefined;
2797
+ blobVersionedHashes?: undefined;
2798
+ blockHash?: `0x${string}` | null | undefined;
2799
+ blockNumber?: `0x${string}` | null | undefined;
2800
+ hash?: `0x${string}` | undefined;
2801
+ input?: `0x${string}` | undefined;
2802
+ transactionIndex?: `0x${string}` | null | undefined;
2803
+ chainId?: `0x${string}` | undefined;
2804
+ } & import("viem/chains").Omit<import("viem/chains").PartialBy<{
2805
+ blockHash: `0x${string}` | null;
2806
+ blockNumber: `0x${string}` | null;
2807
+ from: `0x${string}`;
2808
+ gas: `0x${string}`;
2809
+ hash: `0x${string}`;
2810
+ input: `0x${string}`;
2811
+ nonce: `0x${string}`;
2812
+ r: `0x${string}`;
2813
+ s: `0x${string}`;
2814
+ to: `0x${string}` | null;
2815
+ transactionIndex: `0x${string}` | null;
2816
+ typeHex: `0x${string}` | null;
2817
+ v: `0x${string}`;
2818
+ value: `0x${string}`;
2819
+ yParity: `0x${string}`;
2820
+ gasPrice?: undefined;
2821
+ maxFeePerBlobGas?: undefined;
2822
+ maxFeePerGas: `0x${string}`;
2823
+ maxPriorityFeePerGas: `0x${string}`;
2824
+ accessList: import("viem").AccessList;
2825
+ blobVersionedHashes?: undefined;
2826
+ chainId: `0x${string}`;
2827
+ type: "0x2";
2828
+ }, "yParity">, "typeHex"> & {
2829
+ isSystemTx?: undefined;
2830
+ mint?: undefined;
2831
+ sourceHash?: undefined;
2832
+ }) | ({
2833
+ r?: `0x${string}` | undefined;
2834
+ s?: `0x${string}` | undefined;
2835
+ v?: `0x${string}` | undefined;
2836
+ yParity?: `0x${string}` | undefined;
2837
+ gasPrice?: `0x${string}` | undefined;
2838
+ maxFeePerBlobGas?: `0x${string}` | undefined;
2839
+ maxFeePerGas?: `0x${string}` | undefined;
2840
+ maxPriorityFeePerGas?: `0x${string}` | undefined;
2841
+ type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
2842
+ to?: `0x${string}` | null | undefined;
2843
+ from?: `0x${string}` | undefined;
2844
+ gas?: `0x${string}` | undefined;
2845
+ nonce?: `0x${string}` | undefined;
2846
+ value?: `0x${string}` | undefined;
2847
+ accessList?: import("viem").AccessList | undefined;
2848
+ blobVersionedHashes?: undefined;
2849
+ blockHash?: `0x${string}` | null | undefined;
2850
+ blockNumber?: `0x${string}` | null | undefined;
2851
+ hash?: `0x${string}` | undefined;
2852
+ input?: `0x${string}` | undefined;
2853
+ transactionIndex?: `0x${string}` | null | undefined;
2854
+ chainId?: `0x${string}` | undefined;
2855
+ } & Omit<import("viem").TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & import("viem").FeeValuesEIP1559<`0x${string}`> & {
2856
+ isSystemTx?: boolean | undefined;
2857
+ mint?: `0x${string}` | undefined;
2858
+ sourceHash: `0x${string}`;
2859
+ type: "0x7e";
2860
+ }) | ({
2861
+ r?: `0x${string}` | undefined;
2862
+ s?: `0x${string}` | undefined;
2863
+ v?: `0x${string}` | undefined;
2864
+ yParity?: `0x${string}` | undefined;
2865
+ gasPrice?: `0x${string}` | undefined;
2866
+ maxFeePerBlobGas?: `0x${string}` | undefined;
2867
+ maxFeePerGas?: `0x${string}` | undefined;
2868
+ maxPriorityFeePerGas?: `0x${string}` | undefined;
2869
+ type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
2870
+ to?: `0x${string}` | null | undefined;
2871
+ from?: `0x${string}` | undefined;
2872
+ gas?: `0x${string}` | undefined;
2873
+ nonce?: `0x${string}` | undefined;
2874
+ value?: `0x${string}` | undefined;
2875
+ accessList?: import("viem").AccessList | undefined;
2876
+ blobVersionedHashes?: undefined;
2877
+ blockHash?: `0x${string}` | null | undefined;
2878
+ blockNumber?: `0x${string}` | null | undefined;
2879
+ hash?: `0x${string}` | undefined;
2880
+ input?: `0x${string}` | undefined;
2881
+ transactionIndex?: `0x${string}` | null | undefined;
2882
+ chainId?: `0x${string}` | undefined;
2883
+ } & import("viem/chains").Omit<import("viem/chains").PartialBy<{
2884
+ r: `0x${string}`;
2885
+ s: `0x${string}`;
2886
+ v: `0x${string}`;
2887
+ to: `0x${string}` | null;
2888
+ from: `0x${string}`;
2889
+ gas: `0x${string}`;
2890
+ nonce: `0x${string}`;
2891
+ value: `0x${string}`;
2892
+ blockHash: `0x${string}` | null;
2893
+ blockNumber: `0x${string}` | null;
2894
+ hash: `0x${string}`;
2895
+ input: `0x${string}`;
2896
+ transactionIndex: `0x${string}` | null;
2897
+ typeHex: `0x${string}` | null;
2898
+ gasPrice: `0x${string}`;
2899
+ maxFeePerBlobGas?: undefined;
2900
+ maxFeePerGas?: undefined;
2901
+ maxPriorityFeePerGas?: undefined;
2902
+ accessList?: undefined;
2903
+ blobVersionedHashes?: undefined;
2904
+ chainId?: `0x${string}` | undefined;
2905
+ yParity?: undefined;
2906
+ type: "0x0";
2907
+ }, "yParity">, "typeHex"> & {
2908
+ isSystemTx?: undefined;
2909
+ mint?: undefined;
2910
+ sourceHash?: undefined;
2911
+ }) | ({
2912
+ r?: `0x${string}` | undefined;
2913
+ s?: `0x${string}` | undefined;
2914
+ v?: `0x${string}` | undefined;
2915
+ yParity?: `0x${string}` | undefined;
2916
+ gasPrice?: `0x${string}` | undefined;
2917
+ maxFeePerBlobGas?: `0x${string}` | undefined;
2918
+ maxFeePerGas?: `0x${string}` | undefined;
2919
+ maxPriorityFeePerGas?: `0x${string}` | undefined;
2920
+ type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
2921
+ to?: `0x${string}` | null | undefined;
2922
+ from?: `0x${string}` | undefined;
2923
+ gas?: `0x${string}` | undefined;
2924
+ nonce?: `0x${string}` | undefined;
2925
+ value?: `0x${string}` | undefined;
2926
+ accessList?: import("viem").AccessList | undefined;
2927
+ blobVersionedHashes?: undefined;
2928
+ blockHash?: `0x${string}` | null | undefined;
2929
+ blockNumber?: `0x${string}` | null | undefined;
2930
+ hash?: `0x${string}` | undefined;
2931
+ input?: `0x${string}` | undefined;
2932
+ transactionIndex?: `0x${string}` | null | undefined;
2933
+ chainId?: `0x${string}` | undefined;
2934
+ } & import("viem/chains").Omit<import("viem/chains").PartialBy<{
2935
+ blockHash: `0x${string}` | null;
2936
+ blockNumber: `0x${string}` | null;
2937
+ from: `0x${string}`;
2938
+ gas: `0x${string}`;
2939
+ hash: `0x${string}`;
2940
+ input: `0x${string}`;
2941
+ nonce: `0x${string}`;
2942
+ r: `0x${string}`;
2943
+ s: `0x${string}`;
2944
+ to: `0x${string}` | null;
2945
+ transactionIndex: `0x${string}` | null;
2946
+ typeHex: `0x${string}` | null;
2947
+ v: `0x${string}`;
2948
+ value: `0x${string}`;
2949
+ yParity: `0x${string}`;
2950
+ gasPrice: `0x${string}`;
2951
+ maxFeePerBlobGas?: undefined;
2952
+ maxFeePerGas?: undefined;
2953
+ maxPriorityFeePerGas?: undefined;
2954
+ accessList: import("viem").AccessList;
2955
+ blobVersionedHashes?: undefined;
2956
+ chainId: `0x${string}`;
2957
+ type: "0x1";
2958
+ }, "yParity">, "typeHex"> & {
2959
+ isSystemTx?: undefined;
2960
+ mint?: undefined;
2961
+ sourceHash?: undefined;
2962
+ }) | ({
2963
+ r?: `0x${string}` | undefined;
2964
+ s?: `0x${string}` | undefined;
2965
+ v?: `0x${string}` | undefined;
2966
+ yParity?: `0x${string}` | undefined;
2967
+ gasPrice?: `0x${string}` | undefined;
2968
+ maxFeePerBlobGas?: `0x${string}` | undefined;
2969
+ maxFeePerGas?: `0x${string}` | undefined;
2970
+ maxPriorityFeePerGas?: `0x${string}` | undefined;
2971
+ type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
2972
+ to?: `0x${string}` | null | undefined;
2973
+ from?: `0x${string}` | undefined;
2974
+ gas?: `0x${string}` | undefined;
2975
+ nonce?: `0x${string}` | undefined;
2976
+ value?: `0x${string}` | undefined;
2977
+ accessList?: import("viem").AccessList | undefined;
2978
+ blobVersionedHashes?: undefined;
2979
+ blockHash?: `0x${string}` | null | undefined;
2980
+ blockNumber?: `0x${string}` | null | undefined;
2981
+ hash?: `0x${string}` | undefined;
2982
+ input?: `0x${string}` | undefined;
2983
+ transactionIndex?: `0x${string}` | null | undefined;
2984
+ chainId?: `0x${string}` | undefined;
2985
+ } & import("viem/chains").Omit<import("viem/chains").PartialBy<{
2986
+ blockHash: `0x${string}` | null;
2987
+ blockNumber: `0x${string}` | null;
2988
+ from: `0x${string}`;
2989
+ gas: `0x${string}`;
2990
+ hash: `0x${string}`;
2991
+ input: `0x${string}`;
2992
+ nonce: `0x${string}`;
2993
+ r: `0x${string}`;
2994
+ s: `0x${string}`;
2995
+ to: `0x${string}` | null;
2996
+ transactionIndex: `0x${string}` | null;
2997
+ typeHex: `0x${string}` | null;
2998
+ v: `0x${string}`;
2999
+ value: `0x${string}`;
3000
+ yParity: `0x${string}`;
3001
+ gasPrice?: undefined;
3002
+ maxFeePerBlobGas?: undefined;
3003
+ maxFeePerGas: `0x${string}`;
3004
+ maxPriorityFeePerGas: `0x${string}`;
3005
+ accessList: import("viem").AccessList;
3006
+ blobVersionedHashes?: undefined;
3007
+ chainId: `0x${string}`;
3008
+ type: "0x2";
3009
+ }, "yParity">, "typeHex"> & {
3010
+ isSystemTx?: undefined;
3011
+ mint?: undefined;
3012
+ sourceHash?: undefined;
3013
+ }) | ({
3014
+ r?: `0x${string}` | undefined;
3015
+ s?: `0x${string}` | undefined;
3016
+ v?: `0x${string}` | undefined;
3017
+ yParity?: `0x${string}` | undefined;
3018
+ gasPrice?: `0x${string}` | undefined;
3019
+ maxFeePerBlobGas?: `0x${string}` | undefined;
3020
+ maxFeePerGas?: `0x${string}` | undefined;
3021
+ maxPriorityFeePerGas?: `0x${string}` | undefined;
3022
+ type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
3023
+ to?: `0x${string}` | null | undefined;
3024
+ from?: `0x${string}` | undefined;
3025
+ gas?: `0x${string}` | undefined;
3026
+ nonce?: `0x${string}` | undefined;
3027
+ value?: `0x${string}` | undefined;
3028
+ accessList?: import("viem").AccessList | undefined;
3029
+ blobVersionedHashes?: undefined;
3030
+ blockHash?: `0x${string}` | null | undefined;
3031
+ blockNumber?: `0x${string}` | null | undefined;
3032
+ hash?: `0x${string}` | undefined;
3033
+ input?: `0x${string}` | undefined;
3034
+ transactionIndex?: `0x${string}` | null | undefined;
3035
+ chainId?: `0x${string}` | undefined;
3036
+ } & Omit<import("viem").TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & import("viem").FeeValuesEIP1559<`0x${string}`> & {
3037
+ isSystemTx?: boolean | undefined;
3038
+ mint?: `0x${string}` | undefined;
3039
+ sourceHash: `0x${string}`;
3040
+ type: "0x7e";
3041
+ }) | ({
3042
+ r?: `0x${string}` | undefined;
3043
+ s?: `0x${string}` | undefined;
3044
+ v?: `0x${string}` | undefined;
3045
+ yParity?: `0x${string}` | undefined;
3046
+ gasPrice?: `0x${string}` | undefined;
3047
+ maxFeePerBlobGas?: `0x${string}` | undefined;
3048
+ maxFeePerGas?: `0x${string}` | undefined;
3049
+ maxPriorityFeePerGas?: `0x${string}` | undefined;
3050
+ type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
3051
+ to?: `0x${string}` | null | undefined;
3052
+ from?: `0x${string}` | undefined;
3053
+ gas?: `0x${string}` | undefined;
3054
+ nonce?: `0x${string}` | undefined;
3055
+ value?: `0x${string}` | undefined;
3056
+ accessList?: import("viem").AccessList | undefined;
3057
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
3058
+ blockHash?: `0x${string}` | null | undefined;
3059
+ blockNumber?: `0x${string}` | null | undefined;
3060
+ hash?: `0x${string}` | undefined;
3061
+ input?: `0x${string}` | undefined;
3062
+ transactionIndex?: `0x${string}` | null | undefined;
3063
+ chainId?: `0x${string}` | undefined;
3064
+ } & import("viem/chains").Omit<import("viem/chains").PartialBy<{
3065
+ r: `0x${string}`;
3066
+ s: `0x${string}`;
3067
+ v: `0x${string}`;
3068
+ to: `0x${string}` | null;
3069
+ from: `0x${string}`;
3070
+ gas: `0x${string}`;
3071
+ nonce: `0x${string}`;
3072
+ value: `0x${string}`;
3073
+ blockHash: `0x${string}` | null;
3074
+ blockNumber: `0x${string}` | null;
3075
+ hash: `0x${string}`;
3076
+ input: `0x${string}`;
3077
+ transactionIndex: `0x${string}` | null;
3078
+ typeHex: `0x${string}` | null;
3079
+ gasPrice: `0x${string}`;
3080
+ maxFeePerBlobGas?: undefined;
3081
+ maxFeePerGas?: undefined;
3082
+ maxPriorityFeePerGas?: undefined;
3083
+ accessList?: undefined;
3084
+ blobVersionedHashes?: undefined;
3085
+ chainId?: `0x${string}` | undefined;
3086
+ yParity?: undefined;
3087
+ type: "0x0";
3088
+ }, "yParity">, "typeHex"> & {
3089
+ isSystemTx?: undefined;
3090
+ mint?: undefined;
3091
+ sourceHash?: undefined;
3092
+ }) | ({
3093
+ r?: `0x${string}` | undefined;
3094
+ s?: `0x${string}` | undefined;
3095
+ v?: `0x${string}` | undefined;
3096
+ yParity?: `0x${string}` | undefined;
3097
+ gasPrice?: `0x${string}` | undefined;
3098
+ maxFeePerBlobGas?: `0x${string}` | undefined;
3099
+ maxFeePerGas?: `0x${string}` | undefined;
3100
+ maxPriorityFeePerGas?: `0x${string}` | undefined;
3101
+ type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
3102
+ to?: `0x${string}` | null | undefined;
3103
+ from?: `0x${string}` | undefined;
3104
+ gas?: `0x${string}` | undefined;
3105
+ nonce?: `0x${string}` | undefined;
3106
+ value?: `0x${string}` | undefined;
3107
+ accessList?: import("viem").AccessList | undefined;
3108
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
3109
+ blockHash?: `0x${string}` | null | undefined;
3110
+ blockNumber?: `0x${string}` | null | undefined;
3111
+ hash?: `0x${string}` | undefined;
3112
+ input?: `0x${string}` | undefined;
3113
+ transactionIndex?: `0x${string}` | null | undefined;
3114
+ chainId?: `0x${string}` | undefined;
3115
+ } & import("viem/chains").Omit<import("viem/chains").PartialBy<{
3116
+ blockHash: `0x${string}` | null;
3117
+ blockNumber: `0x${string}` | null;
3118
+ from: `0x${string}`;
3119
+ gas: `0x${string}`;
3120
+ hash: `0x${string}`;
3121
+ input: `0x${string}`;
3122
+ nonce: `0x${string}`;
3123
+ r: `0x${string}`;
3124
+ s: `0x${string}`;
3125
+ to: `0x${string}` | null;
3126
+ transactionIndex: `0x${string}` | null;
3127
+ typeHex: `0x${string}` | null;
3128
+ v: `0x${string}`;
3129
+ value: `0x${string}`;
3130
+ yParity: `0x${string}`;
3131
+ gasPrice: `0x${string}`;
3132
+ maxFeePerBlobGas?: undefined;
3133
+ maxFeePerGas?: undefined;
3134
+ maxPriorityFeePerGas?: undefined;
3135
+ accessList: import("viem").AccessList;
3136
+ blobVersionedHashes?: undefined;
3137
+ chainId: `0x${string}`;
3138
+ type: "0x1";
3139
+ }, "yParity">, "typeHex"> & {
3140
+ isSystemTx?: undefined;
3141
+ mint?: undefined;
3142
+ sourceHash?: undefined;
3143
+ }) | ({
3144
+ r?: `0x${string}` | undefined;
3145
+ s?: `0x${string}` | undefined;
3146
+ v?: `0x${string}` | undefined;
3147
+ yParity?: `0x${string}` | undefined;
3148
+ gasPrice?: `0x${string}` | undefined;
3149
+ maxFeePerBlobGas?: `0x${string}` | undefined;
3150
+ maxFeePerGas?: `0x${string}` | undefined;
3151
+ maxPriorityFeePerGas?: `0x${string}` | undefined;
3152
+ type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
3153
+ to?: `0x${string}` | null | undefined;
3154
+ from?: `0x${string}` | undefined;
3155
+ gas?: `0x${string}` | undefined;
3156
+ nonce?: `0x${string}` | undefined;
3157
+ value?: `0x${string}` | undefined;
3158
+ accessList?: import("viem").AccessList | undefined;
3159
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
3160
+ blockHash?: `0x${string}` | null | undefined;
3161
+ blockNumber?: `0x${string}` | null | undefined;
3162
+ hash?: `0x${string}` | undefined;
3163
+ input?: `0x${string}` | undefined;
3164
+ transactionIndex?: `0x${string}` | null | undefined;
3165
+ chainId?: `0x${string}` | undefined;
3166
+ } & import("viem/chains").Omit<import("viem/chains").PartialBy<{
3167
+ blockHash: `0x${string}` | null;
3168
+ blockNumber: `0x${string}` | null;
3169
+ from: `0x${string}`;
3170
+ gas: `0x${string}`;
3171
+ hash: `0x${string}`;
3172
+ input: `0x${string}`;
3173
+ nonce: `0x${string}`;
3174
+ r: `0x${string}`;
3175
+ s: `0x${string}`;
3176
+ to: `0x${string}` | null;
3177
+ transactionIndex: `0x${string}` | null;
3178
+ typeHex: `0x${string}` | null;
3179
+ v: `0x${string}`;
3180
+ value: `0x${string}`;
3181
+ yParity: `0x${string}`;
3182
+ gasPrice?: undefined;
3183
+ maxFeePerBlobGas?: undefined;
3184
+ maxFeePerGas: `0x${string}`;
3185
+ maxPriorityFeePerGas: `0x${string}`;
3186
+ accessList: import("viem").AccessList;
3187
+ blobVersionedHashes?: undefined;
3188
+ chainId: `0x${string}`;
3189
+ type: "0x2";
3190
+ }, "yParity">, "typeHex"> & {
3191
+ isSystemTx?: undefined;
3192
+ mint?: undefined;
3193
+ sourceHash?: undefined;
3194
+ }) | ({
3195
+ r?: `0x${string}` | undefined;
3196
+ s?: `0x${string}` | undefined;
3197
+ v?: `0x${string}` | undefined;
3198
+ yParity?: `0x${string}` | undefined;
3199
+ gasPrice?: `0x${string}` | undefined;
3200
+ maxFeePerBlobGas?: `0x${string}` | undefined;
3201
+ maxFeePerGas?: `0x${string}` | undefined;
3202
+ maxPriorityFeePerGas?: `0x${string}` | undefined;
3203
+ type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
3204
+ to?: `0x${string}` | null | undefined;
3205
+ from?: `0x${string}` | undefined;
3206
+ gas?: `0x${string}` | undefined;
3207
+ nonce?: `0x${string}` | undefined;
3208
+ value?: `0x${string}` | undefined;
3209
+ accessList?: import("viem").AccessList | undefined;
3210
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
3211
+ blockHash?: `0x${string}` | null | undefined;
3212
+ blockNumber?: `0x${string}` | null | undefined;
3213
+ hash?: `0x${string}` | undefined;
3214
+ input?: `0x${string}` | undefined;
3215
+ transactionIndex?: `0x${string}` | null | undefined;
3216
+ chainId?: `0x${string}` | undefined;
3217
+ } & import("viem/chains").Omit<import("viem/chains").PartialBy<{
3218
+ blockHash: `0x${string}` | null;
3219
+ blockNumber: `0x${string}` | null;
3220
+ from: `0x${string}`;
3221
+ gas: `0x${string}`;
3222
+ hash: `0x${string}`;
3223
+ input: `0x${string}`;
3224
+ nonce: `0x${string}`;
3225
+ r: `0x${string}`;
3226
+ s: `0x${string}`;
3227
+ to: `0x${string}` | null;
3228
+ transactionIndex: `0x${string}` | null;
3229
+ typeHex: `0x${string}` | null;
3230
+ v: `0x${string}`;
3231
+ value: `0x${string}`;
3232
+ yParity: `0x${string}`;
3233
+ gasPrice?: undefined;
3234
+ maxFeePerBlobGas: `0x${string}`;
3235
+ maxFeePerGas: `0x${string}`;
3236
+ maxPriorityFeePerGas: `0x${string}`;
3237
+ accessList: import("viem").AccessList;
3238
+ blobVersionedHashes: readonly `0x${string}`[];
3239
+ chainId: `0x${string}`;
3240
+ type: "0x3";
3241
+ }, "yParity">, "typeHex"> & {
3242
+ isSystemTx?: undefined;
3243
+ mint?: undefined;
3244
+ sourceHash?: undefined;
3245
+ }) | ({
3246
+ r?: `0x${string}` | undefined;
3247
+ s?: `0x${string}` | undefined;
3248
+ v?: `0x${string}` | undefined;
3249
+ yParity?: `0x${string}` | undefined;
3250
+ gasPrice?: `0x${string}` | undefined;
3251
+ maxFeePerBlobGas?: `0x${string}` | undefined;
3252
+ maxFeePerGas?: `0x${string}` | undefined;
3253
+ maxPriorityFeePerGas?: `0x${string}` | undefined;
3254
+ type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
3255
+ to?: `0x${string}` | null | undefined;
3256
+ from?: `0x${string}` | undefined;
3257
+ gas?: `0x${string}` | undefined;
3258
+ nonce?: `0x${string}` | undefined;
3259
+ value?: `0x${string}` | undefined;
3260
+ accessList?: import("viem").AccessList | undefined;
3261
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
3262
+ blockHash?: `0x${string}` | null | undefined;
3263
+ blockNumber?: `0x${string}` | null | undefined;
3264
+ hash?: `0x${string}` | undefined;
3265
+ input?: `0x${string}` | undefined;
3266
+ transactionIndex?: `0x${string}` | null | undefined;
3267
+ chainId?: `0x${string}` | undefined;
3268
+ } & Omit<import("viem").TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & import("viem").FeeValuesEIP1559<`0x${string}`> & {
3269
+ isSystemTx?: boolean | undefined;
3270
+ mint?: `0x${string}` | undefined;
3271
+ sourceHash: `0x${string}`;
3272
+ type: "0x7e";
3273
+ })) => {
3274
+ r: `0x${string}`;
3275
+ s: `0x${string}`;
3276
+ v: bigint;
3277
+ to: `0x${string}` | null;
3278
+ from: `0x${string}`;
3279
+ gas: bigint;
3280
+ nonce: number;
3281
+ value: bigint;
3282
+ blockHash: `0x${string}` | null;
3283
+ blockNumber: bigint | null;
3284
+ hash: `0x${string}`;
3285
+ input: `0x${string}`;
3286
+ transactionIndex: number | null;
3287
+ typeHex: `0x${string}` | null;
3288
+ gasPrice: bigint;
3289
+ maxFeePerBlobGas?: undefined;
3290
+ maxFeePerGas?: undefined;
3291
+ maxPriorityFeePerGas?: undefined;
3292
+ accessList?: undefined;
3293
+ blobVersionedHashes?: undefined;
3294
+ chainId?: number | undefined;
3295
+ yParity?: undefined;
3296
+ type: "legacy";
3297
+ isSystemTx?: undefined;
3298
+ mint?: undefined;
3299
+ sourceHash?: undefined;
3300
+ } | {
3301
+ r: `0x${string}`;
3302
+ s: `0x${string}`;
3303
+ v: bigint;
3304
+ to: `0x${string}` | null;
3305
+ from: `0x${string}`;
3306
+ gas: bigint;
3307
+ nonce: number;
3308
+ value: bigint;
3309
+ blockHash: `0x${string}` | null;
3310
+ blockNumber: bigint | null;
3311
+ hash: `0x${string}`;
3312
+ input: `0x${string}`;
3313
+ transactionIndex: number | null;
3314
+ typeHex: `0x${string}` | null;
3315
+ gasPrice: undefined;
3316
+ maxFeePerBlobGas?: undefined;
3317
+ maxFeePerGas: bigint;
3318
+ maxPriorityFeePerGas: bigint;
3319
+ accessList?: undefined;
3320
+ blobVersionedHashes?: undefined;
3321
+ chainId?: number | undefined;
3322
+ yParity: number;
3323
+ type: "deposit";
3324
+ isSystemTx?: boolean | undefined;
3325
+ mint?: bigint | undefined;
3326
+ sourceHash: `0x${string}`;
3327
+ } | {
3328
+ blockHash: `0x${string}` | null;
3329
+ blockNumber: bigint | null;
3330
+ from: `0x${string}`;
3331
+ gas: bigint;
3332
+ hash: `0x${string}`;
3333
+ input: `0x${string}`;
3334
+ nonce: number;
3335
+ r: `0x${string}`;
3336
+ s: `0x${string}`;
3337
+ to: `0x${string}` | null;
3338
+ transactionIndex: number | null;
3339
+ typeHex: `0x${string}` | null;
3340
+ v: bigint;
3341
+ value: bigint;
3342
+ yParity: number;
3343
+ gasPrice: bigint;
3344
+ maxFeePerBlobGas?: undefined;
3345
+ maxFeePerGas?: undefined;
3346
+ maxPriorityFeePerGas?: undefined;
3347
+ accessList: import("viem").AccessList;
3348
+ blobVersionedHashes?: undefined;
3349
+ chainId: number;
3350
+ type: "eip2930";
3351
+ isSystemTx?: undefined;
3352
+ mint?: undefined;
3353
+ sourceHash?: undefined;
3354
+ } | {
3355
+ blockHash: `0x${string}` | null;
3356
+ blockNumber: bigint | null;
3357
+ from: `0x${string}`;
3358
+ gas: bigint;
3359
+ hash: `0x${string}`;
3360
+ input: `0x${string}`;
3361
+ nonce: number;
3362
+ r: `0x${string}`;
3363
+ s: `0x${string}`;
3364
+ to: `0x${string}` | null;
3365
+ transactionIndex: number | null;
3366
+ typeHex: `0x${string}` | null;
3367
+ v: bigint;
3368
+ value: bigint;
3369
+ yParity: number;
3370
+ gasPrice: undefined;
3371
+ maxFeePerBlobGas?: undefined;
3372
+ maxFeePerGas: bigint;
3373
+ maxPriorityFeePerGas: bigint;
3374
+ accessList: import("viem").AccessList;
3375
+ blobVersionedHashes?: undefined;
3376
+ chainId: number;
3377
+ type: "eip1559";
3378
+ isSystemTx?: undefined;
3379
+ mint?: undefined;
3380
+ sourceHash?: undefined;
3381
+ } | {
3382
+ blockHash: `0x${string}` | null;
3383
+ blockNumber: bigint | null;
3384
+ from: `0x${string}`;
3385
+ gas: bigint;
3386
+ hash: `0x${string}`;
3387
+ input: `0x${string}`;
3388
+ nonce: number;
3389
+ r: `0x${string}`;
3390
+ s: `0x${string}`;
3391
+ to: `0x${string}` | null;
3392
+ transactionIndex: number | null;
3393
+ typeHex: `0x${string}` | null;
3394
+ v: bigint;
3395
+ value: bigint;
3396
+ yParity: number;
3397
+ gasPrice: undefined;
3398
+ maxFeePerBlobGas?: undefined;
3399
+ maxFeePerGas: bigint;
3400
+ maxPriorityFeePerGas: bigint;
3401
+ accessList: import("viem").AccessList;
3402
+ blobVersionedHashes?: undefined;
3403
+ chainId: number;
3404
+ type: "deposit";
3405
+ isSystemTx?: boolean | undefined;
3406
+ mint?: bigint | undefined;
3407
+ sourceHash: `0x${string}`;
3408
+ } | {
3409
+ blockHash: `0x${string}` | null;
3410
+ blockNumber: bigint | null;
3411
+ from: `0x${string}`;
3412
+ gas: bigint;
3413
+ hash: `0x${string}`;
3414
+ input: `0x${string}`;
3415
+ nonce: number;
3416
+ r: `0x${string}`;
3417
+ s: `0x${string}`;
3418
+ to: `0x${string}` | null;
3419
+ transactionIndex: number | null;
3420
+ typeHex: `0x${string}` | null;
3421
+ v: bigint;
3422
+ value: bigint;
3423
+ yParity: number;
3424
+ gasPrice: bigint;
3425
+ maxFeePerBlobGas?: undefined;
3426
+ maxFeePerGas: undefined;
3427
+ maxPriorityFeePerGas: undefined;
3428
+ accessList: import("viem").AccessList;
3429
+ blobVersionedHashes?: undefined;
3430
+ chainId: number;
3431
+ type: "eip2930";
3432
+ isSystemTx?: undefined;
3433
+ mint?: undefined;
3434
+ sourceHash?: undefined;
3435
+ } | {
3436
+ blockHash: `0x${string}` | null;
3437
+ blockNumber: bigint | null;
3438
+ from: `0x${string}`;
3439
+ gas: bigint;
3440
+ hash: `0x${string}`;
3441
+ input: `0x${string}`;
3442
+ nonce: number;
3443
+ r: `0x${string}`;
3444
+ s: `0x${string}`;
3445
+ to: `0x${string}` | null;
3446
+ transactionIndex: number | null;
3447
+ typeHex: `0x${string}` | null;
3448
+ v: bigint;
3449
+ value: bigint;
3450
+ yParity: number;
3451
+ gasPrice?: undefined;
3452
+ maxFeePerBlobGas?: undefined;
3453
+ maxFeePerGas: bigint;
3454
+ maxPriorityFeePerGas: bigint;
3455
+ accessList: import("viem").AccessList;
3456
+ blobVersionedHashes?: undefined;
3457
+ chainId: number;
3458
+ type: "eip1559";
3459
+ isSystemTx?: undefined;
3460
+ mint?: undefined;
3461
+ sourceHash?: undefined;
3462
+ } | {
3463
+ blockHash: `0x${string}` | null;
3464
+ blockNumber: bigint | null;
3465
+ from: `0x${string}`;
3466
+ gas: bigint;
3467
+ hash: `0x${string}`;
3468
+ input: `0x${string}`;
3469
+ nonce: number;
3470
+ r: `0x${string}`;
3471
+ s: `0x${string}`;
3472
+ to: `0x${string}` | null;
3473
+ transactionIndex: number | null;
3474
+ typeHex: `0x${string}` | null;
3475
+ v: bigint;
3476
+ value: bigint;
3477
+ yParity: number;
3478
+ gasPrice?: undefined;
3479
+ maxFeePerBlobGas?: undefined;
3480
+ maxFeePerGas: bigint;
3481
+ maxPriorityFeePerGas: bigint;
3482
+ accessList: import("viem").AccessList;
3483
+ blobVersionedHashes?: undefined;
3484
+ chainId: number;
3485
+ type: "deposit";
3486
+ isSystemTx?: boolean | undefined;
3487
+ mint?: bigint | undefined;
3488
+ sourceHash: `0x${string}`;
3489
+ } | {
3490
+ blockHash: `0x${string}` | null;
3491
+ blockNumber: bigint | null;
3492
+ from: `0x${string}`;
3493
+ gas: bigint;
3494
+ hash: `0x${string}`;
3495
+ input: `0x${string}`;
3496
+ nonce: number;
3497
+ r: `0x${string}`;
3498
+ s: `0x${string}`;
3499
+ to: `0x${string}` | null;
3500
+ transactionIndex: number | null;
3501
+ typeHex: `0x${string}` | null;
3502
+ v: bigint;
3503
+ value: bigint;
3504
+ yParity: number;
3505
+ gasPrice?: undefined;
3506
+ maxFeePerBlobGas: bigint;
3507
+ maxFeePerGas: bigint;
3508
+ maxPriorityFeePerGas: bigint;
3509
+ accessList: import("viem").AccessList;
3510
+ blobVersionedHashes: readonly `0x${string}`[];
3511
+ chainId: number;
3512
+ type: "eip4844";
3513
+ isSystemTx?: undefined;
3514
+ mint?: undefined;
3515
+ sourceHash?: undefined;
3516
+ } | {
3517
+ blockHash: `0x${string}` | null;
3518
+ blockNumber: bigint | null;
3519
+ from: `0x${string}`;
3520
+ gas: bigint;
3521
+ hash: `0x${string}`;
3522
+ input: `0x${string}`;
3523
+ nonce: number;
3524
+ r: `0x${string}`;
3525
+ s: `0x${string}`;
3526
+ to: `0x${string}` | null;
3527
+ transactionIndex: number | null;
3528
+ typeHex: `0x${string}` | null;
3529
+ v: bigint;
3530
+ value: bigint;
3531
+ yParity: number;
3532
+ gasPrice?: undefined;
3533
+ maxFeePerBlobGas: undefined;
3534
+ maxFeePerGas: bigint;
3535
+ maxPriorityFeePerGas: bigint;
3536
+ accessList: import("viem").AccessList;
3537
+ blobVersionedHashes: readonly `0x${string}`[];
3538
+ chainId: number;
3539
+ type: "deposit";
3540
+ isSystemTx?: boolean | undefined;
3541
+ mint?: bigint | undefined;
3542
+ sourceHash: `0x${string}`;
3543
+ };
3544
+ type: "transaction";
3545
+ };
3546
+ readonly transactionReceipt: {
3547
+ exclude: [] | undefined;
3548
+ format: (args: import("viem/chains").Assign<import("viem").ExactPartial<import("viem").RpcTransactionReceipt>, import("viem/chains").OpStackRpcTransactionReceiptOverrides>) => {
3549
+ blobGasPrice?: bigint | undefined;
3550
+ blobGasUsed?: bigint | undefined;
3551
+ blockHash: `0x${string}`;
3552
+ blockNumber: bigint;
3553
+ contractAddress: `0x${string}` | null | undefined;
3554
+ cumulativeGasUsed: bigint;
3555
+ effectiveGasPrice: bigint;
3556
+ from: `0x${string}`;
3557
+ gasUsed: bigint;
3558
+ logs: import("viem").Log<bigint, number, false, undefined, undefined, undefined, undefined>[];
3559
+ logsBloom: `0x${string}`;
3560
+ root?: `0x${string}` | undefined;
3561
+ status: "success" | "reverted";
3562
+ to: `0x${string}` | null;
3563
+ transactionHash: `0x${string}`;
3564
+ transactionIndex: number;
3565
+ type: import("viem").TransactionType;
3566
+ l1GasPrice: bigint | null;
3567
+ l1GasUsed: bigint | null;
3568
+ l1Fee: bigint | null;
3569
+ l1FeeScalar: number | null;
3570
+ };
3571
+ type: "transactionReceipt";
3572
+ };
3573
+ };
3574
+ serializers: {
3575
+ readonly transaction: typeof import("viem/chains").serializeTransactionOpStack;
3576
+ };
3577
+ fees?: import("viem").ChainFees<undefined> | undefined;
3578
+ readonly network: "base-sepolia";
3579
+ };
3580
+ readonly 3: {
3581
+ blockExplorers: {
3582
+ readonly default: {
3583
+ readonly name: "BscScan";
3584
+ readonly url: "https://testnet.bscscan.com";
3585
+ readonly apiUrl: "https://testnet.bscscan.com/api";
3586
+ };
3587
+ };
3588
+ contracts: {
3589
+ readonly multicall3: {
3590
+ readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
3591
+ readonly blockCreated: 17422483;
3592
+ };
3593
+ };
3594
+ id: 97;
3595
+ name: "Binance Smart Chain Testnet";
3596
+ nativeCurrency: {
3597
+ readonly decimals: 18;
3598
+ readonly name: "BNB";
3599
+ readonly symbol: "tBNB";
3600
+ };
3601
+ rpcUrls: {
3602
+ readonly default: {
3603
+ readonly http: readonly ["https://data-seed-prebsc-1-s1.bnbchain.org:8545"];
3604
+ };
3605
+ };
3606
+ sourceId?: number | undefined;
3607
+ testnet: true;
3608
+ custom?: Record<string, unknown> | undefined;
3609
+ formatters?: undefined;
3610
+ serializers?: import("viem").ChainSerializers<undefined> | undefined;
3611
+ fees?: import("viem").ChainFees<undefined> | undefined;
3612
+ };
3613
+ readonly 8: {
3614
+ blockExplorers: {
3615
+ readonly default: {
3616
+ readonly name: "Arbiscan";
3617
+ readonly url: "https://sepolia.arbiscan.io";
3618
+ readonly apiUrl: "https://api-sepolia.arbiscan.io/api";
3619
+ };
3620
+ };
3621
+ contracts: {
3622
+ readonly multicall3: {
3623
+ readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
3624
+ readonly blockCreated: 81930;
3625
+ };
3626
+ };
3627
+ id: 421614;
3628
+ name: "Arbitrum Sepolia";
3629
+ nativeCurrency: {
3630
+ readonly name: "Arbitrum Sepolia Ether";
3631
+ readonly symbol: "ETH";
3632
+ readonly decimals: 18;
3633
+ };
3634
+ rpcUrls: {
3635
+ readonly default: {
3636
+ readonly http: readonly ["https://sepolia-rollup.arbitrum.io/rpc"];
3637
+ };
3638
+ };
3639
+ sourceId?: number | undefined;
3640
+ testnet: true;
3641
+ custom?: Record<string, unknown> | undefined;
3642
+ formatters?: undefined;
3643
+ serializers?: import("viem").ChainSerializers<undefined> | undefined;
3644
+ fees?: import("viem").ChainFees<undefined> | undefined;
3645
+ };
3646
+ readonly 100: {
3647
+ blockExplorers: {
3648
+ readonly default: {
3649
+ readonly name: "SnowTrace";
3650
+ readonly url: "https://snowtrace.io";
3651
+ readonly apiUrl: "https://api.snowtrace.io";
3652
+ };
3653
+ };
3654
+ contracts: {
3655
+ readonly multicall3: {
3656
+ readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
3657
+ readonly blockCreated: 11907934;
3658
+ };
3659
+ };
3660
+ id: 43114;
3661
+ name: "Avalanche";
3662
+ nativeCurrency: {
3663
+ readonly decimals: 18;
3664
+ readonly name: "Avalanche";
3665
+ readonly symbol: "AVAX";
3666
+ };
3667
+ rpcUrls: {
3668
+ readonly default: {
3669
+ readonly http: readonly ["https://api.avax.network/ext/bc/C/rpc"];
3670
+ };
3671
+ };
3672
+ sourceId?: number | undefined;
3673
+ testnet?: boolean | undefined;
3674
+ custom?: Record<string, unknown> | undefined;
3675
+ formatters?: undefined;
3676
+ serializers?: import("viem").ChainSerializers<undefined> | undefined;
3677
+ fees?: import("viem").ChainFees<undefined> | undefined;
3678
+ };
3679
+ readonly 101: {
3680
+ blockExplorers: {
3681
+ readonly default: {
3682
+ readonly name: "Etherscan";
3683
+ readonly url: "https://etherscan.io";
3684
+ readonly apiUrl: "https://api.etherscan.io/api";
3685
+ };
3686
+ };
3687
+ contracts: {
3688
+ readonly ensRegistry: {
3689
+ readonly address: "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e";
3690
+ };
3691
+ readonly ensUniversalResolver: {
3692
+ readonly address: "0xce01f8eee7E479C928F8919abD53E553a36CeF67";
3693
+ readonly blockCreated: 19258213;
3694
+ };
3695
+ readonly multicall3: {
3696
+ readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
3697
+ readonly blockCreated: 14353601;
3698
+ };
3699
+ };
3700
+ id: 1;
3701
+ name: "Ethereum";
3702
+ nativeCurrency: {
3703
+ readonly name: "Ether";
3704
+ readonly symbol: "ETH";
3705
+ readonly decimals: 18;
3706
+ };
3707
+ rpcUrls: {
3708
+ readonly default: {
3709
+ readonly http: readonly ["https://cloudflare-eth.com"];
3710
+ };
3711
+ };
3712
+ sourceId?: number | undefined;
3713
+ testnet?: boolean | undefined;
3714
+ custom?: Record<string, unknown> | undefined;
3715
+ formatters?: undefined;
3716
+ serializers?: import("viem").ChainSerializers<undefined> | undefined;
3717
+ fees?: import("viem").ChainFees<undefined> | undefined;
3718
+ };
3719
+ readonly 102: {
3720
+ blockExplorers: {
3721
+ readonly default: {
3722
+ readonly name: "Basescan";
3723
+ readonly url: "https://basescan.org";
3724
+ readonly apiUrl: "https://api.basescan.org/api";
3725
+ };
3726
+ };
3727
+ contracts: {
3728
+ readonly l2OutputOracle: {
3729
+ readonly 1: {
3730
+ readonly address: "0x56315b90c40730925ec5485cf004d835058518A0";
3731
+ };
3732
+ };
3733
+ readonly multicall3: {
3734
+ readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
3735
+ readonly blockCreated: 5022;
3736
+ };
3737
+ readonly portal: {
3738
+ readonly 1: {
3739
+ readonly address: "0x49048044D57e1C92A77f79988d21Fa8fAF74E97e";
3740
+ readonly blockCreated: 17482143;
3741
+ };
3742
+ };
3743
+ readonly l1StandardBridge: {
3744
+ readonly 1: {
3745
+ readonly address: "0x3154Cf16ccdb4C6d922629664174b904d80F2C35";
3746
+ readonly blockCreated: 17482143;
3747
+ };
3748
+ };
3749
+ readonly gasPriceOracle: {
3750
+ readonly address: "0x420000000000000000000000000000000000000F";
3751
+ };
3752
+ readonly l1Block: {
3753
+ readonly address: "0x4200000000000000000000000000000000000015";
3754
+ };
3755
+ readonly l2CrossDomainMessenger: {
3756
+ readonly address: "0x4200000000000000000000000000000000000007";
3757
+ };
3758
+ readonly l2Erc721Bridge: {
3759
+ readonly address: "0x4200000000000000000000000000000000000014";
3760
+ };
3761
+ readonly l2StandardBridge: {
3762
+ readonly address: "0x4200000000000000000000000000000000000010";
3763
+ };
3764
+ readonly l2ToL1MessagePasser: {
3765
+ readonly address: "0x4200000000000000000000000000000000000016";
3766
+ };
3767
+ };
3768
+ id: 8453;
3769
+ name: "Base";
3770
+ nativeCurrency: {
3771
+ readonly name: "Ether";
3772
+ readonly symbol: "ETH";
3773
+ readonly decimals: 18;
3774
+ };
3775
+ rpcUrls: {
3776
+ readonly default: {
3777
+ readonly http: readonly ["https://mainnet.base.org"];
3778
+ };
3779
+ };
3780
+ sourceId: 1;
3781
+ testnet?: boolean | undefined;
3782
+ custom?: Record<string, unknown> | undefined;
3783
+ formatters: {
3784
+ readonly block: {
3785
+ exclude: [] | undefined;
3786
+ format: (args: import("viem/chains").Assign<import("viem").ExactPartial<import("viem").RpcBlock<import("viem").BlockTag, boolean, import("viem").RpcTransaction<boolean>>>, import("viem/chains").OpStackRpcBlockOverrides & {
3787
+ transactions: `0x${string}`[] | import("viem/chains").OpStackRpcTransaction<boolean>[];
3788
+ }>) => {
3789
+ baseFeePerGas: bigint | null;
3790
+ blobGasUsed: bigint;
3791
+ difficulty: bigint;
3792
+ excessBlobGas: bigint;
3793
+ extraData: `0x${string}`;
3794
+ gasLimit: bigint;
3795
+ gasUsed: bigint;
3796
+ hash: `0x${string}` | null;
3797
+ logsBloom: `0x${string}` | null;
3798
+ miner: `0x${string}`;
3799
+ mixHash: `0x${string}`;
3800
+ nonce: `0x${string}` | null;
3801
+ number: bigint | null;
3802
+ parentHash: `0x${string}`;
3803
+ receiptsRoot: `0x${string}`;
3804
+ sealFields: `0x${string}`[];
3805
+ sha3Uncles: `0x${string}`;
3806
+ size: bigint;
3807
+ stateRoot: `0x${string}`;
3808
+ timestamp: bigint;
3809
+ totalDifficulty: bigint | null;
3810
+ transactions: `0x${string}`[] | import("viem/chains").OpStackTransaction<boolean>[];
3811
+ transactionsRoot: `0x${string}`;
3812
+ uncles: `0x${string}`[];
3813
+ withdrawals?: import("viem").Withdrawal[] | undefined;
3814
+ withdrawalsRoot?: `0x${string}` | undefined;
3815
+ };
3816
+ type: "block";
3817
+ };
3818
+ readonly transaction: {
3819
+ exclude: [] | undefined;
3820
+ format: (args: ({
3821
+ r?: `0x${string}` | undefined;
3822
+ s?: `0x${string}` | undefined;
3823
+ v?: `0x${string}` | undefined;
3824
+ yParity?: `0x${string}` | undefined;
3825
+ gasPrice?: `0x${string}` | undefined;
3826
+ maxFeePerBlobGas?: `0x${string}` | undefined;
3827
+ maxFeePerGas?: `0x${string}` | undefined;
3828
+ maxPriorityFeePerGas?: `0x${string}` | undefined;
3829
+ type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
3830
+ to?: `0x${string}` | null | undefined;
3831
+ from?: `0x${string}` | undefined;
3832
+ gas?: `0x${string}` | undefined;
3833
+ nonce?: `0x${string}` | undefined;
3834
+ value?: `0x${string}` | undefined;
3835
+ accessList?: undefined;
3836
+ blobVersionedHashes?: undefined;
3837
+ blockHash?: `0x${string}` | null | undefined;
3838
+ blockNumber?: `0x${string}` | null | undefined;
3839
+ hash?: `0x${string}` | undefined;
3840
+ input?: `0x${string}` | undefined;
3841
+ transactionIndex?: `0x${string}` | null | undefined;
3842
+ chainId?: `0x${string}` | undefined;
3843
+ } & import("viem/chains").Omit<import("viem/chains").PartialBy<{
3844
+ r: `0x${string}`;
3845
+ s: `0x${string}`;
3846
+ v: `0x${string}`;
3847
+ to: `0x${string}` | null;
3848
+ from: `0x${string}`;
3849
+ gas: `0x${string}`;
3850
+ nonce: `0x${string}`;
3851
+ value: `0x${string}`;
3852
+ blockHash: `0x${string}` | null;
3853
+ blockNumber: `0x${string}` | null;
3854
+ hash: `0x${string}`;
3855
+ input: `0x${string}`;
3856
+ transactionIndex: `0x${string}` | null;
3857
+ typeHex: `0x${string}` | null;
3858
+ gasPrice: `0x${string}`;
3859
+ maxFeePerBlobGas?: undefined;
3860
+ maxFeePerGas?: undefined;
3861
+ maxPriorityFeePerGas?: undefined;
3862
+ accessList?: undefined;
3863
+ blobVersionedHashes?: undefined;
3864
+ chainId?: `0x${string}` | undefined;
3865
+ yParity?: undefined;
3866
+ type: "0x0";
3867
+ }, "yParity">, "typeHex"> & {
3868
+ isSystemTx?: undefined;
3869
+ mint?: undefined;
3870
+ sourceHash?: undefined;
3871
+ }) | ({
3872
+ r?: `0x${string}` | undefined;
3873
+ s?: `0x${string}` | undefined;
3874
+ v?: `0x${string}` | undefined;
3875
+ yParity?: `0x${string}` | undefined;
3876
+ gasPrice?: `0x${string}` | undefined;
3877
+ maxFeePerBlobGas?: `0x${string}` | undefined;
3878
+ maxFeePerGas?: `0x${string}` | undefined;
3879
+ maxPriorityFeePerGas?: `0x${string}` | undefined;
3880
+ type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
3881
+ to?: `0x${string}` | null | undefined;
3882
+ from?: `0x${string}` | undefined;
3883
+ gas?: `0x${string}` | undefined;
3884
+ nonce?: `0x${string}` | undefined;
3885
+ value?: `0x${string}` | undefined;
3886
+ accessList?: undefined;
3887
+ blobVersionedHashes?: undefined;
3888
+ blockHash?: `0x${string}` | null | undefined;
3889
+ blockNumber?: `0x${string}` | null | undefined;
3890
+ hash?: `0x${string}` | undefined;
3891
+ input?: `0x${string}` | undefined;
3892
+ transactionIndex?: `0x${string}` | null | undefined;
3893
+ chainId?: `0x${string}` | undefined;
3894
+ } & Omit<import("viem").TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & import("viem").FeeValuesEIP1559<`0x${string}`> & {
3895
+ isSystemTx?: boolean | undefined;
3896
+ mint?: `0x${string}` | undefined;
3897
+ sourceHash: `0x${string}`;
3898
+ type: "0x7e";
3899
+ }) | ({
3900
+ r?: `0x${string}` | undefined;
3901
+ s?: `0x${string}` | undefined;
3902
+ v?: `0x${string}` | undefined;
3903
+ yParity?: `0x${string}` | undefined;
3904
+ gasPrice?: `0x${string}` | undefined;
3905
+ maxFeePerBlobGas?: `0x${string}` | undefined;
3906
+ maxFeePerGas?: `0x${string}` | undefined;
3907
+ maxPriorityFeePerGas?: `0x${string}` | undefined;
3908
+ type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
3909
+ to?: `0x${string}` | null | undefined;
3910
+ from?: `0x${string}` | undefined;
3911
+ gas?: `0x${string}` | undefined;
3912
+ nonce?: `0x${string}` | undefined;
3913
+ value?: `0x${string}` | undefined;
3914
+ accessList?: import("viem").AccessList | undefined;
3915
+ blobVersionedHashes?: undefined;
3916
+ blockHash?: `0x${string}` | null | undefined;
3917
+ blockNumber?: `0x${string}` | null | undefined;
3918
+ hash?: `0x${string}` | undefined;
3919
+ input?: `0x${string}` | undefined;
3920
+ transactionIndex?: `0x${string}` | null | undefined;
3921
+ chainId?: `0x${string}` | undefined;
3922
+ } & import("viem/chains").Omit<import("viem/chains").PartialBy<{
3923
+ r: `0x${string}`;
3924
+ s: `0x${string}`;
3925
+ v: `0x${string}`;
3926
+ to: `0x${string}` | null;
3927
+ from: `0x${string}`;
3928
+ gas: `0x${string}`;
3929
+ nonce: `0x${string}`;
3930
+ value: `0x${string}`;
3931
+ blockHash: `0x${string}` | null;
3932
+ blockNumber: `0x${string}` | null;
3933
+ hash: `0x${string}`;
3934
+ input: `0x${string}`;
3935
+ transactionIndex: `0x${string}` | null;
3936
+ typeHex: `0x${string}` | null;
3937
+ gasPrice: `0x${string}`;
3938
+ maxFeePerBlobGas?: undefined;
3939
+ maxFeePerGas?: undefined;
3940
+ maxPriorityFeePerGas?: undefined;
3941
+ accessList?: undefined;
3942
+ blobVersionedHashes?: undefined;
3943
+ chainId?: `0x${string}` | undefined;
3944
+ yParity?: undefined;
3945
+ type: "0x0";
3946
+ }, "yParity">, "typeHex"> & {
3947
+ isSystemTx?: undefined;
3948
+ mint?: undefined;
3949
+ sourceHash?: undefined;
3950
+ }) | ({
3951
+ r?: `0x${string}` | undefined;
3952
+ s?: `0x${string}` | undefined;
3953
+ v?: `0x${string}` | undefined;
3954
+ yParity?: `0x${string}` | undefined;
3955
+ gasPrice?: `0x${string}` | undefined;
3956
+ maxFeePerBlobGas?: `0x${string}` | undefined;
3957
+ maxFeePerGas?: `0x${string}` | undefined;
3958
+ maxPriorityFeePerGas?: `0x${string}` | undefined;
3959
+ type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
3960
+ to?: `0x${string}` | null | undefined;
3961
+ from?: `0x${string}` | undefined;
3962
+ gas?: `0x${string}` | undefined;
3963
+ nonce?: `0x${string}` | undefined;
3964
+ value?: `0x${string}` | undefined;
3965
+ accessList?: import("viem").AccessList | undefined;
3966
+ blobVersionedHashes?: undefined;
3967
+ blockHash?: `0x${string}` | null | undefined;
3968
+ blockNumber?: `0x${string}` | null | undefined;
3969
+ hash?: `0x${string}` | undefined;
3970
+ input?: `0x${string}` | undefined;
3971
+ transactionIndex?: `0x${string}` | null | undefined;
3972
+ chainId?: `0x${string}` | undefined;
3973
+ } & import("viem/chains").Omit<import("viem/chains").PartialBy<{
3974
+ blockHash: `0x${string}` | null;
3975
+ blockNumber: `0x${string}` | null;
3976
+ from: `0x${string}`;
3977
+ gas: `0x${string}`;
3978
+ hash: `0x${string}`;
3979
+ input: `0x${string}`;
3980
+ nonce: `0x${string}`;
3981
+ r: `0x${string}`;
3982
+ s: `0x${string}`;
3983
+ to: `0x${string}` | null;
3984
+ transactionIndex: `0x${string}` | null;
3985
+ typeHex: `0x${string}` | null;
3986
+ v: `0x${string}`;
3987
+ value: `0x${string}`;
3988
+ yParity: `0x${string}`;
3989
+ gasPrice: `0x${string}`;
3990
+ maxFeePerBlobGas?: undefined;
3991
+ maxFeePerGas?: undefined;
3992
+ maxPriorityFeePerGas?: undefined;
3993
+ accessList: import("viem").AccessList;
3994
+ blobVersionedHashes?: undefined;
3995
+ chainId: `0x${string}`;
3996
+ type: "0x1";
3997
+ }, "yParity">, "typeHex"> & {
3998
+ isSystemTx?: undefined;
3999
+ mint?: undefined;
4000
+ sourceHash?: undefined;
4001
+ }) | ({
4002
+ r?: `0x${string}` | undefined;
4003
+ s?: `0x${string}` | undefined;
4004
+ v?: `0x${string}` | undefined;
4005
+ yParity?: `0x${string}` | undefined;
4006
+ gasPrice?: `0x${string}` | undefined;
4007
+ maxFeePerBlobGas?: `0x${string}` | undefined;
4008
+ maxFeePerGas?: `0x${string}` | undefined;
4009
+ maxPriorityFeePerGas?: `0x${string}` | undefined;
4010
+ type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
4011
+ to?: `0x${string}` | null | undefined;
4012
+ from?: `0x${string}` | undefined;
4013
+ gas?: `0x${string}` | undefined;
4014
+ nonce?: `0x${string}` | undefined;
4015
+ value?: `0x${string}` | undefined;
4016
+ accessList?: import("viem").AccessList | undefined;
4017
+ blobVersionedHashes?: undefined;
4018
+ blockHash?: `0x${string}` | null | undefined;
4019
+ blockNumber?: `0x${string}` | null | undefined;
4020
+ hash?: `0x${string}` | undefined;
4021
+ input?: `0x${string}` | undefined;
4022
+ transactionIndex?: `0x${string}` | null | undefined;
4023
+ chainId?: `0x${string}` | undefined;
4024
+ } & import("viem/chains").Omit<import("viem/chains").PartialBy<{
4025
+ blockHash: `0x${string}` | null;
4026
+ blockNumber: `0x${string}` | null;
4027
+ from: `0x${string}`;
4028
+ gas: `0x${string}`;
4029
+ hash: `0x${string}`;
4030
+ input: `0x${string}`;
4031
+ nonce: `0x${string}`;
4032
+ r: `0x${string}`;
4033
+ s: `0x${string}`;
4034
+ to: `0x${string}` | null;
4035
+ transactionIndex: `0x${string}` | null;
4036
+ typeHex: `0x${string}` | null;
4037
+ v: `0x${string}`;
4038
+ value: `0x${string}`;
4039
+ yParity: `0x${string}`;
4040
+ gasPrice?: undefined;
4041
+ maxFeePerBlobGas?: undefined;
4042
+ maxFeePerGas: `0x${string}`;
4043
+ maxPriorityFeePerGas: `0x${string}`;
4044
+ accessList: import("viem").AccessList;
4045
+ blobVersionedHashes?: undefined;
4046
+ chainId: `0x${string}`;
4047
+ type: "0x2";
4048
+ }, "yParity">, "typeHex"> & {
4049
+ isSystemTx?: undefined;
4050
+ mint?: undefined;
4051
+ sourceHash?: undefined;
4052
+ }) | ({
4053
+ r?: `0x${string}` | undefined;
4054
+ s?: `0x${string}` | undefined;
4055
+ v?: `0x${string}` | undefined;
4056
+ yParity?: `0x${string}` | undefined;
4057
+ gasPrice?: `0x${string}` | undefined;
4058
+ maxFeePerBlobGas?: `0x${string}` | undefined;
4059
+ maxFeePerGas?: `0x${string}` | undefined;
4060
+ maxPriorityFeePerGas?: `0x${string}` | undefined;
4061
+ type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
4062
+ to?: `0x${string}` | null | undefined;
4063
+ from?: `0x${string}` | undefined;
4064
+ gas?: `0x${string}` | undefined;
4065
+ nonce?: `0x${string}` | undefined;
4066
+ value?: `0x${string}` | undefined;
4067
+ accessList?: import("viem").AccessList | undefined;
4068
+ blobVersionedHashes?: undefined;
4069
+ blockHash?: `0x${string}` | null | undefined;
4070
+ blockNumber?: `0x${string}` | null | undefined;
4071
+ hash?: `0x${string}` | undefined;
4072
+ input?: `0x${string}` | undefined;
4073
+ transactionIndex?: `0x${string}` | null | undefined;
4074
+ chainId?: `0x${string}` | undefined;
4075
+ } & Omit<import("viem").TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & import("viem").FeeValuesEIP1559<`0x${string}`> & {
4076
+ isSystemTx?: boolean | undefined;
4077
+ mint?: `0x${string}` | undefined;
4078
+ sourceHash: `0x${string}`;
4079
+ type: "0x7e";
4080
+ }) | ({
4081
+ r?: `0x${string}` | undefined;
4082
+ s?: `0x${string}` | undefined;
4083
+ v?: `0x${string}` | undefined;
4084
+ yParity?: `0x${string}` | undefined;
4085
+ gasPrice?: `0x${string}` | undefined;
4086
+ maxFeePerBlobGas?: `0x${string}` | undefined;
4087
+ maxFeePerGas?: `0x${string}` | undefined;
4088
+ maxPriorityFeePerGas?: `0x${string}` | undefined;
4089
+ type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
4090
+ to?: `0x${string}` | null | undefined;
4091
+ from?: `0x${string}` | undefined;
4092
+ gas?: `0x${string}` | undefined;
4093
+ nonce?: `0x${string}` | undefined;
4094
+ value?: `0x${string}` | undefined;
4095
+ accessList?: import("viem").AccessList | undefined;
4096
+ blobVersionedHashes?: undefined;
4097
+ blockHash?: `0x${string}` | null | undefined;
4098
+ blockNumber?: `0x${string}` | null | undefined;
4099
+ hash?: `0x${string}` | undefined;
4100
+ input?: `0x${string}` | undefined;
4101
+ transactionIndex?: `0x${string}` | null | undefined;
4102
+ chainId?: `0x${string}` | undefined;
4103
+ } & import("viem/chains").Omit<import("viem/chains").PartialBy<{
4104
+ r: `0x${string}`;
4105
+ s: `0x${string}`;
4106
+ v: `0x${string}`;
4107
+ to: `0x${string}` | null;
4108
+ from: `0x${string}`;
4109
+ gas: `0x${string}`;
4110
+ nonce: `0x${string}`;
4111
+ value: `0x${string}`;
4112
+ blockHash: `0x${string}` | null;
4113
+ blockNumber: `0x${string}` | null;
4114
+ hash: `0x${string}`;
4115
+ input: `0x${string}`;
4116
+ transactionIndex: `0x${string}` | null;
4117
+ typeHex: `0x${string}` | null;
4118
+ gasPrice: `0x${string}`;
4119
+ maxFeePerBlobGas?: undefined;
4120
+ maxFeePerGas?: undefined;
4121
+ maxPriorityFeePerGas?: undefined;
4122
+ accessList?: undefined;
4123
+ blobVersionedHashes?: undefined;
4124
+ chainId?: `0x${string}` | undefined;
4125
+ yParity?: undefined;
4126
+ type: "0x0";
4127
+ }, "yParity">, "typeHex"> & {
4128
+ isSystemTx?: undefined;
4129
+ mint?: undefined;
4130
+ sourceHash?: undefined;
4131
+ }) | ({
4132
+ r?: `0x${string}` | undefined;
4133
+ s?: `0x${string}` | undefined;
4134
+ v?: `0x${string}` | undefined;
4135
+ yParity?: `0x${string}` | undefined;
4136
+ gasPrice?: `0x${string}` | undefined;
4137
+ maxFeePerBlobGas?: `0x${string}` | undefined;
4138
+ maxFeePerGas?: `0x${string}` | undefined;
4139
+ maxPriorityFeePerGas?: `0x${string}` | undefined;
4140
+ type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
4141
+ to?: `0x${string}` | null | undefined;
4142
+ from?: `0x${string}` | undefined;
4143
+ gas?: `0x${string}` | undefined;
4144
+ nonce?: `0x${string}` | undefined;
4145
+ value?: `0x${string}` | undefined;
4146
+ accessList?: import("viem").AccessList | undefined;
4147
+ blobVersionedHashes?: undefined;
4148
+ blockHash?: `0x${string}` | null | undefined;
4149
+ blockNumber?: `0x${string}` | null | undefined;
4150
+ hash?: `0x${string}` | undefined;
4151
+ input?: `0x${string}` | undefined;
4152
+ transactionIndex?: `0x${string}` | null | undefined;
4153
+ chainId?: `0x${string}` | undefined;
4154
+ } & import("viem/chains").Omit<import("viem/chains").PartialBy<{
4155
+ blockHash: `0x${string}` | null;
4156
+ blockNumber: `0x${string}` | null;
4157
+ from: `0x${string}`;
4158
+ gas: `0x${string}`;
4159
+ hash: `0x${string}`;
4160
+ input: `0x${string}`;
4161
+ nonce: `0x${string}`;
4162
+ r: `0x${string}`;
4163
+ s: `0x${string}`;
4164
+ to: `0x${string}` | null;
4165
+ transactionIndex: `0x${string}` | null;
4166
+ typeHex: `0x${string}` | null;
4167
+ v: `0x${string}`;
4168
+ value: `0x${string}`;
4169
+ yParity: `0x${string}`;
4170
+ gasPrice: `0x${string}`;
4171
+ maxFeePerBlobGas?: undefined;
4172
+ maxFeePerGas?: undefined;
4173
+ maxPriorityFeePerGas?: undefined;
4174
+ accessList: import("viem").AccessList;
4175
+ blobVersionedHashes?: undefined;
4176
+ chainId: `0x${string}`;
4177
+ type: "0x1";
4178
+ }, "yParity">, "typeHex"> & {
4179
+ isSystemTx?: undefined;
4180
+ mint?: undefined;
4181
+ sourceHash?: undefined;
4182
+ }) | ({
4183
+ r?: `0x${string}` | undefined;
4184
+ s?: `0x${string}` | undefined;
4185
+ v?: `0x${string}` | undefined;
4186
+ yParity?: `0x${string}` | undefined;
4187
+ gasPrice?: `0x${string}` | undefined;
4188
+ maxFeePerBlobGas?: `0x${string}` | undefined;
4189
+ maxFeePerGas?: `0x${string}` | undefined;
4190
+ maxPriorityFeePerGas?: `0x${string}` | undefined;
4191
+ type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
4192
+ to?: `0x${string}` | null | undefined;
4193
+ from?: `0x${string}` | undefined;
4194
+ gas?: `0x${string}` | undefined;
4195
+ nonce?: `0x${string}` | undefined;
4196
+ value?: `0x${string}` | undefined;
4197
+ accessList?: import("viem").AccessList | undefined;
4198
+ blobVersionedHashes?: undefined;
4199
+ blockHash?: `0x${string}` | null | undefined;
4200
+ blockNumber?: `0x${string}` | null | undefined;
4201
+ hash?: `0x${string}` | undefined;
4202
+ input?: `0x${string}` | undefined;
4203
+ transactionIndex?: `0x${string}` | null | undefined;
4204
+ chainId?: `0x${string}` | undefined;
4205
+ } & import("viem/chains").Omit<import("viem/chains").PartialBy<{
4206
+ blockHash: `0x${string}` | null;
4207
+ blockNumber: `0x${string}` | null;
4208
+ from: `0x${string}`;
4209
+ gas: `0x${string}`;
4210
+ hash: `0x${string}`;
4211
+ input: `0x${string}`;
4212
+ nonce: `0x${string}`;
4213
+ r: `0x${string}`;
4214
+ s: `0x${string}`;
4215
+ to: `0x${string}` | null;
4216
+ transactionIndex: `0x${string}` | null;
4217
+ typeHex: `0x${string}` | null;
4218
+ v: `0x${string}`;
4219
+ value: `0x${string}`;
4220
+ yParity: `0x${string}`;
4221
+ gasPrice?: undefined;
4222
+ maxFeePerBlobGas?: undefined;
4223
+ maxFeePerGas: `0x${string}`;
4224
+ maxPriorityFeePerGas: `0x${string}`;
4225
+ accessList: import("viem").AccessList;
4226
+ blobVersionedHashes?: undefined;
4227
+ chainId: `0x${string}`;
4228
+ type: "0x2";
4229
+ }, "yParity">, "typeHex"> & {
4230
+ isSystemTx?: undefined;
4231
+ mint?: undefined;
4232
+ sourceHash?: undefined;
4233
+ }) | ({
4234
+ r?: `0x${string}` | undefined;
4235
+ s?: `0x${string}` | undefined;
4236
+ v?: `0x${string}` | undefined;
4237
+ yParity?: `0x${string}` | undefined;
4238
+ gasPrice?: `0x${string}` | undefined;
4239
+ maxFeePerBlobGas?: `0x${string}` | undefined;
4240
+ maxFeePerGas?: `0x${string}` | undefined;
4241
+ maxPriorityFeePerGas?: `0x${string}` | undefined;
4242
+ type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
4243
+ to?: `0x${string}` | null | undefined;
4244
+ from?: `0x${string}` | undefined;
4245
+ gas?: `0x${string}` | undefined;
4246
+ nonce?: `0x${string}` | undefined;
4247
+ value?: `0x${string}` | undefined;
4248
+ accessList?: import("viem").AccessList | undefined;
4249
+ blobVersionedHashes?: undefined;
4250
+ blockHash?: `0x${string}` | null | undefined;
4251
+ blockNumber?: `0x${string}` | null | undefined;
4252
+ hash?: `0x${string}` | undefined;
4253
+ input?: `0x${string}` | undefined;
4254
+ transactionIndex?: `0x${string}` | null | undefined;
4255
+ chainId?: `0x${string}` | undefined;
4256
+ } & Omit<import("viem").TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & import("viem").FeeValuesEIP1559<`0x${string}`> & {
4257
+ isSystemTx?: boolean | undefined;
4258
+ mint?: `0x${string}` | undefined;
4259
+ sourceHash: `0x${string}`;
4260
+ type: "0x7e";
4261
+ }) | ({
4262
+ r?: `0x${string}` | undefined;
4263
+ s?: `0x${string}` | undefined;
4264
+ v?: `0x${string}` | undefined;
4265
+ yParity?: `0x${string}` | undefined;
4266
+ gasPrice?: `0x${string}` | undefined;
4267
+ maxFeePerBlobGas?: `0x${string}` | undefined;
4268
+ maxFeePerGas?: `0x${string}` | undefined;
4269
+ maxPriorityFeePerGas?: `0x${string}` | undefined;
4270
+ type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
4271
+ to?: `0x${string}` | null | undefined;
4272
+ from?: `0x${string}` | undefined;
4273
+ gas?: `0x${string}` | undefined;
4274
+ nonce?: `0x${string}` | undefined;
4275
+ value?: `0x${string}` | undefined;
4276
+ accessList?: import("viem").AccessList | undefined;
4277
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
4278
+ blockHash?: `0x${string}` | null | undefined;
4279
+ blockNumber?: `0x${string}` | null | undefined;
4280
+ hash?: `0x${string}` | undefined;
4281
+ input?: `0x${string}` | undefined;
4282
+ transactionIndex?: `0x${string}` | null | undefined;
4283
+ chainId?: `0x${string}` | undefined;
4284
+ } & import("viem/chains").Omit<import("viem/chains").PartialBy<{
4285
+ r: `0x${string}`;
4286
+ s: `0x${string}`;
4287
+ v: `0x${string}`;
4288
+ to: `0x${string}` | null;
4289
+ from: `0x${string}`;
4290
+ gas: `0x${string}`;
4291
+ nonce: `0x${string}`;
4292
+ value: `0x${string}`;
4293
+ blockHash: `0x${string}` | null;
4294
+ blockNumber: `0x${string}` | null;
4295
+ hash: `0x${string}`;
4296
+ input: `0x${string}`;
4297
+ transactionIndex: `0x${string}` | null;
4298
+ typeHex: `0x${string}` | null;
4299
+ gasPrice: `0x${string}`;
4300
+ maxFeePerBlobGas?: undefined;
4301
+ maxFeePerGas?: undefined;
4302
+ maxPriorityFeePerGas?: undefined;
4303
+ accessList?: undefined;
4304
+ blobVersionedHashes?: undefined;
4305
+ chainId?: `0x${string}` | undefined;
4306
+ yParity?: undefined;
4307
+ type: "0x0";
4308
+ }, "yParity">, "typeHex"> & {
4309
+ isSystemTx?: undefined;
4310
+ mint?: undefined;
4311
+ sourceHash?: undefined;
4312
+ }) | ({
4313
+ r?: `0x${string}` | undefined;
4314
+ s?: `0x${string}` | undefined;
4315
+ v?: `0x${string}` | undefined;
4316
+ yParity?: `0x${string}` | undefined;
4317
+ gasPrice?: `0x${string}` | undefined;
4318
+ maxFeePerBlobGas?: `0x${string}` | undefined;
4319
+ maxFeePerGas?: `0x${string}` | undefined;
4320
+ maxPriorityFeePerGas?: `0x${string}` | undefined;
4321
+ type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
4322
+ to?: `0x${string}` | null | undefined;
4323
+ from?: `0x${string}` | undefined;
4324
+ gas?: `0x${string}` | undefined;
4325
+ nonce?: `0x${string}` | undefined;
4326
+ value?: `0x${string}` | undefined;
4327
+ accessList?: import("viem").AccessList | undefined;
4328
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
4329
+ blockHash?: `0x${string}` | null | undefined;
4330
+ blockNumber?: `0x${string}` | null | undefined;
4331
+ hash?: `0x${string}` | undefined;
4332
+ input?: `0x${string}` | undefined;
4333
+ transactionIndex?: `0x${string}` | null | undefined;
4334
+ chainId?: `0x${string}` | undefined;
4335
+ } & import("viem/chains").Omit<import("viem/chains").PartialBy<{
4336
+ blockHash: `0x${string}` | null;
4337
+ blockNumber: `0x${string}` | null;
4338
+ from: `0x${string}`;
4339
+ gas: `0x${string}`;
4340
+ hash: `0x${string}`;
4341
+ input: `0x${string}`;
4342
+ nonce: `0x${string}`;
4343
+ r: `0x${string}`;
4344
+ s: `0x${string}`;
4345
+ to: `0x${string}` | null;
4346
+ transactionIndex: `0x${string}` | null;
4347
+ typeHex: `0x${string}` | null;
4348
+ v: `0x${string}`;
4349
+ value: `0x${string}`;
4350
+ yParity: `0x${string}`;
4351
+ gasPrice: `0x${string}`;
4352
+ maxFeePerBlobGas?: undefined;
4353
+ maxFeePerGas?: undefined;
4354
+ maxPriorityFeePerGas?: undefined;
4355
+ accessList: import("viem").AccessList;
4356
+ blobVersionedHashes?: undefined;
4357
+ chainId: `0x${string}`;
4358
+ type: "0x1";
4359
+ }, "yParity">, "typeHex"> & {
4360
+ isSystemTx?: undefined;
4361
+ mint?: undefined;
4362
+ sourceHash?: undefined;
4363
+ }) | ({
4364
+ r?: `0x${string}` | undefined;
4365
+ s?: `0x${string}` | undefined;
4366
+ v?: `0x${string}` | undefined;
4367
+ yParity?: `0x${string}` | undefined;
4368
+ gasPrice?: `0x${string}` | undefined;
4369
+ maxFeePerBlobGas?: `0x${string}` | undefined;
4370
+ maxFeePerGas?: `0x${string}` | undefined;
4371
+ maxPriorityFeePerGas?: `0x${string}` | undefined;
4372
+ type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
4373
+ to?: `0x${string}` | null | undefined;
4374
+ from?: `0x${string}` | undefined;
4375
+ gas?: `0x${string}` | undefined;
4376
+ nonce?: `0x${string}` | undefined;
4377
+ value?: `0x${string}` | undefined;
4378
+ accessList?: import("viem").AccessList | undefined;
4379
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
4380
+ blockHash?: `0x${string}` | null | undefined;
4381
+ blockNumber?: `0x${string}` | null | undefined;
4382
+ hash?: `0x${string}` | undefined;
4383
+ input?: `0x${string}` | undefined;
4384
+ transactionIndex?: `0x${string}` | null | undefined;
4385
+ chainId?: `0x${string}` | undefined;
4386
+ } & import("viem/chains").Omit<import("viem/chains").PartialBy<{
4387
+ blockHash: `0x${string}` | null;
4388
+ blockNumber: `0x${string}` | null;
4389
+ from: `0x${string}`;
4390
+ gas: `0x${string}`;
4391
+ hash: `0x${string}`;
4392
+ input: `0x${string}`;
4393
+ nonce: `0x${string}`;
4394
+ r: `0x${string}`;
4395
+ s: `0x${string}`;
4396
+ to: `0x${string}` | null;
4397
+ transactionIndex: `0x${string}` | null;
4398
+ typeHex: `0x${string}` | null;
4399
+ v: `0x${string}`;
4400
+ value: `0x${string}`;
4401
+ yParity: `0x${string}`;
4402
+ gasPrice?: undefined;
4403
+ maxFeePerBlobGas?: undefined;
4404
+ maxFeePerGas: `0x${string}`;
4405
+ maxPriorityFeePerGas: `0x${string}`;
4406
+ accessList: import("viem").AccessList;
4407
+ blobVersionedHashes?: undefined;
4408
+ chainId: `0x${string}`;
4409
+ type: "0x2";
4410
+ }, "yParity">, "typeHex"> & {
4411
+ isSystemTx?: undefined;
4412
+ mint?: undefined;
4413
+ sourceHash?: undefined;
4414
+ }) | ({
4415
+ r?: `0x${string}` | undefined;
4416
+ s?: `0x${string}` | undefined;
4417
+ v?: `0x${string}` | undefined;
4418
+ yParity?: `0x${string}` | undefined;
4419
+ gasPrice?: `0x${string}` | undefined;
4420
+ maxFeePerBlobGas?: `0x${string}` | undefined;
4421
+ maxFeePerGas?: `0x${string}` | undefined;
4422
+ maxPriorityFeePerGas?: `0x${string}` | undefined;
4423
+ type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
4424
+ to?: `0x${string}` | null | undefined;
4425
+ from?: `0x${string}` | undefined;
4426
+ gas?: `0x${string}` | undefined;
4427
+ nonce?: `0x${string}` | undefined;
4428
+ value?: `0x${string}` | undefined;
4429
+ accessList?: import("viem").AccessList | undefined;
4430
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
4431
+ blockHash?: `0x${string}` | null | undefined;
4432
+ blockNumber?: `0x${string}` | null | undefined;
4433
+ hash?: `0x${string}` | undefined;
4434
+ input?: `0x${string}` | undefined;
4435
+ transactionIndex?: `0x${string}` | null | undefined;
4436
+ chainId?: `0x${string}` | undefined;
4437
+ } & import("viem/chains").Omit<import("viem/chains").PartialBy<{
4438
+ blockHash: `0x${string}` | null;
4439
+ blockNumber: `0x${string}` | null;
4440
+ from: `0x${string}`;
4441
+ gas: `0x${string}`;
4442
+ hash: `0x${string}`;
4443
+ input: `0x${string}`;
4444
+ nonce: `0x${string}`;
4445
+ r: `0x${string}`;
4446
+ s: `0x${string}`;
4447
+ to: `0x${string}` | null;
4448
+ transactionIndex: `0x${string}` | null;
4449
+ typeHex: `0x${string}` | null;
4450
+ v: `0x${string}`;
4451
+ value: `0x${string}`;
4452
+ yParity: `0x${string}`;
4453
+ gasPrice?: undefined;
4454
+ maxFeePerBlobGas: `0x${string}`;
4455
+ maxFeePerGas: `0x${string}`;
4456
+ maxPriorityFeePerGas: `0x${string}`;
4457
+ accessList: import("viem").AccessList;
4458
+ blobVersionedHashes: readonly `0x${string}`[];
4459
+ chainId: `0x${string}`;
4460
+ type: "0x3";
4461
+ }, "yParity">, "typeHex"> & {
4462
+ isSystemTx?: undefined;
4463
+ mint?: undefined;
4464
+ sourceHash?: undefined;
4465
+ }) | ({
4466
+ r?: `0x${string}` | undefined;
4467
+ s?: `0x${string}` | undefined;
4468
+ v?: `0x${string}` | undefined;
4469
+ yParity?: `0x${string}` | undefined;
4470
+ gasPrice?: `0x${string}` | undefined;
4471
+ maxFeePerBlobGas?: `0x${string}` | undefined;
4472
+ maxFeePerGas?: `0x${string}` | undefined;
4473
+ maxPriorityFeePerGas?: `0x${string}` | undefined;
4474
+ type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
4475
+ to?: `0x${string}` | null | undefined;
4476
+ from?: `0x${string}` | undefined;
4477
+ gas?: `0x${string}` | undefined;
4478
+ nonce?: `0x${string}` | undefined;
4479
+ value?: `0x${string}` | undefined;
4480
+ accessList?: import("viem").AccessList | undefined;
4481
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
4482
+ blockHash?: `0x${string}` | null | undefined;
4483
+ blockNumber?: `0x${string}` | null | undefined;
4484
+ hash?: `0x${string}` | undefined;
4485
+ input?: `0x${string}` | undefined;
4486
+ transactionIndex?: `0x${string}` | null | undefined;
4487
+ chainId?: `0x${string}` | undefined;
4488
+ } & Omit<import("viem").TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & import("viem").FeeValuesEIP1559<`0x${string}`> & {
4489
+ isSystemTx?: boolean | undefined;
4490
+ mint?: `0x${string}` | undefined;
4491
+ sourceHash: `0x${string}`;
4492
+ type: "0x7e";
4493
+ })) => {
4494
+ r: `0x${string}`;
4495
+ s: `0x${string}`;
4496
+ v: bigint;
4497
+ to: `0x${string}` | null;
4498
+ from: `0x${string}`;
4499
+ gas: bigint;
4500
+ nonce: number;
4501
+ value: bigint;
4502
+ blockHash: `0x${string}` | null;
4503
+ blockNumber: bigint | null;
4504
+ hash: `0x${string}`;
4505
+ input: `0x${string}`;
4506
+ transactionIndex: number | null;
4507
+ typeHex: `0x${string}` | null;
4508
+ gasPrice: bigint;
4509
+ maxFeePerBlobGas?: undefined;
4510
+ maxFeePerGas?: undefined;
4511
+ maxPriorityFeePerGas?: undefined;
4512
+ accessList?: undefined;
4513
+ blobVersionedHashes?: undefined;
4514
+ chainId?: number | undefined;
4515
+ yParity?: undefined;
4516
+ type: "legacy";
4517
+ isSystemTx?: undefined;
4518
+ mint?: undefined;
4519
+ sourceHash?: undefined;
4520
+ } | {
4521
+ r: `0x${string}`;
4522
+ s: `0x${string}`;
4523
+ v: bigint;
4524
+ to: `0x${string}` | null;
4525
+ from: `0x${string}`;
4526
+ gas: bigint;
4527
+ nonce: number;
4528
+ value: bigint;
4529
+ blockHash: `0x${string}` | null;
4530
+ blockNumber: bigint | null;
4531
+ hash: `0x${string}`;
4532
+ input: `0x${string}`;
4533
+ transactionIndex: number | null;
4534
+ typeHex: `0x${string}` | null;
4535
+ gasPrice: undefined;
4536
+ maxFeePerBlobGas?: undefined;
4537
+ maxFeePerGas: bigint;
4538
+ maxPriorityFeePerGas: bigint;
4539
+ accessList?: undefined;
4540
+ blobVersionedHashes?: undefined;
4541
+ chainId?: number | undefined;
4542
+ yParity: number;
4543
+ type: "deposit";
4544
+ isSystemTx?: boolean | undefined;
4545
+ mint?: bigint | undefined;
4546
+ sourceHash: `0x${string}`;
4547
+ } | {
4548
+ blockHash: `0x${string}` | null;
4549
+ blockNumber: bigint | null;
4550
+ from: `0x${string}`;
4551
+ gas: bigint;
4552
+ hash: `0x${string}`;
4553
+ input: `0x${string}`;
4554
+ nonce: number;
4555
+ r: `0x${string}`;
4556
+ s: `0x${string}`;
4557
+ to: `0x${string}` | null;
4558
+ transactionIndex: number | null;
4559
+ typeHex: `0x${string}` | null;
4560
+ v: bigint;
4561
+ value: bigint;
4562
+ yParity: number;
4563
+ gasPrice: bigint;
4564
+ maxFeePerBlobGas?: undefined;
4565
+ maxFeePerGas?: undefined;
4566
+ maxPriorityFeePerGas?: undefined;
4567
+ accessList: import("viem").AccessList;
4568
+ blobVersionedHashes?: undefined;
4569
+ chainId: number;
4570
+ type: "eip2930";
4571
+ isSystemTx?: undefined;
4572
+ mint?: undefined;
4573
+ sourceHash?: undefined;
4574
+ } | {
4575
+ blockHash: `0x${string}` | null;
4576
+ blockNumber: bigint | null;
4577
+ from: `0x${string}`;
4578
+ gas: bigint;
4579
+ hash: `0x${string}`;
4580
+ input: `0x${string}`;
4581
+ nonce: number;
4582
+ r: `0x${string}`;
4583
+ s: `0x${string}`;
4584
+ to: `0x${string}` | null;
4585
+ transactionIndex: number | null;
4586
+ typeHex: `0x${string}` | null;
4587
+ v: bigint;
4588
+ value: bigint;
4589
+ yParity: number;
4590
+ gasPrice: undefined;
4591
+ maxFeePerBlobGas?: undefined;
4592
+ maxFeePerGas: bigint;
4593
+ maxPriorityFeePerGas: bigint;
4594
+ accessList: import("viem").AccessList;
4595
+ blobVersionedHashes?: undefined;
4596
+ chainId: number;
4597
+ type: "eip1559";
4598
+ isSystemTx?: undefined;
4599
+ mint?: undefined;
4600
+ sourceHash?: undefined;
4601
+ } | {
4602
+ blockHash: `0x${string}` | null;
4603
+ blockNumber: bigint | null;
4604
+ from: `0x${string}`;
4605
+ gas: bigint;
4606
+ hash: `0x${string}`;
4607
+ input: `0x${string}`;
4608
+ nonce: number;
4609
+ r: `0x${string}`;
4610
+ s: `0x${string}`;
4611
+ to: `0x${string}` | null;
4612
+ transactionIndex: number | null;
4613
+ typeHex: `0x${string}` | null;
4614
+ v: bigint;
4615
+ value: bigint;
4616
+ yParity: number;
4617
+ gasPrice: undefined;
4618
+ maxFeePerBlobGas?: undefined;
4619
+ maxFeePerGas: bigint;
4620
+ maxPriorityFeePerGas: bigint;
4621
+ accessList: import("viem").AccessList;
4622
+ blobVersionedHashes?: undefined;
4623
+ chainId: number;
4624
+ type: "deposit";
4625
+ isSystemTx?: boolean | undefined;
4626
+ mint?: bigint | undefined;
4627
+ sourceHash: `0x${string}`;
4628
+ } | {
4629
+ blockHash: `0x${string}` | null;
4630
+ blockNumber: bigint | null;
4631
+ from: `0x${string}`;
4632
+ gas: bigint;
4633
+ hash: `0x${string}`;
4634
+ input: `0x${string}`;
4635
+ nonce: number;
4636
+ r: `0x${string}`;
4637
+ s: `0x${string}`;
4638
+ to: `0x${string}` | null;
4639
+ transactionIndex: number | null;
4640
+ typeHex: `0x${string}` | null;
4641
+ v: bigint;
4642
+ value: bigint;
4643
+ yParity: number;
4644
+ gasPrice: bigint;
4645
+ maxFeePerBlobGas?: undefined;
4646
+ maxFeePerGas: undefined;
4647
+ maxPriorityFeePerGas: undefined;
4648
+ accessList: import("viem").AccessList;
4649
+ blobVersionedHashes?: undefined;
4650
+ chainId: number;
4651
+ type: "eip2930";
4652
+ isSystemTx?: undefined;
4653
+ mint?: undefined;
4654
+ sourceHash?: undefined;
4655
+ } | {
4656
+ blockHash: `0x${string}` | null;
4657
+ blockNumber: bigint | null;
4658
+ from: `0x${string}`;
4659
+ gas: bigint;
4660
+ hash: `0x${string}`;
4661
+ input: `0x${string}`;
4662
+ nonce: number;
4663
+ r: `0x${string}`;
4664
+ s: `0x${string}`;
4665
+ to: `0x${string}` | null;
4666
+ transactionIndex: number | null;
4667
+ typeHex: `0x${string}` | null;
4668
+ v: bigint;
4669
+ value: bigint;
4670
+ yParity: number;
4671
+ gasPrice?: undefined;
4672
+ maxFeePerBlobGas?: undefined;
4673
+ maxFeePerGas: bigint;
4674
+ maxPriorityFeePerGas: bigint;
4675
+ accessList: import("viem").AccessList;
4676
+ blobVersionedHashes?: undefined;
4677
+ chainId: number;
4678
+ type: "eip1559";
4679
+ isSystemTx?: undefined;
4680
+ mint?: undefined;
4681
+ sourceHash?: undefined;
4682
+ } | {
4683
+ blockHash: `0x${string}` | null;
4684
+ blockNumber: bigint | null;
4685
+ from: `0x${string}`;
4686
+ gas: bigint;
4687
+ hash: `0x${string}`;
4688
+ input: `0x${string}`;
4689
+ nonce: number;
4690
+ r: `0x${string}`;
4691
+ s: `0x${string}`;
4692
+ to: `0x${string}` | null;
4693
+ transactionIndex: number | null;
4694
+ typeHex: `0x${string}` | null;
4695
+ v: bigint;
4696
+ value: bigint;
4697
+ yParity: number;
4698
+ gasPrice?: undefined;
4699
+ maxFeePerBlobGas?: undefined;
4700
+ maxFeePerGas: bigint;
4701
+ maxPriorityFeePerGas: bigint;
4702
+ accessList: import("viem").AccessList;
4703
+ blobVersionedHashes?: undefined;
4704
+ chainId: number;
4705
+ type: "deposit";
4706
+ isSystemTx?: boolean | undefined;
4707
+ mint?: bigint | undefined;
4708
+ sourceHash: `0x${string}`;
4709
+ } | {
4710
+ blockHash: `0x${string}` | null;
4711
+ blockNumber: bigint | null;
4712
+ from: `0x${string}`;
4713
+ gas: bigint;
4714
+ hash: `0x${string}`;
4715
+ input: `0x${string}`;
4716
+ nonce: number;
4717
+ r: `0x${string}`;
4718
+ s: `0x${string}`;
4719
+ to: `0x${string}` | null;
4720
+ transactionIndex: number | null;
4721
+ typeHex: `0x${string}` | null;
4722
+ v: bigint;
4723
+ value: bigint;
4724
+ yParity: number;
4725
+ gasPrice?: undefined;
4726
+ maxFeePerBlobGas: bigint;
4727
+ maxFeePerGas: bigint;
4728
+ maxPriorityFeePerGas: bigint;
4729
+ accessList: import("viem").AccessList;
4730
+ blobVersionedHashes: readonly `0x${string}`[];
4731
+ chainId: number;
4732
+ type: "eip4844";
4733
+ isSystemTx?: undefined;
4734
+ mint?: undefined;
4735
+ sourceHash?: undefined;
4736
+ } | {
4737
+ blockHash: `0x${string}` | null;
4738
+ blockNumber: bigint | null;
4739
+ from: `0x${string}`;
4740
+ gas: bigint;
4741
+ hash: `0x${string}`;
4742
+ input: `0x${string}`;
4743
+ nonce: number;
4744
+ r: `0x${string}`;
4745
+ s: `0x${string}`;
4746
+ to: `0x${string}` | null;
4747
+ transactionIndex: number | null;
4748
+ typeHex: `0x${string}` | null;
4749
+ v: bigint;
4750
+ value: bigint;
4751
+ yParity: number;
4752
+ gasPrice?: undefined;
4753
+ maxFeePerBlobGas: undefined;
4754
+ maxFeePerGas: bigint;
4755
+ maxPriorityFeePerGas: bigint;
4756
+ accessList: import("viem").AccessList;
4757
+ blobVersionedHashes: readonly `0x${string}`[];
4758
+ chainId: number;
4759
+ type: "deposit";
4760
+ isSystemTx?: boolean | undefined;
4761
+ mint?: bigint | undefined;
4762
+ sourceHash: `0x${string}`;
4763
+ };
4764
+ type: "transaction";
4765
+ };
4766
+ readonly transactionReceipt: {
4767
+ exclude: [] | undefined;
4768
+ format: (args: import("viem/chains").Assign<import("viem").ExactPartial<import("viem").RpcTransactionReceipt>, import("viem/chains").OpStackRpcTransactionReceiptOverrides>) => {
4769
+ blobGasPrice?: bigint | undefined;
4770
+ blobGasUsed?: bigint | undefined;
4771
+ blockHash: `0x${string}`;
4772
+ blockNumber: bigint;
4773
+ contractAddress: `0x${string}` | null | undefined;
4774
+ cumulativeGasUsed: bigint;
4775
+ effectiveGasPrice: bigint;
4776
+ from: `0x${string}`;
4777
+ gasUsed: bigint;
4778
+ logs: import("viem").Log<bigint, number, false, undefined, undefined, undefined, undefined>[];
4779
+ logsBloom: `0x${string}`;
4780
+ root?: `0x${string}` | undefined;
4781
+ status: "success" | "reverted";
4782
+ to: `0x${string}` | null;
4783
+ transactionHash: `0x${string}`;
4784
+ transactionIndex: number;
4785
+ type: import("viem").TransactionType;
4786
+ l1GasPrice: bigint | null;
4787
+ l1GasUsed: bigint | null;
4788
+ l1Fee: bigint | null;
4789
+ l1FeeScalar: number | null;
4790
+ };
4791
+ type: "transactionReceipt";
4792
+ };
4793
+ };
4794
+ serializers: {
4795
+ readonly transaction: typeof import("viem/chains").serializeTransactionOpStack;
4796
+ };
4797
+ fees?: import("viem").ChainFees<undefined> | undefined;
4798
+ };
4799
+ };
4800
+ export declare const MAINNET_CHAIN_NODE: {
4801
+ 100: "https://api.avax.network/ext/bc/C/rpc"[];
4802
+ 101: "https://cloudflare-eth.com"[];
4803
+ 102: "https://mainnet.base.org"[];
4804
+ };
2480
4805
  export declare const TESTNET_CHAIN_NODE: {
2481
4806
  1: "https://api.avax-test.network/ext/bc/C/rpc"[];
2482
4807
  6: "https://rpc.sepolia.org"[];
@@ -2490,4 +4815,7 @@ export declare const CHAIN_NODE: {
2490
4815
  readonly 7: "https://sepolia.base.org"[];
2491
4816
  readonly 3: "https://data-seed-prebsc-1-s1.bnbchain.org:8545"[];
2492
4817
  readonly 8: "https://sepolia-rollup.arbitrum.io/rpc"[];
4818
+ readonly 100: "https://api.avax.network/ext/bc/C/rpc"[];
4819
+ readonly 101: "https://cloudflare-eth.com"[];
4820
+ readonly 102: "https://mainnet.base.org"[];
2493
4821
  };