@circle-fin/usdckit 0.22.0 → 0.23.1

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 (77) hide show
  1. package/dist/cjs/abis/EIP2612.d.ts +197 -0
  2. package/dist/cjs/abis/EIP2612.js +78 -0
  3. package/dist/cjs/actions/index.d.ts +67 -1
  4. package/dist/cjs/actions/index.js +7 -0
  5. package/dist/cjs/actions/index.test.js +4 -0
  6. package/dist/cjs/actions/permit.d.ts +19 -0
  7. package/dist/cjs/actions/permit.js +50 -0
  8. package/dist/cjs/actions/permit.test.d.ts +1 -0
  9. package/dist/cjs/actions/permit.test.js +652 -0
  10. package/dist/cjs/actions/signEIP2612Permit.d.ts +130 -0
  11. package/dist/cjs/actions/signEIP2612Permit.js +128 -0
  12. package/dist/cjs/actions/signEIP2612Permit.test.d.ts +1 -0
  13. package/dist/cjs/actions/signEIP2612Permit.test.js +434 -0
  14. package/dist/cjs/chains/ARC_TESTNET.d.ts +180 -0
  15. package/dist/cjs/chains/ARC_TESTNET.js +57 -0
  16. package/dist/cjs/chains/index.d.ts +21 -18
  17. package/dist/cjs/chains/index.js +27 -25
  18. package/dist/cjs/chains/index.test.js +1 -0
  19. package/dist/cjs/client.d.ts +1 -1
  20. package/dist/cjs/extractChain.d.ts +1492 -1313
  21. package/dist/cjs/extractChain.test.js +1 -0
  22. package/dist/cjs/index.d.ts +2 -2
  23. package/dist/cjs/index.js +1 -1
  24. package/dist/cjs/metadata.js +1 -1
  25. package/dist/cjs/providers/circle-wallets/actions/createAccount.d.ts +1109 -930
  26. package/dist/cjs/providers/circle-wallets/actions/createAccount.js +3 -0
  27. package/dist/cjs/providers/circle-wallets/actions/estimateContractExecutionFee.d.ts +6 -0
  28. package/dist/cjs/providers/circle-wallets/actions/estimateTransferFee.d.ts +6 -0
  29. package/dist/cjs/providers/circle-wallets/actions/getAccounts.d.ts +1109 -930
  30. package/dist/cjs/providers/circle-wallets/index.d.ts +358 -0
  31. package/dist/cjs/providers/circle-wallets/index.js +2 -0
  32. package/dist/cjs/providers/circle-wallets/transports/index.d.ts +12 -0
  33. package/dist/cjs/utils/createConfig.d.ts +1 -1
  34. package/dist/cjs/utils/createCustomWalletClient.d.ts +1 -1
  35. package/dist/cjs/utils/getChainContractByAddress.d.ts +1 -1
  36. package/dist/cjs/utils/getContract.d.ts +8 -8
  37. package/dist/esm/abis/EIP2612.d.ts +197 -0
  38. package/dist/esm/abis/EIP2612.js +76 -0
  39. package/dist/esm/actions/index.d.ts +67 -1
  40. package/dist/esm/actions/index.js +7 -0
  41. package/dist/esm/actions/index.test.js +4 -0
  42. package/dist/esm/actions/permit.d.ts +19 -0
  43. package/dist/esm/actions/permit.js +44 -0
  44. package/dist/esm/actions/permit.test.d.ts +1 -0
  45. package/dist/esm/actions/permit.test.js +650 -0
  46. package/dist/esm/actions/signEIP2612Permit.d.ts +130 -0
  47. package/dist/esm/actions/signEIP2612Permit.js +122 -0
  48. package/dist/esm/actions/signEIP2612Permit.test.d.ts +1 -0
  49. package/dist/esm/actions/signEIP2612Permit.test.js +432 -0
  50. package/dist/esm/chains/ARC_TESTNET.d.ts +180 -0
  51. package/dist/esm/chains/ARC_TESTNET.js +54 -0
  52. package/dist/esm/chains/index.d.ts +21 -18
  53. package/dist/esm/chains/index.js +20 -18
  54. package/dist/esm/chains/index.test.js +1 -0
  55. package/dist/esm/client.d.ts +1 -1
  56. package/dist/esm/extractChain.d.ts +1492 -1313
  57. package/dist/esm/extractChain.test.js +2 -1
  58. package/dist/esm/index.d.ts +2 -2
  59. package/dist/esm/index.js +1 -1
  60. package/dist/esm/metadata.js +1 -1
  61. package/dist/esm/providers/circle-wallets/actions/createAccount.d.ts +1109 -930
  62. package/dist/esm/providers/circle-wallets/actions/createAccount.js +3 -0
  63. package/dist/esm/providers/circle-wallets/actions/estimateContractExecutionFee.d.ts +6 -0
  64. package/dist/esm/providers/circle-wallets/actions/estimateTransferFee.d.ts +6 -0
  65. package/dist/esm/providers/circle-wallets/actions/getAccounts.d.ts +1109 -930
  66. package/dist/esm/providers/circle-wallets/index.d.ts +358 -0
  67. package/dist/esm/providers/circle-wallets/index.js +3 -1
  68. package/dist/esm/providers/circle-wallets/transports/index.d.ts +12 -0
  69. package/dist/esm/utils/createConfig.d.ts +1 -1
  70. package/dist/esm/utils/createCustomWalletClient.d.ts +1 -1
  71. package/dist/esm/utils/getChainContractByAddress.d.ts +1 -1
  72. package/dist/esm/utils/getContract.d.ts +8 -8
  73. package/package.json +5 -4
  74. package/dist/cjs/chains.d.ts +0 -2
  75. package/dist/cjs/chains.js +0 -12
  76. package/dist/esm/chains.d.ts +0 -2
  77. package/dist/esm/chains.js +0 -11
