@defisaver/positions-sdk 0.0.125 → 0.0.127

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 (54) hide show
  1. package/cjs/config/contracts.d.ts +470 -285
  2. package/cjs/config/contracts.js +24 -0
  3. package/cjs/helpers/aaveHelpers/index.d.ts +2 -1
  4. package/cjs/helpers/aaveHelpers/index.js +3 -2
  5. package/cjs/markets/aave/index.d.ts +2 -0
  6. package/cjs/markets/aave/index.js +19 -1
  7. package/cjs/markets/aave/marketAssets.d.ts +7 -0
  8. package/cjs/markets/aave/marketAssets.js +8 -1
  9. package/cjs/markets/morphoBlue/index.d.ts +2 -0
  10. package/cjs/markets/morphoBlue/index.js +18 -1
  11. package/cjs/types/aave.d.ts +4 -3
  12. package/cjs/types/aave.js +1 -0
  13. package/cjs/types/contracts/generated/AaveV3EtherfiLendingPool.d.ts +429 -0
  14. package/cjs/types/contracts/generated/AaveV3EtherfiLendingPool.js +5 -0
  15. package/cjs/types/contracts/generated/AaveV3EtherfiPoolAddressesProvider.d.ts +169 -0
  16. package/cjs/types/contracts/generated/AaveV3EtherfiPoolAddressesProvider.js +5 -0
  17. package/cjs/types/contracts/generated/AaveV3EtherfiProtocolDataProvider.d.ts +131 -0
  18. package/cjs/types/contracts/generated/AaveV3EtherfiProtocolDataProvider.js +5 -0
  19. package/cjs/types/contracts/generated/index.d.ts +3 -0
  20. package/cjs/types/morphoBlue.d.ts +1 -0
  21. package/cjs/types/morphoBlue.js +1 -0
  22. package/esm/config/contracts.d.ts +470 -285
  23. package/esm/config/contracts.js +24 -0
  24. package/esm/helpers/aaveHelpers/index.d.ts +2 -1
  25. package/esm/helpers/aaveHelpers/index.js +2 -1
  26. package/esm/markets/aave/index.d.ts +2 -0
  27. package/esm/markets/aave/index.js +18 -1
  28. package/esm/markets/aave/marketAssets.d.ts +7 -0
  29. package/esm/markets/aave/marketAssets.js +7 -0
  30. package/esm/markets/morphoBlue/index.d.ts +2 -0
  31. package/esm/markets/morphoBlue/index.js +16 -0
  32. package/esm/types/aave.d.ts +4 -3
  33. package/esm/types/aave.js +1 -0
  34. package/esm/types/contracts/generated/AaveV3EtherfiLendingPool.d.ts +429 -0
  35. package/esm/types/contracts/generated/AaveV3EtherfiLendingPool.js +4 -0
  36. package/esm/types/contracts/generated/AaveV3EtherfiPoolAddressesProvider.d.ts +169 -0
  37. package/esm/types/contracts/generated/AaveV3EtherfiPoolAddressesProvider.js +4 -0
  38. package/esm/types/contracts/generated/AaveV3EtherfiProtocolDataProvider.d.ts +131 -0
  39. package/esm/types/contracts/generated/AaveV3EtherfiProtocolDataProvider.js +4 -0
  40. package/esm/types/contracts/generated/index.d.ts +3 -0
  41. package/esm/types/morphoBlue.d.ts +1 -0
  42. package/esm/types/morphoBlue.js +1 -0
  43. package/package.json +1 -1
  44. package/src/config/contracts.js +24 -0
  45. package/src/helpers/aaveHelpers/index.ts +3 -1
  46. package/src/markets/aave/index.ts +19 -1
  47. package/src/markets/aave/marketAssets.ts +9 -0
  48. package/src/markets/morphoBlue/index.ts +16 -0
  49. package/src/types/aave.ts +4 -3
  50. package/src/types/contracts/generated/AaveV3EtherfiLendingPool.ts +805 -0
  51. package/src/types/contracts/generated/AaveV3EtherfiPoolAddressesProvider.ts +340 -0
  52. package/src/types/contracts/generated/AaveV3EtherfiProtocolDataProvider.ts +186 -0
  53. package/src/types/contracts/generated/index.ts +3 -0
  54. package/src/types/morphoBlue.ts +1 -0
@@ -1337,8 +1337,56 @@ export namespace AaveV3LidoPoolAddressesProvider {
1337
1337
  };
1338
1338
  export { networks_2 as networks };
1339
1339
  }
