ox 0.8.4 → 0.8.6

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.
@@ -3,7 +3,7 @@
3
3
  *
4
4
  * @see https://github.com/eth-infinitism/account-abstraction/releases
5
5
  */
6
- export type Version = '0.6' | '0.7'
6
+ export type Version = '0.6' | '0.7' | '0.8'
7
7
 
8
8
  /** EntryPoint 0.6 ABI. */
9
9
  export const abiV06 = [
@@ -1412,8 +1412,703 @@ export const abiV07 = [
1412
1412
  { stateMutability: 'payable', type: 'receive' },
1413
1413
  ] as const
1414
1414
 
1415
+ /** EntryPoint 0.8 ABI. */
1416
+ export const abiV08 = [
1417
+ { inputs: [], stateMutability: 'nonpayable', type: 'constructor' },
1418
+ {
1419
+ inputs: [
1420
+ { internalType: 'bool', name: 'success', type: 'bool' },
1421
+ { internalType: 'bytes', name: 'ret', type: 'bytes' },
1422
+ ],
1423
+ name: 'DelegateAndRevert',
1424
+ type: 'error',
1425
+ },
1426
+ {
1427
+ inputs: [
1428
+ { internalType: 'uint256', name: 'opIndex', type: 'uint256' },
1429
+ { internalType: 'string', name: 'reason', type: 'string' },
1430
+ ],
1431
+ name: 'FailedOp',
1432
+ type: 'error',
1433
+ },
1434
+ {
1435
+ inputs: [
1436
+ { internalType: 'uint256', name: 'opIndex', type: 'uint256' },
1437
+ { internalType: 'string', name: 'reason', type: 'string' },
1438
+ { internalType: 'bytes', name: 'inner', type: 'bytes' },
1439
+ ],
1440
+ name: 'FailedOpWithRevert',
1441
+ type: 'error',
1442
+ },
1443
+ { inputs: [], name: 'InvalidShortString', type: 'error' },
1444
+ {
1445
+ inputs: [{ internalType: 'bytes', name: 'returnData', type: 'bytes' }],
1446
+ name: 'PostOpReverted',
1447
+ type: 'error',
1448
+ },
1449
+ { inputs: [], name: 'ReentrancyGuardReentrantCall', type: 'error' },
1450
+ {
1451
+ inputs: [{ internalType: 'address', name: 'sender', type: 'address' }],
1452
+ name: 'SenderAddressResult',
1453
+ type: 'error',
1454
+ },
1455
+ {
1456
+ inputs: [{ internalType: 'address', name: 'aggregator', type: 'address' }],
1457
+ name: 'SignatureValidationFailed',
1458
+ type: 'error',
1459
+ },
1460
+ {
1461
+ inputs: [{ internalType: 'string', name: 'str', type: 'string' }],
1462
+ name: 'StringTooLong',
1463
+ type: 'error',
1464
+ },
1465
+ {
1466
+ anonymous: false,
1467
+ inputs: [
1468
+ {
1469
+ indexed: true,
1470
+ internalType: 'bytes32',
1471
+ name: 'userOpHash',
1472
+ type: 'bytes32',
1473
+ },
1474
+ {
1475
+ indexed: true,
1476
+ internalType: 'address',
1477
+ name: 'sender',
1478
+ type: 'address',
1479
+ },
1480
+ {
1481
+ indexed: false,
1482
+ internalType: 'address',
1483
+ name: 'factory',
1484
+ type: 'address',
1485
+ },
1486
+ {
1487
+ indexed: false,
1488
+ internalType: 'address',
1489
+ name: 'paymaster',
1490
+ type: 'address',
1491
+ },
1492
+ ],
1493
+ name: 'AccountDeployed',
1494
+ type: 'event',
1495
+ },
1496
+ { anonymous: false, inputs: [], name: 'BeforeExecution', type: 'event' },
1497
+ {
1498
+ anonymous: false,
1499
+ inputs: [
1500
+ {
1501
+ indexed: true,
1502
+ internalType: 'address',
1503
+ name: 'account',
1504
+ type: 'address',
1505
+ },
1506
+ {
1507
+ indexed: false,
1508
+ internalType: 'uint256',
1509
+ name: 'totalDeposit',
1510
+ type: 'uint256',
1511
+ },
1512
+ ],
1513
+ name: 'Deposited',
1514
+ type: 'event',
1515
+ },
1516
+ { anonymous: false, inputs: [], name: 'EIP712DomainChanged', type: 'event' },
1517
+ {
1518
+ anonymous: false,
1519
+ inputs: [
1520
+ {
1521
+ indexed: true,
1522
+ internalType: 'bytes32',
1523
+ name: 'userOpHash',
1524
+ type: 'bytes32',
1525
+ },
1526
+ {
1527
+ indexed: true,
1528
+ internalType: 'address',
1529
+ name: 'sender',
1530
+ type: 'address',
1531
+ },
1532
+ {
1533
+ indexed: false,
1534
+ internalType: 'uint256',
1535
+ name: 'nonce',
1536
+ type: 'uint256',
1537
+ },
1538
+ {
1539
+ indexed: false,
1540
+ internalType: 'bytes',
1541
+ name: 'revertReason',
1542
+ type: 'bytes',
1543
+ },
1544
+ ],
1545
+ name: 'PostOpRevertReason',
1546
+ type: 'event',
1547
+ },
1548
+ {
1549
+ anonymous: false,
1550
+ inputs: [
1551
+ {
1552
+ indexed: true,
1553
+ internalType: 'address',
1554
+ name: 'aggregator',
1555
+ type: 'address',
1556
+ },
1557
+ ],
1558
+ name: 'SignatureAggregatorChanged',
1559
+ type: 'event',
1560
+ },
1561
+ {
1562
+ anonymous: false,
1563
+ inputs: [
1564
+ {
1565
+ indexed: true,
1566
+ internalType: 'address',
1567
+ name: 'account',
1568
+ type: 'address',
1569
+ },
1570
+ {
1571
+ indexed: false,
1572
+ internalType: 'uint256',
1573
+ name: 'totalStaked',
1574
+ type: 'uint256',
1575
+ },
1576
+ {
1577
+ indexed: false,
1578
+ internalType: 'uint256',
1579
+ name: 'unstakeDelaySec',
1580
+ type: 'uint256',
1581
+ },
1582
+ ],
1583
+ name: 'StakeLocked',
1584
+ type: 'event',
1585
+ },
1586
+ {
1587
+ anonymous: false,
1588
+ inputs: [
1589
+ {
1590
+ indexed: true,
1591
+ internalType: 'address',
1592
+ name: 'account',
1593
+ type: 'address',
1594
+ },
1595
+ {
1596
+ indexed: false,
1597
+ internalType: 'uint256',
1598
+ name: 'withdrawTime',
1599
+ type: 'uint256',
1600
+ },
1601
+ ],
1602
+ name: 'StakeUnlocked',
1603
+ type: 'event',
1604
+ },
1605
+ {
1606
+ anonymous: false,
1607
+ inputs: [
1608
+ {
1609
+ indexed: true,
1610
+ internalType: 'address',
1611
+ name: 'account',
1612
+ type: 'address',
1613
+ },
1614
+ {
1615
+ indexed: false,
1616
+ internalType: 'address',
1617
+ name: 'withdrawAddress',
1618
+ type: 'address',
1619
+ },
1620
+ {
1621
+ indexed: false,
1622
+ internalType: 'uint256',
1623
+ name: 'amount',
1624
+ type: 'uint256',
1625
+ },
1626
+ ],
1627
+ name: 'StakeWithdrawn',
1628
+ type: 'event',
1629
+ },
1630
+ {
1631
+ anonymous: false,
1632
+ inputs: [
1633
+ {
1634
+ indexed: true,
1635
+ internalType: 'bytes32',
1636
+ name: 'userOpHash',
1637
+ type: 'bytes32',
1638
+ },
1639
+ {
1640
+ indexed: true,
1641
+ internalType: 'address',
1642
+ name: 'sender',
1643
+ type: 'address',
1644
+ },
1645
+ {
1646
+ indexed: true,
1647
+ internalType: 'address',
1648
+ name: 'paymaster',
1649
+ type: 'address',
1650
+ },
1651
+ {
1652
+ indexed: false,
1653
+ internalType: 'uint256',
1654
+ name: 'nonce',
1655
+ type: 'uint256',
1656
+ },
1657
+ { indexed: false, internalType: 'bool', name: 'success', type: 'bool' },
1658
+ {
1659
+ indexed: false,
1660
+ internalType: 'uint256',
1661
+ name: 'actualGasCost',
1662
+ type: 'uint256',
1663
+ },
1664
+ {
1665
+ indexed: false,
1666
+ internalType: 'uint256',
1667
+ name: 'actualGasUsed',
1668
+ type: 'uint256',
1669
+ },
1670
+ ],
1671
+ name: 'UserOperationEvent',
1672
+ type: 'event',
1673
+ },
1674
+ {
1675
+ anonymous: false,
1676
+ inputs: [
1677
+ {
1678
+ indexed: true,
1679
+ internalType: 'bytes32',
1680
+ name: 'userOpHash',
1681
+ type: 'bytes32',
1682
+ },
1683
+ {
1684
+ indexed: true,
1685
+ internalType: 'address',
1686
+ name: 'sender',
1687
+ type: 'address',
1688
+ },
1689
+ {
1690
+ indexed: false,
1691
+ internalType: 'uint256',
1692
+ name: 'nonce',
1693
+ type: 'uint256',
1694
+ },
1695
+ ],
1696
+ name: 'UserOperationPrefundTooLow',
1697
+ type: 'event',
1698
+ },
1699
+ {
1700
+ anonymous: false,
1701
+ inputs: [
1702
+ {
1703
+ indexed: true,
1704
+ internalType: 'bytes32',
1705
+ name: 'userOpHash',
1706
+ type: 'bytes32',
1707
+ },
1708
+ {
1709
+ indexed: true,
1710
+ internalType: 'address',
1711
+ name: 'sender',
1712
+ type: 'address',
1713
+ },
1714
+ {
1715
+ indexed: false,
1716
+ internalType: 'uint256',
1717
+ name: 'nonce',
1718
+ type: 'uint256',
1719
+ },
1720
+ {
1721
+ indexed: false,
1722
+ internalType: 'bytes',
1723
+ name: 'revertReason',
1724
+ type: 'bytes',
1725
+ },
1726
+ ],
1727
+ name: 'UserOperationRevertReason',
1728
+ type: 'event',
1729
+ },
1730
+ {
1731
+ anonymous: false,
1732
+ inputs: [
1733
+ {
1734
+ indexed: true,
1735
+ internalType: 'address',
1736
+ name: 'account',
1737
+ type: 'address',
1738
+ },
1739
+ {
1740
+ indexed: false,
1741
+ internalType: 'address',
1742
+ name: 'withdrawAddress',
1743
+ type: 'address',
1744
+ },
1745
+ {
1746
+ indexed: false,
1747
+ internalType: 'uint256',
1748
+ name: 'amount',
1749
+ type: 'uint256',
1750
+ },
1751
+ ],
1752
+ name: 'Withdrawn',
1753
+ type: 'event',
1754
+ },
1755
+ {
1756
+ inputs: [
1757
+ { internalType: 'uint32', name: 'unstakeDelaySec', type: 'uint32' },
1758
+ ],
1759
+ name: 'addStake',
1760
+ outputs: [],
1761
+ stateMutability: 'payable',
1762
+ type: 'function',
1763
+ },
1764
+ {
1765
+ inputs: [{ internalType: 'address', name: 'account', type: 'address' }],
1766
+ name: 'balanceOf',
1767
+ outputs: [{ internalType: 'uint256', name: '', type: 'uint256' }],
1768
+ stateMutability: 'view',
1769
+ type: 'function',
1770
+ },
1771
+ {
1772
+ inputs: [
1773
+ { internalType: 'address', name: 'target', type: 'address' },
1774
+ { internalType: 'bytes', name: 'data', type: 'bytes' },
1775
+ ],
1776
+ name: 'delegateAndRevert',
1777
+ outputs: [],
1778
+ stateMutability: 'nonpayable',
1779
+ type: 'function',
1780
+ },
1781
+ {
1782
+ inputs: [{ internalType: 'address', name: 'account', type: 'address' }],
1783
+ name: 'depositTo',
1784
+ outputs: [],
1785
+ stateMutability: 'payable',
1786
+ type: 'function',
1787
+ },
1788
+ {
1789
+ inputs: [],
1790
+ name: 'eip712Domain',
1791
+ outputs: [
1792
+ { internalType: 'bytes1', name: 'fields', type: 'bytes1' },
1793
+ { internalType: 'string', name: 'name', type: 'string' },
1794
+ { internalType: 'string', name: 'version', type: 'string' },
1795
+ { internalType: 'uint256', name: 'chainId', type: 'uint256' },
1796
+ { internalType: 'address', name: 'verifyingContract', type: 'address' },
1797
+ { internalType: 'bytes32', name: 'salt', type: 'bytes32' },
1798
+ { internalType: 'uint256[]', name: 'extensions', type: 'uint256[]' },
1799
+ ],
1800
+ stateMutability: 'view',
1801
+ type: 'function',
1802
+ },
1803
+ {
1804
+ inputs: [{ internalType: 'address', name: 'account', type: 'address' }],
1805
+ name: 'getDepositInfo',
1806
+ outputs: [
1807
+ {
1808
+ components: [
1809
+ { internalType: 'uint256', name: 'deposit', type: 'uint256' },
1810
+ { internalType: 'bool', name: 'staked', type: 'bool' },
1811
+ { internalType: 'uint112', name: 'stake', type: 'uint112' },
1812
+ { internalType: 'uint32', name: 'unstakeDelaySec', type: 'uint32' },
1813
+ { internalType: 'uint48', name: 'withdrawTime', type: 'uint48' },
1814
+ ],
1815
+ internalType: 'struct IStakeManager.DepositInfo',
1816
+ name: 'info',
1817
+ type: 'tuple',
1818
+ },
1819
+ ],
1820
+ stateMutability: 'view',
1821
+ type: 'function',
1822
+ },
1823
+ {
1824
+ inputs: [],
1825
+ name: 'getDomainSeparatorV4',
1826
+ outputs: [{ internalType: 'bytes32', name: '', type: 'bytes32' }],
1827
+ stateMutability: 'view',
1828
+ type: 'function',
1829
+ },
1830
+ {
1831
+ inputs: [
1832
+ { internalType: 'address', name: 'sender', type: 'address' },
1833
+ { internalType: 'uint192', name: 'key', type: 'uint192' },
1834
+ ],
1835
+ name: 'getNonce',
1836
+ outputs: [{ internalType: 'uint256', name: 'nonce', type: 'uint256' }],
1837
+ stateMutability: 'view',
1838
+ type: 'function',
1839
+ },
1840
+ {
1841
+ inputs: [],
1842
+ name: 'getPackedUserOpTypeHash',
1843
+ outputs: [{ internalType: 'bytes32', name: '', type: 'bytes32' }],
1844
+ stateMutability: 'pure',
1845
+ type: 'function',
1846
+ },
1847
+ {
1848
+ inputs: [{ internalType: 'bytes', name: 'initCode', type: 'bytes' }],
1849
+ name: 'getSenderAddress',
1850
+ outputs: [],
1851
+ stateMutability: 'nonpayable',
1852
+ type: 'function',
1853
+ },
1854
+ {
1855
+ inputs: [
1856
+ {
1857
+ components: [
1858
+ { internalType: 'address', name: 'sender', type: 'address' },
1859
+ { internalType: 'uint256', name: 'nonce', type: 'uint256' },
1860
+ { internalType: 'bytes', name: 'initCode', type: 'bytes' },
1861
+ { internalType: 'bytes', name: 'callData', type: 'bytes' },
1862
+ {
1863
+ internalType: 'bytes32',
1864
+ name: 'accountGasLimits',
1865
+ type: 'bytes32',
1866
+ },
1867
+ {
1868
+ internalType: 'uint256',
1869
+ name: 'preVerificationGas',
1870
+ type: 'uint256',
1871
+ },
1872
+ { internalType: 'bytes32', name: 'gasFees', type: 'bytes32' },
1873
+ { internalType: 'bytes', name: 'paymasterAndData', type: 'bytes' },
1874
+ { internalType: 'bytes', name: 'signature', type: 'bytes' },
1875
+ ],
1876
+ internalType: 'struct PackedUserOperation',
1877
+ name: 'userOp',
1878
+ type: 'tuple',
1879
+ },
1880
+ ],
1881
+ name: 'getUserOpHash',
1882
+ outputs: [{ internalType: 'bytes32', name: '', type: 'bytes32' }],
1883
+ stateMutability: 'view',
1884
+ type: 'function',
1885
+ },
1886
+ {
1887
+ inputs: [
1888
+ {
1889
+ components: [
1890
+ {
1891
+ components: [
1892
+ { internalType: 'address', name: 'sender', type: 'address' },
1893
+ { internalType: 'uint256', name: 'nonce', type: 'uint256' },
1894
+ { internalType: 'bytes', name: 'initCode', type: 'bytes' },
1895
+ { internalType: 'bytes', name: 'callData', type: 'bytes' },
1896
+ {
1897
+ internalType: 'bytes32',
1898
+ name: 'accountGasLimits',
1899
+ type: 'bytes32',
1900
+ },
1901
+ {
1902
+ internalType: 'uint256',
1903
+ name: 'preVerificationGas',
1904
+ type: 'uint256',
1905
+ },
1906
+ { internalType: 'bytes32', name: 'gasFees', type: 'bytes32' },
1907
+ {
1908
+ internalType: 'bytes',
1909
+ name: 'paymasterAndData',
1910
+ type: 'bytes',
1911
+ },
1912
+ { internalType: 'bytes', name: 'signature', type: 'bytes' },
1913
+ ],
1914
+ internalType: 'struct PackedUserOperation[]',
1915
+ name: 'userOps',
1916
+ type: 'tuple[]',
1917
+ },
1918
+ {
1919
+ internalType: 'contract IAggregator',
1920
+ name: 'aggregator',
1921
+ type: 'address',
1922
+ },
1923
+ { internalType: 'bytes', name: 'signature', type: 'bytes' },
1924
+ ],
1925
+ internalType: 'struct IEntryPoint.UserOpsPerAggregator[]',
1926
+ name: 'opsPerAggregator',
1927
+ type: 'tuple[]',
1928
+ },
1929
+ { internalType: 'address payable', name: 'beneficiary', type: 'address' },
1930
+ ],
1931
+ name: 'handleAggregatedOps',
1932
+ outputs: [],
1933
+ stateMutability: 'nonpayable',
1934
+ type: 'function',
1935
+ },
1936
+ {
1937
+ inputs: [
1938
+ {
1939
+ components: [
1940
+ { internalType: 'address', name: 'sender', type: 'address' },
1941
+ { internalType: 'uint256', name: 'nonce', type: 'uint256' },
1942
+ { internalType: 'bytes', name: 'initCode', type: 'bytes' },
1943
+ { internalType: 'bytes', name: 'callData', type: 'bytes' },
1944
+ {
1945
+ internalType: 'bytes32',
1946
+ name: 'accountGasLimits',
1947
+ type: 'bytes32',
1948
+ },
1949
+ {
1950
+ internalType: 'uint256',
1951
+ name: 'preVerificationGas',
1952
+ type: 'uint256',
1953
+ },
1954
+ { internalType: 'bytes32', name: 'gasFees', type: 'bytes32' },
1955
+ { internalType: 'bytes', name: 'paymasterAndData', type: 'bytes' },
1956
+ { internalType: 'bytes', name: 'signature', type: 'bytes' },
1957
+ ],
1958
+ internalType: 'struct PackedUserOperation[]',
1959
+ name: 'ops',
1960
+ type: 'tuple[]',
1961
+ },
1962
+ { internalType: 'address payable', name: 'beneficiary', type: 'address' },
1963
+ ],
1964
+ name: 'handleOps',
1965
+ outputs: [],
1966
+ stateMutability: 'nonpayable',
1967
+ type: 'function',
1968
+ },
1969
+ {
1970
+ inputs: [{ internalType: 'uint192', name: 'key', type: 'uint192' }],
1971
+ name: 'incrementNonce',
1972
+ outputs: [],
1973
+ stateMutability: 'nonpayable',
1974
+ type: 'function',
1975
+ },
1976
+ {
1977
+ inputs: [
1978
+ { internalType: 'bytes', name: 'callData', type: 'bytes' },
1979
+ {
1980
+ components: [
1981
+ {
1982
+ components: [
1983
+ { internalType: 'address', name: 'sender', type: 'address' },
1984
+ { internalType: 'uint256', name: 'nonce', type: 'uint256' },
1985
+ {
1986
+ internalType: 'uint256',
1987
+ name: 'verificationGasLimit',
1988
+ type: 'uint256',
1989
+ },
1990
+ {
1991
+ internalType: 'uint256',
1992
+ name: 'callGasLimit',
1993
+ type: 'uint256',
1994
+ },
1995
+ {
1996
+ internalType: 'uint256',
1997
+ name: 'paymasterVerificationGasLimit',
1998
+ type: 'uint256',
1999
+ },
2000
+ {
2001
+ internalType: 'uint256',
2002
+ name: 'paymasterPostOpGasLimit',
2003
+ type: 'uint256',
2004
+ },
2005
+ {
2006
+ internalType: 'uint256',
2007
+ name: 'preVerificationGas',
2008
+ type: 'uint256',
2009
+ },
2010
+ { internalType: 'address', name: 'paymaster', type: 'address' },
2011
+ {
2012
+ internalType: 'uint256',
2013
+ name: 'maxFeePerGas',
2014
+ type: 'uint256',
2015
+ },
2016
+ {
2017
+ internalType: 'uint256',
2018
+ name: 'maxPriorityFeePerGas',
2019
+ type: 'uint256',
2020
+ },
2021
+ ],
2022
+ internalType: 'struct EntryPoint.MemoryUserOp',
2023
+ name: 'mUserOp',
2024
+ type: 'tuple',
2025
+ },
2026
+ { internalType: 'bytes32', name: 'userOpHash', type: 'bytes32' },
2027
+ { internalType: 'uint256', name: 'prefund', type: 'uint256' },
2028
+ { internalType: 'uint256', name: 'contextOffset', type: 'uint256' },
2029
+ { internalType: 'uint256', name: 'preOpGas', type: 'uint256' },
2030
+ ],
2031
+ internalType: 'struct EntryPoint.UserOpInfo',
2032
+ name: 'opInfo',
2033
+ type: 'tuple',
2034
+ },
2035
+ { internalType: 'bytes', name: 'context', type: 'bytes' },
2036
+ ],
2037
+ name: 'innerHandleOp',
2038
+ outputs: [
2039
+ { internalType: 'uint256', name: 'actualGasCost', type: 'uint256' },
2040
+ ],
2041
+ stateMutability: 'nonpayable',
2042
+ type: 'function',
2043
+ },
2044
+ {
2045
+ inputs: [
2046
+ { internalType: 'address', name: '', type: 'address' },
2047
+ { internalType: 'uint192', name: '', type: 'uint192' },
2048
+ ],
2049
+ name: 'nonceSequenceNumber',
2050
+ outputs: [{ internalType: 'uint256', name: '', type: 'uint256' }],
2051
+ stateMutability: 'view',
2052
+ type: 'function',
2053
+ },
2054
+ {
2055
+ inputs: [],
2056
+ name: 'senderCreator',
2057
+ outputs: [
2058
+ { internalType: 'contract ISenderCreator', name: '', type: 'address' },
2059
+ ],
2060
+ stateMutability: 'view',
2061
+ type: 'function',
2062
+ },
2063
+ {
2064
+ inputs: [{ internalType: 'bytes4', name: 'interfaceId', type: 'bytes4' }],
2065
+ name: 'supportsInterface',
2066
+ outputs: [{ internalType: 'bool', name: '', type: 'bool' }],
2067
+ stateMutability: 'view',
2068
+ type: 'function',
2069
+ },
2070
+ {
2071
+ inputs: [],
2072
+ name: 'unlockStake',
2073
+ outputs: [],
2074
+ stateMutability: 'nonpayable',
2075
+ type: 'function',
2076
+ },
2077
+ {
2078
+ inputs: [
2079
+ {
2080
+ internalType: 'address payable',
2081
+ name: 'withdrawAddress',
2082
+ type: 'address',
2083
+ },
2084
+ ],
2085
+ name: 'withdrawStake',
2086
+ outputs: [],
2087
+ stateMutability: 'nonpayable',
2088
+ type: 'function',
2089
+ },
2090
+ {
2091
+ inputs: [
2092
+ {
2093
+ internalType: 'address payable',
2094
+ name: 'withdrawAddress',
2095
+ type: 'address',
2096
+ },
2097
+ { internalType: 'uint256', name: 'withdrawAmount', type: 'uint256' },
2098
+ ],
2099
+ name: 'withdrawTo',
2100
+ outputs: [],
2101
+ stateMutability: 'nonpayable',
2102
+ type: 'function',
2103
+ },
2104
+ { stateMutability: 'payable', type: 'receive' },
2105
+ ] as const
2106
+
1415
2107
  /** EntryPoint 0.6 address. */
1416
2108
  export const addressV06 = '0x5FF137D4b0FDCD49DcA30c7CF57E578a026d2789' as const
1417
2109
 
1418
2110
  /** EntryPoint 0.7 address. */
1419
2111
  export const addressV07 = '0x0000000071727De22E5E9d8BAf0edAc6f37da032' as const
2112
+
2113
+ /** EntryPoint 0.8 address. */
2114
+ export const addressV08 = '0x4337084D9E255Ff0702461CF8895CE9E3b5Ff108' as const