@@ -430,15 +430,15 @@ export declare function createAccount(client: ExtendedViemClient, params?: Creat
430
430
  } | {
431
431
  blockExplorers: {
432
432
  readonly default: {
433
- readonly name: "SnowTrace";
434
- readonly url: "https://snowtrace.io";
435
- readonly apiUrl: "https://api.snowtrace.io";
433
+ readonly name: "ArcScan";
434
+ readonly url: "https://testnet.arcscan.app";
435
+ readonly apiUrl: "https://testnet.arcscan.app/api";
436
436
  };
437
437
  };
438
- blockTime: 1700;
438
+ blockTime?: number | undefined | undefined;
439
439
  contracts: {
440
440
  readonly USDC: {
441
- readonly address: "0xB97EF9Ef8734C71904D8002F8b6Bc66Dd9c48a6E";
441
+ readonly address: "0x3600000000000000000000000000000000000000";
442
442
  readonly abi: readonly [{
443
443
  readonly type: "event";
444
444
  readonly name: "Approval";
@@ -578,8 +578,46 @@ export declare function createAccount(client: ExtendedViemClient, params?: Creat
578
578
  readonly decimals: () => 6;
579
579
  };
580
580
  };
581
- readonly EURC: {
582
- readonly address: "0xc891eb4cbdeff6e073e859e987815ed1505c2acd";
581
+ readonly multicall3: {
582
+ readonly address: "0xcA11bde05977b3631167028862bE2a173976CA11";
583
+ readonly blockCreated: 0;
584
+ };
585
+ };
586
+ ensTlds?: readonly string[] | undefined;
587
+ id: 5042002;
588
+ name: "Arc Testnet";
589
+ nativeCurrency: {
590
+ readonly name: "USDC";
591
+ readonly symbol: "USDC";
592
+ readonly decimals: 18;
593
+ };
594
+ experimental_preconfirmationTime?: number | undefined | undefined;
595
+ rpcUrls: {
596
+ readonly default: {
597
+ readonly http: readonly ["https://rpc.testnet.arc.network", "https://rpc.quicknode.testnet.arc.network", "https://rpc.blockdaemon.testnet.arc.network"];
598
+ readonly webSocket: readonly ["wss://rpc.testnet.arc.network", "wss://rpc.quicknode.testnet.arc.network"];
599
+ };
600
+ };
601
+ sourceId?: number | undefined | undefined;
602
+ testnet: true;
603
+ custom?: Record<string, unknown> | undefined;
604
+ fees?: import("viem").ChainFees<undefined> | undefined;
605
+ serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable> | undefined;
606
+ readonly blockchainId: "ARC-TESTNET";
607
+ readonly blockchainVm: "EVM";
608
+ readonly formatters?: undefined;
609
+ } | {
610
+ blockExplorers: {
611
+ readonly default: {
612
+ readonly name: "SnowTrace";
613
+ readonly url: "https://snowtrace.io";
614
+ readonly apiUrl: "https://api.snowtrace.io";
615
+ };
616
+ };
617
+ blockTime: 1700;
618
+ contracts: {
619
+ readonly USDC: {
620
+ readonly address: "0xB97EF9Ef8734C71904D8002F8b6Bc66Dd9c48a6E";
583
621
  readonly abi: readonly [{
584
622
  readonly type: "event";
585
623
  readonly name: "Approval";
@@ -719,8 +757,8 @@ export declare function createAccount(client: ExtendedViemClient, params?: Creat
719
757
  readonly decimals: () => 6;
720
758
  };
721
759
  };
722
- readonly USDT: {
723
- readonly address: "0x9702230a8ea53601f5cd2dc00fdbc13d4df4a8c7";
760
+ readonly EURC: {
761
+ readonly address: "0xc891eb4cbdeff6e073e859e987815ed1505c2acd";
724
762
  readonly abi: readonly [{
725
763
  readonly type: "event";
726
764
  readonly name: "Approval";
@@ -860,45 +898,8 @@ export declare function createAccount(client: ExtendedViemClient, params?: Creat
860
898
  readonly decimals: () => 6;
861
899
  };
862
900
  };
863
- readonly multicall3: {
864
- readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
865
- readonly blockCreated: 11907934;
866
- };
867
- };
868
- ensTlds?: readonly string[] | undefined;
869
- id: 43114;
870
- name: "Avalanche";
871
- nativeCurrency: {
872
- readonly decimals: 18;
873
- readonly name: "Avalanche";
874
- readonly symbol: "AVAX";
875
- };
876
- experimental_preconfirmationTime?: number | undefined | undefined;
877
- rpcUrls: {
878
- readonly default: {
879
- readonly http: readonly ["https://api.avax.network/ext/bc/C/rpc"];
880
- };
881
- };
882
- sourceId?: number | undefined | undefined;
883
- testnet?: boolean | undefined | undefined;
884
- custom?: Record<string, unknown> | undefined;
885
- fees?: import("viem").ChainFees<undefined> | undefined;
886
- serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable<bigint, number>> | undefined;
887
- readonly blockchainId: "AVAX";
888
- readonly blockchainVm: "EVM";
889
- readonly formatters?: undefined | undefined;
890
- } | {
891
- blockExplorers: {
892
- readonly default: {
893
- readonly name: "SnowTrace";
894
- readonly url: "https://testnet.snowtrace.io";
895
- readonly apiUrl: "https://api-testnet.snowtrace.io";
896
- };
897
- };
898
- blockTime?: number | undefined | undefined;
899
- contracts: {
900
- readonly USDC: {
901
- readonly address: "0x5425890298aed601595a70ab815c96711a31bc65";
901
+ readonly USDT: {
902
+ readonly address: "0x9702230a8ea53601f5cd2dc00fdbc13d4df4a8c7";
902
903
  readonly abi: readonly [{
903
904
  readonly type: "event";
904
905
  readonly name: "Approval";
@@ -1038,8 +1039,45 @@ export declare function createAccount(client: ExtendedViemClient, params?: Creat
1038
1039
  readonly decimals: () => 6;
1039
1040
  };
1040
1041
  };
1041
- readonly EURC: {
1042
- readonly address: "0x5e44db7996c682e92a960b65ac713a54ad815c6b";
1042
+ readonly multicall3: {
1043
+ readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
1044
+ readonly blockCreated: 11907934;
1045
+ };
1046
+ };
1047
+ ensTlds?: readonly string[] | undefined;
1048
+ id: 43114;
1049
+ name: "Avalanche";
1050
+ nativeCurrency: {
1051
+ readonly decimals: 18;
1052
+ readonly name: "Avalanche";
1053
+ readonly symbol: "AVAX";
1054
+ };
1055
+ experimental_preconfirmationTime?: number | undefined | undefined;
1056
+ rpcUrls: {
1057
+ readonly default: {
1058
+ readonly http: readonly ["https://api.avax.network/ext/bc/C/rpc"];
1059
+ };
1060
+ };
1061
+ sourceId?: number | undefined | undefined;
1062
+ testnet?: boolean | undefined | undefined;
1063
+ custom?: Record<string, unknown> | undefined;
1064
+ fees?: import("viem").ChainFees<undefined> | undefined;
1065
+ serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable<bigint, number>> | undefined;
1066
+ readonly blockchainId: "AVAX";
1067
+ readonly blockchainVm: "EVM";
1068
+ readonly formatters?: undefined | undefined;
1069
+ } | {
1070
+ blockExplorers: {
1071
+ readonly default: {
1072
+ readonly name: "SnowTrace";
1073
+ readonly url: "https://testnet.snowtrace.io";
1074
+ readonly apiUrl: "https://api-testnet.snowtrace.io";
1075
+ };
1076
+ };
1077
+ blockTime?: number | undefined | undefined;
1078
+ contracts: {
1079
+ readonly USDC: {
1080
+ readonly address: "0x5425890298aed601595a70ab815c96711a31bc65";
1043
1081
  readonly abi: readonly [{
1044
1082
  readonly type: "event";
1045
1083
  readonly name: "Approval";
@@ -1179,45 +1217,8 @@ export declare function createAccount(client: ExtendedViemClient, params?: Creat
1179
1217
  readonly decimals: () => 6;
1180
1218
  };
1181
1219
  };
1182
- readonly multicall3: {
1183
- readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
1184
- readonly blockCreated: 7096959;
1185
- };
1186
- };
1187
- ensTlds?: readonly string[] | undefined;
1188
- id: 43113;
1189
- name: "Avalanche Fuji";
1190
- nativeCurrency: {
1191
- readonly decimals: 18;
1192
- readonly name: "Avalanche Fuji";
1193
- readonly symbol: "AVAX";
1194
- };
1195
- experimental_preconfirmationTime?: number | undefined | undefined;
1196
- rpcUrls: {
1197
- readonly default: {
1198
- readonly http: readonly ["https://api.avax-test.network/ext/bc/C/rpc"];
1199
- };
1200
- };
1201
- sourceId?: number | undefined | undefined;
1202
- testnet: true;
1203
- custom?: Record<string, unknown> | undefined;
1204
- fees?: import("viem").ChainFees<undefined> | undefined;
1205
- serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable<bigint, number>> | undefined;
1206
- readonly blockchainId: "AVAX-FUJI";
1207
- readonly blockchainVm: "EVM";
1208
- readonly formatters?: undefined | undefined;
1209
- } | {
1210
- blockExplorers: {
1211
- readonly default: {
1212
- readonly name: "Etherscan";
1213
- readonly url: "https://etherscan.io";
1214
- readonly apiUrl: "https://api.etherscan.io/api";
1215
- };
1216
- };
1217
- blockTime: 12000;
1218
- contracts: {
1219
- readonly USDC: {
1220
- readonly address: "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48";
1220
+ readonly EURC: {
1221
+ readonly address: "0x5e44db7996c682e92a960b65ac713a54ad815c6b";
1221
1222
  readonly abi: readonly [{
1222
1223
  readonly type: "event";
1223
1224
  readonly name: "Approval";
@@ -1357,8 +1358,45 @@ export declare function createAccount(client: ExtendedViemClient, params?: Creat
1357
1358
  readonly decimals: () => 6;
1358
1359
  };
1359
1360
  };
1360
- readonly EURC: {
1361
- readonly address: "0x1aBaEA1f7C830bD89Acc67eC4af516284b1bC33c";
1361
+ readonly multicall3: {
1362
+ readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
1363
+ readonly blockCreated: 7096959;
1364
+ };
1365
+ };
1366
+ ensTlds?: readonly string[] | undefined;
1367
+ id: 43113;
1368
+ name: "Avalanche Fuji";
1369
+ nativeCurrency: {
1370
+ readonly decimals: 18;
1371
+ readonly name: "Avalanche Fuji";
1372
+ readonly symbol: "AVAX";
1373
+ };
1374
+ experimental_preconfirmationTime?: number | undefined | undefined;
1375
+ rpcUrls: {
1376
+ readonly default: {
1377
+ readonly http: readonly ["https://api.avax-test.network/ext/bc/C/rpc"];
1378
+ };
1379
+ };
1380
+ sourceId?: number | undefined | undefined;
1381
+ testnet: true;
1382
+ custom?: Record<string, unknown> | undefined;
1383
+ fees?: import("viem").ChainFees<undefined> | undefined;
1384
+ serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable<bigint, number>> | undefined;
1385
+ readonly blockchainId: "AVAX-FUJI";
1386
+ readonly blockchainVm: "EVM";
1387
+ readonly formatters?: undefined | undefined;
1388
+ } | {
1389
+ blockExplorers: {
1390
+ readonly default: {
1391
+ readonly name: "Basescan";
1392
+ readonly url: "https://basescan.org";
1393
+ readonly apiUrl: "https://api.basescan.org/api";
1394
+ };
1395
+ };
1396
+ blockTime: 2000;
1397
+ contracts: {
1398
+ readonly USDC: {
1399
+ readonly address: "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913";
1362
1400
  readonly abi: readonly [{
1363
1401
  readonly type: "event";
1364
1402
  readonly name: "Approval";
@@ -1498,8 +1536,8 @@ export declare function createAccount(client: ExtendedViemClient, params?: Creat
1498
1536
  readonly decimals: () => 6;
1499
1537
  };
1500
1538
  };
1501
- readonly USDT: {
1502
- readonly address: "0xdac17f958d2ee523a2206206994597c13d831ec7";
1539
+ readonly EURC: {
1540
+ readonly address: "0x60a3e35cc302bfa44cb288bc5a4f316fdb1adb42";
1503
1541
  readonly abi: readonly [{
1504
1542
  readonly type: "event";
1505
1543
  readonly name: "Approval";
@@ -1639,18 +1677,54 @@ export declare function createAccount(client: ExtendedViemClient, params?: Creat
1639
1677
  readonly decimals: () => 6;
1640
1678
  };
1641
1679
  };
1642
- readonly ensUniversalResolver: {
1643
- readonly address: "0xeeeeeeee14d718c2b47d9923deab1335e144eeee";
1644
- readonly blockCreated: 23085558;
1680
+ readonly disputeGameFactory: {
1681
+ readonly 1: {
1682
+ readonly address: "0x43edB88C4B80fDD2AdFF2412A7BebF9dF42cB40e";
1683
+ };
1684
+ };
1685
+ readonly l2OutputOracle: {
1686
+ readonly 1: {
1687
+ readonly address: "0x56315b90c40730925ec5485cf004d835058518A0";
1688
+ };
1645
1689
  };
1646
1690
  readonly multicall3: {
1647
1691
  readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
1648
- readonly blockCreated: 14353601;
1692
+ readonly blockCreated: 5022;
1693
+ };
1694
+ readonly portal: {
1695
+ readonly 1: {
1696
+ readonly address: "0x49048044D57e1C92A77f79988d21Fa8fAF74E97e";
1697
+ readonly blockCreated: 17482143;
1698
+ };
1699
+ };
1700
+ readonly l1StandardBridge: {
1701
+ readonly 1: {
1702
+ readonly address: "0x3154Cf16ccdb4C6d922629664174b904d80F2C35";
1703
+ readonly blockCreated: 17482143;
1704
+ };
1705
+ };
1706
+ readonly gasPriceOracle: {
1707
+ readonly address: "0x420000000000000000000000000000000000000F";
1708
+ };
1709
+ readonly l1Block: {
1710
+ readonly address: "0x4200000000000000000000000000000000000015";
1711
+ };
1712
+ readonly l2CrossDomainMessenger: {
1713
+ readonly address: "0x4200000000000000000000000000000000000007";
1714
+ };
1715
+ readonly l2Erc721Bridge: {
1716
+ readonly address: "0x4200000000000000000000000000000000000014";
1717
+ };
1718
+ readonly l2StandardBridge: {
1719
+ readonly address: "0x4200000000000000000000000000000000000010";
1720
+ };
1721
+ readonly l2ToL1MessagePasser: {
1722
+ readonly address: "0x4200000000000000000000000000000000000016";
1649
1723
  };
1650
1724
  };
1651
1725
  ensTlds?: readonly string[] | undefined;
1652
- id: 1;
1653
- name: "Ethereum";
1726
+ id: 8453;
1727
+ name: "Base";
1654
1728
  nativeCurrency: {
1655
1729
  readonly name: "Ether";
1656
1730
  readonly symbol: "ETH";
@@ -1659,29 +1733,261 @@ export declare function createAccount(client: ExtendedViemClient, params?: Creat
1659
1733
  experimental_preconfirmationTime?: number | undefined | undefined;
1660
1734
  rpcUrls: {
1661
1735
  readonly default: {
1662
- readonly http: readonly ["https://eth.merkle.io"];
1736
+ readonly http: readonly ["https://mainnet.base.org"];
1663
1737
  };
1664
1738
  };
1665
- sourceId?: number | undefined | undefined;
1739
+ sourceId: 1;
1666
1740
  testnet?: boolean | undefined | undefined;
1667
1741
  custom?: Record<string, unknown> | undefined;
1668
1742
  fees?: import("viem").ChainFees<undefined> | undefined;
1669
- serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable<bigint, number>> | undefined;
1670
- readonly blockchainId: "ETH";
1743
+ formatters: {
1744
+ readonly block: {
1745
+ exclude: [] | undefined;
1746
+ format: (args: import("viem/chains").OpStackRpcBlock) => {
1747
+ baseFeePerGas: bigint | null;
1748
+ blobGasUsed: bigint;
1749
+ difficulty: bigint;
1750
+ excessBlobGas: bigint;
1751
+ extraData: import("viem").Hex;
1752
+ gasLimit: bigint;
1753
+ gasUsed: bigint;
1754
+ hash: `0x${string}` | null;
1755
+ logsBloom: `0x${string}` | null;
1756
+ miner: import("abitype").Address;
1757
+ mixHash: import("viem").Hash;
1758
+ nonce: `0x${string}` | null;
1759
+ number: bigint | null;
1760
+ parentBeaconBlockRoot?: `0x${string}` | undefined;
1761
+ parentHash: import("viem").Hash;
1762
+ receiptsRoot: import("viem").Hex;
1763
+ sealFields: import("viem").Hex[];
1764
+ sha3Uncles: import("viem").Hash;
1765
+ size: bigint;
1766
+ stateRoot: import("viem").Hash;
1767
+ timestamp: bigint;
1768
+ totalDifficulty: bigint | null;
1769
+ transactions: `0x${string}`[] | import("viem/chains").OpStackTransaction<boolean>[];
1770
+ transactionsRoot: import("viem").Hash;
1771
+ uncles: import("viem").Hash[];
1772
+ withdrawals?: import("viem").Withdrawal[] | undefined | undefined;
1773
+ withdrawalsRoot?: `0x${string}` | undefined;
1774
+ } & {};
1775
+ type: "block";
1776
+ };
1777
+ readonly transaction: {
1778
+ exclude: [] | undefined;
1779
+ format: (args: import("viem/chains").OpStackRpcTransaction) => ({
1780
+ blockHash: `0x${string}` | null;
1781
+ blockNumber: bigint | null;
1782
+ from: import("abitype").Address;
1783
+ gas: bigint;
1784
+ hash: import("viem").Hash;
1785
+ input: import("viem").Hex;
1786
+ nonce: number;
1787
+ r: import("viem").Hex;
1788
+ s: import("viem").Hex;
1789
+ to: import("abitype").Address | null;
1790
+ transactionIndex: number | null;
1791
+ typeHex: import("viem").Hex | null;
1792
+ v: bigint;
1793
+ value: bigint;
1794
+ yParity: number;
1795
+ gasPrice?: undefined | undefined;
1796
+ maxFeePerBlobGas?: undefined | undefined;
1797
+ maxFeePerGas: bigint;
1798
+ maxPriorityFeePerGas: bigint;
1799
+ isSystemTx?: boolean;
1800
+ mint?: bigint | undefined | undefined;
1801
+ sourceHash: import("viem").Hex;
1802
+ type: "deposit";
1803
+ } | {
1804
+ r: import("viem").Hex;
1805
+ s: import("viem").Hex;
1806
+ v: bigint;
1807
+ to: import("abitype").Address | null;
1808
+ from: import("abitype").Address;
1809
+ gas: bigint;
1810
+ nonce: number;
1811
+ value: bigint;
1812
+ blockHash: `0x${string}` | null;
1813
+ blockNumber: bigint | null;
1814
+ hash: import("viem").Hash;
1815
+ input: import("viem").Hex;
1816
+ transactionIndex: number | null;
1817
+ typeHex: import("viem").Hex | null;
1818
+ accessList?: undefined | undefined;
1819
+ authorizationList?: undefined | undefined;
1820
+ blobVersionedHashes?: undefined | undefined;
1821
+ chainId?: number | undefined;
1822
+ yParity?: undefined | undefined;
1823
+ type: "legacy";
1824
+ gasPrice: bigint;
1825
+ maxFeePerBlobGas?: undefined | undefined;
1826
+ maxFeePerGas?: undefined | undefined;
1827
+ maxPriorityFeePerGas?: undefined | undefined;
1828
+ isSystemTx?: undefined | undefined;
1829
+ mint?: undefined | undefined;
1830
+ sourceHash?: undefined | undefined;
1831
+ } | {
1832
+ blockHash: `0x${string}` | null;
1833
+ blockNumber: bigint | null;
1834
+ from: import("abitype").Address;
1835
+ gas: bigint;
1836
+ hash: import("viem").Hash;
1837
+ input: import("viem").Hex;
1838
+ nonce: number;
1839
+ r: import("viem").Hex;
1840
+ s: import("viem").Hex;
1841
+ to: import("abitype").Address | null;
1842
+ transactionIndex: number | null;
1843
+ typeHex: import("viem").Hex | null;
1844
+ v: bigint;
1845
+ value: bigint;
1846
+ yParity: number;
1847
+ accessList: import("viem").AccessList;
1848
+ authorizationList?: undefined | undefined;
1849
+ blobVersionedHashes?: undefined | undefined;
1850
+ chainId: number;
1851
+ type: "eip2930";
1852
+ gasPrice: bigint;
1853
+ maxFeePerBlobGas?: undefined | undefined;
1854
+ maxFeePerGas?: undefined | undefined;
1855
+ maxPriorityFeePerGas?: undefined | undefined;
1856
+ isSystemTx?: undefined | undefined;
1857
+ mint?: undefined | undefined;
1858
+ sourceHash?: undefined | undefined;
1859
+ } | {
1860
+ blockHash: `0x${string}` | null;
1861
+ blockNumber: bigint | null;
1862
+ from: import("abitype").Address;
1863
+ gas: bigint;
1864
+ hash: import("viem").Hash;
1865
+ input: import("viem").Hex;
1866
+ nonce: number;
1867
+ r: import("viem").Hex;
1868
+ s: import("viem").Hex;
1869
+ to: import("abitype").Address | null;
1870
+ transactionIndex: number | null;
1871
+ typeHex: import("viem").Hex | null;
1872
+ v: bigint;
1873
+ value: bigint;
1874
+ yParity: number;
1875
+ accessList: import("viem").AccessList;
1876
+ authorizationList?: undefined | undefined;
1877
+ blobVersionedHashes?: undefined | undefined;
1878
+ chainId: number;
1879
+ type: "eip1559";
1880
+ gasPrice?: undefined | undefined;
1881
+ maxFeePerBlobGas?: undefined | undefined;
1882
+ maxFeePerGas: bigint;
1883
+ maxPriorityFeePerGas: bigint;
1884
+ isSystemTx?: undefined | undefined;
1885
+ mint?: undefined | undefined;
1886
+ sourceHash?: undefined | undefined;
1887
+ } | {
1888
+ blockHash: `0x${string}` | null;
1889
+ blockNumber: bigint | null;
1890
+ from: import("abitype").Address;
1891
+ gas: bigint;
1892
+ hash: import("viem").Hash;
1893
+ input: import("viem").Hex;
1894
+ nonce: number;
1895
+ r: import("viem").Hex;
1896
+ s: import("viem").Hex;
1897
+ to: import("abitype").Address | null;
1898
+ transactionIndex: number | null;
1899
+ typeHex: import("viem").Hex | null;
1900
+ v: bigint;
1901
+ value: bigint;
1902
+ yParity: number;
1903
+ accessList: import("viem").AccessList;
1904
+ authorizationList?: undefined | undefined;
1905
+ blobVersionedHashes: readonly import("viem").Hex[];
1906
+ chainId: number;
1907
+ type: "eip4844";
1908
+ gasPrice?: undefined | undefined;
1909
+ maxFeePerBlobGas: bigint;
1910
+ maxFeePerGas: bigint;
1911
+ maxPriorityFeePerGas: bigint;
1912
+ isSystemTx?: undefined | undefined;
1913
+ mint?: undefined | undefined;
1914
+ sourceHash?: undefined | undefined;
1915
+ } | {
1916
+ blockHash: `0x${string}` | null;
1917
+ blockNumber: bigint | null;
1918
+ from: import("abitype").Address;
1919
+ gas: bigint;
1920
+ hash: import("viem").Hash;
1921
+ input: import("viem").Hex;
1922
+ nonce: number;
1923
+ r: import("viem").Hex;
1924
+ s: import("viem").Hex;
1925
+ to: import("abitype").Address | null;
1926
+ transactionIndex: number | null;
1927
+ typeHex: import("viem").Hex | null;
1928
+ v: bigint;
1929
+ value: bigint;
1930
+ yParity: number;
1931
+ accessList: import("viem").AccessList;
1932
+ authorizationList: import("viem").SignedAuthorizationList;
1933
+ blobVersionedHashes?: undefined | undefined;
1934
+ chainId: number;
1935
+ type: "eip7702";
1936
+ gasPrice?: undefined | undefined;
1937
+ maxFeePerBlobGas?: undefined | undefined;
1938
+ maxFeePerGas: bigint;
1939
+ maxPriorityFeePerGas: bigint;
1940
+ isSystemTx?: undefined | undefined;
1941
+ mint?: undefined | undefined;
1942
+ sourceHash?: undefined | undefined;
1943
+ }) & {};
1944
+ type: "transaction";
1945
+ };
1946
+ readonly transactionReceipt: {
1947
+ exclude: [] | undefined;
1948
+ format: (args: import("viem/chains").OpStackRpcTransactionReceipt) => {
1949
+ blobGasPrice?: bigint | undefined;
1950
+ blobGasUsed?: bigint | undefined;
1951
+ blockHash: import("viem").Hash;
1952
+ blockNumber: bigint;
1953
+ contractAddress: import("abitype").Address | null | undefined;
1954
+ cumulativeGasUsed: bigint;
1955
+ effectiveGasPrice: bigint;
1956
+ from: import("abitype").Address;
1957
+ gasUsed: bigint;
1958
+ logs: import("viem").Log<bigint, number, false>[];
1959
+ logsBloom: import("viem").Hex;
1960
+ root?: `0x${string}` | undefined;
1961
+ status: "success" | "reverted";
1962
+ to: import("abitype").Address | null;
1963
+ transactionHash: import("viem").Hash;
1964
+ transactionIndex: number;
1965
+ type: import("viem").TransactionType;
1966
+ l1GasPrice: bigint | null;
1967
+ l1GasUsed: bigint | null;
1968
+ l1Fee: bigint | null;
1969
+ l1FeeScalar: number | null;
1970
+ } & {};
1971
+ type: "transactionReceipt";
1972
+ };
1973
+ };
1974
+ serializers: {
1975
+ readonly transaction: typeof import("viem/chains").serializeTransactionOpStack;
1976
+ };
1977
+ readonly blockchainId: "BASE";
1671
1978
  readonly blockchainVm: "EVM";
1672
- readonly formatters?: undefined | undefined;
1673
1979
  } | {
1674
1980
  blockExplorers: {
1675
1981
  readonly default: {
1676
- readonly name: "Etherscan";
1677
- readonly url: "https://sepolia.etherscan.io";
1678
- readonly apiUrl: "https://api-sepolia.etherscan.io/api";
1982
+ readonly name: "Basescan";
1983
+ readonly url: "https://sepolia.basescan.org";
1984
+ readonly apiUrl: "https://api-sepolia.basescan.org/api";
1679
1985
  };
1680
1986
  };
1681
- blockTime?: number | undefined | undefined;
1987
+ blockTime: 2000;
1682
1988
  contracts: {
1683
1989
  readonly USDC: {
1684
- readonly address: "0x1c7D4B196Cb0C7B01d743Fbc6116a902379C7238";
1990
+ readonly address: "0x036CbD53842c5426634e7929541eC2318f3dCF7e";
1685
1991
  readonly abi: readonly [{
1686
1992
  readonly type: "event";
1687
1993
  readonly name: "Approval";
@@ -1822,7 +2128,7 @@ export declare function createAccount(client: ExtendedViemClient, params?: Creat
1822
2128
  };
1823
2129
  };
1824
2130
  readonly EURC: {
1825
- readonly address: "0x08210F9170F89Ab7658F0B5E3fF39b0E03C594D4";
2131
+ readonly address: "0x808456652fdb597867f38412077A9182bf77359F";
1826
2132
  readonly abi: readonly [{
1827
2133
  readonly type: "event";
1828
2134
  readonly name: "Approval";
@@ -1962,239 +2268,330 @@ export declare function createAccount(client: ExtendedViemClient, params?: Creat
1962
2268
  readonly decimals: () => 6;
1963
2269
  };
1964
2270
  };
1965
- readonly multicall3: {
1966
- readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
1967
- readonly blockCreated: 751532;
1968
- };
1969
- readonly ensUniversalResolver: {
1970
- readonly address: "0xeeeeeeee14d718c2b47d9923deab1335e144eeee";
1971
- readonly blockCreated: 8928790;
2271
+ readonly disputeGameFactory: {
2272
+ readonly 11155111: {
2273
+ readonly address: "0xd6E6dBf4F7EA0ac412fD8b65ED297e64BB7a06E1";
2274
+ };
1972
2275
  };
1973
- };
1974
- ensTlds?: readonly string[] | undefined;
1975
- id: 11155111;
1976
- name: "Sepolia";
1977
- nativeCurrency: {
1978
- readonly name: "Sepolia Ether";
1979
- readonly symbol: "ETH";
1980
- readonly decimals: 18;
1981
- };
1982
- experimental_preconfirmationTime?: number | undefined | undefined;
1983
- rpcUrls: {
1984
- readonly default: {
1985
- readonly http: readonly ["https://sepolia.drpc.org"];
2276
+ readonly l2OutputOracle: {
2277
+ readonly 11155111: {
2278
+ readonly address: "0x84457ca9D0163FbC4bbfe4Dfbb20ba46e48DF254";
2279
+ };
1986
2280
  };
1987
- };
1988
- sourceId?: number | undefined | undefined;
1989
- testnet: true;
1990
- custom?: Record<string, unknown> | undefined;
1991
- fees?: import("viem").ChainFees<undefined> | undefined;
1992
- serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable<bigint, number>> | undefined;
1993
- readonly blockchainId: "ETH-SEPOLIA";
1994
- readonly blockchainVm: "EVM";
1995
- readonly formatters?: undefined | undefined;
1996
- } | {
1997
- blockExplorers: {
1998
- readonly default: {
1999
- readonly name: "PolygonScan";
2000
- readonly url: "https://polygonscan.com";
2001
- readonly apiUrl: "https://api.polygonscan.com/api";
2281
+ readonly portal: {
2282
+ readonly 11155111: {
2283
+ readonly address: "0x49f53e41452c74589e85ca1677426ba426459e85";
2284
+ readonly blockCreated: 4446677;
2285
+ };
2002
2286
  };
2003
- };
2004
- blockTime?: number | undefined | undefined;
2005
- contracts: {
2006
- readonly USDC: {
2007
- readonly address: "0x3c499c542cef5e3811e1192ce70d8cc03d5c3359";
2008
- readonly abi: readonly [{
2009
- readonly type: "event";
2010
- readonly name: "Approval";
2011
- readonly inputs: readonly [{
2012
- readonly indexed: true;
2013
- readonly name: "owner";
2014
- readonly type: "address";
2015
- }, {
2016
- readonly indexed: true;
2017
- readonly name: "spender";
2018
- readonly type: "address";
2019
- }, {
2020
- readonly indexed: false;
2021
- readonly name: "value";
2022
- readonly type: "uint256";
2023
- }];
2024
- }, {
2025
- readonly type: "event";
2026
- readonly name: "Transfer";
2027
- readonly inputs: readonly [{
2028
- readonly indexed: true;
2029
- readonly name: "from";
2030
- readonly type: "address";
2031
- }, {
2032
- readonly indexed: true;
2033
- readonly name: "to";
2034
- readonly type: "address";
2035
- }, {
2036
- readonly indexed: false;
2037
- readonly name: "value";
2038
- readonly type: "uint256";
2039
- }];
2040
- }, {
2041
- readonly type: "function";
2042
- readonly name: "allowance";
2043
- readonly stateMutability: "view";
2044
- readonly inputs: readonly [{
2045
- readonly name: "owner";
2046
- readonly type: "address";
2047
- }, {
2048
- readonly name: "spender";
2049
- readonly type: "address";
2050
- }];
2051
- readonly outputs: readonly [{
2052
- readonly type: "uint256";
2053
- }];
2054
- }, {
2055
- readonly type: "function";
2056
- readonly name: "approve";
2057
- readonly stateMutability: "nonpayable";
2058
- readonly inputs: readonly [{
2059
- readonly name: "spender";
2060
- readonly type: "address";
2061
- }, {
2062
- readonly name: "amount";
2063
- readonly type: "uint256";
2064
- }];
2065
- readonly outputs: readonly [{
2066
- readonly type: "bool";
2067
- }];
2068
- }, {
2069
- readonly type: "function";
2070
- readonly name: "balanceOf";
2071
- readonly stateMutability: "view";
2072
- readonly inputs: readonly [{
2073
- readonly name: "account";
2074
- readonly type: "address";
2075
- }];
2076
- readonly outputs: readonly [{
2077
- readonly type: "uint256";
2078
- }];
2079
- }, {
2080
- readonly type: "function";
2081
- readonly name: "decimals";
2082
- readonly stateMutability: "view";
2083
- readonly inputs: readonly [];
2084
- readonly outputs: readonly [{
2085
- readonly type: "uint8";
2086
- }];
2087
- }, {
2088
- readonly type: "function";
2089
- readonly name: "name";
2090
- readonly stateMutability: "view";
2091
- readonly inputs: readonly [];
2092
- readonly outputs: readonly [{
2093
- readonly type: "string";
2094
- }];
2095
- }, {
2096
- readonly type: "function";
2097
- readonly name: "symbol";
2098
- readonly stateMutability: "view";
2099
- readonly inputs: readonly [];
2100
- readonly outputs: readonly [{
2101
- readonly type: "string";
2102
- }];
2103
- }, {
2104
- readonly type: "function";
2105
- readonly name: "totalSupply";
2106
- readonly stateMutability: "view";
2107
- readonly inputs: readonly [];
2108
- readonly outputs: readonly [{
2109
- readonly type: "uint256";
2110
- }];
2111
- }, {
2112
- readonly type: "function";
2113
- readonly name: "transfer";
2114
- readonly stateMutability: "nonpayable";
2115
- readonly inputs: readonly [{
2116
- readonly name: "recipient";
2117
- readonly type: "address";
2118
- }, {
2119
- readonly name: "amount";
2120
- readonly type: "uint256";
2121
- }];
2122
- readonly outputs: readonly [{
2123
- readonly type: "bool";
2124
- }];
2125
- }, {
2126
- readonly type: "function";
2127
- readonly name: "transferFrom";
2128
- readonly stateMutability: "nonpayable";
2129
- readonly inputs: readonly [{
2130
- readonly name: "sender";
2131
- readonly type: "address";
2132
- }, {
2133
- readonly name: "recipient";
2134
- readonly type: "address";
2135
- }, {
2136
- readonly name: "amount";
2137
- readonly type: "uint256";
2138
- }];
2139
- readonly outputs: readonly [{
2140
- readonly type: "bool";
2141
- }];
2142
- }];
2143
- readonly read: {
2144
- readonly decimals: () => 6;
2287
+ readonly l1StandardBridge: {
2288
+ readonly 11155111: {
2289
+ readonly address: "0xfd0Bf71F60660E2f608ed56e1659C450eB113120";
2290
+ readonly blockCreated: 4446677;
2145
2291
  };
2146
2292
  };
2147
2293
  readonly multicall3: {
2148
2294
  readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
2149
- readonly blockCreated: 25770160;
2295
+ readonly blockCreated: 1059647;
2296
+ };
2297
+ readonly gasPriceOracle: {
2298
+ readonly address: "0x420000000000000000000000000000000000000F";
2299
+ };
2300
+ readonly l1Block: {
2301
+ readonly address: "0x4200000000000000000000000000000000000015";
2302
+ };
2303
+ readonly l2CrossDomainMessenger: {
2304
+ readonly address: "0x4200000000000000000000000000000000000007";
2305
+ };
2306
+ readonly l2Erc721Bridge: {
2307
+ readonly address: "0x4200000000000000000000000000000000000014";
2308
+ };
2309
+ readonly l2StandardBridge: {
2310
+ readonly address: "0x4200000000000000000000000000000000000010";
2311
+ };
2312
+ readonly l2ToL1MessagePasser: {
2313
+ readonly address: "0x4200000000000000000000000000000000000016";
2150
2314
  };
2151
2315
  };
2152
2316
  ensTlds?: readonly string[] | undefined;
2153
- id: 137;
2154
- name: "Polygon";
2317
+ id: 84532;
2318
+ name: "Base Sepolia";
2155
2319
  nativeCurrency: {
2156
- readonly name: "POL";
2157
- readonly symbol: "POL";
2320
+ readonly name: "Sepolia Ether";
2321
+ readonly symbol: "ETH";
2158
2322
  readonly decimals: 18;
2159
2323
  };
2160
2324
  experimental_preconfirmationTime?: number | undefined | undefined;
2161
2325
  rpcUrls: {
2162
2326
  readonly default: {
2163
- readonly http: readonly ["https://polygon-rpc.com"];
2327
+ readonly http: readonly ["https://sepolia.base.org"];
2164
2328
  };
2165
2329
  };
2166
- sourceId?: number | undefined | undefined;
2167
- testnet?: boolean | undefined | undefined;
2330
+ sourceId: 11155111;
2331
+ testnet: true;
2168
2332
  custom?: Record<string, unknown> | undefined;
2169
2333
  fees?: import("viem").ChainFees<undefined> | undefined;
2170
- serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable<bigint, number>> | undefined;
2171
- readonly blockchainId: "MATIC";
2172
- readonly blockchainVm: "EVM";
2173
- readonly formatters?: undefined | undefined;
2174
- } | {
2175
- blockExplorers: {
2176
- readonly default: {
2177
- readonly name: "PolygonScan";
2178
- readonly url: "https://amoy.polygonscan.com";
2179
- readonly apiUrl: "https://api-amoy.polygonscan.com/api";
2180
- };
2181
- };
2182
- blockTime?: number | undefined | undefined;
2183
- contracts: {
2184
- readonly USDC: {
2185
- readonly address: "0x41e94eb019c0762f9bfcf9fb1e58725bfb0e7582";
2186
- readonly abi: readonly [{
2187
- readonly type: "event";
2188
- readonly name: "Approval";
2189
- readonly inputs: readonly [{
2190
- readonly indexed: true;
2191
- readonly name: "owner";
2192
- readonly type: "address";
2193
- }, {
2194
- readonly indexed: true;
2195
- readonly name: "spender";
2196
- readonly type: "address";
2197
- }, {
2334
+ formatters: {
2335
+ readonly block: {
2336
+ exclude: [] | undefined;
2337
+ format: (args: import("viem/chains").OpStackRpcBlock) => {
2338
+ baseFeePerGas: bigint | null;
2339
+ blobGasUsed: bigint;
2340
+ difficulty: bigint;
2341
+ excessBlobGas: bigint;
2342
+ extraData: import("viem").Hex;
2343
+ gasLimit: bigint;
2344
+ gasUsed: bigint;
2345
+ hash: `0x${string}` | null;
2346
+ logsBloom: `0x${string}` | null;
2347
+ miner: import("abitype").Address;
2348
+ mixHash: import("viem").Hash;
2349
+ nonce: `0x${string}` | null;
2350
+ number: bigint | null;
2351
+ parentBeaconBlockRoot?: `0x${string}` | undefined;
2352
+ parentHash: import("viem").Hash;
2353
+ receiptsRoot: import("viem").Hex;
2354
+ sealFields: import("viem").Hex[];
2355
+ sha3Uncles: import("viem").Hash;
2356
+ size: bigint;
2357
+ stateRoot: import("viem").Hash;
2358
+ timestamp: bigint;
2359
+ totalDifficulty: bigint | null;
2360
+ transactions: `0x${string}`[] | import("viem/chains").OpStackTransaction<boolean>[];
2361
+ transactionsRoot: import("viem").Hash;
2362
+ uncles: import("viem").Hash[];
2363
+ withdrawals?: import("viem").Withdrawal[] | undefined | undefined;
2364
+ withdrawalsRoot?: `0x${string}` | undefined;
2365
+ } & {};
2366
+ type: "block";
2367
+ };
2368
+ readonly transaction: {
2369
+ exclude: [] | undefined;
2370
+ format: (args: import("viem/chains").OpStackRpcTransaction) => ({
2371
+ blockHash: `0x${string}` | null;
2372
+ blockNumber: bigint | null;
2373
+ from: import("abitype").Address;
2374
+ gas: bigint;
2375
+ hash: import("viem").Hash;
2376
+ input: import("viem").Hex;
2377
+ nonce: number;
2378
+ r: import("viem").Hex;
2379
+ s: import("viem").Hex;
2380
+ to: import("abitype").Address | null;
2381
+ transactionIndex: number | null;
2382
+ typeHex: import("viem").Hex | null;
2383
+ v: bigint;
2384
+ value: bigint;
2385
+ yParity: number;
2386
+ gasPrice?: undefined | undefined;
2387
+ maxFeePerBlobGas?: undefined | undefined;
2388
+ maxFeePerGas: bigint;
2389
+ maxPriorityFeePerGas: bigint;
2390
+ isSystemTx?: boolean;
2391
+ mint?: bigint | undefined | undefined;
2392
+ sourceHash: import("viem").Hex;
2393
+ type: "deposit";
2394
+ } | {
2395
+ r: import("viem").Hex;
2396
+ s: import("viem").Hex;
2397
+ v: bigint;
2398
+ to: import("abitype").Address | null;
2399
+ from: import("abitype").Address;
2400
+ gas: bigint;
2401
+ nonce: number;
2402
+ value: bigint;
2403
+ blockHash: `0x${string}` | null;
2404
+ blockNumber: bigint | null;
2405
+ hash: import("viem").Hash;
2406
+ input: import("viem").Hex;
2407
+ transactionIndex: number | null;
2408
+ typeHex: import("viem").Hex | null;
2409
+ accessList?: undefined | undefined;
2410
+ authorizationList?: undefined | undefined;
2411
+ blobVersionedHashes?: undefined | undefined;
2412
+ chainId?: number | undefined;
2413
+ yParity?: undefined | undefined;
2414
+ type: "legacy";
2415
+ gasPrice: bigint;
2416
+ maxFeePerBlobGas?: undefined | undefined;
2417
+ maxFeePerGas?: undefined | undefined;
2418
+ maxPriorityFeePerGas?: undefined | undefined;
2419
+ isSystemTx?: undefined | undefined;
2420
+ mint?: undefined | undefined;
2421
+ sourceHash?: undefined | undefined;
2422
+ } | {
2423
+ blockHash: `0x${string}` | null;
2424
+ blockNumber: bigint | null;
2425
+ from: import("abitype").Address;
2426
+ gas: bigint;
2427
+ hash: import("viem").Hash;
2428
+ input: import("viem").Hex;
2429
+ nonce: number;
2430
+ r: import("viem").Hex;
2431
+ s: import("viem").Hex;
2432
+ to: import("abitype").Address | null;
2433
+ transactionIndex: number | null;
2434
+ typeHex: import("viem").Hex | null;
2435
+ v: bigint;
2436
+ value: bigint;
2437
+ yParity: number;
2438
+ accessList: import("viem").AccessList;
2439
+ authorizationList?: undefined | undefined;
2440
+ blobVersionedHashes?: undefined | undefined;
2441
+ chainId: number;
2442
+ type: "eip2930";
2443
+ gasPrice: bigint;
2444
+ maxFeePerBlobGas?: undefined | undefined;
2445
+ maxFeePerGas?: undefined | undefined;
2446
+ maxPriorityFeePerGas?: undefined | undefined;
2447
+ isSystemTx?: undefined | undefined;
2448
+ mint?: undefined | undefined;
2449
+ sourceHash?: undefined | undefined;
2450
+ } | {
2451
+ blockHash: `0x${string}` | null;
2452
+ blockNumber: bigint | null;
2453
+ from: import("abitype").Address;
2454
+ gas: bigint;
2455
+ hash: import("viem").Hash;
2456
+ input: import("viem").Hex;
2457
+ nonce: number;
2458
+ r: import("viem").Hex;
2459
+ s: import("viem").Hex;
2460
+ to: import("abitype").Address | null;
2461
+ transactionIndex: number | null;
2462
+ typeHex: import("viem").Hex | null;
2463
+ v: bigint;
2464
+ value: bigint;
2465
+ yParity: number;
2466
+ accessList: import("viem").AccessList;
2467
+ authorizationList?: undefined | undefined;
2468
+ blobVersionedHashes?: undefined | undefined;
2469
+ chainId: number;
2470
+ type: "eip1559";
2471
+ gasPrice?: undefined | undefined;
2472
+ maxFeePerBlobGas?: undefined | undefined;
2473
+ maxFeePerGas: bigint;
2474
+ maxPriorityFeePerGas: bigint;
2475
+ isSystemTx?: undefined | undefined;
2476
+ mint?: undefined | undefined;
2477
+ sourceHash?: undefined | undefined;
2478
+ } | {
2479
+ blockHash: `0x${string}` | null;
2480
+ blockNumber: bigint | null;
2481
+ from: import("abitype").Address;
2482
+ gas: bigint;
2483
+ hash: import("viem").Hash;
2484
+ input: import("viem").Hex;
2485
+ nonce: number;
2486
+ r: import("viem").Hex;
2487
+ s: import("viem").Hex;
2488
+ to: import("abitype").Address | null;
2489
+ transactionIndex: number | null;
2490
+ typeHex: import("viem").Hex | null;
2491
+ v: bigint;
2492
+ value: bigint;
2493
+ yParity: number;
2494
+ accessList: import("viem").AccessList;
2495
+ authorizationList?: undefined | undefined;
2496
+ blobVersionedHashes: readonly import("viem").Hex[];
2497
+ chainId: number;
2498
+ type: "eip4844";
2499
+ gasPrice?: undefined | undefined;
2500
+ maxFeePerBlobGas: bigint;
2501
+ maxFeePerGas: bigint;
2502
+ maxPriorityFeePerGas: bigint;
2503
+ isSystemTx?: undefined | undefined;
2504
+ mint?: undefined | undefined;
2505
+ sourceHash?: undefined | undefined;
2506
+ } | {
2507
+ blockHash: `0x${string}` | null;
2508
+ blockNumber: bigint | null;
2509
+ from: import("abitype").Address;
2510
+ gas: bigint;
2511
+ hash: import("viem").Hash;
2512
+ input: import("viem").Hex;
2513
+ nonce: number;
2514
+ r: import("viem").Hex;
2515
+ s: import("viem").Hex;
2516
+ to: import("abitype").Address | null;
2517
+ transactionIndex: number | null;
2518
+ typeHex: import("viem").Hex | null;
2519
+ v: bigint;
2520
+ value: bigint;
2521
+ yParity: number;
2522
+ accessList: import("viem").AccessList;
2523
+ authorizationList: import("viem").SignedAuthorizationList;
2524
+ blobVersionedHashes?: undefined | undefined;
2525
+ chainId: number;
2526
+ type: "eip7702";
2527
+ gasPrice?: undefined | undefined;
2528
+ maxFeePerBlobGas?: undefined | undefined;
2529
+ maxFeePerGas: bigint;
2530
+ maxPriorityFeePerGas: bigint;
2531
+ isSystemTx?: undefined | undefined;
2532
+ mint?: undefined | undefined;
2533
+ sourceHash?: undefined | undefined;
2534
+ }) & {};
2535
+ type: "transaction";
2536
+ };
2537
+ readonly transactionReceipt: {
2538
+ exclude: [] | undefined;
2539
+ format: (args: import("viem/chains").OpStackRpcTransactionReceipt) => {
2540
+ blobGasPrice?: bigint | undefined;
2541
+ blobGasUsed?: bigint | undefined;
2542
+ blockHash: import("viem").Hash;
2543
+ blockNumber: bigint;
2544
+ contractAddress: import("abitype").Address | null | undefined;
2545
+ cumulativeGasUsed: bigint;
2546
+ effectiveGasPrice: bigint;
2547
+ from: import("abitype").Address;
2548
+ gasUsed: bigint;
2549
+ logs: import("viem").Log<bigint, number, false>[];
2550
+ logsBloom: import("viem").Hex;
2551
+ root?: `0x${string}` | undefined;
2552
+ status: "success" | "reverted";
2553
+ to: import("abitype").Address | null;
2554
+ transactionHash: import("viem").Hash;
2555
+ transactionIndex: number;
2556
+ type: import("viem").TransactionType;
2557
+ l1GasPrice: bigint | null;
2558
+ l1GasUsed: bigint | null;
2559
+ l1Fee: bigint | null;
2560
+ l1FeeScalar: number | null;
2561
+ } & {};
2562
+ type: "transactionReceipt";
2563
+ };
2564
+ };
2565
+ serializers: {
2566
+ readonly transaction: typeof import("viem/chains").serializeTransactionOpStack;
2567
+ };
2568
+ readonly blockchainId: "BASE-SEPOLIA";
2569
+ readonly blockchainVm: "EVM";
2570
+ readonly network: "base-sepolia";
2571
+ } | {
2572
+ blockExplorers: {
2573
+ readonly default: {
2574
+ readonly name: "Etherscan";
2575
+ readonly url: "https://etherscan.io";
2576
+ readonly apiUrl: "https://api.etherscan.io/api";
2577
+ };
2578
+ };
2579
+ blockTime: 12000;
2580
+ contracts: {
2581
+ readonly USDC: {
2582
+ readonly address: "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48";
2583
+ readonly abi: readonly [{
2584
+ readonly type: "event";
2585
+ readonly name: "Approval";
2586
+ readonly inputs: readonly [{
2587
+ readonly indexed: true;
2588
+ readonly name: "owner";
2589
+ readonly type: "address";
2590
+ }, {
2591
+ readonly indexed: true;
2592
+ readonly name: "spender";
2593
+ readonly type: "address";
2594
+ }, {
2198
2595
  readonly indexed: false;
2199
2596
  readonly name: "value";
2200
2597
  readonly type: "uint256";
@@ -2322,45 +2719,8 @@ export declare function createAccount(client: ExtendedViemClient, params?: Creat
2322
2719
  readonly decimals: () => 6;
2323
2720
  };
2324
2721
  };
2325
- readonly multicall3: {
2326
- readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
2327
- readonly blockCreated: 3127388;
2328
- };
2329
- };
2330
- ensTlds?: readonly string[] | undefined;
2331
- id: 80002;
2332
- name: "Polygon Amoy";
2333
- nativeCurrency: {
2334
- readonly name: "POL";
2335
- readonly symbol: "POL";
2336
- readonly decimals: 18;
2337
- };
2338
- experimental_preconfirmationTime?: number | undefined | undefined;
2339
- rpcUrls: {
2340
- readonly default: {
2341
- readonly http: readonly ["https://rpc-amoy.polygon.technology"];
2342
- };
2343
- };
2344
- sourceId?: number | undefined | undefined;
2345
- testnet: true;
2346
- custom?: Record<string, unknown> | undefined;
2347
- fees?: import("viem").ChainFees<undefined> | undefined;
2348
- serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable<bigint, number>> | undefined;
2349
- readonly blockchainId: "MATIC-AMOY";
2350
- readonly blockchainVm: "EVM";
2351
- readonly formatters?: undefined | undefined;
2352
- } | {
2353
- blockExplorers: {
2354
- readonly default: {
2355
- readonly name: "Basescan";
2356
- readonly url: "https://basescan.org";
2357
- readonly apiUrl: "https://api.basescan.org/api";
2358
- };
2359
- };
2360
- blockTime: 2000;
2361
- contracts: {
2362
- readonly USDC: {
2363
- readonly address: "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913";
2722
+ readonly EURC: {
2723
+ readonly address: "0x1aBaEA1f7C830bD89Acc67eC4af516284b1bC33c";
2364
2724
  readonly abi: readonly [{
2365
2725
  readonly type: "event";
2366
2726
  readonly name: "Approval";
@@ -2500,8 +2860,8 @@ export declare function createAccount(client: ExtendedViemClient, params?: Creat
2500
2860
  readonly decimals: () => 6;
2501
2861
  };
2502
2862
  };
2503
- readonly EURC: {
2504
- readonly address: "0x60a3e35cc302bfa44cb288bc5a4f316fdb1adb42";
2863
+ readonly USDT: {
2864
+ readonly address: "0xdac17f958d2ee523a2206206994597c13d831ec7";
2505
2865
  readonly abi: readonly [{
2506
2866
  readonly type: "event";
2507
2867
  readonly name: "Approval";
@@ -2641,54 +3001,18 @@ export declare function createAccount(client: ExtendedViemClient, params?: Creat
2641
3001
  readonly decimals: () => 6;
2642
3002
  };
2643
3003
  };
2644
- readonly disputeGameFactory: {
2645
- readonly 1: {
2646
- readonly address: "0x43edB88C4B80fDD2AdFF2412A7BebF9dF42cB40e";
2647
- };
2648
- };
2649
- readonly l2OutputOracle: {
2650
- readonly 1: {
2651
- readonly address: "0x56315b90c40730925ec5485cf004d835058518A0";
2652
- };
3004
+ readonly ensUniversalResolver: {
3005
+ readonly address: "0xeeeeeeee14d718c2b47d9923deab1335e144eeee";
3006
+ readonly blockCreated: 23085558;
2653
3007
  };
2654
3008
  readonly multicall3: {
2655
3009
  readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
2656
- readonly blockCreated: 5022;
2657
- };
2658
- readonly portal: {
2659
- readonly 1: {
2660
- readonly address: "0x49048044D57e1C92A77f79988d21Fa8fAF74E97e";
2661
- readonly blockCreated: 17482143;
2662
- };
2663
- };
2664
- readonly l1StandardBridge: {
2665
- readonly 1: {
2666
- readonly address: "0x3154Cf16ccdb4C6d922629664174b904d80F2C35";
2667
- readonly blockCreated: 17482143;
2668
- };
2669
- };
2670
- readonly gasPriceOracle: {
2671
- readonly address: "0x420000000000000000000000000000000000000F";
2672
- };
2673
- readonly l1Block: {
2674
- readonly address: "0x4200000000000000000000000000000000000015";
2675
- };
2676
- readonly l2CrossDomainMessenger: {
2677
- readonly address: "0x4200000000000000000000000000000000000007";
2678
- };
2679
- readonly l2Erc721Bridge: {
2680
- readonly address: "0x4200000000000000000000000000000000000014";
2681
- };
2682
- readonly l2StandardBridge: {
2683
- readonly address: "0x4200000000000000000000000000000000000010";
2684
- };
2685
- readonly l2ToL1MessagePasser: {
2686
- readonly address: "0x4200000000000000000000000000000000000016";
3010
+ readonly blockCreated: 14353601;
2687
3011
  };
2688
3012
  };
2689
3013
  ensTlds?: readonly string[] | undefined;
2690
- id: 8453;
2691
- name: "Base";
3014
+ id: 1;
3015
+ name: "Ethereum";
2692
3016
  nativeCurrency: {
2693
3017
  readonly name: "Ether";
2694
3018
  readonly symbol: "ETH";
@@ -2697,261 +3021,352 @@ export declare function createAccount(client: ExtendedViemClient, params?: Creat
2697
3021
  experimental_preconfirmationTime?: number | undefined | undefined;
2698
3022
  rpcUrls: {
2699
3023
  readonly default: {
2700
- readonly http: readonly ["https://mainnet.base.org"];
3024
+ readonly http: readonly ["https://eth.merkle.io"];
2701
3025
  };
2702
3026
  };
2703
- sourceId: 1;
3027
+ sourceId?: number | undefined | undefined;
2704
3028
  testnet?: boolean | undefined | undefined;
2705
3029
  custom?: Record<string, unknown> | undefined;
2706
3030
  fees?: import("viem").ChainFees<undefined> | undefined;
2707
- formatters: {
2708
- readonly block: {
2709
- exclude: [] | undefined;
2710
- format: (args: import("viem/chains").OpStackRpcBlock) => {
2711
- baseFeePerGas: bigint | null;
2712
- blobGasUsed: bigint;
2713
- difficulty: bigint;
2714
- excessBlobGas: bigint;
2715
- extraData: import("viem").Hex;
2716
- gasLimit: bigint;
2717
- gasUsed: bigint;
2718
- hash: `0x${string}` | null;
2719
- logsBloom: `0x${string}` | null;
2720
- miner: import("abitype").Address;
2721
- mixHash: import("viem").Hash;
2722
- nonce: `0x${string}` | null;
2723
- number: bigint | null;
2724
- parentBeaconBlockRoot?: `0x${string}` | undefined;
2725
- parentHash: import("viem").Hash;
2726
- receiptsRoot: import("viem").Hex;
2727
- sealFields: import("viem").Hex[];
2728
- sha3Uncles: import("viem").Hash;
2729
- size: bigint;
2730
- stateRoot: import("viem").Hash;
2731
- timestamp: bigint;
2732
- totalDifficulty: bigint | null;
2733
- transactions: `0x${string}`[] | import("viem/chains").OpStackTransaction<boolean>[];
2734
- transactionsRoot: import("viem").Hash;
2735
- uncles: import("viem").Hash[];
2736
- withdrawals?: import("viem").Withdrawal[] | undefined | undefined;
2737
- withdrawalsRoot?: `0x${string}` | undefined;
2738
- } & {};
2739
- type: "block";
3031
+ serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable<bigint, number>> | undefined;
3032
+ readonly blockchainId: "ETH";
3033
+ readonly blockchainVm: "EVM";
3034
+ readonly formatters?: undefined | undefined;
3035
+ } | {
3036
+ blockExplorers: {
3037
+ readonly default: {
3038
+ readonly name: "Etherscan";
3039
+ readonly url: "https://sepolia.etherscan.io";
3040
+ readonly apiUrl: "https://api-sepolia.etherscan.io/api";
3041
+ };
3042
+ };
3043
+ blockTime?: number | undefined | undefined;
3044
+ contracts: {
3045
+ readonly USDC: {
3046
+ readonly address: "0x1c7D4B196Cb0C7B01d743Fbc6116a902379C7238";
3047
+ readonly abi: readonly [{
3048
+ readonly type: "event";
3049
+ readonly name: "Approval";
3050
+ readonly inputs: readonly [{
3051
+ readonly indexed: true;
3052
+ readonly name: "owner";
3053
+ readonly type: "address";
3054
+ }, {
3055
+ readonly indexed: true;
3056
+ readonly name: "spender";
3057
+ readonly type: "address";
3058
+ }, {
3059
+ readonly indexed: false;
3060
+ readonly name: "value";
3061
+ readonly type: "uint256";
3062
+ }];
3063
+ }, {
3064
+ readonly type: "event";
3065
+ readonly name: "Transfer";
3066
+ readonly inputs: readonly [{
3067
+ readonly indexed: true;
3068
+ readonly name: "from";
3069
+ readonly type: "address";
3070
+ }, {
3071
+ readonly indexed: true;
3072
+ readonly name: "to";
3073
+ readonly type: "address";
3074
+ }, {
3075
+ readonly indexed: false;
3076
+ readonly name: "value";
3077
+ readonly type: "uint256";
3078
+ }];
3079
+ }, {
3080
+ readonly type: "function";
3081
+ readonly name: "allowance";
3082
+ readonly stateMutability: "view";
3083
+ readonly inputs: readonly [{
3084
+ readonly name: "owner";
3085
+ readonly type: "address";
3086
+ }, {
3087
+ readonly name: "spender";
3088
+ readonly type: "address";
3089
+ }];
3090
+ readonly outputs: readonly [{
3091
+ readonly type: "uint256";
3092
+ }];
3093
+ }, {
3094
+ readonly type: "function";
3095
+ readonly name: "approve";
3096
+ readonly stateMutability: "nonpayable";
3097
+ readonly inputs: readonly [{
3098
+ readonly name: "spender";
3099
+ readonly type: "address";
3100
+ }, {
3101
+ readonly name: "amount";
3102
+ readonly type: "uint256";
3103
+ }];
3104
+ readonly outputs: readonly [{
3105
+ readonly type: "bool";
3106
+ }];
3107
+ }, {
3108
+ readonly type: "function";
3109
+ readonly name: "balanceOf";
3110
+ readonly stateMutability: "view";
3111
+ readonly inputs: readonly [{
3112
+ readonly name: "account";
3113
+ readonly type: "address";
3114
+ }];
3115
+ readonly outputs: readonly [{
3116
+ readonly type: "uint256";
3117
+ }];
3118
+ }, {
3119
+ readonly type: "function";
3120
+ readonly name: "decimals";
3121
+ readonly stateMutability: "view";
3122
+ readonly inputs: readonly [];
3123
+ readonly outputs: readonly [{
3124
+ readonly type: "uint8";
3125
+ }];
3126
+ }, {
3127
+ readonly type: "function";
3128
+ readonly name: "name";
3129
+ readonly stateMutability: "view";
3130
+ readonly inputs: readonly [];
3131
+ readonly outputs: readonly [{
3132
+ readonly type: "string";
3133
+ }];
3134
+ }, {
3135
+ readonly type: "function";
3136
+ readonly name: "symbol";
3137
+ readonly stateMutability: "view";
3138
+ readonly inputs: readonly [];
3139
+ readonly outputs: readonly [{
3140
+ readonly type: "string";
3141
+ }];
3142
+ }, {
3143
+ readonly type: "function";
3144
+ readonly name: "totalSupply";
3145
+ readonly stateMutability: "view";
3146
+ readonly inputs: readonly [];
3147
+ readonly outputs: readonly [{
3148
+ readonly type: "uint256";
3149
+ }];
3150
+ }, {
3151
+ readonly type: "function";
3152
+ readonly name: "transfer";
3153
+ readonly stateMutability: "nonpayable";
3154
+ readonly inputs: readonly [{
3155
+ readonly name: "recipient";
3156
+ readonly type: "address";
3157
+ }, {
3158
+ readonly name: "amount";
3159
+ readonly type: "uint256";
3160
+ }];
3161
+ readonly outputs: readonly [{
3162
+ readonly type: "bool";
3163
+ }];
3164
+ }, {
3165
+ readonly type: "function";
3166
+ readonly name: "transferFrom";
3167
+ readonly stateMutability: "nonpayable";
3168
+ readonly inputs: readonly [{
3169
+ readonly name: "sender";
3170
+ readonly type: "address";
3171
+ }, {
3172
+ readonly name: "recipient";
3173
+ readonly type: "address";
3174
+ }, {
3175
+ readonly name: "amount";
3176
+ readonly type: "uint256";
3177
+ }];
3178
+ readonly outputs: readonly [{
3179
+ readonly type: "bool";
3180
+ }];
3181
+ }];
3182
+ readonly read: {
3183
+ readonly decimals: () => 6;
3184
+ };
2740
3185
  };
2741
- readonly transaction: {
2742
- exclude: [] | undefined;
2743
- format: (args: import("viem/chains").OpStackRpcTransaction) => ({
2744
- blockHash: `0x${string}` | null;
2745
- blockNumber: bigint | null;
2746
- from: import("abitype").Address;
2747
- gas: bigint;
2748
- hash: import("viem").Hash;
2749
- input: import("viem").Hex;
2750
- nonce: number;
2751
- r: import("viem").Hex;
2752
- s: import("viem").Hex;
2753
- to: import("abitype").Address | null;
2754
- transactionIndex: number | null;
2755
- typeHex: import("viem").Hex | null;
2756
- v: bigint;
2757
- value: bigint;
2758
- yParity: number;
2759
- gasPrice?: undefined | undefined;
2760
- maxFeePerBlobGas?: undefined | undefined;
2761
- maxFeePerGas: bigint;
2762
- maxPriorityFeePerGas: bigint;
2763
- isSystemTx?: boolean;
2764
- mint?: bigint | undefined | undefined;
2765
- sourceHash: import("viem").Hex;
2766
- type: "deposit";
2767
- } | {
2768
- r: import("viem").Hex;
2769
- s: import("viem").Hex;
2770
- v: bigint;
2771
- to: import("abitype").Address | null;
2772
- from: import("abitype").Address;
2773
- gas: bigint;
2774
- nonce: number;
2775
- value: bigint;
2776
- blockHash: `0x${string}` | null;
2777
- blockNumber: bigint | null;
2778
- hash: import("viem").Hash;
2779
- input: import("viem").Hex;
2780
- transactionIndex: number | null;
2781
- typeHex: import("viem").Hex | null;
2782
- accessList?: undefined | undefined;
2783
- authorizationList?: undefined | undefined;
2784
- blobVersionedHashes?: undefined | undefined;
2785
- chainId?: number | undefined;
2786
- yParity?: undefined | undefined;
2787
- type: "legacy";
2788
- gasPrice: bigint;
2789
- maxFeePerBlobGas?: undefined | undefined;
2790
- maxFeePerGas?: undefined | undefined;
2791
- maxPriorityFeePerGas?: undefined | undefined;
2792
- isSystemTx?: undefined | undefined;
2793
- mint?: undefined | undefined;
2794
- sourceHash?: undefined | undefined;
2795
- } | {
2796
- blockHash: `0x${string}` | null;
2797
- blockNumber: bigint | null;
2798
- from: import("abitype").Address;
2799
- gas: bigint;
2800
- hash: import("viem").Hash;
2801
- input: import("viem").Hex;
2802
- nonce: number;
2803
- r: import("viem").Hex;
2804
- s: import("viem").Hex;
2805
- to: import("abitype").Address | null;
2806
- transactionIndex: number | null;
2807
- typeHex: import("viem").Hex | null;
2808
- v: bigint;
2809
- value: bigint;
2810
- yParity: number;
2811
- accessList: import("viem").AccessList;
2812
- authorizationList?: undefined | undefined;
2813
- blobVersionedHashes?: undefined | undefined;
2814
- chainId: number;
2815
- type: "eip2930";
2816
- gasPrice: bigint;
2817
- maxFeePerBlobGas?: undefined | undefined;
2818
- maxFeePerGas?: undefined | undefined;
2819
- maxPriorityFeePerGas?: undefined | undefined;
2820
- isSystemTx?: undefined | undefined;
2821
- mint?: undefined | undefined;
2822
- sourceHash?: undefined | undefined;
2823
- } | {
2824
- blockHash: `0x${string}` | null;
2825
- blockNumber: bigint | null;
2826
- from: import("abitype").Address;
2827
- gas: bigint;
2828
- hash: import("viem").Hash;
2829
- input: import("viem").Hex;
2830
- nonce: number;
2831
- r: import("viem").Hex;
2832
- s: import("viem").Hex;
2833
- to: import("abitype").Address | null;
2834
- transactionIndex: number | null;
2835
- typeHex: import("viem").Hex | null;
2836
- v: bigint;
2837
- value: bigint;
2838
- yParity: number;
2839
- accessList: import("viem").AccessList;
2840
- authorizationList?: undefined | undefined;
2841
- blobVersionedHashes?: undefined | undefined;
2842
- chainId: number;
2843
- type: "eip1559";
2844
- gasPrice?: undefined | undefined;
2845
- maxFeePerBlobGas?: undefined | undefined;
2846
- maxFeePerGas: bigint;
2847
- maxPriorityFeePerGas: bigint;
2848
- isSystemTx?: undefined | undefined;
2849
- mint?: undefined | undefined;
2850
- sourceHash?: undefined | undefined;
2851
- } | {
2852
- blockHash: `0x${string}` | null;
2853
- blockNumber: bigint | null;
2854
- from: import("abitype").Address;
2855
- gas: bigint;
2856
- hash: import("viem").Hash;
2857
- input: import("viem").Hex;
2858
- nonce: number;
2859
- r: import("viem").Hex;
2860
- s: import("viem").Hex;
2861
- to: import("abitype").Address | null;
2862
- transactionIndex: number | null;
2863
- typeHex: import("viem").Hex | null;
2864
- v: bigint;
2865
- value: bigint;
2866
- yParity: number;
2867
- accessList: import("viem").AccessList;
2868
- authorizationList?: undefined | undefined;
2869
- blobVersionedHashes: readonly import("viem").Hex[];
2870
- chainId: number;
2871
- type: "eip4844";
2872
- gasPrice?: undefined | undefined;
2873
- maxFeePerBlobGas: bigint;
2874
- maxFeePerGas: bigint;
2875
- maxPriorityFeePerGas: bigint;
2876
- isSystemTx?: undefined | undefined;
2877
- mint?: undefined | undefined;
2878
- sourceHash?: undefined | undefined;
2879
- } | {
2880
- blockHash: `0x${string}` | null;
2881
- blockNumber: bigint | null;
2882
- from: import("abitype").Address;
2883
- gas: bigint;
2884
- hash: import("viem").Hash;
2885
- input: import("viem").Hex;
2886
- nonce: number;
2887
- r: import("viem").Hex;
2888
- s: import("viem").Hex;
2889
- to: import("abitype").Address | null;
2890
- transactionIndex: number | null;
2891
- typeHex: import("viem").Hex | null;
2892
- v: bigint;
2893
- value: bigint;
2894
- yParity: number;
2895
- accessList: import("viem").AccessList;
2896
- authorizationList: import("viem").SignedAuthorizationList;
2897
- blobVersionedHashes?: undefined | undefined;
2898
- chainId: number;
2899
- type: "eip7702";
2900
- gasPrice?: undefined | undefined;
2901
- maxFeePerBlobGas?: undefined | undefined;
2902
- maxFeePerGas: bigint;
2903
- maxPriorityFeePerGas: bigint;
2904
- isSystemTx?: undefined | undefined;
2905
- mint?: undefined | undefined;
2906
- sourceHash?: undefined | undefined;
2907
- }) & {};
2908
- type: "transaction";
3186
+ readonly EURC: {
3187
+ readonly address: "0x08210F9170F89Ab7658F0B5E3fF39b0E03C594D4";
3188
+ readonly abi: readonly [{
3189
+ readonly type: "event";
3190
+ readonly name: "Approval";
3191
+ readonly inputs: readonly [{
3192
+ readonly indexed: true;
3193
+ readonly name: "owner";
3194
+ readonly type: "address";
3195
+ }, {
3196
+ readonly indexed: true;
3197
+ readonly name: "spender";
3198
+ readonly type: "address";
3199
+ }, {
3200
+ readonly indexed: false;
3201
+ readonly name: "value";
3202
+ readonly type: "uint256";
3203
+ }];
3204
+ }, {
3205
+ readonly type: "event";
3206
+ readonly name: "Transfer";
3207
+ readonly inputs: readonly [{
3208
+ readonly indexed: true;
3209
+ readonly name: "from";
3210
+ readonly type: "address";
3211
+ }, {
3212
+ readonly indexed: true;
3213
+ readonly name: "to";
3214
+ readonly type: "address";
3215
+ }, {
3216
+ readonly indexed: false;
3217
+ readonly name: "value";
3218
+ readonly type: "uint256";
3219
+ }];
3220
+ }, {
3221
+ readonly type: "function";
3222
+ readonly name: "allowance";
3223
+ readonly stateMutability: "view";
3224
+ readonly inputs: readonly [{
3225
+ readonly name: "owner";
3226
+ readonly type: "address";
3227
+ }, {
3228
+ readonly name: "spender";
3229
+ readonly type: "address";
3230
+ }];
3231
+ readonly outputs: readonly [{
3232
+ readonly type: "uint256";
3233
+ }];
3234
+ }, {
3235
+ readonly type: "function";
3236
+ readonly name: "approve";
3237
+ readonly stateMutability: "nonpayable";
3238
+ readonly inputs: readonly [{
3239
+ readonly name: "spender";
3240
+ readonly type: "address";
3241
+ }, {
3242
+ readonly name: "amount";
3243
+ readonly type: "uint256";
3244
+ }];
3245
+ readonly outputs: readonly [{
3246
+ readonly type: "bool";
3247
+ }];
3248
+ }, {
3249
+ readonly type: "function";
3250
+ readonly name: "balanceOf";
3251
+ readonly stateMutability: "view";
3252
+ readonly inputs: readonly [{
3253
+ readonly name: "account";
3254
+ readonly type: "address";
3255
+ }];
3256
+ readonly outputs: readonly [{
3257
+ readonly type: "uint256";
3258
+ }];
3259
+ }, {
3260
+ readonly type: "function";
3261
+ readonly name: "decimals";
3262
+ readonly stateMutability: "view";
3263
+ readonly inputs: readonly [];
3264
+ readonly outputs: readonly [{
3265
+ readonly type: "uint8";
3266
+ }];
3267
+ }, {
3268
+ readonly type: "function";
3269
+ readonly name: "name";
3270
+ readonly stateMutability: "view";
3271
+ readonly inputs: readonly [];
3272
+ readonly outputs: readonly [{
3273
+ readonly type: "string";
3274
+ }];
3275
+ }, {
3276
+ readonly type: "function";
3277
+ readonly name: "symbol";
3278
+ readonly stateMutability: "view";
3279
+ readonly inputs: readonly [];
3280
+ readonly outputs: readonly [{
3281
+ readonly type: "string";
3282
+ }];
3283
+ }, {
3284
+ readonly type: "function";
3285
+ readonly name: "totalSupply";
3286
+ readonly stateMutability: "view";
3287
+ readonly inputs: readonly [];
3288
+ readonly outputs: readonly [{
3289
+ readonly type: "uint256";
3290
+ }];
3291
+ }, {
3292
+ readonly type: "function";
3293
+ readonly name: "transfer";
3294
+ readonly stateMutability: "nonpayable";
3295
+ readonly inputs: readonly [{
3296
+ readonly name: "recipient";
3297
+ readonly type: "address";
3298
+ }, {
3299
+ readonly name: "amount";
3300
+ readonly type: "uint256";
3301
+ }];
3302
+ readonly outputs: readonly [{
3303
+ readonly type: "bool";
3304
+ }];
3305
+ }, {
3306
+ readonly type: "function";
3307
+ readonly name: "transferFrom";
3308
+ readonly stateMutability: "nonpayable";
3309
+ readonly inputs: readonly [{
3310
+ readonly name: "sender";
3311
+ readonly type: "address";
3312
+ }, {
3313
+ readonly name: "recipient";
3314
+ readonly type: "address";
3315
+ }, {
3316
+ readonly name: "amount";
3317
+ readonly type: "uint256";
3318
+ }];
3319
+ readonly outputs: readonly [{
3320
+ readonly type: "bool";
3321
+ }];
3322
+ }];
3323
+ readonly read: {
3324
+ readonly decimals: () => 6;
3325
+ };
2909
3326
  };
2910
- readonly transactionReceipt: {
2911
- exclude: [] | undefined;
2912
- format: (args: import("viem/chains").OpStackRpcTransactionReceipt) => {
2913
- blobGasPrice?: bigint | undefined;
2914
- blobGasUsed?: bigint | undefined;
2915
- blockHash: import("viem").Hash;
2916
- blockNumber: bigint;
2917
- contractAddress: import("abitype").Address | null | undefined;
2918
- cumulativeGasUsed: bigint;
2919
- effectiveGasPrice: bigint;
2920
- from: import("abitype").Address;
2921
- gasUsed: bigint;
2922
- logs: import("viem").Log<bigint, number, false>[];
2923
- logsBloom: import("viem").Hex;
2924
- root?: `0x${string}` | undefined;
2925
- status: "success" | "reverted";
2926
- to: import("abitype").Address | null;
2927
- transactionHash: import("viem").Hash;
2928
- transactionIndex: number;
2929
- type: import("viem").TransactionType;
2930
- l1GasPrice: bigint | null;
2931
- l1GasUsed: bigint | null;
2932
- l1Fee: bigint | null;
2933
- l1FeeScalar: number | null;
2934
- } & {};
2935
- type: "transactionReceipt";
3327
+ readonly multicall3: {
3328
+ readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
3329
+ readonly blockCreated: 751532;
3330
+ };
3331
+ readonly ensUniversalResolver: {
3332
+ readonly address: "0xeeeeeeee14d718c2b47d9923deab1335e144eeee";
3333
+ readonly blockCreated: 8928790;
2936
3334
  };
2937
3335
  };
2938
- serializers: {
2939
- readonly transaction: typeof import("viem/chains").serializeTransactionOpStack;
3336
+ ensTlds?: readonly string[] | undefined;
3337
+ id: 11155111;
3338
+ name: "Sepolia";
3339
+ nativeCurrency: {
3340
+ readonly name: "Sepolia Ether";
3341
+ readonly symbol: "ETH";
3342
+ readonly decimals: 18;
2940
3343
  };
2941
- readonly blockchainId: "BASE";
3344
+ experimental_preconfirmationTime?: number | undefined | undefined;
3345
+ rpcUrls: {
3346
+ readonly default: {
3347
+ readonly http: readonly ["https://sepolia.drpc.org"];
3348
+ };
3349
+ };
3350
+ sourceId?: number | undefined | undefined;
3351
+ testnet: true;
3352
+ custom?: Record<string, unknown> | undefined;
3353
+ fees?: import("viem").ChainFees<undefined> | undefined;
3354
+ serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable<bigint, number>> | undefined;
3355
+ readonly blockchainId: "ETH-SEPOLIA";
2942
3356
  readonly blockchainVm: "EVM";
3357
+ readonly formatters?: undefined | undefined;
2943
3358
  } | {
2944
3359
  blockExplorers: {
2945
3360
  readonly default: {
2946
- readonly name: "Basescan";
2947
- readonly url: "https://sepolia.basescan.org";
2948
- readonly apiUrl: "https://api-sepolia.basescan.org/api";
3361
+ readonly name: "PolygonScan";
3362
+ readonly url: "https://polygonscan.com";
3363
+ readonly apiUrl: "https://api.polygonscan.com/api";
2949
3364
  };
2950
3365
  };
2951
- blockTime: 2000;
3366
+ blockTime?: number | undefined | undefined;
2952
3367
  contracts: {
2953
3368
  readonly USDC: {
2954
- readonly address: "0x036CbD53842c5426634e7929541eC2318f3dCF7e";
3369
+ readonly address: "0x3c499c542cef5e3811e1192ce70d8cc03d5c3359";
2955
3370
  readonly abi: readonly [{
2956
3371
  readonly type: "event";
2957
3372
  readonly name: "Approval";
@@ -3091,8 +3506,45 @@ export declare function createAccount(client: ExtendedViemClient, params?: Creat
3091
3506
  readonly decimals: () => 6;
3092
3507
  };
3093
3508
  };
3094
- readonly EURC: {
3095
- readonly address: "0x808456652fdb597867f38412077A9182bf77359F";
3509
+ readonly multicall3: {
3510
+ readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
3511
+ readonly blockCreated: 25770160;
3512
+ };
3513
+ };
3514
+ ensTlds?: readonly string[] | undefined;
3515
+ id: 137;
3516
+ name: "Polygon";
3517
+ nativeCurrency: {
3518
+ readonly name: "POL";
3519
+ readonly symbol: "POL";
3520
+ readonly decimals: 18;
3521
+ };
3522
+ experimental_preconfirmationTime?: number | undefined | undefined;
3523
+ rpcUrls: {
3524
+ readonly default: {
3525
+ readonly http: readonly ["https://polygon-rpc.com"];
3526
+ };
3527
+ };
3528
+ sourceId?: number | undefined | undefined;
3529
+ testnet?: boolean | undefined | undefined;
3530
+ custom?: Record<string, unknown> | undefined;
3531
+ fees?: import("viem").ChainFees<undefined> | undefined;
3532
+ serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable<bigint, number>> | undefined;
3533
+ readonly blockchainId: "MATIC";
3534
+ readonly blockchainVm: "EVM";
3535
+ readonly formatters?: undefined | undefined;
3536
+ } | {
3537
+ blockExplorers: {
3538
+ readonly default: {
3539
+ readonly name: "PolygonScan";
3540
+ readonly url: "https://amoy.polygonscan.com";
3541
+ readonly apiUrl: "https://api-amoy.polygonscan.com/api";
3542
+ };
3543
+ };
3544
+ blockTime?: number | undefined | undefined;
3545
+ contracts: {
3546
+ readonly USDC: {
3547
+ readonly address: "0x41e94eb019c0762f9bfcf9fb1e58725bfb0e7582";
3096
3548
  readonly abi: readonly [{
3097
3549
  readonly type: "event";
3098
3550
  readonly name: "Approval";
@@ -3232,306 +3684,33 @@ export declare function createAccount(client: ExtendedViemClient, params?: Creat
3232
3684
  readonly decimals: () => 6;
3233
3685
  };
3234
3686
  };
3235
- readonly disputeGameFactory: {
3236
- readonly 11155111: {
3237
- readonly address: "0xd6E6dBf4F7EA0ac412fD8b65ED297e64BB7a06E1";
3238
- };
3239
- };
3240
- readonly l2OutputOracle: {
3241
- readonly 11155111: {
3242
- readonly address: "0x84457ca9D0163FbC4bbfe4Dfbb20ba46e48DF254";
3243
- };
3244
- };
3245
- readonly portal: {
3246
- readonly 11155111: {
3247
- readonly address: "0x49f53e41452c74589e85ca1677426ba426459e85";
3248
- readonly blockCreated: 4446677;
3249
- };
3250
- };
3251
- readonly l1StandardBridge: {
3252
- readonly 11155111: {
3253
- readonly address: "0xfd0Bf71F60660E2f608ed56e1659C450eB113120";
3254
- readonly blockCreated: 4446677;
3255
- };
3256
- };
3257
- readonly multicall3: {
3258
- readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
3259
- readonly blockCreated: 1059647;
3260
- };
3261
- readonly gasPriceOracle: {
3262
- readonly address: "0x420000000000000000000000000000000000000F";
3263
- };
3264
- readonly l1Block: {
3265
- readonly address: "0x4200000000000000000000000000000000000015";
3266
- };
3267
- readonly l2CrossDomainMessenger: {
3268
- readonly address: "0x4200000000000000000000000000000000000007";
3269
- };
3270
- readonly l2Erc721Bridge: {
3271
- readonly address: "0x4200000000000000000000000000000000000014";
3272
- };
3273
- readonly l2StandardBridge: {
3274
- readonly address: "0x4200000000000000000000000000000000000010";
3275
- };
3276
- readonly l2ToL1MessagePasser: {
3277
- readonly address: "0x4200000000000000000000000000000000000016";
3687
+ readonly multicall3: {
3688
+ readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
3689
+ readonly blockCreated: 3127388;
3278
3690
  };
3279
3691
  };
3280
3692
  ensTlds?: readonly string[] | undefined;
3281
- id: 84532;
3282
- name: "Base Sepolia";
3693
+ id: 80002;
3694
+ name: "Polygon Amoy";
3283
3695
  nativeCurrency: {
3284
- readonly name: "Sepolia Ether";
3285
- readonly symbol: "ETH";
3696
+ readonly name: "POL";
3697
+ readonly symbol: "POL";
3286
3698
  readonly decimals: 18;
3287
3699
  };
3288
3700
  experimental_preconfirmationTime?: number | undefined | undefined;
3289
3701
  rpcUrls: {
3290
3702
  readonly default: {
3291
- readonly http: readonly ["https://sepolia.base.org"];
3703
+ readonly http: readonly ["https://rpc-amoy.polygon.technology"];
3292
3704
  };
3293
3705
  };
3294
- sourceId: 11155111;
3706
+ sourceId?: number | undefined | undefined;
3295
3707
  testnet: true;
3296
3708
  custom?: Record<string, unknown> | undefined;
3297
3709
  fees?: import("viem").ChainFees<undefined> | undefined;
3298
- formatters: {
3299
- readonly block: {
3300
- exclude: [] | undefined;
3301
- format: (args: import("viem/chains").OpStackRpcBlock) => {
3302
- baseFeePerGas: bigint | null;
3303
- blobGasUsed: bigint;
3304
- difficulty: bigint;
3305
- excessBlobGas: bigint;
3306
- extraData: import("viem").Hex;
3307
- gasLimit: bigint;
3308
- gasUsed: bigint;
3309
- hash: `0x${string}` | null;
3310
- logsBloom: `0x${string}` | null;
3311
- miner: import("abitype").Address;
3312
- mixHash: import("viem").Hash;
3313
- nonce: `0x${string}` | null;
3314
- number: bigint | null;
3315
- parentBeaconBlockRoot?: `0x${string}` | undefined;
3316
- parentHash: import("viem").Hash;
3317
- receiptsRoot: import("viem").Hex;
3318
- sealFields: import("viem").Hex[];
3319
- sha3Uncles: import("viem").Hash;
3320
- size: bigint;
3321
- stateRoot: import("viem").Hash;
3322
- timestamp: bigint;
3323
- totalDifficulty: bigint | null;
3324
- transactions: `0x${string}`[] | import("viem/chains").OpStackTransaction<boolean>[];
3325
- transactionsRoot: import("viem").Hash;
3326
- uncles: import("viem").Hash[];
3327
- withdrawals?: import("viem").Withdrawal[] | undefined | undefined;
3328
- withdrawalsRoot?: `0x${string}` | undefined;
3329
- } & {};
3330
- type: "block";
3331
- };
3332
- readonly transaction: {
3333
- exclude: [] | undefined;
3334
- format: (args: import("viem/chains").OpStackRpcTransaction) => ({
3335
- blockHash: `0x${string}` | null;
3336
- blockNumber: bigint | null;
3337
- from: import("abitype").Address;
3338
- gas: bigint;
3339
- hash: import("viem").Hash;
3340
- input: import("viem").Hex;
3341
- nonce: number;
3342
- r: import("viem").Hex;
3343
- s: import("viem").Hex;
3344
- to: import("abitype").Address | null;
3345
- transactionIndex: number | null;
3346
- typeHex: import("viem").Hex | null;
3347
- v: bigint;
3348
- value: bigint;
3349
- yParity: number;
3350
- gasPrice?: undefined | undefined;
3351
- maxFeePerBlobGas?: undefined | undefined;
3352
- maxFeePerGas: bigint;
3353
- maxPriorityFeePerGas: bigint;
3354
- isSystemTx?: boolean;
3355
- mint?: bigint | undefined | undefined;
3356
- sourceHash: import("viem").Hex;
3357
- type: "deposit";
3358
- } | {
3359
- r: import("viem").Hex;
3360
- s: import("viem").Hex;
3361
- v: bigint;
3362
- to: import("abitype").Address | null;
3363
- from: import("abitype").Address;
3364
- gas: bigint;
3365
- nonce: number;
3366
- value: bigint;
3367
- blockHash: `0x${string}` | null;
3368
- blockNumber: bigint | null;
3369
- hash: import("viem").Hash;
3370
- input: import("viem").Hex;
3371
- transactionIndex: number | null;
3372
- typeHex: import("viem").Hex | null;
3373
- accessList?: undefined | undefined;
3374
- authorizationList?: undefined | undefined;
3375
- blobVersionedHashes?: undefined | undefined;
3376
- chainId?: number | undefined;
3377
- yParity?: undefined | undefined;
3378
- type: "legacy";
3379
- gasPrice: bigint;
3380
- maxFeePerBlobGas?: undefined | undefined;
3381
- maxFeePerGas?: undefined | undefined;
3382
- maxPriorityFeePerGas?: undefined | undefined;
3383
- isSystemTx?: undefined | undefined;
3384
- mint?: undefined | undefined;
3385
- sourceHash?: undefined | undefined;
3386
- } | {
3387
- blockHash: `0x${string}` | null;
3388
- blockNumber: bigint | null;
3389
- from: import("abitype").Address;
3390
- gas: bigint;
3391
- hash: import("viem").Hash;
3392
- input: import("viem").Hex;
3393
- nonce: number;
3394
- r: import("viem").Hex;
3395
- s: import("viem").Hex;
3396
- to: import("abitype").Address | null;
3397
- transactionIndex: number | null;
3398
- typeHex: import("viem").Hex | null;
3399
- v: bigint;
3400
- value: bigint;
3401
- yParity: number;
3402
- accessList: import("viem").AccessList;
3403
- authorizationList?: undefined | undefined;
3404
- blobVersionedHashes?: undefined | undefined;
3405
- chainId: number;
3406
- type: "eip2930";
3407
- gasPrice: bigint;
3408
- maxFeePerBlobGas?: undefined | undefined;
3409
- maxFeePerGas?: undefined | undefined;
3410
- maxPriorityFeePerGas?: undefined | undefined;
3411
- isSystemTx?: undefined | undefined;
3412
- mint?: undefined | undefined;
3413
- sourceHash?: undefined | undefined;
3414
- } | {
3415
- blockHash: `0x${string}` | null;
3416
- blockNumber: bigint | null;
3417
- from: import("abitype").Address;
3418
- gas: bigint;
3419
- hash: import("viem").Hash;
3420
- input: import("viem").Hex;
3421
- nonce: number;
3422
- r: import("viem").Hex;
3423
- s: import("viem").Hex;
3424
- to: import("abitype").Address | null;
3425
- transactionIndex: number | null;
3426
- typeHex: import("viem").Hex | null;
3427
- v: bigint;
3428
- value: bigint;
3429
- yParity: number;
3430
- accessList: import("viem").AccessList;
3431
- authorizationList?: undefined | undefined;
3432
- blobVersionedHashes?: undefined | undefined;
3433
- chainId: number;
3434
- type: "eip1559";
3435
- gasPrice?: undefined | undefined;
3436
- maxFeePerBlobGas?: undefined | undefined;
3437
- maxFeePerGas: bigint;
3438
- maxPriorityFeePerGas: bigint;
3439
- isSystemTx?: undefined | undefined;
3440
- mint?: undefined | undefined;
3441
- sourceHash?: undefined | undefined;
3442
- } | {
3443
- blockHash: `0x${string}` | null;
3444
- blockNumber: bigint | null;
3445
- from: import("abitype").Address;
3446
- gas: bigint;
3447
- hash: import("viem").Hash;
3448
- input: import("viem").Hex;
3449
- nonce: number;
3450
- r: import("viem").Hex;
3451
- s: import("viem").Hex;
3452
- to: import("abitype").Address | null;
3453
- transactionIndex: number | null;
3454
- typeHex: import("viem").Hex | null;
3455
- v: bigint;
3456
- value: bigint;
3457
- yParity: number;
3458
- accessList: import("viem").AccessList;
3459
- authorizationList?: undefined | undefined;
3460
- blobVersionedHashes: readonly import("viem").Hex[];
3461
- chainId: number;
3462
- type: "eip4844";
3463
- gasPrice?: undefined | undefined;
3464
- maxFeePerBlobGas: bigint;
3465
- maxFeePerGas: bigint;
3466
- maxPriorityFeePerGas: bigint;
3467
- isSystemTx?: undefined | undefined;
3468
- mint?: undefined | undefined;
3469
- sourceHash?: undefined | undefined;
3470
- } | {
3471
- blockHash: `0x${string}` | null;
3472
- blockNumber: bigint | null;
3473
- from: import("abitype").Address;
3474
- gas: bigint;
3475
- hash: import("viem").Hash;
3476
- input: import("viem").Hex;
3477
- nonce: number;
3478
- r: import("viem").Hex;
3479
- s: import("viem").Hex;
3480
- to: import("abitype").Address | null;
3481
- transactionIndex: number | null;
3482
- typeHex: import("viem").Hex | null;
3483
- v: bigint;
3484
- value: bigint;
3485
- yParity: number;
3486
- accessList: import("viem").AccessList;
3487
- authorizationList: import("viem").SignedAuthorizationList;
3488
- blobVersionedHashes?: undefined | undefined;
3489
- chainId: number;
3490
- type: "eip7702";
3491
- gasPrice?: undefined | undefined;
3492
- maxFeePerBlobGas?: undefined | undefined;
3493
- maxFeePerGas: bigint;
3494
- maxPriorityFeePerGas: bigint;
3495
- isSystemTx?: undefined | undefined;
3496
- mint?: undefined | undefined;
3497
- sourceHash?: undefined | undefined;
3498
- }) & {};
3499
- type: "transaction";
3500
- };
3501
- readonly transactionReceipt: {
3502
- exclude: [] | undefined;
3503
- format: (args: import("viem/chains").OpStackRpcTransactionReceipt) => {
3504
- blobGasPrice?: bigint | undefined;
3505
- blobGasUsed?: bigint | undefined;
3506
- blockHash: import("viem").Hash;
3507
- blockNumber: bigint;
3508
- contractAddress: import("abitype").Address | null | undefined;
3509
- cumulativeGasUsed: bigint;
3510
- effectiveGasPrice: bigint;
3511
- from: import("abitype").Address;
3512
- gasUsed: bigint;
3513
- logs: import("viem").Log<bigint, number, false>[];
3514
- logsBloom: import("viem").Hex;
3515
- root?: `0x${string}` | undefined;
3516
- status: "success" | "reverted";
3517
- to: import("abitype").Address | null;
3518
- transactionHash: import("viem").Hash;
3519
- transactionIndex: number;
3520
- type: import("viem").TransactionType;
3521
- l1GasPrice: bigint | null;
3522
- l1GasUsed: bigint | null;
3523
- l1Fee: bigint | null;
3524
- l1FeeScalar: number | null;
3525
- } & {};
3526
- type: "transactionReceipt";
3527
- };
3528
- };
3529
- serializers: {
3530
- readonly transaction: typeof import("viem/chains").serializeTransactionOpStack;
3531
- };
3532
- readonly blockchainId: "BASE-SEPOLIA";
3710
+ serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable<bigint, number>> | undefined;
3711
+ readonly blockchainId: "MATIC-AMOY";
3533
3712
  readonly blockchainVm: "EVM";
3534
- readonly network: "base-sepolia";
3713
+ readonly formatters?: undefined | undefined;
3535
3714
  } | {
3536
3715
  blockExplorers: {
3537
3716
  readonly default: {