@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
@@ -369,15 +369,15 @@ export declare function getAccounts(client: ExtendedViemClient, params: GetAccou
369
369
  } | {
370
370
  blockExplorers: {
371
371
  readonly default: {
372
- readonly name: "SnowTrace";
373
- readonly url: "https://snowtrace.io";
374
- readonly apiUrl: "https://api.snowtrace.io";
372
+ readonly name: "ArcScan";
373
+ readonly url: "https://testnet.arcscan.app";
374
+ readonly apiUrl: "https://testnet.arcscan.app/api";
375
375
  };
376
376
  };
377
- blockTime: 1700;
377
+ blockTime?: number | undefined | undefined;
378
378
  contracts: {
379
379
  readonly USDC: {
380
- readonly address: "0xB97EF9Ef8734C71904D8002F8b6Bc66Dd9c48a6E";
380
+ readonly address: "0x3600000000000000000000000000000000000000";
381
381
  readonly abi: readonly [{
382
382
  readonly type: "event";
383
383
  readonly name: "Approval";
@@ -517,8 +517,46 @@ export declare function getAccounts(client: ExtendedViemClient, params: GetAccou
517
517
  readonly decimals: () => 6;
518
518
  };
519
519
  };
520
- readonly EURC: {
521
- readonly address: "0xc891eb4cbdeff6e073e859e987815ed1505c2acd";
520
+ readonly multicall3: {
521
+ readonly address: "0xcA11bde05977b3631167028862bE2a173976CA11";
522
+ readonly blockCreated: 0;
523
+ };
524
+ };
525
+ ensTlds?: readonly string[] | undefined;
526
+ id: 5042002;
527
+ name: "Arc Testnet";
528
+ nativeCurrency: {
529
+ readonly name: "USDC";
530
+ readonly symbol: "USDC";
531
+ readonly decimals: 18;
532
+ };
533
+ experimental_preconfirmationTime?: number | undefined | undefined;
534
+ rpcUrls: {
535
+ readonly default: {
536
+ readonly http: readonly ["https://rpc.testnet.arc.network", "https://rpc.quicknode.testnet.arc.network", "https://rpc.blockdaemon.testnet.arc.network"];
537
+ readonly webSocket: readonly ["wss://rpc.testnet.arc.network", "wss://rpc.quicknode.testnet.arc.network"];
538
+ };
539
+ };
540
+ sourceId?: number | undefined | undefined;
541
+ testnet: true;
542
+ custom?: Record<string, unknown> | undefined;
543
+ fees?: import("viem").ChainFees<undefined> | undefined;
544
+ serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable> | undefined;
545
+ readonly blockchainId: "ARC-TESTNET";
546
+ readonly blockchainVm: "EVM";
547
+ readonly formatters?: undefined;
548
+ } | {
549
+ blockExplorers: {
550
+ readonly default: {
551
+ readonly name: "SnowTrace";
552
+ readonly url: "https://snowtrace.io";
553
+ readonly apiUrl: "https://api.snowtrace.io";
554
+ };
555
+ };
556
+ blockTime: 1700;
557
+ contracts: {
558
+ readonly USDC: {
559
+ readonly address: "0xB97EF9Ef8734C71904D8002F8b6Bc66Dd9c48a6E";
522
560
  readonly abi: readonly [{
523
561
  readonly type: "event";
524
562
  readonly name: "Approval";
@@ -658,8 +696,8 @@ export declare function getAccounts(client: ExtendedViemClient, params: GetAccou
658
696
  readonly decimals: () => 6;
659
697
  };
660
698
  };
661
- readonly USDT: {
662
- readonly address: "0x9702230a8ea53601f5cd2dc00fdbc13d4df4a8c7";
699
+ readonly EURC: {
700
+ readonly address: "0xc891eb4cbdeff6e073e859e987815ed1505c2acd";
663
701
  readonly abi: readonly [{
664
702
  readonly type: "event";
665
703
  readonly name: "Approval";
@@ -799,45 +837,8 @@ export declare function getAccounts(client: ExtendedViemClient, params: GetAccou
799
837
  readonly decimals: () => 6;
800
838
  };
801
839
  };
802
- readonly multicall3: {
803
- readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
804
- readonly blockCreated: 11907934;
805
- };
806
- };
807
- ensTlds?: readonly string[] | undefined;
808
- id: 43114;
809
- name: "Avalanche";
810
- nativeCurrency: {
811
- readonly decimals: 18;
812
- readonly name: "Avalanche";
813
- readonly symbol: "AVAX";
814
- };
815
- experimental_preconfirmationTime?: number | undefined | undefined;
816
- rpcUrls: {
817
- readonly default: {
818
- readonly http: readonly ["https://api.avax.network/ext/bc/C/rpc"];
819
- };
820
- };
821
- sourceId?: number | undefined | undefined;
822
- testnet?: boolean | undefined | undefined;
823
- custom?: Record<string, unknown> | undefined;
824
- fees?: import("viem").ChainFees<undefined> | undefined;
825
- serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable<bigint, number>> | undefined;
826
- readonly blockchainId: "AVAX";
827
- readonly blockchainVm: "EVM";
828
- readonly formatters?: undefined | undefined;
829
- } | {
830
- blockExplorers: {
831
- readonly default: {
832
- readonly name: "SnowTrace";
833
- readonly url: "https://testnet.snowtrace.io";
834
- readonly apiUrl: "https://api-testnet.snowtrace.io";
835
- };
836
- };
837
- blockTime?: number | undefined | undefined;
838
- contracts: {
839
- readonly USDC: {
840
- readonly address: "0x5425890298aed601595a70ab815c96711a31bc65";
840
+ readonly USDT: {
841
+ readonly address: "0x9702230a8ea53601f5cd2dc00fdbc13d4df4a8c7";
841
842
  readonly abi: readonly [{
842
843
  readonly type: "event";
843
844
  readonly name: "Approval";
@@ -977,8 +978,45 @@ export declare function getAccounts(client: ExtendedViemClient, params: GetAccou
977
978
  readonly decimals: () => 6;
978
979
  };
979
980
  };
980
- readonly EURC: {
981
- readonly address: "0x5e44db7996c682e92a960b65ac713a54ad815c6b";
981
+ readonly multicall3: {
982
+ readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
983
+ readonly blockCreated: 11907934;
984
+ };
985
+ };
986
+ ensTlds?: readonly string[] | undefined;
987
+ id: 43114;
988
+ name: "Avalanche";
989
+ nativeCurrency: {
990
+ readonly decimals: 18;
991
+ readonly name: "Avalanche";
992
+ readonly symbol: "AVAX";
993
+ };
994
+ experimental_preconfirmationTime?: number | undefined | undefined;
995
+ rpcUrls: {
996
+ readonly default: {
997
+ readonly http: readonly ["https://api.avax.network/ext/bc/C/rpc"];
998
+ };
999
+ };
1000
+ sourceId?: number | undefined | undefined;
1001
+ testnet?: boolean | undefined | undefined;
1002
+ custom?: Record<string, unknown> | undefined;
1003
+ fees?: import("viem").ChainFees<undefined> | undefined;
1004
+ serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable<bigint, number>> | undefined;
1005
+ readonly blockchainId: "AVAX";
1006
+ readonly blockchainVm: "EVM";
1007
+ readonly formatters?: undefined | undefined;
1008
+ } | {
1009
+ blockExplorers: {
1010
+ readonly default: {
1011
+ readonly name: "SnowTrace";
1012
+ readonly url: "https://testnet.snowtrace.io";
1013
+ readonly apiUrl: "https://api-testnet.snowtrace.io";
1014
+ };
1015
+ };
1016
+ blockTime?: number | undefined | undefined;
1017
+ contracts: {
1018
+ readonly USDC: {
1019
+ readonly address: "0x5425890298aed601595a70ab815c96711a31bc65";
982
1020
  readonly abi: readonly [{
983
1021
  readonly type: "event";
984
1022
  readonly name: "Approval";
@@ -1118,45 +1156,8 @@ export declare function getAccounts(client: ExtendedViemClient, params: GetAccou
1118
1156
  readonly decimals: () => 6;
1119
1157
  };
1120
1158
  };
1121
- readonly multicall3: {
1122
- readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
1123
- readonly blockCreated: 7096959;
1124
- };
1125
- };
1126
- ensTlds?: readonly string[] | undefined;
1127
- id: 43113;
1128
- name: "Avalanche Fuji";
1129
- nativeCurrency: {
1130
- readonly decimals: 18;
1131
- readonly name: "Avalanche Fuji";
1132
- readonly symbol: "AVAX";
1133
- };
1134
- experimental_preconfirmationTime?: number | undefined | undefined;
1135
- rpcUrls: {
1136
- readonly default: {
1137
- readonly http: readonly ["https://api.avax-test.network/ext/bc/C/rpc"];
1138
- };
1139
- };
1140
- sourceId?: number | undefined | undefined;
1141
- testnet: true;
1142
- custom?: Record<string, unknown> | undefined;
1143
- fees?: import("viem").ChainFees<undefined> | undefined;
1144
- serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable<bigint, number>> | undefined;
1145
- readonly blockchainId: "AVAX-FUJI";
1146
- readonly blockchainVm: "EVM";
1147
- readonly formatters?: undefined | undefined;
1148
- } | {
1149
- blockExplorers: {
1150
- readonly default: {
1151
- readonly name: "Etherscan";
1152
- readonly url: "https://etherscan.io";
1153
- readonly apiUrl: "https://api.etherscan.io/api";
1154
- };
1155
- };
1156
- blockTime: 12000;
1157
- contracts: {
1158
- readonly USDC: {
1159
- readonly address: "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48";
1159
+ readonly EURC: {
1160
+ readonly address: "0x5e44db7996c682e92a960b65ac713a54ad815c6b";
1160
1161
  readonly abi: readonly [{
1161
1162
  readonly type: "event";
1162
1163
  readonly name: "Approval";
@@ -1296,8 +1297,45 @@ export declare function getAccounts(client: ExtendedViemClient, params: GetAccou
1296
1297
  readonly decimals: () => 6;
1297
1298
  };
1298
1299
  };
1299
- readonly EURC: {
1300
- readonly address: "0x1aBaEA1f7C830bD89Acc67eC4af516284b1bC33c";
1300
+ readonly multicall3: {
1301
+ readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
1302
+ readonly blockCreated: 7096959;
1303
+ };
1304
+ };
1305
+ ensTlds?: readonly string[] | undefined;
1306
+ id: 43113;
1307
+ name: "Avalanche Fuji";
1308
+ nativeCurrency: {
1309
+ readonly decimals: 18;
1310
+ readonly name: "Avalanche Fuji";
1311
+ readonly symbol: "AVAX";
1312
+ };
1313
+ experimental_preconfirmationTime?: number | undefined | undefined;
1314
+ rpcUrls: {
1315
+ readonly default: {
1316
+ readonly http: readonly ["https://api.avax-test.network/ext/bc/C/rpc"];
1317
+ };
1318
+ };
1319
+ sourceId?: number | undefined | undefined;
1320
+ testnet: true;
1321
+ custom?: Record<string, unknown> | undefined;
1322
+ fees?: import("viem").ChainFees<undefined> | undefined;
1323
+ serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable<bigint, number>> | undefined;
1324
+ readonly blockchainId: "AVAX-FUJI";
1325
+ readonly blockchainVm: "EVM";
1326
+ readonly formatters?: undefined | undefined;
1327
+ } | {
1328
+ blockExplorers: {
1329
+ readonly default: {
1330
+ readonly name: "Basescan";
1331
+ readonly url: "https://basescan.org";
1332
+ readonly apiUrl: "https://api.basescan.org/api";
1333
+ };
1334
+ };
1335
+ blockTime: 2000;
1336
+ contracts: {
1337
+ readonly USDC: {
1338
+ readonly address: "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913";
1301
1339
  readonly abi: readonly [{
1302
1340
  readonly type: "event";
1303
1341
  readonly name: "Approval";
@@ -1437,8 +1475,8 @@ export declare function getAccounts(client: ExtendedViemClient, params: GetAccou
1437
1475
  readonly decimals: () => 6;
1438
1476
  };
1439
1477
  };
1440
- readonly USDT: {
1441
- readonly address: "0xdac17f958d2ee523a2206206994597c13d831ec7";
1478
+ readonly EURC: {
1479
+ readonly address: "0x60a3e35cc302bfa44cb288bc5a4f316fdb1adb42";
1442
1480
  readonly abi: readonly [{
1443
1481
  readonly type: "event";
1444
1482
  readonly name: "Approval";
@@ -1578,18 +1616,54 @@ export declare function getAccounts(client: ExtendedViemClient, params: GetAccou
1578
1616
  readonly decimals: () => 6;
1579
1617
  };
1580
1618
  };
1581
- readonly ensUniversalResolver: {
1582
- readonly address: "0xeeeeeeee14d718c2b47d9923deab1335e144eeee";
1583
- readonly blockCreated: 23085558;
1619
+ readonly disputeGameFactory: {
1620
+ readonly 1: {
1621
+ readonly address: "0x43edB88C4B80fDD2AdFF2412A7BebF9dF42cB40e";
1622
+ };
1623
+ };
1624
+ readonly l2OutputOracle: {
1625
+ readonly 1: {
1626
+ readonly address: "0x56315b90c40730925ec5485cf004d835058518A0";
1627
+ };
1584
1628
  };
1585
1629
  readonly multicall3: {
1586
1630
  readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
1587
- readonly blockCreated: 14353601;
1631
+ readonly blockCreated: 5022;
1632
+ };
1633
+ readonly portal: {
1634
+ readonly 1: {
1635
+ readonly address: "0x49048044D57e1C92A77f79988d21Fa8fAF74E97e";
1636
+ readonly blockCreated: 17482143;
1637
+ };
1638
+ };
1639
+ readonly l1StandardBridge: {
1640
+ readonly 1: {
1641
+ readonly address: "0x3154Cf16ccdb4C6d922629664174b904d80F2C35";
1642
+ readonly blockCreated: 17482143;
1643
+ };
1644
+ };
1645
+ readonly gasPriceOracle: {
1646
+ readonly address: "0x420000000000000000000000000000000000000F";
1647
+ };
1648
+ readonly l1Block: {
1649
+ readonly address: "0x4200000000000000000000000000000000000015";
1650
+ };
1651
+ readonly l2CrossDomainMessenger: {
1652
+ readonly address: "0x4200000000000000000000000000000000000007";
1653
+ };
1654
+ readonly l2Erc721Bridge: {
1655
+ readonly address: "0x4200000000000000000000000000000000000014";
1656
+ };
1657
+ readonly l2StandardBridge: {
1658
+ readonly address: "0x4200000000000000000000000000000000000010";
1659
+ };
1660
+ readonly l2ToL1MessagePasser: {
1661
+ readonly address: "0x4200000000000000000000000000000000000016";
1588
1662
  };
1589
1663
  };
1590
1664
  ensTlds?: readonly string[] | undefined;
1591
- id: 1;
1592
- name: "Ethereum";
1665
+ id: 8453;
1666
+ name: "Base";
1593
1667
  nativeCurrency: {
1594
1668
  readonly name: "Ether";
1595
1669
  readonly symbol: "ETH";
@@ -1598,29 +1672,261 @@ export declare function getAccounts(client: ExtendedViemClient, params: GetAccou
1598
1672
  experimental_preconfirmationTime?: number | undefined | undefined;
1599
1673
  rpcUrls: {
1600
1674
  readonly default: {
1601
- readonly http: readonly ["https://eth.merkle.io"];
1675
+ readonly http: readonly ["https://mainnet.base.org"];
1602
1676
  };
1603
1677
  };
1604
- sourceId?: number | undefined | undefined;
1678
+ sourceId: 1;
1605
1679
  testnet?: boolean | undefined | undefined;
1606
1680
  custom?: Record<string, unknown> | undefined;
1607
1681
  fees?: import("viem").ChainFees<undefined> | undefined;
1608
- serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable<bigint, number>> | undefined;
1609
- readonly blockchainId: "ETH";
1682
+ formatters: {
1683
+ readonly block: {
1684
+ exclude: [] | undefined;
1685
+ format: (args: import("viem/chains").OpStackRpcBlock) => {
1686
+ baseFeePerGas: bigint | null;
1687
+ blobGasUsed: bigint;
1688
+ difficulty: bigint;
1689
+ excessBlobGas: bigint;
1690
+ extraData: import("viem").Hex;
1691
+ gasLimit: bigint;
1692
+ gasUsed: bigint;
1693
+ hash: `0x${string}` | null;
1694
+ logsBloom: `0x${string}` | null;
1695
+ miner: import("abitype").Address;
1696
+ mixHash: import("viem").Hash;
1697
+ nonce: `0x${string}` | null;
1698
+ number: bigint | null;
1699
+ parentBeaconBlockRoot?: `0x${string}` | undefined;
1700
+ parentHash: import("viem").Hash;
1701
+ receiptsRoot: import("viem").Hex;
1702
+ sealFields: import("viem").Hex[];
1703
+ sha3Uncles: import("viem").Hash;
1704
+ size: bigint;
1705
+ stateRoot: import("viem").Hash;
1706
+ timestamp: bigint;
1707
+ totalDifficulty: bigint | null;
1708
+ transactions: `0x${string}`[] | import("viem/chains").OpStackTransaction<boolean>[];
1709
+ transactionsRoot: import("viem").Hash;
1710
+ uncles: import("viem").Hash[];
1711
+ withdrawals?: import("viem").Withdrawal[] | undefined | undefined;
1712
+ withdrawalsRoot?: `0x${string}` | undefined;
1713
+ } & {};
1714
+ type: "block";
1715
+ };
1716
+ readonly transaction: {
1717
+ exclude: [] | undefined;
1718
+ format: (args: import("viem/chains").OpStackRpcTransaction) => ({
1719
+ blockHash: `0x${string}` | null;
1720
+ blockNumber: bigint | null;
1721
+ from: import("abitype").Address;
1722
+ gas: bigint;
1723
+ hash: import("viem").Hash;
1724
+ input: import("viem").Hex;
1725
+ nonce: number;
1726
+ r: import("viem").Hex;
1727
+ s: import("viem").Hex;
1728
+ to: import("abitype").Address | null;
1729
+ transactionIndex: number | null;
1730
+ typeHex: import("viem").Hex | null;
1731
+ v: bigint;
1732
+ value: bigint;
1733
+ yParity: number;
1734
+ gasPrice?: undefined | undefined;
1735
+ maxFeePerBlobGas?: undefined | undefined;
1736
+ maxFeePerGas: bigint;
1737
+ maxPriorityFeePerGas: bigint;
1738
+ isSystemTx?: boolean;
1739
+ mint?: bigint | undefined | undefined;
1740
+ sourceHash: import("viem").Hex;
1741
+ type: "deposit";
1742
+ } | {
1743
+ r: import("viem").Hex;
1744
+ s: import("viem").Hex;
1745
+ v: bigint;
1746
+ to: import("abitype").Address | null;
1747
+ from: import("abitype").Address;
1748
+ gas: bigint;
1749
+ nonce: number;
1750
+ value: bigint;
1751
+ blockHash: `0x${string}` | null;
1752
+ blockNumber: bigint | null;
1753
+ hash: import("viem").Hash;
1754
+ input: import("viem").Hex;
1755
+ transactionIndex: number | null;
1756
+ typeHex: import("viem").Hex | null;
1757
+ accessList?: undefined | undefined;
1758
+ authorizationList?: undefined | undefined;
1759
+ blobVersionedHashes?: undefined | undefined;
1760
+ chainId?: number | undefined;
1761
+ yParity?: undefined | undefined;
1762
+ type: "legacy";
1763
+ gasPrice: bigint;
1764
+ maxFeePerBlobGas?: undefined | undefined;
1765
+ maxFeePerGas?: undefined | undefined;
1766
+ maxPriorityFeePerGas?: undefined | undefined;
1767
+ isSystemTx?: undefined | undefined;
1768
+ mint?: undefined | undefined;
1769
+ sourceHash?: undefined | undefined;
1770
+ } | {
1771
+ blockHash: `0x${string}` | null;
1772
+ blockNumber: bigint | null;
1773
+ from: import("abitype").Address;
1774
+ gas: bigint;
1775
+ hash: import("viem").Hash;
1776
+ input: import("viem").Hex;
1777
+ nonce: number;
1778
+ r: import("viem").Hex;
1779
+ s: import("viem").Hex;
1780
+ to: import("abitype").Address | null;
1781
+ transactionIndex: number | null;
1782
+ typeHex: import("viem").Hex | null;
1783
+ v: bigint;
1784
+ value: bigint;
1785
+ yParity: number;
1786
+ accessList: import("viem").AccessList;
1787
+ authorizationList?: undefined | undefined;
1788
+ blobVersionedHashes?: undefined | undefined;
1789
+ chainId: number;
1790
+ type: "eip2930";
1791
+ gasPrice: bigint;
1792
+ maxFeePerBlobGas?: undefined | undefined;
1793
+ maxFeePerGas?: undefined | undefined;
1794
+ maxPriorityFeePerGas?: undefined | undefined;
1795
+ isSystemTx?: undefined | undefined;
1796
+ mint?: undefined | undefined;
1797
+ sourceHash?: undefined | undefined;
1798
+ } | {
1799
+ blockHash: `0x${string}` | null;
1800
+ blockNumber: bigint | null;
1801
+ from: import("abitype").Address;
1802
+ gas: bigint;
1803
+ hash: import("viem").Hash;
1804
+ input: import("viem").Hex;
1805
+ nonce: number;
1806
+ r: import("viem").Hex;
1807
+ s: import("viem").Hex;
1808
+ to: import("abitype").Address | null;
1809
+ transactionIndex: number | null;
1810
+ typeHex: import("viem").Hex | null;
1811
+ v: bigint;
1812
+ value: bigint;
1813
+ yParity: number;
1814
+ accessList: import("viem").AccessList;
1815
+ authorizationList?: undefined | undefined;
1816
+ blobVersionedHashes?: undefined | undefined;
1817
+ chainId: number;
1818
+ type: "eip1559";
1819
+ gasPrice?: undefined | undefined;
1820
+ maxFeePerBlobGas?: undefined | undefined;
1821
+ maxFeePerGas: bigint;
1822
+ maxPriorityFeePerGas: bigint;
1823
+ isSystemTx?: undefined | undefined;
1824
+ mint?: undefined | undefined;
1825
+ sourceHash?: undefined | undefined;
1826
+ } | {
1827
+ blockHash: `0x${string}` | null;
1828
+ blockNumber: bigint | null;
1829
+ from: import("abitype").Address;
1830
+ gas: bigint;
1831
+ hash: import("viem").Hash;
1832
+ input: import("viem").Hex;
1833
+ nonce: number;
1834
+ r: import("viem").Hex;
1835
+ s: import("viem").Hex;
1836
+ to: import("abitype").Address | null;
1837
+ transactionIndex: number | null;
1838
+ typeHex: import("viem").Hex | null;
1839
+ v: bigint;
1840
+ value: bigint;
1841
+ yParity: number;
1842
+ accessList: import("viem").AccessList;
1843
+ authorizationList?: undefined | undefined;
1844
+ blobVersionedHashes: readonly import("viem").Hex[];
1845
+ chainId: number;
1846
+ type: "eip4844";
1847
+ gasPrice?: undefined | undefined;
1848
+ maxFeePerBlobGas: bigint;
1849
+ maxFeePerGas: bigint;
1850
+ maxPriorityFeePerGas: bigint;
1851
+ isSystemTx?: undefined | undefined;
1852
+ mint?: undefined | undefined;
1853
+ sourceHash?: undefined | undefined;
1854
+ } | {
1855
+ blockHash: `0x${string}` | null;
1856
+ blockNumber: bigint | null;
1857
+ from: import("abitype").Address;
1858
+ gas: bigint;
1859
+ hash: import("viem").Hash;
1860
+ input: import("viem").Hex;
1861
+ nonce: number;
1862
+ r: import("viem").Hex;
1863
+ s: import("viem").Hex;
1864
+ to: import("abitype").Address | null;
1865
+ transactionIndex: number | null;
1866
+ typeHex: import("viem").Hex | null;
1867
+ v: bigint;
1868
+ value: bigint;
1869
+ yParity: number;
1870
+ accessList: import("viem").AccessList;
1871
+ authorizationList: import("viem").SignedAuthorizationList;
1872
+ blobVersionedHashes?: undefined | undefined;
1873
+ chainId: number;
1874
+ type: "eip7702";
1875
+ gasPrice?: undefined | undefined;
1876
+ maxFeePerBlobGas?: undefined | undefined;
1877
+ maxFeePerGas: bigint;
1878
+ maxPriorityFeePerGas: bigint;
1879
+ isSystemTx?: undefined | undefined;
1880
+ mint?: undefined | undefined;
1881
+ sourceHash?: undefined | undefined;
1882
+ }) & {};
1883
+ type: "transaction";
1884
+ };
1885
+ readonly transactionReceipt: {
1886
+ exclude: [] | undefined;
1887
+ format: (args: import("viem/chains").OpStackRpcTransactionReceipt) => {
1888
+ blobGasPrice?: bigint | undefined;
1889
+ blobGasUsed?: bigint | undefined;
1890
+ blockHash: import("viem").Hash;
1891
+ blockNumber: bigint;
1892
+ contractAddress: import("abitype").Address | null | undefined;
1893
+ cumulativeGasUsed: bigint;
1894
+ effectiveGasPrice: bigint;
1895
+ from: import("abitype").Address;
1896
+ gasUsed: bigint;
1897
+ logs: import("viem").Log<bigint, number, false>[];
1898
+ logsBloom: import("viem").Hex;
1899
+ root?: `0x${string}` | undefined;
1900
+ status: "success" | "reverted";
1901
+ to: import("abitype").Address | null;
1902
+ transactionHash: import("viem").Hash;
1903
+ transactionIndex: number;
1904
+ type: import("viem").TransactionType;
1905
+ l1GasPrice: bigint | null;
1906
+ l1GasUsed: bigint | null;
1907
+ l1Fee: bigint | null;
1908
+ l1FeeScalar: number | null;
1909
+ } & {};
1910
+ type: "transactionReceipt";
1911
+ };
1912
+ };
1913
+ serializers: {
1914
+ readonly transaction: typeof import("viem/chains").serializeTransactionOpStack;
1915
+ };
1916
+ readonly blockchainId: "BASE";
1610
1917
  readonly blockchainVm: "EVM";
1611
- readonly formatters?: undefined | undefined;
1612
1918
  } | {
1613
1919
  blockExplorers: {
1614
1920
  readonly default: {
1615
- readonly name: "Etherscan";
1616
- readonly url: "https://sepolia.etherscan.io";
1617
- readonly apiUrl: "https://api-sepolia.etherscan.io/api";
1921
+ readonly name: "Basescan";
1922
+ readonly url: "https://sepolia.basescan.org";
1923
+ readonly apiUrl: "https://api-sepolia.basescan.org/api";
1618
1924
  };
1619
1925
  };
1620
- blockTime?: number | undefined | undefined;
1926
+ blockTime: 2000;
1621
1927
  contracts: {
1622
1928
  readonly USDC: {
1623
- readonly address: "0x1c7D4B196Cb0C7B01d743Fbc6116a902379C7238";
1929
+ readonly address: "0x036CbD53842c5426634e7929541eC2318f3dCF7e";
1624
1930
  readonly abi: readonly [{
1625
1931
  readonly type: "event";
1626
1932
  readonly name: "Approval";
@@ -1761,7 +2067,7 @@ export declare function getAccounts(client: ExtendedViemClient, params: GetAccou
1761
2067
  };
1762
2068
  };
1763
2069
  readonly EURC: {
1764
- readonly address: "0x08210F9170F89Ab7658F0B5E3fF39b0E03C594D4";
2070
+ readonly address: "0x808456652fdb597867f38412077A9182bf77359F";
1765
2071
  readonly abi: readonly [{
1766
2072
  readonly type: "event";
1767
2073
  readonly name: "Approval";
@@ -1901,239 +2207,330 @@ export declare function getAccounts(client: ExtendedViemClient, params: GetAccou
1901
2207
  readonly decimals: () => 6;
1902
2208
  };
1903
2209
  };
1904
- readonly multicall3: {
1905
- readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
1906
- readonly blockCreated: 751532;
1907
- };
1908
- readonly ensUniversalResolver: {
1909
- readonly address: "0xeeeeeeee14d718c2b47d9923deab1335e144eeee";
1910
- readonly blockCreated: 8928790;
2210
+ readonly disputeGameFactory: {
2211
+ readonly 11155111: {
2212
+ readonly address: "0xd6E6dBf4F7EA0ac412fD8b65ED297e64BB7a06E1";
2213
+ };
1911
2214
  };
1912
- };
1913
- ensTlds?: readonly string[] | undefined;
1914
- id: 11155111;
1915
- name: "Sepolia";
1916
- nativeCurrency: {
1917
- readonly name: "Sepolia Ether";
1918
- readonly symbol: "ETH";
1919
- readonly decimals: 18;
1920
- };
1921
- experimental_preconfirmationTime?: number | undefined | undefined;
1922
- rpcUrls: {
1923
- readonly default: {
1924
- readonly http: readonly ["https://sepolia.drpc.org"];
2215
+ readonly l2OutputOracle: {
2216
+ readonly 11155111: {
2217
+ readonly address: "0x84457ca9D0163FbC4bbfe4Dfbb20ba46e48DF254";
2218
+ };
1925
2219
  };
1926
- };
1927
- sourceId?: number | undefined | undefined;
1928
- testnet: true;
1929
- custom?: Record<string, unknown> | undefined;
1930
- fees?: import("viem").ChainFees<undefined> | undefined;
1931
- serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable<bigint, number>> | undefined;
1932
- readonly blockchainId: "ETH-SEPOLIA";
1933
- readonly blockchainVm: "EVM";
1934
- readonly formatters?: undefined | undefined;
1935
- } | {
1936
- blockExplorers: {
1937
- readonly default: {
1938
- readonly name: "PolygonScan";
1939
- readonly url: "https://polygonscan.com";
1940
- readonly apiUrl: "https://api.polygonscan.com/api";
2220
+ readonly portal: {
2221
+ readonly 11155111: {
2222
+ readonly address: "0x49f53e41452c74589e85ca1677426ba426459e85";
2223
+ readonly blockCreated: 4446677;
2224
+ };
1941
2225
  };
1942
- };
1943
- blockTime?: number | undefined | undefined;
1944
- contracts: {
1945
- readonly USDC: {
1946
- readonly address: "0x3c499c542cef5e3811e1192ce70d8cc03d5c3359";
1947
- readonly abi: readonly [{
1948
- readonly type: "event";
1949
- readonly name: "Approval";
1950
- readonly inputs: readonly [{
1951
- readonly indexed: true;
1952
- readonly name: "owner";
1953
- readonly type: "address";
1954
- }, {
1955
- readonly indexed: true;
1956
- readonly name: "spender";
1957
- readonly type: "address";
1958
- }, {
1959
- readonly indexed: false;
1960
- readonly name: "value";
1961
- readonly type: "uint256";
1962
- }];
1963
- }, {
1964
- readonly type: "event";
1965
- readonly name: "Transfer";
1966
- readonly inputs: readonly [{
1967
- readonly indexed: true;
1968
- readonly name: "from";
1969
- readonly type: "address";
1970
- }, {
1971
- readonly indexed: true;
1972
- readonly name: "to";
1973
- readonly type: "address";
1974
- }, {
1975
- readonly indexed: false;
1976
- readonly name: "value";
1977
- readonly type: "uint256";
1978
- }];
1979
- }, {
1980
- readonly type: "function";
1981
- readonly name: "allowance";
1982
- readonly stateMutability: "view";
1983
- readonly inputs: readonly [{
1984
- readonly name: "owner";
1985
- readonly type: "address";
1986
- }, {
1987
- readonly name: "spender";
1988
- readonly type: "address";
1989
- }];
1990
- readonly outputs: readonly [{
1991
- readonly type: "uint256";
1992
- }];
1993
- }, {
1994
- readonly type: "function";
1995
- readonly name: "approve";
1996
- readonly stateMutability: "nonpayable";
1997
- readonly inputs: readonly [{
1998
- readonly name: "spender";
1999
- readonly type: "address";
2000
- }, {
2001
- readonly name: "amount";
2002
- readonly type: "uint256";
2003
- }];
2004
- readonly outputs: readonly [{
2005
- readonly type: "bool";
2006
- }];
2007
- }, {
2008
- readonly type: "function";
2009
- readonly name: "balanceOf";
2010
- readonly stateMutability: "view";
2011
- readonly inputs: readonly [{
2012
- readonly name: "account";
2013
- readonly type: "address";
2014
- }];
2015
- readonly outputs: readonly [{
2016
- readonly type: "uint256";
2017
- }];
2018
- }, {
2019
- readonly type: "function";
2020
- readonly name: "decimals";
2021
- readonly stateMutability: "view";
2022
- readonly inputs: readonly [];
2023
- readonly outputs: readonly [{
2024
- readonly type: "uint8";
2025
- }];
2026
- }, {
2027
- readonly type: "function";
2028
- readonly name: "name";
2029
- readonly stateMutability: "view";
2030
- readonly inputs: readonly [];
2031
- readonly outputs: readonly [{
2032
- readonly type: "string";
2033
- }];
2034
- }, {
2035
- readonly type: "function";
2036
- readonly name: "symbol";
2037
- readonly stateMutability: "view";
2038
- readonly inputs: readonly [];
2039
- readonly outputs: readonly [{
2040
- readonly type: "string";
2041
- }];
2042
- }, {
2043
- readonly type: "function";
2044
- readonly name: "totalSupply";
2045
- readonly stateMutability: "view";
2046
- readonly inputs: readonly [];
2047
- readonly outputs: readonly [{
2048
- readonly type: "uint256";
2049
- }];
2050
- }, {
2051
- readonly type: "function";
2052
- readonly name: "transfer";
2053
- readonly stateMutability: "nonpayable";
2054
- readonly inputs: readonly [{
2055
- readonly name: "recipient";
2056
- readonly type: "address";
2057
- }, {
2058
- readonly name: "amount";
2059
- readonly type: "uint256";
2060
- }];
2061
- readonly outputs: readonly [{
2062
- readonly type: "bool";
2063
- }];
2064
- }, {
2065
- readonly type: "function";
2066
- readonly name: "transferFrom";
2067
- readonly stateMutability: "nonpayable";
2068
- readonly inputs: readonly [{
2069
- readonly name: "sender";
2070
- readonly type: "address";
2071
- }, {
2072
- readonly name: "recipient";
2073
- readonly type: "address";
2074
- }, {
2075
- readonly name: "amount";
2076
- readonly type: "uint256";
2077
- }];
2078
- readonly outputs: readonly [{
2079
- readonly type: "bool";
2080
- }];
2081
- }];
2082
- readonly read: {
2083
- readonly decimals: () => 6;
2226
+ readonly l1StandardBridge: {
2227
+ readonly 11155111: {
2228
+ readonly address: "0xfd0Bf71F60660E2f608ed56e1659C450eB113120";
2229
+ readonly blockCreated: 4446677;
2084
2230
  };
2085
2231
  };
2086
2232
  readonly multicall3: {
2087
2233
  readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
2088
- readonly blockCreated: 25770160;
2234
+ readonly blockCreated: 1059647;
2235
+ };
2236
+ readonly gasPriceOracle: {
2237
+ readonly address: "0x420000000000000000000000000000000000000F";
2238
+ };
2239
+ readonly l1Block: {
2240
+ readonly address: "0x4200000000000000000000000000000000000015";
2241
+ };
2242
+ readonly l2CrossDomainMessenger: {
2243
+ readonly address: "0x4200000000000000000000000000000000000007";
2244
+ };
2245
+ readonly l2Erc721Bridge: {
2246
+ readonly address: "0x4200000000000000000000000000000000000014";
2247
+ };
2248
+ readonly l2StandardBridge: {
2249
+ readonly address: "0x4200000000000000000000000000000000000010";
2250
+ };
2251
+ readonly l2ToL1MessagePasser: {
2252
+ readonly address: "0x4200000000000000000000000000000000000016";
2089
2253
  };
2090
2254
  };
2091
2255
  ensTlds?: readonly string[] | undefined;
2092
- id: 137;
2093
- name: "Polygon";
2256
+ id: 84532;
2257
+ name: "Base Sepolia";
2094
2258
  nativeCurrency: {
2095
- readonly name: "POL";
2096
- readonly symbol: "POL";
2259
+ readonly name: "Sepolia Ether";
2260
+ readonly symbol: "ETH";
2097
2261
  readonly decimals: 18;
2098
2262
  };
2099
2263
  experimental_preconfirmationTime?: number | undefined | undefined;
2100
2264
  rpcUrls: {
2101
2265
  readonly default: {
2102
- readonly http: readonly ["https://polygon-rpc.com"];
2266
+ readonly http: readonly ["https://sepolia.base.org"];
2103
2267
  };
2104
2268
  };
2105
- sourceId?: number | undefined | undefined;
2106
- testnet?: boolean | undefined | undefined;
2269
+ sourceId: 11155111;
2270
+ testnet: true;
2107
2271
  custom?: Record<string, unknown> | undefined;
2108
2272
  fees?: import("viem").ChainFees<undefined> | undefined;
2109
- serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable<bigint, number>> | undefined;
2110
- readonly blockchainId: "MATIC";
2111
- readonly blockchainVm: "EVM";
2112
- readonly formatters?: undefined | undefined;
2113
- } | {
2114
- blockExplorers: {
2115
- readonly default: {
2116
- readonly name: "PolygonScan";
2117
- readonly url: "https://amoy.polygonscan.com";
2118
- readonly apiUrl: "https://api-amoy.polygonscan.com/api";
2119
- };
2120
- };
2121
- blockTime?: number | undefined | undefined;
2122
- contracts: {
2123
- readonly USDC: {
2124
- readonly address: "0x41e94eb019c0762f9bfcf9fb1e58725bfb0e7582";
2125
- readonly abi: readonly [{
2126
- readonly type: "event";
2127
- readonly name: "Approval";
2128
- readonly inputs: readonly [{
2129
- readonly indexed: true;
2130
- readonly name: "owner";
2131
- readonly type: "address";
2132
- }, {
2133
- readonly indexed: true;
2134
- readonly name: "spender";
2135
- readonly type: "address";
2136
- }, {
2273
+ formatters: {
2274
+ readonly block: {
2275
+ exclude: [] | undefined;
2276
+ format: (args: import("viem/chains").OpStackRpcBlock) => {
2277
+ baseFeePerGas: bigint | null;
2278
+ blobGasUsed: bigint;
2279
+ difficulty: bigint;
2280
+ excessBlobGas: bigint;
2281
+ extraData: import("viem").Hex;
2282
+ gasLimit: bigint;
2283
+ gasUsed: bigint;
2284
+ hash: `0x${string}` | null;
2285
+ logsBloom: `0x${string}` | null;
2286
+ miner: import("abitype").Address;
2287
+ mixHash: import("viem").Hash;
2288
+ nonce: `0x${string}` | null;
2289
+ number: bigint | null;
2290
+ parentBeaconBlockRoot?: `0x${string}` | undefined;
2291
+ parentHash: import("viem").Hash;
2292
+ receiptsRoot: import("viem").Hex;
2293
+ sealFields: import("viem").Hex[];
2294
+ sha3Uncles: import("viem").Hash;
2295
+ size: bigint;
2296
+ stateRoot: import("viem").Hash;
2297
+ timestamp: bigint;
2298
+ totalDifficulty: bigint | null;
2299
+ transactions: `0x${string}`[] | import("viem/chains").OpStackTransaction<boolean>[];
2300
+ transactionsRoot: import("viem").Hash;
2301
+ uncles: import("viem").Hash[];
2302
+ withdrawals?: import("viem").Withdrawal[] | undefined | undefined;
2303
+ withdrawalsRoot?: `0x${string}` | undefined;
2304
+ } & {};
2305
+ type: "block";
2306
+ };
2307
+ readonly transaction: {
2308
+ exclude: [] | undefined;
2309
+ format: (args: import("viem/chains").OpStackRpcTransaction) => ({
2310
+ blockHash: `0x${string}` | null;
2311
+ blockNumber: bigint | null;
2312
+ from: import("abitype").Address;
2313
+ gas: bigint;
2314
+ hash: import("viem").Hash;
2315
+ input: import("viem").Hex;
2316
+ nonce: number;
2317
+ r: import("viem").Hex;
2318
+ s: import("viem").Hex;
2319
+ to: import("abitype").Address | null;
2320
+ transactionIndex: number | null;
2321
+ typeHex: import("viem").Hex | null;
2322
+ v: bigint;
2323
+ value: bigint;
2324
+ yParity: number;
2325
+ gasPrice?: undefined | undefined;
2326
+ maxFeePerBlobGas?: undefined | undefined;
2327
+ maxFeePerGas: bigint;
2328
+ maxPriorityFeePerGas: bigint;
2329
+ isSystemTx?: boolean;
2330
+ mint?: bigint | undefined | undefined;
2331
+ sourceHash: import("viem").Hex;
2332
+ type: "deposit";
2333
+ } | {
2334
+ r: import("viem").Hex;
2335
+ s: import("viem").Hex;
2336
+ v: bigint;
2337
+ to: import("abitype").Address | null;
2338
+ from: import("abitype").Address;
2339
+ gas: bigint;
2340
+ nonce: number;
2341
+ value: bigint;
2342
+ blockHash: `0x${string}` | null;
2343
+ blockNumber: bigint | null;
2344
+ hash: import("viem").Hash;
2345
+ input: import("viem").Hex;
2346
+ transactionIndex: number | null;
2347
+ typeHex: import("viem").Hex | null;
2348
+ accessList?: undefined | undefined;
2349
+ authorizationList?: undefined | undefined;
2350
+ blobVersionedHashes?: undefined | undefined;
2351
+ chainId?: number | undefined;
2352
+ yParity?: undefined | undefined;
2353
+ type: "legacy";
2354
+ gasPrice: bigint;
2355
+ maxFeePerBlobGas?: undefined | undefined;
2356
+ maxFeePerGas?: undefined | undefined;
2357
+ maxPriorityFeePerGas?: undefined | undefined;
2358
+ isSystemTx?: undefined | undefined;
2359
+ mint?: undefined | undefined;
2360
+ sourceHash?: undefined | undefined;
2361
+ } | {
2362
+ blockHash: `0x${string}` | null;
2363
+ blockNumber: bigint | null;
2364
+ from: import("abitype").Address;
2365
+ gas: bigint;
2366
+ hash: import("viem").Hash;
2367
+ input: import("viem").Hex;
2368
+ nonce: number;
2369
+ r: import("viem").Hex;
2370
+ s: import("viem").Hex;
2371
+ to: import("abitype").Address | null;
2372
+ transactionIndex: number | null;
2373
+ typeHex: import("viem").Hex | null;
2374
+ v: bigint;
2375
+ value: bigint;
2376
+ yParity: number;
2377
+ accessList: import("viem").AccessList;
2378
+ authorizationList?: undefined | undefined;
2379
+ blobVersionedHashes?: undefined | undefined;
2380
+ chainId: number;
2381
+ type: "eip2930";
2382
+ gasPrice: bigint;
2383
+ maxFeePerBlobGas?: undefined | undefined;
2384
+ maxFeePerGas?: undefined | undefined;
2385
+ maxPriorityFeePerGas?: undefined | undefined;
2386
+ isSystemTx?: undefined | undefined;
2387
+ mint?: undefined | undefined;
2388
+ sourceHash?: undefined | undefined;
2389
+ } | {
2390
+ blockHash: `0x${string}` | null;
2391
+ blockNumber: bigint | null;
2392
+ from: import("abitype").Address;
2393
+ gas: bigint;
2394
+ hash: import("viem").Hash;
2395
+ input: import("viem").Hex;
2396
+ nonce: number;
2397
+ r: import("viem").Hex;
2398
+ s: import("viem").Hex;
2399
+ to: import("abitype").Address | null;
2400
+ transactionIndex: number | null;
2401
+ typeHex: import("viem").Hex | null;
2402
+ v: bigint;
2403
+ value: bigint;
2404
+ yParity: number;
2405
+ accessList: import("viem").AccessList;
2406
+ authorizationList?: undefined | undefined;
2407
+ blobVersionedHashes?: undefined | undefined;
2408
+ chainId: number;
2409
+ type: "eip1559";
2410
+ gasPrice?: undefined | undefined;
2411
+ maxFeePerBlobGas?: undefined | undefined;
2412
+ maxFeePerGas: bigint;
2413
+ maxPriorityFeePerGas: bigint;
2414
+ isSystemTx?: undefined | undefined;
2415
+ mint?: undefined | undefined;
2416
+ sourceHash?: undefined | undefined;
2417
+ } | {
2418
+ blockHash: `0x${string}` | null;
2419
+ blockNumber: bigint | null;
2420
+ from: import("abitype").Address;
2421
+ gas: bigint;
2422
+ hash: import("viem").Hash;
2423
+ input: import("viem").Hex;
2424
+ nonce: number;
2425
+ r: import("viem").Hex;
2426
+ s: import("viem").Hex;
2427
+ to: import("abitype").Address | null;
2428
+ transactionIndex: number | null;
2429
+ typeHex: import("viem").Hex | null;
2430
+ v: bigint;
2431
+ value: bigint;
2432
+ yParity: number;
2433
+ accessList: import("viem").AccessList;
2434
+ authorizationList?: undefined | undefined;
2435
+ blobVersionedHashes: readonly import("viem").Hex[];
2436
+ chainId: number;
2437
+ type: "eip4844";
2438
+ gasPrice?: undefined | undefined;
2439
+ maxFeePerBlobGas: bigint;
2440
+ maxFeePerGas: bigint;
2441
+ maxPriorityFeePerGas: bigint;
2442
+ isSystemTx?: undefined | undefined;
2443
+ mint?: undefined | undefined;
2444
+ sourceHash?: undefined | undefined;
2445
+ } | {
2446
+ blockHash: `0x${string}` | null;
2447
+ blockNumber: bigint | null;
2448
+ from: import("abitype").Address;
2449
+ gas: bigint;
2450
+ hash: import("viem").Hash;
2451
+ input: import("viem").Hex;
2452
+ nonce: number;
2453
+ r: import("viem").Hex;
2454
+ s: import("viem").Hex;
2455
+ to: import("abitype").Address | null;
2456
+ transactionIndex: number | null;
2457
+ typeHex: import("viem").Hex | null;
2458
+ v: bigint;
2459
+ value: bigint;
2460
+ yParity: number;
2461
+ accessList: import("viem").AccessList;
2462
+ authorizationList: import("viem").SignedAuthorizationList;
2463
+ blobVersionedHashes?: undefined | undefined;
2464
+ chainId: number;
2465
+ type: "eip7702";
2466
+ gasPrice?: undefined | undefined;
2467
+ maxFeePerBlobGas?: undefined | undefined;
2468
+ maxFeePerGas: bigint;
2469
+ maxPriorityFeePerGas: bigint;
2470
+ isSystemTx?: undefined | undefined;
2471
+ mint?: undefined | undefined;
2472
+ sourceHash?: undefined | undefined;
2473
+ }) & {};
2474
+ type: "transaction";
2475
+ };
2476
+ readonly transactionReceipt: {
2477
+ exclude: [] | undefined;
2478
+ format: (args: import("viem/chains").OpStackRpcTransactionReceipt) => {
2479
+ blobGasPrice?: bigint | undefined;
2480
+ blobGasUsed?: bigint | undefined;
2481
+ blockHash: import("viem").Hash;
2482
+ blockNumber: bigint;
2483
+ contractAddress: import("abitype").Address | null | undefined;
2484
+ cumulativeGasUsed: bigint;
2485
+ effectiveGasPrice: bigint;
2486
+ from: import("abitype").Address;
2487
+ gasUsed: bigint;
2488
+ logs: import("viem").Log<bigint, number, false>[];
2489
+ logsBloom: import("viem").Hex;
2490
+ root?: `0x${string}` | undefined;
2491
+ status: "success" | "reverted";
2492
+ to: import("abitype").Address | null;
2493
+ transactionHash: import("viem").Hash;
2494
+ transactionIndex: number;
2495
+ type: import("viem").TransactionType;
2496
+ l1GasPrice: bigint | null;
2497
+ l1GasUsed: bigint | null;
2498
+ l1Fee: bigint | null;
2499
+ l1FeeScalar: number | null;
2500
+ } & {};
2501
+ type: "transactionReceipt";
2502
+ };
2503
+ };
2504
+ serializers: {
2505
+ readonly transaction: typeof import("viem/chains").serializeTransactionOpStack;
2506
+ };
2507
+ readonly blockchainId: "BASE-SEPOLIA";
2508
+ readonly blockchainVm: "EVM";
2509
+ readonly network: "base-sepolia";
2510
+ } | {
2511
+ blockExplorers: {
2512
+ readonly default: {
2513
+ readonly name: "Etherscan";
2514
+ readonly url: "https://etherscan.io";
2515
+ readonly apiUrl: "https://api.etherscan.io/api";
2516
+ };
2517
+ };
2518
+ blockTime: 12000;
2519
+ contracts: {
2520
+ readonly USDC: {
2521
+ readonly address: "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48";
2522
+ readonly abi: readonly [{
2523
+ readonly type: "event";
2524
+ readonly name: "Approval";
2525
+ readonly inputs: readonly [{
2526
+ readonly indexed: true;
2527
+ readonly name: "owner";
2528
+ readonly type: "address";
2529
+ }, {
2530
+ readonly indexed: true;
2531
+ readonly name: "spender";
2532
+ readonly type: "address";
2533
+ }, {
2137
2534
  readonly indexed: false;
2138
2535
  readonly name: "value";
2139
2536
  readonly type: "uint256";
@@ -2261,45 +2658,8 @@ export declare function getAccounts(client: ExtendedViemClient, params: GetAccou
2261
2658
  readonly decimals: () => 6;
2262
2659
  };
2263
2660
  };
2264
- readonly multicall3: {
2265
- readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
2266
- readonly blockCreated: 3127388;
2267
- };
2268
- };
2269
- ensTlds?: readonly string[] | undefined;
2270
- id: 80002;
2271
- name: "Polygon Amoy";
2272
- nativeCurrency: {
2273
- readonly name: "POL";
2274
- readonly symbol: "POL";
2275
- readonly decimals: 18;
2276
- };
2277
- experimental_preconfirmationTime?: number | undefined | undefined;
2278
- rpcUrls: {
2279
- readonly default: {
2280
- readonly http: readonly ["https://rpc-amoy.polygon.technology"];
2281
- };
2282
- };
2283
- sourceId?: number | undefined | undefined;
2284
- testnet: true;
2285
- custom?: Record<string, unknown> | undefined;
2286
- fees?: import("viem").ChainFees<undefined> | undefined;
2287
- serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable<bigint, number>> | undefined;
2288
- readonly blockchainId: "MATIC-AMOY";
2289
- readonly blockchainVm: "EVM";
2290
- readonly formatters?: undefined | undefined;
2291
- } | {
2292
- blockExplorers: {
2293
- readonly default: {
2294
- readonly name: "Basescan";
2295
- readonly url: "https://basescan.org";
2296
- readonly apiUrl: "https://api.basescan.org/api";
2297
- };
2298
- };
2299
- blockTime: 2000;
2300
- contracts: {
2301
- readonly USDC: {
2302
- readonly address: "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913";
2661
+ readonly EURC: {
2662
+ readonly address: "0x1aBaEA1f7C830bD89Acc67eC4af516284b1bC33c";
2303
2663
  readonly abi: readonly [{
2304
2664
  readonly type: "event";
2305
2665
  readonly name: "Approval";
@@ -2439,8 +2799,8 @@ export declare function getAccounts(client: ExtendedViemClient, params: GetAccou
2439
2799
  readonly decimals: () => 6;
2440
2800
  };
2441
2801
  };
2442
- readonly EURC: {
2443
- readonly address: "0x60a3e35cc302bfa44cb288bc5a4f316fdb1adb42";
2802
+ readonly USDT: {
2803
+ readonly address: "0xdac17f958d2ee523a2206206994597c13d831ec7";
2444
2804
  readonly abi: readonly [{
2445
2805
  readonly type: "event";
2446
2806
  readonly name: "Approval";
@@ -2580,54 +2940,18 @@ export declare function getAccounts(client: ExtendedViemClient, params: GetAccou
2580
2940
  readonly decimals: () => 6;
2581
2941
  };
2582
2942
  };
2583
- readonly disputeGameFactory: {
2584
- readonly 1: {
2585
- readonly address: "0x43edB88C4B80fDD2AdFF2412A7BebF9dF42cB40e";
2586
- };
2587
- };
2588
- readonly l2OutputOracle: {
2589
- readonly 1: {
2590
- readonly address: "0x56315b90c40730925ec5485cf004d835058518A0";
2591
- };
2943
+ readonly ensUniversalResolver: {
2944
+ readonly address: "0xeeeeeeee14d718c2b47d9923deab1335e144eeee";
2945
+ readonly blockCreated: 23085558;
2592
2946
  };
2593
2947
  readonly multicall3: {
2594
2948
  readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
2595
- readonly blockCreated: 5022;
2596
- };
2597
- readonly portal: {
2598
- readonly 1: {
2599
- readonly address: "0x49048044D57e1C92A77f79988d21Fa8fAF74E97e";
2600
- readonly blockCreated: 17482143;
2601
- };
2602
- };
2603
- readonly l1StandardBridge: {
2604
- readonly 1: {
2605
- readonly address: "0x3154Cf16ccdb4C6d922629664174b904d80F2C35";
2606
- readonly blockCreated: 17482143;
2607
- };
2608
- };
2609
- readonly gasPriceOracle: {
2610
- readonly address: "0x420000000000000000000000000000000000000F";
2611
- };
2612
- readonly l1Block: {
2613
- readonly address: "0x4200000000000000000000000000000000000015";
2614
- };
2615
- readonly l2CrossDomainMessenger: {
2616
- readonly address: "0x4200000000000000000000000000000000000007";
2617
- };
2618
- readonly l2Erc721Bridge: {
2619
- readonly address: "0x4200000000000000000000000000000000000014";
2620
- };
2621
- readonly l2StandardBridge: {
2622
- readonly address: "0x4200000000000000000000000000000000000010";
2623
- };
2624
- readonly l2ToL1MessagePasser: {
2625
- readonly address: "0x4200000000000000000000000000000000000016";
2949
+ readonly blockCreated: 14353601;
2626
2950
  };
2627
2951
  };
2628
2952
  ensTlds?: readonly string[] | undefined;
2629
- id: 8453;
2630
- name: "Base";
2953
+ id: 1;
2954
+ name: "Ethereum";
2631
2955
  nativeCurrency: {
2632
2956
  readonly name: "Ether";
2633
2957
  readonly symbol: "ETH";
@@ -2636,261 +2960,352 @@ export declare function getAccounts(client: ExtendedViemClient, params: GetAccou
2636
2960
  experimental_preconfirmationTime?: number | undefined | undefined;
2637
2961
  rpcUrls: {
2638
2962
  readonly default: {
2639
- readonly http: readonly ["https://mainnet.base.org"];
2963
+ readonly http: readonly ["https://eth.merkle.io"];
2640
2964
  };
2641
2965
  };
2642
- sourceId: 1;
2966
+ sourceId?: number | undefined | undefined;
2643
2967
  testnet?: boolean | undefined | undefined;
2644
2968
  custom?: Record<string, unknown> | undefined;
2645
2969
  fees?: import("viem").ChainFees<undefined> | undefined;
2646
- formatters: {
2647
- readonly block: {
2648
- exclude: [] | undefined;
2649
- format: (args: import("viem/chains").OpStackRpcBlock) => {
2650
- baseFeePerGas: bigint | null;
2651
- blobGasUsed: bigint;
2652
- difficulty: bigint;
2653
- excessBlobGas: bigint;
2654
- extraData: import("viem").Hex;
2655
- gasLimit: bigint;
2656
- gasUsed: bigint;
2657
- hash: `0x${string}` | null;
2658
- logsBloom: `0x${string}` | null;
2659
- miner: import("abitype").Address;
2660
- mixHash: import("viem").Hash;
2661
- nonce: `0x${string}` | null;
2662
- number: bigint | null;
2663
- parentBeaconBlockRoot?: `0x${string}` | undefined;
2664
- parentHash: import("viem").Hash;
2665
- receiptsRoot: import("viem").Hex;
2666
- sealFields: import("viem").Hex[];
2667
- sha3Uncles: import("viem").Hash;
2668
- size: bigint;
2669
- stateRoot: import("viem").Hash;
2670
- timestamp: bigint;
2671
- totalDifficulty: bigint | null;
2672
- transactions: `0x${string}`[] | import("viem/chains").OpStackTransaction<boolean>[];
2673
- transactionsRoot: import("viem").Hash;
2674
- uncles: import("viem").Hash[];
2675
- withdrawals?: import("viem").Withdrawal[] | undefined | undefined;
2676
- withdrawalsRoot?: `0x${string}` | undefined;
2677
- } & {};
2678
- type: "block";
2970
+ serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable<bigint, number>> | undefined;
2971
+ readonly blockchainId: "ETH";
2972
+ readonly blockchainVm: "EVM";
2973
+ readonly formatters?: undefined | undefined;
2974
+ } | {
2975
+ blockExplorers: {
2976
+ readonly default: {
2977
+ readonly name: "Etherscan";
2978
+ readonly url: "https://sepolia.etherscan.io";
2979
+ readonly apiUrl: "https://api-sepolia.etherscan.io/api";
2980
+ };
2981
+ };
2982
+ blockTime?: number | undefined | undefined;
2983
+ contracts: {
2984
+ readonly USDC: {
2985
+ readonly address: "0x1c7D4B196Cb0C7B01d743Fbc6116a902379C7238";
2986
+ readonly abi: readonly [{
2987
+ readonly type: "event";
2988
+ readonly name: "Approval";
2989
+ readonly inputs: readonly [{
2990
+ readonly indexed: true;
2991
+ readonly name: "owner";
2992
+ readonly type: "address";
2993
+ }, {
2994
+ readonly indexed: true;
2995
+ readonly name: "spender";
2996
+ readonly type: "address";
2997
+ }, {
2998
+ readonly indexed: false;
2999
+ readonly name: "value";
3000
+ readonly type: "uint256";
3001
+ }];
3002
+ }, {
3003
+ readonly type: "event";
3004
+ readonly name: "Transfer";
3005
+ readonly inputs: readonly [{
3006
+ readonly indexed: true;
3007
+ readonly name: "from";
3008
+ readonly type: "address";
3009
+ }, {
3010
+ readonly indexed: true;
3011
+ readonly name: "to";
3012
+ readonly type: "address";
3013
+ }, {
3014
+ readonly indexed: false;
3015
+ readonly name: "value";
3016
+ readonly type: "uint256";
3017
+ }];
3018
+ }, {
3019
+ readonly type: "function";
3020
+ readonly name: "allowance";
3021
+ readonly stateMutability: "view";
3022
+ readonly inputs: readonly [{
3023
+ readonly name: "owner";
3024
+ readonly type: "address";
3025
+ }, {
3026
+ readonly name: "spender";
3027
+ readonly type: "address";
3028
+ }];
3029
+ readonly outputs: readonly [{
3030
+ readonly type: "uint256";
3031
+ }];
3032
+ }, {
3033
+ readonly type: "function";
3034
+ readonly name: "approve";
3035
+ readonly stateMutability: "nonpayable";
3036
+ readonly inputs: readonly [{
3037
+ readonly name: "spender";
3038
+ readonly type: "address";
3039
+ }, {
3040
+ readonly name: "amount";
3041
+ readonly type: "uint256";
3042
+ }];
3043
+ readonly outputs: readonly [{
3044
+ readonly type: "bool";
3045
+ }];
3046
+ }, {
3047
+ readonly type: "function";
3048
+ readonly name: "balanceOf";
3049
+ readonly stateMutability: "view";
3050
+ readonly inputs: readonly [{
3051
+ readonly name: "account";
3052
+ readonly type: "address";
3053
+ }];
3054
+ readonly outputs: readonly [{
3055
+ readonly type: "uint256";
3056
+ }];
3057
+ }, {
3058
+ readonly type: "function";
3059
+ readonly name: "decimals";
3060
+ readonly stateMutability: "view";
3061
+ readonly inputs: readonly [];
3062
+ readonly outputs: readonly [{
3063
+ readonly type: "uint8";
3064
+ }];
3065
+ }, {
3066
+ readonly type: "function";
3067
+ readonly name: "name";
3068
+ readonly stateMutability: "view";
3069
+ readonly inputs: readonly [];
3070
+ readonly outputs: readonly [{
3071
+ readonly type: "string";
3072
+ }];
3073
+ }, {
3074
+ readonly type: "function";
3075
+ readonly name: "symbol";
3076
+ readonly stateMutability: "view";
3077
+ readonly inputs: readonly [];
3078
+ readonly outputs: readonly [{
3079
+ readonly type: "string";
3080
+ }];
3081
+ }, {
3082
+ readonly type: "function";
3083
+ readonly name: "totalSupply";
3084
+ readonly stateMutability: "view";
3085
+ readonly inputs: readonly [];
3086
+ readonly outputs: readonly [{
3087
+ readonly type: "uint256";
3088
+ }];
3089
+ }, {
3090
+ readonly type: "function";
3091
+ readonly name: "transfer";
3092
+ readonly stateMutability: "nonpayable";
3093
+ readonly inputs: readonly [{
3094
+ readonly name: "recipient";
3095
+ readonly type: "address";
3096
+ }, {
3097
+ readonly name: "amount";
3098
+ readonly type: "uint256";
3099
+ }];
3100
+ readonly outputs: readonly [{
3101
+ readonly type: "bool";
3102
+ }];
3103
+ }, {
3104
+ readonly type: "function";
3105
+ readonly name: "transferFrom";
3106
+ readonly stateMutability: "nonpayable";
3107
+ readonly inputs: readonly [{
3108
+ readonly name: "sender";
3109
+ readonly type: "address";
3110
+ }, {
3111
+ readonly name: "recipient";
3112
+ readonly type: "address";
3113
+ }, {
3114
+ readonly name: "amount";
3115
+ readonly type: "uint256";
3116
+ }];
3117
+ readonly outputs: readonly [{
3118
+ readonly type: "bool";
3119
+ }];
3120
+ }];
3121
+ readonly read: {
3122
+ readonly decimals: () => 6;
3123
+ };
2679
3124
  };
2680
- readonly transaction: {
2681
- exclude: [] | undefined;
2682
- format: (args: import("viem/chains").OpStackRpcTransaction) => ({
2683
- blockHash: `0x${string}` | null;
2684
- blockNumber: bigint | null;
2685
- from: import("abitype").Address;
2686
- gas: bigint;
2687
- hash: import("viem").Hash;
2688
- input: import("viem").Hex;
2689
- nonce: number;
2690
- r: import("viem").Hex;
2691
- s: import("viem").Hex;
2692
- to: import("abitype").Address | null;
2693
- transactionIndex: number | null;
2694
- typeHex: import("viem").Hex | null;
2695
- v: bigint;
2696
- value: bigint;
2697
- yParity: number;
2698
- gasPrice?: undefined | undefined;
2699
- maxFeePerBlobGas?: undefined | undefined;
2700
- maxFeePerGas: bigint;
2701
- maxPriorityFeePerGas: bigint;
2702
- isSystemTx?: boolean;
2703
- mint?: bigint | undefined | undefined;
2704
- sourceHash: import("viem").Hex;
2705
- type: "deposit";
2706
- } | {
2707
- r: import("viem").Hex;
2708
- s: import("viem").Hex;
2709
- v: bigint;
2710
- to: import("abitype").Address | null;
2711
- from: import("abitype").Address;
2712
- gas: bigint;
2713
- nonce: number;
2714
- value: bigint;
2715
- blockHash: `0x${string}` | null;
2716
- blockNumber: bigint | null;
2717
- hash: import("viem").Hash;
2718
- input: import("viem").Hex;
2719
- transactionIndex: number | null;
2720
- typeHex: import("viem").Hex | null;
2721
- accessList?: undefined | undefined;
2722
- authorizationList?: undefined | undefined;
2723
- blobVersionedHashes?: undefined | undefined;
2724
- chainId?: number | undefined;
2725
- yParity?: undefined | undefined;
2726
- type: "legacy";
2727
- gasPrice: bigint;
2728
- maxFeePerBlobGas?: undefined | undefined;
2729
- maxFeePerGas?: undefined | undefined;
2730
- maxPriorityFeePerGas?: undefined | undefined;
2731
- isSystemTx?: undefined | undefined;
2732
- mint?: undefined | undefined;
2733
- sourceHash?: undefined | undefined;
2734
- } | {
2735
- blockHash: `0x${string}` | null;
2736
- blockNumber: bigint | null;
2737
- from: import("abitype").Address;
2738
- gas: bigint;
2739
- hash: import("viem").Hash;
2740
- input: import("viem").Hex;
2741
- nonce: number;
2742
- r: import("viem").Hex;
2743
- s: import("viem").Hex;
2744
- to: import("abitype").Address | null;
2745
- transactionIndex: number | null;
2746
- typeHex: import("viem").Hex | null;
2747
- v: bigint;
2748
- value: bigint;
2749
- yParity: number;
2750
- accessList: import("viem").AccessList;
2751
- authorizationList?: undefined | undefined;
2752
- blobVersionedHashes?: undefined | undefined;
2753
- chainId: number;
2754
- type: "eip2930";
2755
- gasPrice: bigint;
2756
- maxFeePerBlobGas?: undefined | undefined;
2757
- maxFeePerGas?: undefined | undefined;
2758
- maxPriorityFeePerGas?: undefined | undefined;
2759
- isSystemTx?: undefined | undefined;
2760
- mint?: undefined | undefined;
2761
- sourceHash?: undefined | undefined;
2762
- } | {
2763
- blockHash: `0x${string}` | null;
2764
- blockNumber: bigint | null;
2765
- from: import("abitype").Address;
2766
- gas: bigint;
2767
- hash: import("viem").Hash;
2768
- input: import("viem").Hex;
2769
- nonce: number;
2770
- r: import("viem").Hex;
2771
- s: import("viem").Hex;
2772
- to: import("abitype").Address | null;
2773
- transactionIndex: number | null;
2774
- typeHex: import("viem").Hex | null;
2775
- v: bigint;
2776
- value: bigint;
2777
- yParity: number;
2778
- accessList: import("viem").AccessList;
2779
- authorizationList?: undefined | undefined;
2780
- blobVersionedHashes?: undefined | undefined;
2781
- chainId: number;
2782
- type: "eip1559";
2783
- gasPrice?: undefined | undefined;
2784
- maxFeePerBlobGas?: undefined | undefined;
2785
- maxFeePerGas: bigint;
2786
- maxPriorityFeePerGas: bigint;
2787
- isSystemTx?: undefined | undefined;
2788
- mint?: undefined | undefined;
2789
- sourceHash?: undefined | undefined;
2790
- } | {
2791
- blockHash: `0x${string}` | null;
2792
- blockNumber: bigint | null;
2793
- from: import("abitype").Address;
2794
- gas: bigint;
2795
- hash: import("viem").Hash;
2796
- input: import("viem").Hex;
2797
- nonce: number;
2798
- r: import("viem").Hex;
2799
- s: import("viem").Hex;
2800
- to: import("abitype").Address | null;
2801
- transactionIndex: number | null;
2802
- typeHex: import("viem").Hex | null;
2803
- v: bigint;
2804
- value: bigint;
2805
- yParity: number;
2806
- accessList: import("viem").AccessList;
2807
- authorizationList?: undefined | undefined;
2808
- blobVersionedHashes: readonly import("viem").Hex[];
2809
- chainId: number;
2810
- type: "eip4844";
2811
- gasPrice?: undefined | undefined;
2812
- maxFeePerBlobGas: bigint;
2813
- maxFeePerGas: bigint;
2814
- maxPriorityFeePerGas: bigint;
2815
- isSystemTx?: undefined | undefined;
2816
- mint?: undefined | undefined;
2817
- sourceHash?: undefined | undefined;
2818
- } | {
2819
- blockHash: `0x${string}` | null;
2820
- blockNumber: bigint | null;
2821
- from: import("abitype").Address;
2822
- gas: bigint;
2823
- hash: import("viem").Hash;
2824
- input: import("viem").Hex;
2825
- nonce: number;
2826
- r: import("viem").Hex;
2827
- s: import("viem").Hex;
2828
- to: import("abitype").Address | null;
2829
- transactionIndex: number | null;
2830
- typeHex: import("viem").Hex | null;
2831
- v: bigint;
2832
- value: bigint;
2833
- yParity: number;
2834
- accessList: import("viem").AccessList;
2835
- authorizationList: import("viem").SignedAuthorizationList;
2836
- blobVersionedHashes?: undefined | undefined;
2837
- chainId: number;
2838
- type: "eip7702";
2839
- gasPrice?: undefined | undefined;
2840
- maxFeePerBlobGas?: undefined | undefined;
2841
- maxFeePerGas: bigint;
2842
- maxPriorityFeePerGas: bigint;
2843
- isSystemTx?: undefined | undefined;
2844
- mint?: undefined | undefined;
2845
- sourceHash?: undefined | undefined;
2846
- }) & {};
2847
- type: "transaction";
3125
+ readonly EURC: {
3126
+ readonly address: "0x08210F9170F89Ab7658F0B5E3fF39b0E03C594D4";
3127
+ readonly abi: readonly [{
3128
+ readonly type: "event";
3129
+ readonly name: "Approval";
3130
+ readonly inputs: readonly [{
3131
+ readonly indexed: true;
3132
+ readonly name: "owner";
3133
+ readonly type: "address";
3134
+ }, {
3135
+ readonly indexed: true;
3136
+ readonly name: "spender";
3137
+ readonly type: "address";
3138
+ }, {
3139
+ readonly indexed: false;
3140
+ readonly name: "value";
3141
+ readonly type: "uint256";
3142
+ }];
3143
+ }, {
3144
+ readonly type: "event";
3145
+ readonly name: "Transfer";
3146
+ readonly inputs: readonly [{
3147
+ readonly indexed: true;
3148
+ readonly name: "from";
3149
+ readonly type: "address";
3150
+ }, {
3151
+ readonly indexed: true;
3152
+ readonly name: "to";
3153
+ readonly type: "address";
3154
+ }, {
3155
+ readonly indexed: false;
3156
+ readonly name: "value";
3157
+ readonly type: "uint256";
3158
+ }];
3159
+ }, {
3160
+ readonly type: "function";
3161
+ readonly name: "allowance";
3162
+ readonly stateMutability: "view";
3163
+ readonly inputs: readonly [{
3164
+ readonly name: "owner";
3165
+ readonly type: "address";
3166
+ }, {
3167
+ readonly name: "spender";
3168
+ readonly type: "address";
3169
+ }];
3170
+ readonly outputs: readonly [{
3171
+ readonly type: "uint256";
3172
+ }];
3173
+ }, {
3174
+ readonly type: "function";
3175
+ readonly name: "approve";
3176
+ readonly stateMutability: "nonpayable";
3177
+ readonly inputs: readonly [{
3178
+ readonly name: "spender";
3179
+ readonly type: "address";
3180
+ }, {
3181
+ readonly name: "amount";
3182
+ readonly type: "uint256";
3183
+ }];
3184
+ readonly outputs: readonly [{
3185
+ readonly type: "bool";
3186
+ }];
3187
+ }, {
3188
+ readonly type: "function";
3189
+ readonly name: "balanceOf";
3190
+ readonly stateMutability: "view";
3191
+ readonly inputs: readonly [{
3192
+ readonly name: "account";
3193
+ readonly type: "address";
3194
+ }];
3195
+ readonly outputs: readonly [{
3196
+ readonly type: "uint256";
3197
+ }];
3198
+ }, {
3199
+ readonly type: "function";
3200
+ readonly name: "decimals";
3201
+ readonly stateMutability: "view";
3202
+ readonly inputs: readonly [];
3203
+ readonly outputs: readonly [{
3204
+ readonly type: "uint8";
3205
+ }];
3206
+ }, {
3207
+ readonly type: "function";
3208
+ readonly name: "name";
3209
+ readonly stateMutability: "view";
3210
+ readonly inputs: readonly [];
3211
+ readonly outputs: readonly [{
3212
+ readonly type: "string";
3213
+ }];
3214
+ }, {
3215
+ readonly type: "function";
3216
+ readonly name: "symbol";
3217
+ readonly stateMutability: "view";
3218
+ readonly inputs: readonly [];
3219
+ readonly outputs: readonly [{
3220
+ readonly type: "string";
3221
+ }];
3222
+ }, {
3223
+ readonly type: "function";
3224
+ readonly name: "totalSupply";
3225
+ readonly stateMutability: "view";
3226
+ readonly inputs: readonly [];
3227
+ readonly outputs: readonly [{
3228
+ readonly type: "uint256";
3229
+ }];
3230
+ }, {
3231
+ readonly type: "function";
3232
+ readonly name: "transfer";
3233
+ readonly stateMutability: "nonpayable";
3234
+ readonly inputs: readonly [{
3235
+ readonly name: "recipient";
3236
+ readonly type: "address";
3237
+ }, {
3238
+ readonly name: "amount";
3239
+ readonly type: "uint256";
3240
+ }];
3241
+ readonly outputs: readonly [{
3242
+ readonly type: "bool";
3243
+ }];
3244
+ }, {
3245
+ readonly type: "function";
3246
+ readonly name: "transferFrom";
3247
+ readonly stateMutability: "nonpayable";
3248
+ readonly inputs: readonly [{
3249
+ readonly name: "sender";
3250
+ readonly type: "address";
3251
+ }, {
3252
+ readonly name: "recipient";
3253
+ readonly type: "address";
3254
+ }, {
3255
+ readonly name: "amount";
3256
+ readonly type: "uint256";
3257
+ }];
3258
+ readonly outputs: readonly [{
3259
+ readonly type: "bool";
3260
+ }];
3261
+ }];
3262
+ readonly read: {
3263
+ readonly decimals: () => 6;
3264
+ };
2848
3265
  };
2849
- readonly transactionReceipt: {
2850
- exclude: [] | undefined;
2851
- format: (args: import("viem/chains").OpStackRpcTransactionReceipt) => {
2852
- blobGasPrice?: bigint | undefined;
2853
- blobGasUsed?: bigint | undefined;
2854
- blockHash: import("viem").Hash;
2855
- blockNumber: bigint;
2856
- contractAddress: import("abitype").Address | null | undefined;
2857
- cumulativeGasUsed: bigint;
2858
- effectiveGasPrice: bigint;
2859
- from: import("abitype").Address;
2860
- gasUsed: bigint;
2861
- logs: import("viem").Log<bigint, number, false>[];
2862
- logsBloom: import("viem").Hex;
2863
- root?: `0x${string}` | undefined;
2864
- status: "success" | "reverted";
2865
- to: import("abitype").Address | null;
2866
- transactionHash: import("viem").Hash;
2867
- transactionIndex: number;
2868
- type: import("viem").TransactionType;
2869
- l1GasPrice: bigint | null;
2870
- l1GasUsed: bigint | null;
2871
- l1Fee: bigint | null;
2872
- l1FeeScalar: number | null;
2873
- } & {};
2874
- type: "transactionReceipt";
3266
+ readonly multicall3: {
3267
+ readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
3268
+ readonly blockCreated: 751532;
3269
+ };
3270
+ readonly ensUniversalResolver: {
3271
+ readonly address: "0xeeeeeeee14d718c2b47d9923deab1335e144eeee";
3272
+ readonly blockCreated: 8928790;
2875
3273
  };
2876
3274
  };
2877
- serializers: {
2878
- readonly transaction: typeof import("viem/chains").serializeTransactionOpStack;
3275
+ ensTlds?: readonly string[] | undefined;
3276
+ id: 11155111;
3277
+ name: "Sepolia";
3278
+ nativeCurrency: {
3279
+ readonly name: "Sepolia Ether";
3280
+ readonly symbol: "ETH";
3281
+ readonly decimals: 18;
2879
3282
  };
2880
- readonly blockchainId: "BASE";
3283
+ experimental_preconfirmationTime?: number | undefined | undefined;
3284
+ rpcUrls: {
3285
+ readonly default: {
3286
+ readonly http: readonly ["https://sepolia.drpc.org"];
3287
+ };
3288
+ };
3289
+ sourceId?: number | undefined | undefined;
3290
+ testnet: true;
3291
+ custom?: Record<string, unknown> | undefined;
3292
+ fees?: import("viem").ChainFees<undefined> | undefined;
3293
+ serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable<bigint, number>> | undefined;
3294
+ readonly blockchainId: "ETH-SEPOLIA";
2881
3295
  readonly blockchainVm: "EVM";
3296
+ readonly formatters?: undefined | undefined;
2882
3297
  } | {
2883
3298
  blockExplorers: {
2884
3299
  readonly default: {
2885
- readonly name: "Basescan";
2886
- readonly url: "https://sepolia.basescan.org";
2887
- readonly apiUrl: "https://api-sepolia.basescan.org/api";
3300
+ readonly name: "PolygonScan";
3301
+ readonly url: "https://polygonscan.com";
3302
+ readonly apiUrl: "https://api.polygonscan.com/api";
2888
3303
  };
2889
3304
  };
2890
- blockTime: 2000;
3305
+ blockTime?: number | undefined | undefined;
2891
3306
  contracts: {
2892
3307
  readonly USDC: {
2893
- readonly address: "0x036CbD53842c5426634e7929541eC2318f3dCF7e";
3308
+ readonly address: "0x3c499c542cef5e3811e1192ce70d8cc03d5c3359";
2894
3309
  readonly abi: readonly [{
2895
3310
  readonly type: "event";
2896
3311
  readonly name: "Approval";
@@ -3030,8 +3445,45 @@ export declare function getAccounts(client: ExtendedViemClient, params: GetAccou
3030
3445
  readonly decimals: () => 6;
3031
3446
  };
3032
3447
  };
3033
- readonly EURC: {
3034
- readonly address: "0x808456652fdb597867f38412077A9182bf77359F";
3448
+ readonly multicall3: {
3449
+ readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
3450
+ readonly blockCreated: 25770160;
3451
+ };
3452
+ };
3453
+ ensTlds?: readonly string[] | undefined;
3454
+ id: 137;
3455
+ name: "Polygon";
3456
+ nativeCurrency: {
3457
+ readonly name: "POL";
3458
+ readonly symbol: "POL";
3459
+ readonly decimals: 18;
3460
+ };
3461
+ experimental_preconfirmationTime?: number | undefined | undefined;
3462
+ rpcUrls: {
3463
+ readonly default: {
3464
+ readonly http: readonly ["https://polygon-rpc.com"];
3465
+ };
3466
+ };
3467
+ sourceId?: number | undefined | undefined;
3468
+ testnet?: boolean | undefined | undefined;
3469
+ custom?: Record<string, unknown> | undefined;
3470
+ fees?: import("viem").ChainFees<undefined> | undefined;
3471
+ serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable<bigint, number>> | undefined;
3472
+ readonly blockchainId: "MATIC";
3473
+ readonly blockchainVm: "EVM";
3474
+ readonly formatters?: undefined | undefined;
3475
+ } | {
3476
+ blockExplorers: {
3477
+ readonly default: {
3478
+ readonly name: "PolygonScan";
3479
+ readonly url: "https://amoy.polygonscan.com";
3480
+ readonly apiUrl: "https://api-amoy.polygonscan.com/api";
3481
+ };
3482
+ };
3483
+ blockTime?: number | undefined | undefined;
3484
+ contracts: {
3485
+ readonly USDC: {
3486
+ readonly address: "0x41e94eb019c0762f9bfcf9fb1e58725bfb0e7582";
3035
3487
  readonly abi: readonly [{
3036
3488
  readonly type: "event";
3037
3489
  readonly name: "Approval";
@@ -3171,306 +3623,33 @@ export declare function getAccounts(client: ExtendedViemClient, params: GetAccou
3171
3623
  readonly decimals: () => 6;
3172
3624
  };
3173
3625
  };
3174
- readonly disputeGameFactory: {
3175
- readonly 11155111: {
3176
- readonly address: "0xd6E6dBf4F7EA0ac412fD8b65ED297e64BB7a06E1";
3177
- };
3178
- };
3179
- readonly l2OutputOracle: {
3180
- readonly 11155111: {
3181
- readonly address: "0x84457ca9D0163FbC4bbfe4Dfbb20ba46e48DF254";
3182
- };
3183
- };
3184
- readonly portal: {
3185
- readonly 11155111: {
3186
- readonly address: "0x49f53e41452c74589e85ca1677426ba426459e85";
3187
- readonly blockCreated: 4446677;
3188
- };
3189
- };
3190
- readonly l1StandardBridge: {
3191
- readonly 11155111: {
3192
- readonly address: "0xfd0Bf71F60660E2f608ed56e1659C450eB113120";
3193
- readonly blockCreated: 4446677;
3194
- };
3195
- };
3196
- readonly multicall3: {
3197
- readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
3198
- readonly blockCreated: 1059647;
3199
- };
3200
- readonly gasPriceOracle: {
3201
- readonly address: "0x420000000000000000000000000000000000000F";
3202
- };
3203
- readonly l1Block: {
3204
- readonly address: "0x4200000000000000000000000000000000000015";
3205
- };
3206
- readonly l2CrossDomainMessenger: {
3207
- readonly address: "0x4200000000000000000000000000000000000007";
3208
- };
3209
- readonly l2Erc721Bridge: {
3210
- readonly address: "0x4200000000000000000000000000000000000014";
3211
- };
3212
- readonly l2StandardBridge: {
3213
- readonly address: "0x4200000000000000000000000000000000000010";
3214
- };
3215
- readonly l2ToL1MessagePasser: {
3216
- readonly address: "0x4200000000000000000000000000000000000016";
3626
+ readonly multicall3: {
3627
+ readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
3628
+ readonly blockCreated: 3127388;
3217
3629
  };
3218
3630
  };
3219
3631
  ensTlds?: readonly string[] | undefined;
3220
- id: 84532;
3221
- name: "Base Sepolia";
3632
+ id: 80002;
3633
+ name: "Polygon Amoy";
3222
3634
  nativeCurrency: {
3223
- readonly name: "Sepolia Ether";
3224
- readonly symbol: "ETH";
3635
+ readonly name: "POL";
3636
+ readonly symbol: "POL";
3225
3637
  readonly decimals: 18;
3226
3638
  };
3227
3639
  experimental_preconfirmationTime?: number | undefined | undefined;
3228
3640
  rpcUrls: {
3229
3641
  readonly default: {
3230
- readonly http: readonly ["https://sepolia.base.org"];
3642
+ readonly http: readonly ["https://rpc-amoy.polygon.technology"];
3231
3643
  };
3232
3644
  };
3233
- sourceId: 11155111;
3645
+ sourceId?: number | undefined | undefined;
3234
3646
  testnet: true;
3235
3647
  custom?: Record<string, unknown> | undefined;
3236
3648
  fees?: import("viem").ChainFees<undefined> | undefined;
3237
- formatters: {
3238
- readonly block: {
3239
- exclude: [] | undefined;
3240
- format: (args: import("viem/chains").OpStackRpcBlock) => {
3241
- baseFeePerGas: bigint | null;
3242
- blobGasUsed: bigint;
3243
- difficulty: bigint;
3244
- excessBlobGas: bigint;
3245
- extraData: import("viem").Hex;
3246
- gasLimit: bigint;
3247
- gasUsed: bigint;
3248
- hash: `0x${string}` | null;
3249
- logsBloom: `0x${string}` | null;
3250
- miner: import("abitype").Address;
3251
- mixHash: import("viem").Hash;
3252
- nonce: `0x${string}` | null;
3253
- number: bigint | null;
3254
- parentBeaconBlockRoot?: `0x${string}` | undefined;
3255
- parentHash: import("viem").Hash;
3256
- receiptsRoot: import("viem").Hex;
3257
- sealFields: import("viem").Hex[];
3258
- sha3Uncles: import("viem").Hash;
3259
- size: bigint;
3260
- stateRoot: import("viem").Hash;
3261
- timestamp: bigint;
3262
- totalDifficulty: bigint | null;
3263
- transactions: `0x${string}`[] | import("viem/chains").OpStackTransaction<boolean>[];
3264
- transactionsRoot: import("viem").Hash;
3265
- uncles: import("viem").Hash[];
3266
- withdrawals?: import("viem").Withdrawal[] | undefined | undefined;
3267
- withdrawalsRoot?: `0x${string}` | undefined;
3268
- } & {};
3269
- type: "block";
3270
- };
3271
- readonly transaction: {
3272
- exclude: [] | undefined;
3273
- format: (args: import("viem/chains").OpStackRpcTransaction) => ({
3274
- blockHash: `0x${string}` | null;
3275
- blockNumber: bigint | null;
3276
- from: import("abitype").Address;
3277
- gas: bigint;
3278
- hash: import("viem").Hash;
3279
- input: import("viem").Hex;
3280
- nonce: number;
3281
- r: import("viem").Hex;
3282
- s: import("viem").Hex;
3283
- to: import("abitype").Address | null;
3284
- transactionIndex: number | null;
3285
- typeHex: import("viem").Hex | null;
3286
- v: bigint;
3287
- value: bigint;
3288
- yParity: number;
3289
- gasPrice?: undefined | undefined;
3290
- maxFeePerBlobGas?: undefined | undefined;
3291
- maxFeePerGas: bigint;
3292
- maxPriorityFeePerGas: bigint;
3293
- isSystemTx?: boolean;
3294
- mint?: bigint | undefined | undefined;
3295
- sourceHash: import("viem").Hex;
3296
- type: "deposit";
3297
- } | {
3298
- r: import("viem").Hex;
3299
- s: import("viem").Hex;
3300
- v: bigint;
3301
- to: import("abitype").Address | null;
3302
- from: import("abitype").Address;
3303
- gas: bigint;
3304
- nonce: number;
3305
- value: bigint;
3306
- blockHash: `0x${string}` | null;
3307
- blockNumber: bigint | null;
3308
- hash: import("viem").Hash;
3309
- input: import("viem").Hex;
3310
- transactionIndex: number | null;
3311
- typeHex: import("viem").Hex | null;
3312
- accessList?: undefined | undefined;
3313
- authorizationList?: undefined | undefined;
3314
- blobVersionedHashes?: undefined | undefined;
3315
- chainId?: number | undefined;
3316
- yParity?: undefined | undefined;
3317
- type: "legacy";
3318
- gasPrice: bigint;
3319
- maxFeePerBlobGas?: undefined | undefined;
3320
- maxFeePerGas?: undefined | undefined;
3321
- maxPriorityFeePerGas?: undefined | undefined;
3322
- isSystemTx?: undefined | undefined;
3323
- mint?: undefined | undefined;
3324
- sourceHash?: undefined | undefined;
3325
- } | {
3326
- blockHash: `0x${string}` | null;
3327
- blockNumber: bigint | null;
3328
- from: import("abitype").Address;
3329
- gas: bigint;
3330
- hash: import("viem").Hash;
3331
- input: import("viem").Hex;
3332
- nonce: number;
3333
- r: import("viem").Hex;
3334
- s: import("viem").Hex;
3335
- to: import("abitype").Address | null;
3336
- transactionIndex: number | null;
3337
- typeHex: import("viem").Hex | null;
3338
- v: bigint;
3339
- value: bigint;
3340
- yParity: number;
3341
- accessList: import("viem").AccessList;
3342
- authorizationList?: undefined | undefined;
3343
- blobVersionedHashes?: undefined | undefined;
3344
- chainId: number;
3345
- type: "eip2930";
3346
- gasPrice: bigint;
3347
- maxFeePerBlobGas?: undefined | undefined;
3348
- maxFeePerGas?: undefined | undefined;
3349
- maxPriorityFeePerGas?: undefined | undefined;
3350
- isSystemTx?: undefined | undefined;
3351
- mint?: undefined | undefined;
3352
- sourceHash?: undefined | undefined;
3353
- } | {
3354
- blockHash: `0x${string}` | null;
3355
- blockNumber: bigint | null;
3356
- from: import("abitype").Address;
3357
- gas: bigint;
3358
- hash: import("viem").Hash;
3359
- input: import("viem").Hex;
3360
- nonce: number;
3361
- r: import("viem").Hex;
3362
- s: import("viem").Hex;
3363
- to: import("abitype").Address | null;
3364
- transactionIndex: number | null;
3365
- typeHex: import("viem").Hex | null;
3366
- v: bigint;
3367
- value: bigint;
3368
- yParity: number;
3369
- accessList: import("viem").AccessList;
3370
- authorizationList?: undefined | undefined;
3371
- blobVersionedHashes?: undefined | undefined;
3372
- chainId: number;
3373
- type: "eip1559";
3374
- gasPrice?: undefined | undefined;
3375
- maxFeePerBlobGas?: undefined | undefined;
3376
- maxFeePerGas: bigint;
3377
- maxPriorityFeePerGas: bigint;
3378
- isSystemTx?: undefined | undefined;
3379
- mint?: undefined | undefined;
3380
- sourceHash?: undefined | undefined;
3381
- } | {
3382
- blockHash: `0x${string}` | null;
3383
- blockNumber: bigint | null;
3384
- from: import("abitype").Address;
3385
- gas: bigint;
3386
- hash: import("viem").Hash;
3387
- input: import("viem").Hex;
3388
- nonce: number;
3389
- r: import("viem").Hex;
3390
- s: import("viem").Hex;
3391
- to: import("abitype").Address | null;
3392
- transactionIndex: number | null;
3393
- typeHex: import("viem").Hex | null;
3394
- v: bigint;
3395
- value: bigint;
3396
- yParity: number;
3397
- accessList: import("viem").AccessList;
3398
- authorizationList?: undefined | undefined;
3399
- blobVersionedHashes: readonly import("viem").Hex[];
3400
- chainId: number;
3401
- type: "eip4844";
3402
- gasPrice?: undefined | undefined;
3403
- maxFeePerBlobGas: bigint;
3404
- maxFeePerGas: bigint;
3405
- maxPriorityFeePerGas: bigint;
3406
- isSystemTx?: undefined | undefined;
3407
- mint?: undefined | undefined;
3408
- sourceHash?: undefined | undefined;
3409
- } | {
3410
- blockHash: `0x${string}` | null;
3411
- blockNumber: bigint | null;
3412
- from: import("abitype").Address;
3413
- gas: bigint;
3414
- hash: import("viem").Hash;
3415
- input: import("viem").Hex;
3416
- nonce: number;
3417
- r: import("viem").Hex;
3418
- s: import("viem").Hex;
3419
- to: import("abitype").Address | null;
3420
- transactionIndex: number | null;
3421
- typeHex: import("viem").Hex | null;
3422
- v: bigint;
3423
- value: bigint;
3424
- yParity: number;
3425
- accessList: import("viem").AccessList;
3426
- authorizationList: import("viem").SignedAuthorizationList;
3427
- blobVersionedHashes?: undefined | undefined;
3428
- chainId: number;
3429
- type: "eip7702";
3430
- gasPrice?: undefined | undefined;
3431
- maxFeePerBlobGas?: undefined | undefined;
3432
- maxFeePerGas: bigint;
3433
- maxPriorityFeePerGas: bigint;
3434
- isSystemTx?: undefined | undefined;
3435
- mint?: undefined | undefined;
3436
- sourceHash?: undefined | undefined;
3437
- }) & {};
3438
- type: "transaction";
3439
- };
3440
- readonly transactionReceipt: {
3441
- exclude: [] | undefined;
3442
- format: (args: import("viem/chains").OpStackRpcTransactionReceipt) => {
3443
- blobGasPrice?: bigint | undefined;
3444
- blobGasUsed?: bigint | undefined;
3445
- blockHash: import("viem").Hash;
3446
- blockNumber: bigint;
3447
- contractAddress: import("abitype").Address | null | undefined;
3448
- cumulativeGasUsed: bigint;
3449
- effectiveGasPrice: bigint;
3450
- from: import("abitype").Address;
3451
- gasUsed: bigint;
3452
- logs: import("viem").Log<bigint, number, false>[];
3453
- logsBloom: import("viem").Hex;
3454
- root?: `0x${string}` | undefined;
3455
- status: "success" | "reverted";
3456
- to: import("abitype").Address | null;
3457
- transactionHash: import("viem").Hash;
3458
- transactionIndex: number;
3459
- type: import("viem").TransactionType;
3460
- l1GasPrice: bigint | null;
3461
- l1GasUsed: bigint | null;
3462
- l1Fee: bigint | null;
3463
- l1FeeScalar: number | null;
3464
- } & {};
3465
- type: "transactionReceipt";
3466
- };
3467
- };
3468
- serializers: {
3469
- readonly transaction: typeof import("viem/chains").serializeTransactionOpStack;
3470
- };
3471
- readonly blockchainId: "BASE-SEPOLIA";
3649
+ serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable<bigint, number>> | undefined;
3650
+ readonly blockchainId: "MATIC-AMOY";
3472
3651
  readonly blockchainVm: "EVM";
3473
- readonly network: "base-sepolia";
3652
+ readonly formatters?: undefined | undefined;
3474
3653
  } | {
3475
3654
  blockExplorers: {
3476
3655
  readonly default: {