1340
- export namespace AaveV3LendingPool {
1340
+ export namespace AaveV3EtherfiPoolAddressesProvider {
1341
1341
  let abi_3: ({
1342
+ inputs: {
1343
+ internalType: string;
1344
+ name: string;
1345
+ type: string;
1346
+ }[];
1347
+ stateMutability: string;
1348
+ type: string;
1349
+ anonymous?: undefined;
1350
+ name?: undefined;
1351
+ outputs?: undefined;
1352
+ } | {
1353
+ anonymous: boolean;
1354
+ inputs: {
1355
+ indexed: boolean;
1356
+ internalType: string;
1357
+ name: string;
1358
+ type: string;
1359
+ }[];
1360
+ name: string;
1361
+ type: string;
1362
+ stateMutability?: undefined;
1363
+ outputs?: undefined;
1364
+ } | {
1365
+ inputs: {
1366
+ internalType: string;
1367
+ name: string;
1368
+ type: string;
1369
+ }[];
1370
+ name: string;
1371
+ outputs: {
1372
+ internalType: string;
1373
+ name: string;
1374
+ type: string;
1375
+ }[];
1376
+ stateMutability: string;
1377
+ type: string;
1378
+ anonymous?: undefined;
1379
+ })[];
1380
+ export { abi_3 as abi };
1381
+ let networks_3: {
1382
+ "1": {
1383
+ address: string;
1384
+ };
1385
+ };
1386
+ export { networks_3 as networks };
1387
+ }
1388
+ export namespace AaveV3LendingPool {
1389
+ let abi_4: ({
1342
1390
  anonymous: boolean;
1343
1391
  inputs: {
1344
1392
  indexed: boolean;
@@ -1417,8 +1465,8 @@ export namespace AaveV3LendingPool {
1417
1465
  type: string;
1418
1466
  anonymous?: undefined;
1419
1467
  })[];
1420
- export { abi_3 as abi };
1421
- let networks_3: {
1468
+ export { abi_4 as abi };
1469
+ let networks_4: {
1422
1470
  "1": {
1423
1471
  address: string;
1424
1472
  };
@@ -1432,10 +1480,10 @@ export namespace AaveV3LendingPool {
1432
1480
  address: string;
1433
1481
  };
1434
1482
  };
1435
- export { networks_3 as networks };
1483
+ export { networks_4 as networks };
1436
1484
  }
1437
1485
  export namespace AaveV3LidoLendingPool {
1438
- let abi_4: ({
1486
+ let abi_5: ({
1439
1487
  anonymous: boolean;
1440
1488
  inputs: {
1441
1489
  indexed: boolean;
@@ -1514,16 +1562,104 @@ export namespace AaveV3LidoLendingPool {
1514
1562
  type: string;
1515
1563
  anonymous?: undefined;
1516
1564
  })[];
1517
- export { abi_4 as abi };
1518
- let networks_4: {
1565
+ export { abi_5 as abi };
1566
+ let networks_5: {
1519
1567
  "1": {
1520
1568
  address: string;
1521
1569
  };
1522
1570
  };
1523
- export { networks_4 as networks };
1571
+ export { networks_5 as networks };
1572
+ }
1573
+ export namespace AaveV3EtherfiLendingPool {
1574
+ let abi_6: ({
1575
+ anonymous: boolean;
1576
+ inputs: {
1577
+ indexed: boolean;
1578
+ internalType: string;
1579
+ name: string;
1580
+ type: string;
1581
+ }[];
1582
+ name: string;
1583
+ type: string;
1584
+ outputs?: undefined;
1585
+ stateMutability?: undefined;
1586
+ } | {
1587
+ inputs: ({
1588
+ internalType: string;
1589
+ name: string;
1590
+ type: string;
1591
+ components?: undefined;
1592
+ } | {
1593
+ components: {
1594
+ internalType: string;
1595
+ name: string;
1596
+ type: string;
1597
+ }[];
1598
+ internalType: string;
1599
+ name: string;
1600
+ type: string;
1601
+ })[];
1602
+ name: string;
1603
+ outputs: never[];
1604
+ stateMutability: string;
1605
+ type: string;
1606
+ anonymous?: undefined;
1607
+ } | {
1608
+ inputs: {
1609
+ internalType: string;
1610
+ name: string;
1611
+ type: string;
1612
+ }[];
1613
+ name: string;
1614
+ outputs: {
1615
+ internalType: string;
1616
+ name: string;
1617
+ type: string;
1618
+ }[];
1619
+ stateMutability: string;
1620
+ type: string;
1621
+ anonymous?: undefined;
1622
+ } | {
1623
+ inputs: {
1624
+ internalType: string;
1625
+ name: string;
1626
+ type: string;
1627
+ }[];
1628
+ name: string;
1629
+ outputs: {
1630
+ components: ({
1631
+ components: {
1632
+ internalType: string;
1633
+ name: string;
1634
+ type: string;
1635
+ }[];
1636
+ internalType: string;
1637
+ name: string;
1638
+ type: string;
1639
+ } | {
1640
+ internalType: string;
1641
+ name: string;
1642
+ type: string;
1643
+ components?: undefined;
1644
+ })[];
1645
+ internalType: string;
1646
+ name: string;
1647
+ type: string;
1648
+ }[];
1649
+ stateMutability: string;
1650
+ type: string;
1651
+ anonymous?: undefined;
1652
+ })[];
1653
+ export { abi_6 as abi };
1654
+ let networks_6: {
1655
+ "1": {
1656
+ address: string;
1657
+ };
1658
+ };
1659
+ export { networks_6 as networks };
1524
1660
  }
1525
1661
  export namespace AaveV3ProtocolDataProvider {
1526
- let abi_5: ({
1662
+ let abi_7: ({
1527
1663
  inputs: {
1528
1664
  internalType: string;
1529
1665
  name: string;
@@ -1563,8 +1699,8 @@ export namespace AaveV3ProtocolDataProvider {
1563
1699
  stateMutability: string;
1564
1700
  type: string;
1565
1701
  })[];
1566
- export { abi_5 as abi };
1567
- let networks_5: {
1702
+ export { abi_7 as abi };
1703
+ let networks_7: {
1568
1704
  "1": {
1569
1705
  address: string;
1570
1706
  };
@@ -1578,10 +1714,10 @@ export namespace AaveV3ProtocolDataProvider {
1578
1714
  address: string;
1579
1715
  };
1580
1716
  };
1581
- export { networks_5 as networks };
1717
+ export { networks_7 as networks };
1582
1718
  }
1583
1719
  export namespace AaveV3LidoProtocolDataProvider {
1584
- let abi_6: ({
1720
+ let abi_8: ({
1585
1721
  inputs: {
1586
1722
  internalType: string;
1587
1723
  name: string;
@@ -1621,16 +1757,65 @@ export namespace AaveV3LidoProtocolDataProvider {
1621
1757
  stateMutability: string;
1622
1758
  type: string;
1623
1759
  })[];
1624
- export { abi_6 as abi };
1625
- let networks_6: {
1760
+ export { abi_8 as abi };
1761
+ let networks_8: {
1626
1762
  "1": {
1627
1763
  address: string;
1628
1764
  };
1629
1765
  };
1630
- export { networks_6 as networks };
1766
+ export { networks_8 as networks };
1767
+ }
1768
+ export namespace AaveV3EtherfiProtocolDataProvider {
1769
+ let abi_9: ({
1770
+ inputs: {
1771
+ internalType: string;
1772
+ name: string;
1773
+ type: string;
1774
+ }[];
1775
+ stateMutability: string;
1776
+ type: string;
1777
+ name?: undefined;
1778
+ outputs?: undefined;
1779
+ } | {
1780
+ inputs: {
1781
+ internalType: string;
1782
+ name: string;
1783
+ type: string;
1784
+ }[];
1785
+ name: string;
1786
+ outputs: {
1787
+ internalType: string;
1788
+ name: string;
1789
+ type: string;
1790
+ }[];
1791
+ stateMutability: string;
1792
+ type: string;
1793
+ } | {
1794
+ inputs: never[];
1795
+ name: string;
1796
+ outputs: {
1797
+ components: {
1798
+ internalType: string;
1799
+ name: string;
1800
+ type: string;
1801
+ }[];
1802
+ internalType: string;
1803
+ name: string;
1804
+ type: string;
1805
+ }[];
1806
+ stateMutability: string;
1807
+ type: string;
1808
+ })[];
1809
+ export { abi_9 as abi };
1810
+ let networks_9: {
1811
+ "1": {
1812
+ address: string;
1813
+ };
1814
+ };
1815
+ export { networks_9 as networks };
1631
1816
  }
1632
1817
  export namespace AaveUiIncentiveDataProviderV3 {
1633
- let abi_7: {
1818
+ let abi_10: {
1634
1819
  inputs: {
1635
1820
  internalType: string;
1636
1821
  name: string;
@@ -1670,8 +1855,8 @@ export namespace AaveUiIncentiveDataProviderV3 {
1670
1855
  stateMutability: string;
1671
1856
  type: string;
1672
1857
  }[];
1673
- export { abi_7 as abi };
1674
- let networks_7: {
1858
+ export { abi_10 as abi };
1859
+ let networks_10: {
1675
1860
  "1": {
1676
1861
  address: string;
1677
1862
  };
@@ -1685,10 +1870,10 @@ export namespace AaveUiIncentiveDataProviderV3 {
1685
1870
  address: string;
1686
1871
  };
1687
1872
  };
1688
- export { networks_7 as networks };
1873
+ export { networks_10 as networks };
1689
1874
  }
1690
1875
  export namespace Lido {
1691
- let abi_8: {
1876
+ let abi_11: {
1692
1877
  anonymous: boolean;
1693
1878
  inputs: {
1694
1879
  indexed: boolean;
@@ -1698,16 +1883,16 @@ export namespace Lido {
1698
1883
  name: string;
1699
1884
  type: string;
1700
1885
  }[];
1701
- export { abi_8 as abi };
1702
- let networks_8: {
1886
+ export { abi_11 as abi };
1887
+ let networks_11: {
1703
1888
  "1": {
1704
1889
  address: string;
1705
1890
  };
1706
1891
  };
1707
- export { networks_8 as networks };
1892
+ export { networks_11 as networks };
1708
1893
  }
1709
1894
  export namespace CbEth {
1710
- let abi_9: {
1895
+ let abi_12: {
1711
1896
  inputs: never[];
1712
1897
  name: string;
1713
1898
  outputs: {
@@ -1718,16 +1903,16 @@ export namespace CbEth {
1718
1903
  stateMutability: string;
1719
1904
  type: string;
1720
1905
  }[];
1721
- export { abi_9 as abi };
1722
- let networks_9: {
1906
+ export { abi_12 as abi };
1907
+ let networks_12: {
1723
1908
  "1": {
1724
1909
  address: string;
1725
1910
  };
1726
1911
  };
1727
- export { networks_9 as networks };
1912
+ export { networks_12 as networks };
1728
1913
  }
1729
1914
  export namespace REth {
1730
- let abi_10: {
1915
+ let abi_13: {
1731
1916
  inputs: never[];
1732
1917
  name: string;
1733
1918
  outputs: {
@@ -1738,16 +1923,16 @@ export namespace REth {
1738
1923
  stateMutability: string;
1739
1924
  type: string;
1740
1925
  }[];
1741
- export { abi_10 as abi };
1742
- let networks_10: {
1926
+ export { abi_13 as abi };
1927
+ let networks_13: {
1743
1928
  "1": {
1744
1929
  address: string;
1745
1930
  };
1746
1931
  };
1747
- export { networks_10 as networks };
1932
+ export { networks_13 as networks };
1748
1933
  }
1749
1934
  export namespace GhoDiscountRateStrategy {
1750
- let abi_11: {
1935
+ let abi_14: {
1751
1936
  inputs: {
1752
1937
  internalType: string;
1753
1938
  name: string;
@@ -1762,16 +1947,16 @@ export namespace GhoDiscountRateStrategy {
1762
1947
  stateMutability: string;
1763
1948
  type: string;
1764
1949
  }[];
1765
- export { abi_11 as abi };
1766
- let networks_11: {
1950
+ export { abi_14 as abi };
1951
+ let networks_14: {
1767
1952
  "1": {
1768
1953
  address: string;
1769
1954
  };
1770
1955
  };
1771
- export { networks_11 as networks };
1956
+ export { networks_14 as networks };
1772
1957
  }
1773
1958
  export namespace GHO {
1774
- let abi_12: ({
1959
+ let abi_15: ({
1775
1960
  inputs: never[];
1776
1961
  stateMutability: string;
1777
1962
  type: string;
@@ -1826,16 +2011,16 @@ export namespace GHO {
1826
2011
  type: string;
1827
2012
  anonymous?: undefined;
1828
2013
  })[];
1829
- export { abi_12 as abi };
1830
- let networks_12: {
2014
+ export { abi_15 as abi };
2015
+ let networks_15: {
1831
2016
  "1": {
1832
2017
  address: string;
1833
2018
  };
1834
2019
  };
1835
- export { networks_12 as networks };
2020
+ export { networks_15 as networks };
1836
2021
  }
1837
2022
  export namespace UniMulticall {
1838
- let abi_13: ({
2023
+ let abi_16: ({
1839
2024
  inputs: {
1840
2025
  internalType: string;
1841
2026
  name: string;
@@ -1879,8 +2064,8 @@ export namespace UniMulticall {
1879
2064
  stateMutability: string;
1880
2065
  type: string;
1881
2066
  })[];
1882
- export { abi_13 as abi };
1883
- let networks_13: {
2067
+ export { abi_16 as abi };
2068
+ let networks_16: {
1884
2069
  "1": {
1885
2070
  address: string;
1886
2071
  };
@@ -1894,10 +2079,10 @@ export namespace UniMulticall {
1894
2079
  address: string;
1895
2080
  };
1896
2081
  };
1897
- export { networks_13 as networks };
2082
+ export { networks_16 as networks };
1898
2083
  }
1899
2084
  export namespace BalanceScanner {
1900
- let abi_14: {
2085
+ let abi_17: {
1901
2086
  inputs: {
1902
2087
  internalType: string;
1903
2088
  name: string;
@@ -1917,8 +2102,8 @@ export namespace BalanceScanner {
1917
2102
  stateMutability: string;
1918
2103
  type: string;
1919
2104
  }[];
1920
- export { abi_14 as abi };
1921
- let networks_14: {
2105
+ export { abi_17 as abi };
2106
+ let networks_17: {
1922
2107
  "1": {
1923
2108
  address: string;
1924
2109
  createdBlock: number;
@@ -1933,10 +2118,10 @@ export namespace BalanceScanner {
1933
2118
  address: string;
1934
2119
  };
1935
2120
  };
1936
- export { networks_14 as networks };
2121
+ export { networks_17 as networks };
1937
2122
  }
1938
2123
  export namespace Erc20 {
1939
- let abi_15: ({
2124
+ let abi_18: ({
1940
2125
  constant: boolean;
1941
2126
  inputs: {
1942
2127
  name: string;
@@ -1977,12 +2162,12 @@ export namespace Erc20 {
1977
2162
  payable?: undefined;
1978
2163
  stateMutability?: undefined;
1979
2164
  })[];
1980
- export { abi_15 as abi };
1981
- let networks_15: {};
1982
- export { networks_15 as networks };
2165
+ export { abi_18 as abi };
2166
+ let networks_18: {};
2167
+ export { networks_18 as networks };
1983
2168
  }
1984
2169
  export namespace cUSDCv3 {
1985
- let abi_16: ({
2170
+ let abi_19: ({
1986
2171
  inputs: {
1987
2172
  components: ({
1988
2173
  internalType: string;
@@ -2070,8 +2255,8 @@ export namespace cUSDCv3 {
2070
2255
  type: string;
2071
2256
  anonymous?: undefined;
2072
2257
  })[];
2073
- export { abi_16 as abi };
2074
- let networks_16: {
2258
+ export { abi_19 as abi };
2259
+ let networks_19: {
2075
2260
  "1": {
2076
2261
  address: string;
2077
2262
  };
@@ -2085,10 +2270,10 @@ export namespace cUSDCv3 {
2085
2270
  address: string;
2086
2271
  };
2087
2272
  };
2088
- export { networks_16 as networks };
2273
+ export { networks_19 as networks };
2089
2274
  }
2090
2275
  export namespace cUSDCev3 {
2091
- let abi_17: ({
2276
+ let abi_20: ({
2092
2277
  inputs: {
2093
2278
  components: ({
2094
2279
  internalType: string;
@@ -2176,16 +2361,16 @@ export namespace cUSDCev3 {
2176
2361
  type: string;
2177
2362
  anonymous?: undefined;
2178
2363
  })[];
2179
- export { abi_17 as abi };
2180
- let networks_17: {
2364
+ export { abi_20 as abi };
2365
+ let networks_20: {
2181
2366
  "42161": {
2182
2367
  address: string;
2183
2368
  };
2184
2369
  };
2185
- export { networks_17 as networks };
2370
+ export { networks_20 as networks };
2186
2371
  }
2187
2372
  export namespace cUSDbCv3 {
2188
- let abi_18: ({
2373
+ let abi_21: ({
2189
2374
  inputs: {
2190
2375
  components: ({
2191
2376
  internalType: string;
@@ -2273,16 +2458,16 @@ export namespace cUSDbCv3 {
2273
2458
  type: string;
2274
2459
  anonymous?: undefined;
2275
2460
  })[];
2276
- export { abi_18 as abi };
2277
- let networks_18: {
2461
+ export { abi_21 as abi };
2462
+ let networks_21: {
2278
2463
  "8453": {
2279
2464
  address: string;
2280
2465
  };
2281
2466
  };
2282
- export { networks_18 as networks };
2467
+ export { networks_21 as networks };
2283
2468
  }
2284
2469
  export namespace cETHv3 {
2285
- let abi_19: ({
2470
+ let abi_22: ({
2286
2471
  inputs: {
2287
2472
  components: ({
2288
2473
  internalType: string;
@@ -2370,8 +2555,8 @@ export namespace cETHv3 {
2370
2555
  type: string;
2371
2556
  anonymous?: undefined;
2372
2557
  })[];
2373
- export { abi_19 as abi };
2374
- let networks_19: {
2558
+ export { abi_22 as abi };
2559
+ let networks_22: {
2375
2560
  "1": {
2376
2561
  address: string;
2377
2562
  };
@@ -2385,10 +2570,10 @@ export namespace cETHv3 {
2385
2570
  address: string;
2386
2571
  };
2387
2572
  };
2388
- export { networks_19 as networks };
2573
+ export { networks_22 as networks };
2389
2574
  }
2390
2575
  export namespace cUSDTv3 {
2391
- let abi_20: ({
2576
+ let abi_23: ({
2392
2577
  inputs: {
2393
2578
  internalType: string;
2394
2579
  name: string;
@@ -2441,8 +2626,8 @@ export namespace cUSDTv3 {
2441
2626
  type: string;
2442
2627
  anonymous?: undefined;
2443
2628
  })[];
2444
- export { abi_20 as abi };
2445
- let networks_20: {
2629
+ export { abi_23 as abi };
2630
+ let networks_23: {
2446
2631
  "1": {
2447
2632
  address: string;
2448
2633
  };
@@ -2453,10 +2638,10 @@ export namespace cUSDTv3 {
2453
2638
  address: string;
2454
2639
  };
2455
2640
  };
2456
- export { networks_20 as networks };
2641
+ export { networks_23 as networks };
2457
2642
  }
2458
2643
  export namespace CompV3View {
2459
- let abi_21: ({
2644
+ let abi_24: ({
2460
2645
  inputs: {
2461
2646
  internalType: string;
2462
2647
  name: string;
@@ -2509,8 +2694,8 @@ export namespace CompV3View {
2509
2694
  stateMutability: string;
2510
2695
  type: string;
2511
2696
  })[];
2512
- export { abi_21 as abi };
2513
- let networks_21: {
2697
+ export { abi_24 as abi };
2698
+ let networks_24: {
2514
2699
  "1": {
2515
2700
  address: string;
2516
2701
  createdBlock: number;
@@ -2707,10 +2892,10 @@ export namespace CompV3View {
2707
2892
  };
2708
2893
  };
2709
2894
  };
2710
- export { networks_21 as networks };
2895
+ export { networks_24 as networks };
2711
2896
  }
2712
2897
  export namespace CompV3BulkerMainnetUSDC {
2713
- let abi_22: ({
2898
+ let abi_25: ({
2714
2899
  inputs: {
2715
2900
  internalType: string;
2716
2901
  name: string;
@@ -2753,16 +2938,16 @@ export namespace CompV3BulkerMainnetUSDC {
2753
2938
  name?: undefined;
2754
2939
  outputs?: undefined;
2755
2940
  })[];
2756
- export { abi_22 as abi };
2757
- let networks_22: {
2941
+ export { abi_25 as abi };
2942
+ let networks_25: {
2758
2943
  "1": {
2759
2944
  address: string;
2760
2945
  };
2761
2946
  };
2762
- export { networks_22 as networks };
2947
+ export { networks_25 as networks };
2763
2948
  }
2764
2949
  export namespace CompV3BulkerMainnetETH {
2765
- let abi_23: ({
2950
+ let abi_26: ({
2766
2951
  inputs: {
2767
2952
  internalType: string;
2768
2953
  name: string;
@@ -2822,16 +3007,16 @@ export namespace CompV3BulkerMainnetETH {
2822
3007
  anonymous?: undefined;
2823
3008
  outputs?: undefined;
2824
3009
  })[];
2825
- export { abi_23 as abi };
2826
- let networks_23: {
3010
+ export { abi_26 as abi };
3011
+ let networks_26: {
2827
3012
  "1": {
2828
3013
  address: string;
2829
3014
  };
2830
3015
  };
2831
- export { networks_23 as networks };
3016
+ export { networks_26 as networks };
2832
3017
  }
2833
3018
  export namespace CompV3BulkerL2 {
2834
- let abi_24: ({
3019
+ let abi_27: ({
2835
3020
  inputs: {
2836
3021
  internalType: string;
2837
3022
  name: string;
@@ -2891,8 +3076,8 @@ export namespace CompV3BulkerL2 {
2891
3076
  anonymous?: undefined;
2892
3077
  outputs?: undefined;
2893
3078
  })[];
2894
- export { abi_24 as abi };
2895
- let networks_24: {
3079
+ export { abi_27 as abi };
3080
+ let networks_27: {
2896
3081
  "10": {
2897
3082
  address: string;
2898
3083
  };
@@ -2903,10 +3088,10 @@ export namespace CompV3BulkerL2 {
2903
3088
  address: string;
2904
3089
  };
2905
3090
  };
2906
- export { networks_24 as networks };
3091
+ export { networks_27 as networks };
2907
3092
  }
2908
3093
  export namespace wstETH {
2909
- let abi_25: ({
3094
+ let abi_28: ({
2910
3095
  inputs: {
2911
3096
  internalType: string;
2912
3097
  name: string;
@@ -2952,16 +3137,16 @@ export namespace wstETH {
2952
3137
  name?: undefined;
2953
3138
  outputs?: undefined;
2954
3139
  })[];
2955
- export { abi_25 as abi };
2956
- let networks_25: {
3140
+ export { abi_28 as abi };
3141
+ let networks_28: {
2957
3142
  "1": {
2958
3143
  address: string;
2959
3144
  };
2960
3145
  };
2961
- export { networks_25 as networks };
3146
+ export { networks_28 as networks };
2962
3147
  }
2963
3148
  export namespace AaveLoanInfoV2 {
2964
- let abi_26: ({
3149
+ let abi_29: ({
2965
3150
  inputs: ({
2966
3151
  internalType: string;
2967
3152
  name: string;
@@ -3005,8 +3190,8 @@ export namespace AaveLoanInfoV2 {
3005
3190
  stateMutability: string;
3006
3191
  type: string;
3007
3192
  })[];
3008
- export { abi_26 as abi };
3009
- let networks_26: {
3193
+ export { abi_29 as abi };
3194
+ let networks_29: {
3010
3195
  "1": {
3011
3196
  address: string;
3012
3197
  createdBlock: number;
@@ -3175,10 +3360,10 @@ export namespace AaveLoanInfoV2 {
3175
3360
  };
3176
3361
  };
3177
3362
  };
3178
- export { networks_26 as networks };
3363
+ export { networks_29 as networks };
3179
3364
  }
3180
3365
  export namespace LendingPoolAddressesProvider {
3181
- let abi_27: ({
3366
+ let abi_30: ({
3182
3367
  anonymous: boolean;
3183
3368
  inputs: {
3184
3369
  indexed: boolean;
@@ -3206,16 +3391,16 @@ export namespace LendingPoolAddressesProvider {
3206
3391
  type: string;
3207
3392
  anonymous?: undefined;
3208
3393
  })[];
3209
- export { abi_27 as abi };
3210
- let networks_27: {
3394
+ export { abi_30 as abi };
3395
+ let networks_30: {
3211
3396
  "1": {
3212
3397
  address: string;
3213
3398
  };
3214
3399
  };
3215
- export { networks_27 as networks };
3400
+ export { networks_30 as networks };
3216
3401
  }
3217
3402
  export namespace AaveProtocolDataProvider {
3218
- let abi_28: ({
3403
+ let abi_31: ({
3219
3404
  inputs: {
3220
3405
  internalType: string;
3221
3406
  name: string;
@@ -3255,16 +3440,16 @@ export namespace AaveProtocolDataProvider {
3255
3440
  stateMutability: string;
3256
3441
  type: string;
3257
3442
  })[];
3258
- export { abi_28 as abi };
3259
- let networks_28: {
3443
+ export { abi_31 as abi };
3444
+ let networks_31: {
3260
3445
  "1": {
3261
3446
  address: string;
3262
3447
  };
3263
3448
  };
3264
- export { networks_28 as networks };
3449
+ export { networks_31 as networks };
3265
3450
  }
3266
3451
  export namespace AaveLendingPoolV2 {
3267
- let abi_29: ({
3452
+ let abi_32: ({
3268
3453
  anonymous: boolean;
3269
3454
  inputs: {
3270
3455
  indexed: boolean;
@@ -3322,16 +3507,16 @@ export namespace AaveLendingPoolV2 {
3322
3507
  type: string;
3323
3508
  anonymous?: undefined;
3324
3509
  })[];
3325
- export { abi_29 as abi };
3326
- let networks_29: {
3510
+ export { abi_32 as abi };
3511
+ let networks_32: {
3327
3512
  "1": {
3328
3513
  address: string;
3329
3514
  };
3330
3515
  };
3331
- export { networks_29 as networks };
3516
+ export { networks_32 as networks };
3332
3517
  }
3333
3518
  export namespace CompoundLoanInfo {
3334
- let abi_30: ({
3519
+ let abi_33: ({
3335
3520
  inputs: {
3336
3521
  components: {
3337
3522
  internalType: string;
@@ -3389,8 +3574,8 @@ export namespace CompoundLoanInfo {
3389
3574
  stateMutability: string;
3390
3575
  type: string;
3391
3576
  })[];
3392
- export { abi_30 as abi };
3393
- let networks_30: {
3577
+ export { abi_33 as abi };
3578
+ let networks_33: {
3394
3579
  "1": {
3395
3580
  address: string;
3396
3581
  createdBlock: number;
@@ -3565,10 +3750,10 @@ export namespace CompoundLoanInfo {
3565
3750
  };
3566
3751
  };
3567
3752
  };
3568
- export { networks_30 as networks };
3753
+ export { networks_33 as networks };
3569
3754
  }
3570
3755
  export namespace Comptroller {
3571
- let abi_31: ({
3756
+ let abi_34: ({
3572
3757
  inputs: never[];
3573
3758
  payable: boolean;
3574
3759
  stateMutability: string;
@@ -3609,17 +3794,17 @@ export namespace Comptroller {
3609
3794
  type: string;
3610
3795
  anonymous?: undefined;
3611
3796
  })[];
3612
- export { abi_31 as abi };
3613
- let networks_31: {
3797
+ export { abi_34 as abi };
3798
+ let networks_34: {
3614
3799
  "1": {
3615
3800
  createdBlock: number;
3616
3801
  address: string;
3617
3802
  };
3618
3803
  };
3619
- export { networks_31 as networks };
3804
+ export { networks_34 as networks };
3620
3805
  }
3621
3806
  export namespace IVariableDebtToken {
3622
- let abi_32: {
3807
+ let abi_35: {
3623
3808
  inputs: {
3624
3809
  internalType: string;
3625
3810
  name: string;
@@ -3634,16 +3819,16 @@ export namespace IVariableDebtToken {
3634
3819
  stateMutability: string;
3635
3820
  type: string;
3636
3821
  }[];
3637
- export { abi_32 as abi };
3638
- let networks_32: {
3822
+ export { abi_35 as abi };
3823
+ let networks_35: {
3639
3824
  "1": {
3640
3825
  address: string;
3641
3826
  };
3642
3827
  };
3643
- export { networks_32 as networks };
3828
+ export { networks_35 as networks };
3644
3829
  }
3645
3830
  export namespace IAToken {
3646
- let abi_33: {
3831
+ let abi_36: {
3647
3832
  inputs: {
3648
3833
  internalType: string;
3649
3834
  name: string;
@@ -3658,16 +3843,16 @@ export namespace IAToken {
3658
3843
  stateMutability: string;
3659
3844
  type: string;
3660
3845
  }[];
3661
- export { abi_33 as abi };
3662
- let networks_33: {
3846
+ export { abi_36 as abi };
3847
+ let networks_36: {
3663
3848
  "1": {
3664
3849
  address: string;
3665
3850
  };
3666
3851
  };
3667
- export { networks_33 as networks };
3852
+ export { networks_36 as networks };
3668
3853
  }
3669
3854
  export namespace MorphoAaveV2Proxy {
3670
- let abi_34: ({
3855
+ let abi_37: ({
3671
3856
  inputs: never[];
3672
3857
  name: string;
3673
3858
  type: string;
@@ -3740,16 +3925,16 @@ export namespace MorphoAaveV2Proxy {
3740
3925
  type: string;
3741
3926
  anonymous?: undefined;
3742
3927
  })[];
3743
- export { abi_34 as abi };
3744
- let networks_34: {
3928
+ export { abi_37 as abi };
3929
+ let networks_37: {
3745
3930
  "1": {
3746
3931
  address: string;
3747
3932
  };
3748
3933
  };
3749
- export { networks_34 as networks };
3934
+ export { networks_37 as networks };
3750
3935
  }
3751
3936
  export namespace MorphoAaveV3ProxyEthMarket {
3752
- let abi_35: ({
3937
+ let abi_38: ({
3753
3938
  inputs: {
3754
3939
  internalType: string;
3755
3940
  name: string;
@@ -3817,16 +4002,16 @@ export namespace MorphoAaveV3ProxyEthMarket {
3817
4002
  stateMutability: string;
3818
4003
  type: string;
3819
4004
  })[];
3820
- export { abi_35 as abi };
3821
- let networks_35: {
4005
+ export { abi_38 as abi };
4006
+ let networks_38: {
3822
4007
  "1": {
3823
4008
  address: string;
3824
4009
  };
3825
4010
  };
3826
- export { networks_35 as networks };
4011
+ export { networks_38 as networks };
3827
4012
  }
3828
4013
  export namespace Pot {
3829
- let abi_36: ({
4014
+ let abi_39: ({
3830
4015
  inputs: {
3831
4016
  internalType: string;
3832
4017
  name: string;
@@ -3871,17 +4056,17 @@ export namespace Pot {
3871
4056
  type: string;
3872
4057
  anonymous?: undefined;
3873
4058
  })[];
3874
- export { abi_36 as abi };
3875
- let networks_36: {
4059
+ export { abi_39 as abi };
4060
+ let networks_39: {
3876
4061
  "1": {
3877
4062
  address: string;
3878
4063
  createdBlock: number;
3879
4064
  };
3880
4065
  };
3881
- export { networks_36 as networks };
4066
+ export { networks_39 as networks };
3882
4067
  }
3883
4068
  export namespace MorphoAaveV2View {
3884
- let abi_37: ({
4069
+ let abi_40: ({
3885
4070
  inputs: never[];
3886
4071
  name: string;
3887
4072
  outputs: {
@@ -3920,9 +4105,9 @@ export namespace MorphoAaveV2View {
3920
4105
  }[];
3921
4106
  stateMutability: string;
3922
4107
  type: string;
3923
- })[];
3924
- export { abi_37 as abi };
3925
- let networks_37: {
4108
+ })[];
4109
+ export { abi_40 as abi };
4110
+ let networks_40: {
3926
4111
  "1": {
3927
4112
  address: string;
3928
4113
  createdBlock: number;
@@ -3963,10 +4148,10 @@ export namespace MorphoAaveV2View {
3963
4148
  };
3964
4149
  };
3965
4150
  };
3966
- export { networks_37 as networks };
4151
+ export { networks_40 as networks };
3967
4152
  }
3968
4153
  export namespace SparkView {
3969
- let abi_38: ({
4154
+ let abi_41: ({
3970
4155
  inputs: ({
3971
4156
  internalType: string;
3972
4157
  name: string;
@@ -4029,8 +4214,8 @@ export namespace SparkView {
4029
4214
  stateMutability: string;
4030
4215
  type: string;
4031
4216
  })[];
4032
- export { abi_38 as abi };
4033
- let networks_38: {
4217
+ export { abi_41 as abi };
4218
+ let networks_41: {
4034
4219
  "1": {
4035
4220
  address: string;
4036
4221
  createdBlock: number;
@@ -4183,10 +4368,10 @@ export namespace SparkView {
4183
4368
  };
4184
4369
  };
4185
4370
  };
4186
- export { networks_38 as networks };
4371
+ export { networks_41 as networks };
4187
4372
  }
4188
4373
  export namespace SparkIncentiveDataProvider {
4189
- let abi_39: {
4374
+ let abi_42: {
4190
4375
  inputs: {
4191
4376
  internalType: string;
4192
4377
  name: string;
@@ -4226,16 +4411,16 @@ export namespace SparkIncentiveDataProvider {
4226
4411
  stateMutability: string;
4227
4412
  type: string;
4228
4413
  }[];
4229
- export { abi_39 as abi };
4230
- let networks_39: {
4414
+ export { abi_42 as abi };
4415
+ let networks_42: {
4231
4416
  "1": {
4232
4417
  address: string;
4233
4418
  };
4234
4419
  };
4235
- export { networks_39 as networks };
4420
+ export { networks_42 as networks };
4236
4421
  }
4237
4422
  export namespace SparkLendingPool {
4238
- let abi_40: ({
4423
+ let abi_43: ({
4239
4424
  inputs: {
4240
4425
  internalType: string;
4241
4426
  name: string;
@@ -4325,16 +4510,16 @@ export namespace SparkLendingPool {
4325
4510
  type: string;
4326
4511
  anonymous?: undefined;
4327
4512
  })[];
4328
- export { abi_40 as abi };
4329
- let networks_40: {
4513
+ export { abi_43 as abi };
4514
+ let networks_43: {
4330
4515
  "1": {
4331
4516
  address: string;
4332
4517
  };
4333
4518
  };
4334
- export { networks_40 as networks };
4519
+ export { networks_43 as networks };
4335
4520
  }
4336
4521
  export namespace SparkPoolAddressesProvider {
4337
- let abi_41: ({
4522
+ let abi_44: ({
4338
4523
  inputs: {
4339
4524
  internalType: string;
4340
4525
  name: string;
@@ -4373,16 +4558,16 @@ export namespace SparkPoolAddressesProvider {
4373
4558
  type: string;
4374
4559
  anonymous?: undefined;
4375
4560
  })[];
4376
- export { abi_41 as abi };
4377
- let networks_41: {
4561
+ export { abi_44 as abi };
4562
+ let networks_44: {
4378
4563
  "1": {
4379
4564
  address: string;
4380
4565
  };
4381
4566
  };
4382
- export { networks_41 as networks };
4567
+ export { networks_44 as networks };
4383
4568
  }
4384
4569
  export namespace SparkProtocolDataProvider {
4385
- let abi_42: ({
4570
+ let abi_45: ({
4386
4571
  inputs: {
4387
4572
  internalType: string;
4388
4573
  name: string;
@@ -4422,16 +4607,16 @@ export namespace SparkProtocolDataProvider {
4422
4607
  stateMutability: string;
4423
4608
  type: string;
4424
4609
  })[];
4425
- export { abi_42 as abi };
4426
- let networks_42: {
4610
+ export { abi_45 as abi };
4611
+ let networks_45: {
4427
4612
  "1": {
4428
4613
  address: string;
4429
4614
  };
4430
4615
  };
4431
- export { networks_42 as networks };
4616
+ export { networks_45 as networks };
4432
4617
  }
4433
4618
  export namespace crvUSDwstETHController {
4434
- let abi_43: ({
4619
+ let abi_46: ({
4435
4620
  name: string;
4436
4621
  inputs: {
4437
4622
  name: string;
@@ -4490,16 +4675,16 @@ export namespace crvUSDwstETHController {
4490
4675
  }[];
4491
4676
  anonymous?: undefined;
4492
4677
  })[];
4493
- export { abi_43 as abi };
4494
- let networks_43: {
4678
+ export { abi_46 as abi };
4679
+ let networks_46: {
4495
4680
  "1": {
4496
4681
  address: string;
4497
4682
  };
4498
4683
  };
4499
- export { networks_43 as networks };
4684
+ export { networks_46 as networks };
4500
4685
  }
4501
4686
  export namespace crvUSDETHController {
4502
- let abi_44: ({
4687
+ let abi_47: ({
4503
4688
  name: string;
4504
4689
  inputs: {
4505
4690
  name: string;
@@ -4558,16 +4743,16 @@ export namespace crvUSDETHController {
4558
4743
  }[];
4559
4744
  anonymous?: undefined;
4560
4745
  })[];
4561
- export { abi_44 as abi };
4562
- let networks_44: {
4746
+ export { abi_47 as abi };
4747
+ let networks_47: {
4563
4748
  "1": {
4564
4749
  address: string;
4565
4750
  };
4566
4751
  };
4567
- export { networks_44 as networks };
4752
+ export { networks_47 as networks };
4568
4753
  }
4569
4754
  export namespace crvUSDWBTCController {
4570
- let abi_45: ({
4755
+ let abi_48: ({
4571
4756
  name: string;
4572
4757
  inputs: {
4573
4758
  name: string;
@@ -4626,16 +4811,16 @@ export namespace crvUSDWBTCController {
4626
4811
  }[];
4627
4812
  anonymous?: undefined;
4628
4813
  })[];
4629
- export { abi_45 as abi };
4630
- let networks_45: {
4814
+ export { abi_48 as abi };
4815
+ let networks_48: {
4631
4816
  "1": {
4632
4817
  address: string;
4633
4818
  };
4634
4819
  };
4635
- export { networks_45 as networks };
4820
+ export { networks_48 as networks };
4636
4821
  }
4637
4822
  export namespace crvUSDtBTCController {
4638
- let abi_46: ({
4823
+ let abi_49: ({
4639
4824
  name: string;
4640
4825
  inputs: {
4641
4826
  name: string;
@@ -4694,16 +4879,16 @@ export namespace crvUSDtBTCController {
4694
4879
  }[];
4695
4880
  anonymous?: undefined;
4696
4881
  })[];
4697
- export { abi_46 as abi };
4698
- let networks_46: {
4882
+ export { abi_49 as abi };
4883
+ let networks_49: {
4699
4884
  "1": {
4700
4885
  address: string;
4701
4886
  };
4702
4887
  };
4703
- export { networks_46 as networks };
4888
+ export { networks_49 as networks };
4704
4889
  }
4705
4890
  export namespace crvUSDsfrxETHController {
4706
- let abi_47: ({
4891
+ let abi_50: ({
4707
4892
  name: string;
4708
4893
  inputs: {
4709
4894
  name: string;
@@ -4762,16 +4947,16 @@ export namespace crvUSDsfrxETHController {
4762
4947
  }[];
4763
4948
  anonymous?: undefined;
4764
4949
  })[];
4765
- export { abi_47 as abi };
4766
- let networks_47: {
4950
+ export { abi_50 as abi };
4951
+ let networks_50: {
4767
4952
  "1": {
4768
4953
  address: string;
4769
4954
  };
4770
4955
  };
4771
- export { networks_47 as networks };
4956
+ export { networks_50 as networks };
4772
4957
  }
4773
4958
  export namespace crvUSDwstETHAmm {
4774
- let abi_48: ({
4959
+ let abi_51: ({
4775
4960
  name: string;
4776
4961
  inputs: {
4777
4962
  name: string;
@@ -4806,16 +4991,16 @@ export namespace crvUSDwstETHAmm {
4806
4991
  }[];
4807
4992
  anonymous?: undefined;
4808
4993
  })[];
4809
- export { abi_48 as abi };
4810
- let networks_48: {
4994
+ export { abi_51 as abi };
4995
+ let networks_51: {
4811
4996
  "1": {
4812
4997
  address: string;
4813
4998
  };
4814
4999
  };
4815
- export { networks_48 as networks };
5000
+ export { networks_51 as networks };
4816
5001
  }
4817
5002
  export namespace crvUSDETHAmm {
4818
- let abi_49: ({
5003
+ let abi_52: ({
4819
5004
  name: string;
4820
5005
  inputs: {
4821
5006
  name: string;
@@ -4850,16 +5035,16 @@ export namespace crvUSDETHAmm {
4850
5035
  }[];
4851
5036
  anonymous?: undefined;
4852
5037
  })[];
4853
- export { abi_49 as abi };
4854
- let networks_49: {
5038
+ export { abi_52 as abi };
5039
+ let networks_52: {
4855
5040
  "1": {
4856
5041
  address: string;
4857
5042
  };
4858
5043
  };
4859
- export { networks_49 as networks };
5044
+ export { networks_52 as networks };
4860
5045
  }
4861
5046
  export namespace crvUSDWBTCAmm {
4862
- let abi_50: ({
5047
+ let abi_53: ({
4863
5048
  name: string;
4864
5049
  inputs: {
4865
5050
  name: string;
@@ -4894,16 +5079,16 @@ export namespace crvUSDWBTCAmm {
4894
5079
  }[];
4895
5080
  anonymous?: undefined;
4896
5081
  })[];
4897
- export { abi_50 as abi };
4898
- let networks_50: {
5082
+ export { abi_53 as abi };
5083
+ let networks_53: {
4899
5084
  "1": {
4900
5085
  address: string;
4901
5086
  };
4902
5087
  };
4903
- export { networks_50 as networks };
5088
+ export { networks_53 as networks };
4904
5089
  }
4905
5090
  export namespace crvUSDtBTCAmm {
4906
- let abi_51: ({
5091
+ let abi_54: ({
4907
5092
  name: string;
4908
5093
  inputs: {
4909
5094
  name: string;
@@ -4938,16 +5123,16 @@ export namespace crvUSDtBTCAmm {
4938
5123
  }[];
4939
5124
  anonymous?: undefined;
4940
5125
  })[];
4941
- export { abi_51 as abi };
4942
- let networks_51: {
5126
+ export { abi_54 as abi };
5127
+ let networks_54: {
4943
5128
  "1": {
4944
5129
  address: string;
4945
5130
  };
4946
5131
  };
4947
- export { networks_51 as networks };
5132
+ export { networks_54 as networks };
4948
5133
  }
4949
5134
  export namespace crvUSDsfrxETHAmm {
4950
- let abi_52: ({
5135
+ let abi_55: ({
4951
5136
  name: string;
4952
5137
  inputs: {
4953
5138
  name: string;
@@ -4982,16 +5167,16 @@ export namespace crvUSDsfrxETHAmm {
4982
5167
  }[];
4983
5168
  anonymous?: undefined;
4984
5169
  })[];
4985
- export { abi_52 as abi };
4986
- let networks_52: {
5170
+ export { abi_55 as abi };
5171
+ let networks_55: {
4987
5172
  "1": {
4988
5173
  address: string;
4989
5174
  };
4990
5175
  };
4991
- export { networks_52 as networks };
5176
+ export { networks_55 as networks };
4992
5177
  }
4993
5178
  export namespace crvUSDView {
4994
- let abi_53: ({
5179
+ let abi_56: ({
4995
5180
  inputs: never[];
4996
5181
  name: string;
4997
5182
  type: string;
@@ -5041,8 +5226,8 @@ export namespace crvUSDView {
5041
5226
  stateMutability: string;
5042
5227
  type: string;
5043
5228
  })[];
5044
- export { abi_53 as abi };
5045
- let networks_53: {
5229
+ export { abi_56 as abi };
5230
+ let networks_56: {
5046
5231
  "1": {
5047
5232
  address: string;
5048
5233
  createdBlock: number;
@@ -5119,10 +5304,10 @@ export namespace crvUSDView {
5119
5304
  };
5120
5305
  };
5121
5306
  };
5122
- export { networks_53 as networks };
5307
+ export { networks_56 as networks };
5123
5308
  }
5124
5309
  export namespace crvUSDFactory {
5125
- let abi_54: ({
5310
+ let abi_57: ({
5126
5311
  name: string;
5127
5312
  inputs: {
5128
5313
  name: string;
@@ -5157,16 +5342,16 @@ export namespace crvUSDFactory {
5157
5342
  }[];
5158
5343
  anonymous?: undefined;
5159
5344
  })[];
5160
- export { abi_54 as abi };
5161
- let networks_54: {
5345
+ export { abi_57 as abi };
5346
+ let networks_57: {
5162
5347
  "1": {
5163
5348
  address: string;
5164
5349
  };
5165
5350
  };
5166
- export { networks_54 as networks };
5351
+ export { networks_57 as networks };
5167
5352
  }
5168
5353
  export namespace LiquityView {
5169
- let abi_55: {
5354
+ let abi_58: {
5170
5355
  inputs: {
5171
5356
  internalType: string;
5172
5357
  name: string;
@@ -5181,8 +5366,8 @@ export namespace LiquityView {
5181
5366
  stateMutability: string;
5182
5367
  type: string;
5183
5368
  }[];
5184
- export { abi_55 as abi };
5185
- let networks_55: {
5369
+ export { abi_58 as abi };
5370
+ let networks_58: {
5186
5371
  "1": {
5187
5372
  address: string;
5188
5373
  createdBlock: number;
@@ -5262,10 +5447,10 @@ export namespace LiquityView {
5262
5447
  };
5263
5448
  };
5264
5449
  };
5265
- export { networks_55 as networks };
5450
+ export { networks_58 as networks };
5266
5451
  }
5267
5452
  export namespace CollSurplusPool {
5268
- let abi_56: ({
5453
+ let abi_59: ({
5269
5454
  anonymous: boolean;
5270
5455
  inputs: {
5271
5456
  indexed: boolean;
@@ -5300,16 +5485,16 @@ export namespace CollSurplusPool {
5300
5485
  name?: undefined;
5301
5486
  outputs?: undefined;
5302
5487
  })[];
5303
- export { abi_56 as abi };
5304
- let networks_56: {
5488
+ export { abi_59 as abi };
5489
+ let networks_59: {
5305
5490
  "1": {
5306
5491
  address: string;
5307
5492
  };
5308
5493
  };
5309
- export { networks_56 as networks };
5494
+ export { networks_59 as networks };
5310
5495
  }
5311
5496
  export namespace TroveManager {
5312
- let abi_57: ({
5497
+ let abi_60: ({
5313
5498
  anonymous: boolean;
5314
5499
  inputs: {
5315
5500
  indexed: boolean;
@@ -5337,16 +5522,16 @@ export namespace TroveManager {
5337
5522
  type: string;
5338
5523
  anonymous?: undefined;
5339
5524
  })[];
5340
- export { abi_57 as abi };
5341
- let networks_57: {
5525
+ export { abi_60 as abi };
5526
+ let networks_60: {
5342
5527
  "1": {
5343
5528
  address: string;
5344
5529
  };
5345
5530
  };
5346
- export { networks_57 as networks };
5531
+ export { networks_60 as networks };
5347
5532
  }
5348
5533
  export namespace PriceFeed {
5349
- let abi_58: ({
5534
+ let abi_61: ({
5350
5535
  anonymous: boolean;
5351
5536
  inputs: {
5352
5537
  indexed: boolean;
@@ -5381,16 +5566,16 @@ export namespace PriceFeed {
5381
5566
  type: string;
5382
5567
  anonymous?: undefined;
5383
5568
  })[];
5384
- export { abi_58 as abi };
5385
- let networks_58: {
5569
+ export { abi_61 as abi };
5570
+ let networks_61: {
5386
5571
  "1": {
5387
5572
  address: string;
5388
5573
  };
5389
5574
  };
5390
- export { networks_58 as networks };
5575
+ export { networks_61 as networks };
5391
5576
  }
5392
5577
  export namespace LiquityActivePool {
5393
- let abi_59: {
5578
+ let abi_62: {
5394
5579
  inputs: never[];
5395
5580
  name: string;
5396
5581
  outputs: {
@@ -5401,16 +5586,16 @@ export namespace LiquityActivePool {
5401
5586
  stateMutability: string;
5402
5587
  type: string;
5403
5588
  }[];
5404
- export { abi_59 as abi };
5405
- let networks_59: {
5589
+ export { abi_62 as abi };
5590
+ let networks_62: {
5406
5591
  "1": {
5407
5592
  address: string;
5408
5593
  };
5409
5594
  };
5410
- export { networks_59 as networks };
5595
+ export { networks_62 as networks };
5411
5596
  }
5412
5597
  export namespace McdView {
5413
- let abi_60: {
5598
+ let abi_63: {
5414
5599
  inputs: {
5415
5600
  internalType: string;
5416
5601
  name: string;
@@ -5425,8 +5610,8 @@ export namespace McdView {
5425
5610
  stateMutability: string;
5426
5611
  type: string;
5427
5612
  }[];
5428
- export { abi_60 as abi };
5429
- let networks_60: {
5613
+ export { abi_63 as abi };
5614
+ let networks_63: {
5430
5615
  "1": {
5431
5616
  address: string;
5432
5617
  createdBlock: number;
@@ -5470,10 +5655,10 @@ export namespace McdView {
5470
5655
  };
5471
5656
  };
5472
5657
  };
5473
- export { networks_60 as networks };
5658
+ export { networks_63 as networks };
5474
5659
  }
5475
5660
  export namespace McdSpotter {
5476
- let abi_61: {
5661
+ let abi_64: {
5477
5662
  constant: boolean;
5478
5663
  inputs: {
5479
5664
  name: string;
@@ -5488,16 +5673,16 @@ export namespace McdSpotter {
5488
5673
  stateMutability: string;
5489
5674
  type: string;
5490
5675
  }[];
5491
- export { abi_61 as abi };
5492
- let networks_61: {
5676
+ export { abi_64 as abi };
5677
+ let networks_64: {
5493
5678
  "1": {
5494
5679
  address: string;
5495
5680
  };
5496
5681
  };
5497
- export { networks_61 as networks };
5682
+ export { networks_64 as networks };
5498
5683
  }
5499
5684
  export namespace McdVat {
5500
- let abi_62: ({
5685
+ let abi_65: ({
5501
5686
  inputs: never[];
5502
5687
  payable: boolean;
5503
5688
  stateMutability: string;
@@ -5538,16 +5723,16 @@ export namespace McdVat {
5538
5723
  type: string;
5539
5724
  anonymous?: undefined;
5540
5725
  })[];
5541
- export { abi_62 as abi };
5542
- let networks_62: {
5726
+ export { abi_65 as abi };
5727
+ let networks_65: {
5543
5728
  "1": {
5544
5729
  address: string;
5545
5730
  };
5546
5731
  };
5547
- export { networks_62 as networks };
5732
+ export { networks_65 as networks };
5548
5733
  }
5549
5734
  export namespace McdJug {
5550
- let abi_63: ({
5735
+ let abi_66: ({
5551
5736
  inputs: {
5552
5737
  internalType: string;
5553
5738
  name: string;
@@ -5592,16 +5777,16 @@ export namespace McdJug {
5592
5777
  type: string;
5593
5778
  anonymous?: undefined;
5594
5779
  })[];
5595
- export { abi_63 as abi };
5596
- let networks_63: {
5780
+ export { abi_66 as abi };
5781
+ let networks_66: {
5597
5782
  "1": {
5598
5783
  address: string;
5599
5784
  };
5600
5785
  };
5601
- export { networks_63 as networks };
5786
+ export { networks_66 as networks };
5602
5787
  }
5603
5788
  export namespace McdDog {
5604
- let abi_64: ({
5789
+ let abi_67: ({
5605
5790
  inputs: {
5606
5791
  internalType: string;
5607
5792
  name: string;
@@ -5640,16 +5825,16 @@ export namespace McdDog {
5640
5825
  type: string;
5641
5826
  anonymous?: undefined;
5642
5827
  })[];
5643
- export { abi_64 as abi };
5644
- let networks_64: {
5828
+ export { abi_67 as abi };
5829
+ let networks_67: {
5645
5830
  "1": {
5646
5831
  address: string;
5647
5832
  };
5648
5833
  };
5649
- export { networks_64 as networks };
5834
+ export { networks_67 as networks };
5650
5835
  }
5651
5836
  export namespace ChickenBondsView {
5652
- let abi_65: ({
5837
+ let abi_68: ({
5653
5838
  inputs: never[];
5654
5839
  name: string;
5655
5840
  outputs: {
@@ -5679,17 +5864,17 @@ export namespace ChickenBondsView {
5679
5864
  stateMutability: string;
5680
5865
  type: string;
5681
5866
  })[];
5682
- export { abi_65 as abi };
5683
- let networks_65: {
5867
+ export { abi_68 as abi };
5868
+ let networks_68: {
5684
5869
  "1": {
5685
5870
  address: string;
5686
5871
  createdBlock: number;
5687
5872
  };
5688
5873
  };
5689
- export { networks_65 as networks };
5874
+ export { networks_68 as networks };
5690
5875
  }
5691
5876
  export namespace ChickenBondsManager {
5692
- let abi_66: {
5877
+ let abi_69: {
5693
5878
  inputs: {
5694
5879
  internalType: string;
5695
5880
  name: string;
@@ -5704,16 +5889,16 @@ export namespace ChickenBondsManager {
5704
5889
  stateMutability: string;
5705
5890
  type: string;
5706
5891
  }[];
5707
- export { abi_66 as abi };
5708
- let networks_66: {
5892
+ export { abi_69 as abi };
5893
+ let networks_69: {
5709
5894
  "1": {
5710
5895
  address: string;
5711
5896
  };
5712
5897
  };
5713
- export { networks_66 as networks };
5898
+ export { networks_69 as networks };
5714
5899
  }
5715
5900
  export namespace COMPPriceFeed {
5716
- let abi_67: ({
5901
+ let abi_70: ({
5717
5902
  inputs: {
5718
5903
  internalType: string;
5719
5904
  name: string;
@@ -5752,16 +5937,16 @@ export namespace COMPPriceFeed {
5752
5937
  type: string;
5753
5938
  anonymous?: undefined;
5754
5939
  })[];
5755
- export { abi_67 as abi };
5756
- let networks_67: {
5940
+ export { abi_70 as abi };
5941
+ let networks_70: {
5757
5942
  "1": {
5758
5943
  address: string;
5759
5944
  };
5760
5945
  };
5761
- export { networks_67 as networks };
5946
+ export { networks_70 as networks };
5762
5947
  }
5763
5948
  export namespace ETHPriceFeed {
5764
- let abi_68: ({
5949
+ let abi_71: ({
5765
5950
  inputs: {
5766
5951
  internalType: string;
5767
5952
  name: string;
@@ -5800,16 +5985,16 @@ export namespace ETHPriceFeed {
5800
5985
  type: string;
5801
5986
  anonymous?: undefined;
5802
5987
  })[];
5803
- export { abi_68 as abi };
5804
- let networks_68: {
5988
+ export { abi_71 as abi };
5989
+ let networks_71: {
5805
5990
  "1": {
5806
5991
  address: string;
5807
5992
  };
5808
5993
  };
5809
- export { networks_68 as networks };
5994
+ export { networks_71 as networks };
5810
5995
  }
5811
5996
  export namespace USDCPriceFeed {
5812
- let abi_69: ({
5997
+ let abi_72: ({
5813
5998
  inputs: {
5814
5999
  internalType: string;
5815
6000
  name: string;
@@ -5848,16 +6033,16 @@ export namespace USDCPriceFeed {
5848
6033
  type: string;
5849
6034
  anonymous?: undefined;
5850
6035
  })[];
5851
- export { abi_69 as abi };
5852
- let networks_69: {
6036
+ export { abi_72 as abi };
6037
+ let networks_72: {
5853
6038
  "1": {
5854
6039
  address: string;
5855
6040
  };
5856
6041
  };
5857
- export { networks_69 as networks };
6042
+ export { networks_72 as networks };
5858
6043
  }
5859
6044
  export namespace MorphoBlueView {
5860
- let abi_70: ({
6045
+ let abi_73: ({
5861
6046
  inputs: {
5862
6047
  components: ({
5863
6048
  components: {
@@ -5950,8 +6135,8 @@ export namespace MorphoBlueView {
5950
6135
  stateMutability: string;
5951
6136
  type: string;
5952
6137
  })[];
5953
- export { abi_70 as abi };
5954
- let networks_70: {
6138
+ export { abi_73 as abi };
6139
+ let networks_73: {
5955
6140
  "1": {
5956
6141
  address: string;
5957
6142
  createdBlock: number;
@@ -6069,10 +6254,10 @@ export namespace MorphoBlueView {
6069
6254
  };
6070
6255
  };
6071
6256
  };
6072
- export { networks_70 as networks };
6257
+ export { networks_73 as networks };
6073
6258
  }
6074
6259
  export namespace FeedRegistry {
6075
- let abi_71: ({
6260
+ let abi_74: ({
6076
6261
  anonymous: boolean;
6077
6262
  inputs: {
6078
6263
  indexed: boolean;
@@ -6120,16 +6305,16 @@ export namespace FeedRegistry {
6120
6305
  type: string;
6121
6306
  anonymous?: undefined;
6122
6307
  })[];
6123
- export { abi_71 as abi };
6124
- let networks_71: {
6308
+ export { abi_74 as abi };
6309
+ let networks_74: {
6125
6310
  "1": {
6126
6311
  address: string;
6127
6312
  };
6128
6313
  };
6129
- export { networks_71 as networks };
6314
+ export { networks_74 as networks };
6130
6315
  }
6131
6316
  export namespace LlamaLendView {
6132
- let abi_72: ({
6317
+ let abi_75: ({
6133
6318
  inputs: never[];
6134
6319
  name: string;
6135
6320
  type: string;
@@ -6179,8 +6364,8 @@ export namespace LlamaLendView {
6179
6364
  stateMutability: string;
6180
6365
  type: string;
6181
6366
  })[];
6182
- export { abi_72 as abi };
6183
- let networks_72: {
6367
+ export { abi_75 as abi };
6368
+ let networks_75: {
6184
6369
  "1": {
6185
6370
  address: string;
6186
6371
  };
@@ -6188,10 +6373,10 @@ export namespace LlamaLendView {
6188
6373
  address: string;
6189
6374
  };
6190
6375
  };
6191
- export { networks_72 as networks };
6376
+ export { networks_75 as networks };
6192
6377
  }
6193
6378
  export namespace LlamaLendControllerAbi {
6194
- let abi_73: ({
6379
+ let abi_76: ({
6195
6380
  name: string;
6196
6381
  inputs: {
6197
6382
  name: string;
@@ -6243,7 +6428,7 @@ export namespace LlamaLendControllerAbi {
6243
6428
  }[];
6244
6429
  anonymous?: undefined;
6245
6430
  })[];
6246
- export { abi_73 as abi };
6247
- let networks_73: {};
6248
- export { networks_73 as networks };
6431
+ export { abi_76 as abi };
6432
+ let networks_76: {};
6433
+ export { networks_76 as networks };
6249
6434
  }