@defisaver/positions-sdk 0.0.59 → 0.0.61

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 (96) hide show
  1. package/README.md +63 -63
  2. package/cjs/aaveV3/index.js +2 -1
  3. package/cjs/config/contracts.d.ts +225 -282
  4. package/cjs/config/contracts.js +19 -15
  5. package/cjs/llamaLend/index.js +0 -3
  6. package/cjs/markets/compound/index.js +10 -10
  7. package/cjs/markets/compound/marketsAssets.d.ts +2 -1
  8. package/cjs/markets/compound/marketsAssets.js +3 -2
  9. package/{esm/types/contracts/generated/CompV3USDbCBulker.d.ts → cjs/types/contracts/generated/CompV3BulkerL2.d.ts} +3 -3
  10. package/cjs/types/contracts/generated/{CompV3ETHBulker.d.ts → CompV3BulkerMainnetETH.d.ts} +3 -3
  11. package/{esm/types/contracts/generated/CompV3USDCBulker.d.ts → cjs/types/contracts/generated/CompV3BulkerMainnetUSDC.d.ts} +3 -3
  12. package/cjs/types/contracts/generated/index.d.ts +3 -4
  13. package/esm/aaveV3/index.js +2 -1
  14. package/esm/config/contracts.d.ts +225 -282
  15. package/esm/config/contracts.js +19 -15
  16. package/esm/llamaLend/index.js +0 -3
  17. package/esm/markets/compound/index.js +10 -10
  18. package/esm/markets/compound/marketsAssets.d.ts +2 -1
  19. package/esm/markets/compound/marketsAssets.js +2 -1
  20. package/{cjs/types/contracts/generated/CompV3USDbCBulker.d.ts → esm/types/contracts/generated/CompV3BulkerL2.d.ts} +3 -3
  21. package/esm/types/contracts/generated/{CompV3ETHBulker.d.ts → CompV3BulkerMainnetETH.d.ts} +3 -3
  22. package/{cjs/types/contracts/generated/CompV3USDCBulker.d.ts → esm/types/contracts/generated/CompV3BulkerMainnetUSDC.d.ts} +3 -3
  23. package/esm/types/contracts/generated/index.d.ts +3 -4
  24. package/package.json +40 -40
  25. package/src/aaveV2/index.ts +227 -227
  26. package/src/aaveV3/index.ts +562 -561
  27. package/src/assets/index.ts +60 -60
  28. package/src/chickenBonds/index.ts +123 -123
  29. package/src/compoundV2/index.ts +219 -219
  30. package/src/compoundV3/index.ts +273 -273
  31. package/src/config/contracts.js +855 -851
  32. package/src/constants/index.ts +5 -5
  33. package/src/contracts.ts +126 -126
  34. package/src/curveUsd/index.ts +229 -229
  35. package/src/exchange/index.ts +17 -17
  36. package/src/helpers/aaveHelpers/index.ts +134 -134
  37. package/src/helpers/chickenBondsHelpers/index.ts +23 -23
  38. package/src/helpers/compoundHelpers/index.ts +181 -181
  39. package/src/helpers/curveUsdHelpers/index.ts +40 -40
  40. package/src/helpers/index.ts +7 -7
  41. package/src/helpers/llamaLendHelpers/index.ts +45 -45
  42. package/src/helpers/makerHelpers/index.ts +94 -94
  43. package/src/helpers/morphoBlueHelpers/index.ts +56 -56
  44. package/src/helpers/sparkHelpers/index.ts +106 -106
  45. package/src/index.ts +46 -46
  46. package/src/liquity/index.ts +116 -116
  47. package/src/llamaLend/index.ts +276 -279
  48. package/src/maker/index.ts +117 -117
  49. package/src/markets/aave/index.ts +80 -80
  50. package/src/markets/aave/marketAssets.ts +24 -24
  51. package/src/markets/compound/index.ts +141 -141
  52. package/src/markets/compound/marketsAssets.ts +49 -48
  53. package/src/markets/curveUsd/index.ts +69 -69
  54. package/src/markets/index.ts +5 -5
  55. package/src/markets/llamaLend/index.ts +65 -65
  56. package/src/markets/morphoBlue/index.ts +262 -262
  57. package/src/markets/spark/index.ts +29 -29
  58. package/src/markets/spark/marketAssets.ts +10 -10
  59. package/src/moneymarket/moneymarketCommonService.ts +75 -75
  60. package/src/morphoAaveV2/index.ts +256 -256
  61. package/src/morphoAaveV3/index.ts +619 -619
  62. package/src/morphoBlue/index.ts +177 -177
  63. package/src/multicall/index.ts +22 -22
  64. package/src/services/dsrService.ts +15 -15
  65. package/src/services/priceService.ts +21 -21
  66. package/src/services/utils.ts +51 -51
  67. package/src/setup.ts +8 -8
  68. package/src/spark/index.ts +422 -422
  69. package/src/staking/staking.ts +174 -174
  70. package/src/types/aave.ts +256 -256
  71. package/src/types/chickenBonds.ts +45 -45
  72. package/src/types/common.ts +83 -83
  73. package/src/types/compound.ts +128 -128
  74. package/src/types/contracts/generated/{CompV3USDbCBulker.ts → CompV3BulkerL2.ts} +3 -3
  75. package/src/types/contracts/generated/{CompV3ETHBulker.ts → CompV3BulkerMainnetETH.ts} +3 -3
  76. package/src/types/contracts/generated/{CompV3USDCBulker.ts → CompV3BulkerMainnetUSDC.ts} +3 -3
  77. package/src/types/contracts/generated/index.ts +3 -4
  78. package/src/types/curveUsd.ts +118 -118
  79. package/src/types/index.ts +8 -8
  80. package/src/types/liquity.ts +30 -30
  81. package/src/types/llamaLend.ts +119 -119
  82. package/src/types/maker.ts +50 -50
  83. package/src/types/morphoBlue.ts +107 -107
  84. package/src/types/spark.ts +106 -106
  85. package/yarn-error.log +64 -0
  86. package/cjs/types/contracts/generated/CompV3USDCBulkerArb.d.ts +0 -41
  87. package/cjs/types/contracts/generated/CompV3USDbCBulker.js +0 -5
  88. package/esm/types/contracts/generated/CompV3USDCBulkerArb.d.ts +0 -41
  89. package/esm/types/contracts/generated/CompV3USDbCBulker.js +0 -4
  90. package/src/types/contracts/generated/CompV3USDCBulkerArb.ts +0 -85
  91. /package/cjs/types/contracts/generated/{CompV3ETHBulker.js → CompV3BulkerL2.js} +0 -0
  92. /package/cjs/types/contracts/generated/{CompV3USDCBulker.js → CompV3BulkerMainnetETH.js} +0 -0
  93. /package/cjs/types/contracts/generated/{CompV3USDCBulkerArb.js → CompV3BulkerMainnetUSDC.js} +0 -0
  94. /package/esm/types/contracts/generated/{CompV3ETHBulker.js → CompV3BulkerL2.js} +0 -0
  95. /package/esm/types/contracts/generated/{CompV3USDCBulker.js → CompV3BulkerMainnetETH.js} +0 -0
  96. /package/esm/types/contracts/generated/{CompV3USDCBulkerArb.js → CompV3BulkerMainnetUSDC.js} +0 -0
@@ -723,9 +723,18 @@ export namespace AaveUiIncentiveDataProviderV3 {
723
723
  }[];
724
724
  export { abi_4 as abi };
725
725
  let networks_4: {
726
+ "1": {
727
+ address: string;
728
+ };
726
729
  "10": {
727
730
  address: string;
728
731
  };
732
+ "8453": {
733
+ address: string;
734
+ };
735
+ "42161": {
736
+ address: string;
737
+ };
729
738
  };
730
739
  export { networks_4 as networks };
731
740
  }
@@ -1117,6 +1126,9 @@ export namespace cUSDCv3 {
1117
1126
  "1": {
1118
1127
  address: string;
1119
1128
  };
1129
+ "8453": {
1130
+ address: string;
1131
+ };
1120
1132
  "42161": {
1121
1133
  address: string;
1122
1134
  };
@@ -1492,7 +1504,7 @@ export namespace CompV3View {
1492
1504
  };
1493
1505
  export { networks_17 as networks };
1494
1506
  }
1495
- export namespace CompV3USDCBulker {
1507
+ export namespace CompV3BulkerMainnetUSDC {
1496
1508
  let abi_18: ({
1497
1509
  inputs: {
1498
1510
  internalType: string;
@@ -1544,7 +1556,7 @@ export namespace CompV3USDCBulker {
1544
1556
  };
1545
1557
  export { networks_18 as networks };
1546
1558
  }
1547
- export namespace CompV3USDbCBulker {
1559
+ export namespace CompV3BulkerMainnetETH {
1548
1560
  let abi_19: ({
1549
1561
  inputs: {
1550
1562
  internalType: string;
@@ -1607,13 +1619,13 @@ export namespace CompV3USDbCBulker {
1607
1619
  })[];
1608
1620
  export { abi_19 as abi };
1609
1621
  let networks_19: {
1610
- "8453": {
1622
+ "1": {
1611
1623
  address: string;
1612
1624
  };
1613
1625
  };
1614
1626
  export { networks_19 as networks };
1615
1627
  }
1616
- export namespace CompV3ETHBulker {
1628
+ export namespace CompV3BulkerL2 {
1617
1629
  let abi_20: ({
1618
1630
  inputs: {
1619
1631
  internalType: string;
@@ -1676,86 +1688,17 @@ export namespace CompV3ETHBulker {
1676
1688
  })[];
1677
1689
  export { abi_20 as abi };
1678
1690
  let networks_20: {
1679
- "1": {
1680
- address: string;
1681
- };
1682
1691
  "8453": {
1683
1692
  address: string;
1684
1693
  };
1685
- };
1686
- export { networks_20 as networks };
1687
- }
1688
- export namespace CompV3USDCBulkerArb {
1689
- let abi_21: ({
1690
- inputs: {
1691
- internalType: string;
1692
- name: string;
1693
- type: string;
1694
- }[];
1695
- stateMutability: string;
1696
- type: string;
1697
- name?: undefined;
1698
- anonymous?: undefined;
1699
- outputs?: undefined;
1700
- } | {
1701
- inputs: never[];
1702
- name: string;
1703
- type: string;
1704
- stateMutability?: undefined;
1705
- anonymous?: undefined;
1706
- outputs?: undefined;
1707
- } | {
1708
- anonymous: boolean;
1709
- inputs: {
1710
- indexed: boolean;
1711
- internalType: string;
1712
- name: string;
1713
- type: string;
1714
- }[];
1715
- name: string;
1716
- type: string;
1717
- stateMutability?: undefined;
1718
- outputs?: undefined;
1719
- } | {
1720
- inputs: never[];
1721
- name: string;
1722
- outputs: {
1723
- internalType: string;
1724
- name: string;
1725
- type: string;
1726
- }[];
1727
- stateMutability: string;
1728
- type: string;
1729
- anonymous?: undefined;
1730
- } | {
1731
- inputs: {
1732
- internalType: string;
1733
- name: string;
1734
- type: string;
1735
- }[];
1736
- name: string;
1737
- outputs: never[];
1738
- stateMutability: string;
1739
- type: string;
1740
- anonymous?: undefined;
1741
- } | {
1742
- stateMutability: string;
1743
- type: string;
1744
- inputs?: undefined;
1745
- name?: undefined;
1746
- anonymous?: undefined;
1747
- outputs?: undefined;
1748
- })[];
1749
- export { abi_21 as abi };
1750
- let networks_21: {
1751
1694
  "42161": {
1752
1695
  address: string;
1753
1696
  };
1754
1697
  };
1755
- export { networks_21 as networks };
1698
+ export { networks_20 as networks };
1756
1699
  }
1757
1700
  export namespace wstETH {
1758
- let abi_22: ({
1701
+ let abi_21: ({
1759
1702
  inputs: {
1760
1703
  internalType: string;
1761
1704
  name: string;
@@ -1801,16 +1744,16 @@ export namespace wstETH {
1801
1744
  name?: undefined;
1802
1745
  outputs?: undefined;
1803
1746
  })[];
1804
- export { abi_22 as abi };
1805
- let networks_22: {
1747
+ export { abi_21 as abi };
1748
+ let networks_21: {
1806
1749
  "1": {
1807
1750
  address: string;
1808
1751
  };
1809
1752
  };
1810
- export { networks_22 as networks };
1753
+ export { networks_21 as networks };
1811
1754
  }
1812
1755
  export namespace AaveLoanInfoV2 {
1813
- let abi_23: ({
1756
+ let abi_22: ({
1814
1757
  inputs: {
1815
1758
  internalType: string;
1816
1759
  name: string;
@@ -1844,8 +1787,8 @@ export namespace AaveLoanInfoV2 {
1844
1787
  stateMutability: string;
1845
1788
  type: string;
1846
1789
  })[];
1847
- export { abi_23 as abi };
1848
- let networks_23: {
1790
+ export { abi_22 as abi };
1791
+ let networks_22: {
1849
1792
  "1": {
1850
1793
  address: string;
1851
1794
  createdBlock: number;
@@ -2014,10 +1957,10 @@ export namespace AaveLoanInfoV2 {
2014
1957
  };
2015
1958
  };
2016
1959
  };
2017
- export { networks_23 as networks };
1960
+ export { networks_22 as networks };
2018
1961
  }
2019
1962
  export namespace LendingPoolAddressesProvider {
2020
- let abi_24: ({
1963
+ let abi_23: ({
2021
1964
  anonymous: boolean;
2022
1965
  inputs: {
2023
1966
  indexed: boolean;
@@ -2045,16 +1988,16 @@ export namespace LendingPoolAddressesProvider {
2045
1988
  type: string;
2046
1989
  anonymous?: undefined;
2047
1990
  })[];
2048
- export { abi_24 as abi };
2049
- let networks_24: {
1991
+ export { abi_23 as abi };
1992
+ let networks_23: {
2050
1993
  "1": {
2051
1994
  address: string;
2052
1995
  };
2053
1996
  };
2054
- export { networks_24 as networks };
1997
+ export { networks_23 as networks };
2055
1998
  }
2056
1999
  export namespace AaveProtocolDataProvider {
2057
- let abi_25: ({
2000
+ let abi_24: ({
2058
2001
  inputs: {
2059
2002
  internalType: string;
2060
2003
  name: string;
@@ -2094,16 +2037,16 @@ export namespace AaveProtocolDataProvider {
2094
2037
  stateMutability: string;
2095
2038
  type: string;
2096
2039
  })[];
2097
- export { abi_25 as abi };
2098
- let networks_25: {
2040
+ export { abi_24 as abi };
2041
+ let networks_24: {
2099
2042
  "1": {
2100
2043
  address: string;
2101
2044
  };
2102
2045
  };
2103
- export { networks_25 as networks };
2046
+ export { networks_24 as networks };
2104
2047
  }
2105
2048
  export namespace AaveLendingPoolV2 {
2106
- let abi_26: ({
2049
+ let abi_25: ({
2107
2050
  anonymous: boolean;
2108
2051
  inputs: {
2109
2052
  indexed: boolean;
@@ -2161,16 +2104,16 @@ export namespace AaveLendingPoolV2 {
2161
2104
  type: string;
2162
2105
  anonymous?: undefined;
2163
2106
  })[];
2164
- export { abi_26 as abi };
2165
- let networks_26: {
2107
+ export { abi_25 as abi };
2108
+ let networks_25: {
2166
2109
  "1": {
2167
2110
  address: string;
2168
2111
  };
2169
2112
  };
2170
- export { networks_26 as networks };
2113
+ export { networks_25 as networks };
2171
2114
  }
2172
2115
  export namespace CompoundLoanInfo {
2173
- let abi_27: ({
2116
+ let abi_26: ({
2174
2117
  inputs: {
2175
2118
  internalType: string;
2176
2119
  name: string;
@@ -2204,8 +2147,8 @@ export namespace CompoundLoanInfo {
2204
2147
  stateMutability: string;
2205
2148
  type: string;
2206
2149
  })[];
2207
- export { abi_27 as abi };
2208
- let networks_27: {
2150
+ export { abi_26 as abi };
2151
+ let networks_26: {
2209
2152
  "1": {
2210
2153
  address: string;
2211
2154
  createdBlock: number;
@@ -2343,10 +2286,10 @@ export namespace CompoundLoanInfo {
2343
2286
  };
2344
2287
  };
2345
2288
  };
2346
- export { networks_27 as networks };
2289
+ export { networks_26 as networks };
2347
2290
  }
2348
2291
  export namespace Comptroller {
2349
- let abi_28: ({
2292
+ let abi_27: ({
2350
2293
  inputs: never[];
2351
2294
  payable: boolean;
2352
2295
  stateMutability: string;
@@ -2387,17 +2330,17 @@ export namespace Comptroller {
2387
2330
  type: string;
2388
2331
  anonymous?: undefined;
2389
2332
  })[];
2390
- export { abi_28 as abi };
2391
- let networks_28: {
2333
+ export { abi_27 as abi };
2334
+ let networks_27: {
2392
2335
  "1": {
2393
2336
  createdBlock: number;
2394
2337
  address: string;
2395
2338
  };
2396
2339
  };
2397
- export { networks_28 as networks };
2340
+ export { networks_27 as networks };
2398
2341
  }
2399
2342
  export namespace IVariableDebtToken {
2400
- let abi_29: {
2343
+ let abi_28: {
2401
2344
  inputs: {
2402
2345
  internalType: string;
2403
2346
  name: string;
@@ -2412,16 +2355,16 @@ export namespace IVariableDebtToken {
2412
2355
  stateMutability: string;
2413
2356
  type: string;
2414
2357
  }[];
2415
- export { abi_29 as abi };
2416
- let networks_29: {
2358
+ export { abi_28 as abi };
2359
+ let networks_28: {
2417
2360
  "1": {
2418
2361
  address: string;
2419
2362
  };
2420
2363
  };
2421
- export { networks_29 as networks };
2364
+ export { networks_28 as networks };
2422
2365
  }
2423
2366
  export namespace IAToken {
2424
- let abi_30: {
2367
+ let abi_29: {
2425
2368
  inputs: {
2426
2369
  internalType: string;
2427
2370
  name: string;
@@ -2436,16 +2379,16 @@ export namespace IAToken {
2436
2379
  stateMutability: string;
2437
2380
  type: string;
2438
2381
  }[];
2439
- export { abi_30 as abi };
2440
- let networks_30: {
2382
+ export { abi_29 as abi };
2383
+ let networks_29: {
2441
2384
  "1": {
2442
2385
  address: string;
2443
2386
  };
2444
2387
  };
2445
- export { networks_30 as networks };
2388
+ export { networks_29 as networks };
2446
2389
  }
2447
2390
  export namespace MorphoAaveV2Proxy {
2448
- let abi_31: ({
2391
+ let abi_30: ({
2449
2392
  inputs: never[];
2450
2393
  name: string;
2451
2394
  type: string;
@@ -2518,16 +2461,16 @@ export namespace MorphoAaveV2Proxy {
2518
2461
  type: string;
2519
2462
  anonymous?: undefined;
2520
2463
  })[];
2521
- export { abi_31 as abi };
2522
- let networks_31: {
2464
+ export { abi_30 as abi };
2465
+ let networks_30: {
2523
2466
  "1": {
2524
2467
  address: string;
2525
2468
  };
2526
2469
  };
2527
- export { networks_31 as networks };
2470
+ export { networks_30 as networks };
2528
2471
  }
2529
2472
  export namespace MorphoAaveV3ProxyEthMarket {
2530
- let abi_32: ({
2473
+ let abi_31: ({
2531
2474
  inputs: {
2532
2475
  internalType: string;
2533
2476
  name: string;
@@ -2595,16 +2538,16 @@ export namespace MorphoAaveV3ProxyEthMarket {
2595
2538
  stateMutability: string;
2596
2539
  type: string;
2597
2540
  })[];
2598
- export { abi_32 as abi };
2599
- let networks_32: {
2541
+ export { abi_31 as abi };
2542
+ let networks_31: {
2600
2543
  "1": {
2601
2544
  address: string;
2602
2545
  };
2603
2546
  };
2604
- export { networks_32 as networks };
2547
+ export { networks_31 as networks };
2605
2548
  }
2606
2549
  export namespace Pot {
2607
- let abi_33: ({
2550
+ let abi_32: ({
2608
2551
  inputs: {
2609
2552
  internalType: string;
2610
2553
  name: string;
@@ -2649,17 +2592,17 @@ export namespace Pot {
2649
2592
  type: string;
2650
2593
  anonymous?: undefined;
2651
2594
  })[];
2652
- export { abi_33 as abi };
2653
- let networks_33: {
2595
+ export { abi_32 as abi };
2596
+ let networks_32: {
2654
2597
  "1": {
2655
2598
  address: string;
2656
2599
  createdBlock: number;
2657
2600
  };
2658
2601
  };
2659
- export { networks_33 as networks };
2602
+ export { networks_32 as networks };
2660
2603
  }
2661
2604
  export namespace MorphoAaveV2View {
2662
- let abi_34: ({
2605
+ let abi_33: ({
2663
2606
  inputs: never[];
2664
2607
  name: string;
2665
2608
  outputs: {
@@ -2699,8 +2642,8 @@ export namespace MorphoAaveV2View {
2699
2642
  stateMutability: string;
2700
2643
  type: string;
2701
2644
  })[];
2702
- export { abi_34 as abi };
2703
- let networks_34: {
2645
+ export { abi_33 as abi };
2646
+ let networks_33: {
2704
2647
  "1": {
2705
2648
  address: string;
2706
2649
  createdBlock: number;
@@ -2741,10 +2684,10 @@ export namespace MorphoAaveV2View {
2741
2684
  };
2742
2685
  };
2743
2686
  };
2744
- export { networks_34 as networks };
2687
+ export { networks_33 as networks };
2745
2688
  }
2746
2689
  export namespace SparkView {
2747
- let abi_35: ({
2690
+ let abi_34: ({
2748
2691
  inputs: {
2749
2692
  internalType: string;
2750
2693
  name: string;
@@ -2797,8 +2740,8 @@ export namespace SparkView {
2797
2740
  stateMutability: string;
2798
2741
  type: string;
2799
2742
  })[];
2800
- export { abi_35 as abi };
2801
- let networks_35: {
2743
+ export { abi_34 as abi };
2744
+ let networks_34: {
2802
2745
  "1": {
2803
2746
  address: string;
2804
2747
  createdBlock: number;
@@ -2829,10 +2772,10 @@ export namespace SparkView {
2829
2772
  };
2830
2773
  };
2831
2774
  };
2832
- export { networks_35 as networks };
2775
+ export { networks_34 as networks };
2833
2776
  }
2834
2777
  export namespace SparkIncentiveDataProvider {
2835
- let abi_36: {
2778
+ let abi_35: {
2836
2779
  inputs: {
2837
2780
  internalType: string;
2838
2781
  name: string;
@@ -2872,16 +2815,16 @@ export namespace SparkIncentiveDataProvider {
2872
2815
  stateMutability: string;
2873
2816
  type: string;
2874
2817
  }[];
2875
- export { abi_36 as abi };
2876
- let networks_36: {
2818
+ export { abi_35 as abi };
2819
+ let networks_35: {
2877
2820
  "1": {
2878
2821
  address: string;
2879
2822
  };
2880
2823
  };
2881
- export { networks_36 as networks };
2824
+ export { networks_35 as networks };
2882
2825
  }
2883
2826
  export namespace SparkLendingPool {
2884
- let abi_37: ({
2827
+ let abi_36: ({
2885
2828
  inputs: {
2886
2829
  internalType: string;
2887
2830
  name: string;
@@ -2971,16 +2914,16 @@ export namespace SparkLendingPool {
2971
2914
  type: string;
2972
2915
  anonymous?: undefined;
2973
2916
  })[];
2974
- export { abi_37 as abi };
2975
- let networks_37: {
2917
+ export { abi_36 as abi };
2918
+ let networks_36: {
2976
2919
  "1": {
2977
2920
  address: string;
2978
2921
  };
2979
2922
  };
2980
- export { networks_37 as networks };
2923
+ export { networks_36 as networks };
2981
2924
  }
2982
2925
  export namespace SparkPoolAddressesProvider {
2983
- let abi_38: ({
2926
+ let abi_37: ({
2984
2927
  inputs: {
2985
2928
  internalType: string;
2986
2929
  name: string;
@@ -3019,16 +2962,16 @@ export namespace SparkPoolAddressesProvider {
3019
2962
  type: string;
3020
2963
  anonymous?: undefined;
3021
2964
  })[];
3022
- export { abi_38 as abi };
3023
- let networks_38: {
2965
+ export { abi_37 as abi };
2966
+ let networks_37: {
3024
2967
  "1": {
3025
2968
  address: string;
3026
2969
  };
3027
2970
  };
3028
- export { networks_38 as networks };
2971
+ export { networks_37 as networks };
3029
2972
  }
3030
2973
  export namespace SparkProtocolDataProvider {
3031
- let abi_39: ({
2974
+ let abi_38: ({
3032
2975
  inputs: {
3033
2976
  internalType: string;
3034
2977
  name: string;
@@ -3068,16 +3011,16 @@ export namespace SparkProtocolDataProvider {
3068
3011
  stateMutability: string;
3069
3012
  type: string;
3070
3013
  })[];
3071
- export { abi_39 as abi };
3072
- let networks_39: {
3014
+ export { abi_38 as abi };
3015
+ let networks_38: {
3073
3016
  "1": {
3074
3017
  address: string;
3075
3018
  };
3076
3019
  };
3077
- export { networks_39 as networks };
3020
+ export { networks_38 as networks };
3078
3021
  }
3079
3022
  export namespace crvUSDwstETHController {
3080
- let abi_40: ({
3023
+ let abi_39: ({
3081
3024
  name: string;
3082
3025
  inputs: {
3083
3026
  name: string;
@@ -3136,16 +3079,16 @@ export namespace crvUSDwstETHController {
3136
3079
  }[];
3137
3080
  anonymous?: undefined;
3138
3081
  })[];
3139
- export { abi_40 as abi };
3140
- let networks_40: {
3082
+ export { abi_39 as abi };
3083
+ let networks_39: {
3141
3084
  "1": {
3142
3085
  address: string;
3143
3086
  };
3144
3087
  };
3145
- export { networks_40 as networks };
3088
+ export { networks_39 as networks };
3146
3089
  }
3147
3090
  export namespace crvUSDETHController {
3148
- let abi_41: ({
3091
+ let abi_40: ({
3149
3092
  name: string;
3150
3093
  inputs: {
3151
3094
  name: string;
@@ -3204,16 +3147,16 @@ export namespace crvUSDETHController {
3204
3147
  }[];
3205
3148
  anonymous?: undefined;
3206
3149
  })[];
3207
- export { abi_41 as abi };
3208
- let networks_41: {
3150
+ export { abi_40 as abi };
3151
+ let networks_40: {
3209
3152
  "1": {
3210
3153
  address: string;
3211
3154
  };
3212
3155
  };
3213
- export { networks_41 as networks };
3156
+ export { networks_40 as networks };
3214
3157
  }
3215
3158
  export namespace crvUSDWBTCController {
3216
- let abi_42: ({
3159
+ let abi_41: ({
3217
3160
  name: string;
3218
3161
  inputs: {
3219
3162
  name: string;
@@ -3272,16 +3215,16 @@ export namespace crvUSDWBTCController {
3272
3215
  }[];
3273
3216
  anonymous?: undefined;
3274
3217
  })[];
3275
- export { abi_42 as abi };
3276
- let networks_42: {
3218
+ export { abi_41 as abi };
3219
+ let networks_41: {
3277
3220
  "1": {
3278
3221
  address: string;
3279
3222
  };
3280
3223
  };
3281
- export { networks_42 as networks };
3224
+ export { networks_41 as networks };
3282
3225
  }
3283
3226
  export namespace crvUSDtBTCController {
3284
- let abi_43: ({
3227
+ let abi_42: ({
3285
3228
  name: string;
3286
3229
  inputs: {
3287
3230
  name: string;
@@ -3340,16 +3283,16 @@ export namespace crvUSDtBTCController {
3340
3283
  }[];
3341
3284
  anonymous?: undefined;
3342
3285
  })[];
3343
- export { abi_43 as abi };
3344
- let networks_43: {
3286
+ export { abi_42 as abi };
3287
+ let networks_42: {
3345
3288
  "1": {
3346
3289
  address: string;
3347
3290
  };
3348
3291
  };
3349
- export { networks_43 as networks };
3292
+ export { networks_42 as networks };
3350
3293
  }
3351
3294
  export namespace crvUSDsfrxETHController {
3352
- let abi_44: ({
3295
+ let abi_43: ({
3353
3296
  name: string;
3354
3297
  inputs: {
3355
3298
  name: string;
@@ -3408,16 +3351,16 @@ export namespace crvUSDsfrxETHController {
3408
3351
  }[];
3409
3352
  anonymous?: undefined;
3410
3353
  })[];
3411
- export { abi_44 as abi };
3412
- let networks_44: {
3354
+ export { abi_43 as abi };
3355
+ let networks_43: {
3413
3356
  "1": {
3414
3357
  address: string;
3415
3358
  };
3416
3359
  };
3417
- export { networks_44 as networks };
3360
+ export { networks_43 as networks };
3418
3361
  }
3419
3362
  export namespace crvUSDwstETHAmm {
3420
- let abi_45: ({
3363
+ let abi_44: ({
3421
3364
  name: string;
3422
3365
  inputs: {
3423
3366
  name: string;
@@ -3452,16 +3395,16 @@ export namespace crvUSDwstETHAmm {
3452
3395
  }[];
3453
3396
  anonymous?: undefined;
3454
3397
  })[];
3455
- export { abi_45 as abi };
3456
- let networks_45: {
3398
+ export { abi_44 as abi };
3399
+ let networks_44: {
3457
3400
  "1": {
3458
3401
  address: string;
3459
3402
  };
3460
3403
  };
3461
- export { networks_45 as networks };
3404
+ export { networks_44 as networks };
3462
3405
  }
3463
3406
  export namespace crvUSDETHAmm {
3464
- let abi_46: ({
3407
+ let abi_45: ({
3465
3408
  name: string;
3466
3409
  inputs: {
3467
3410
  name: string;
@@ -3496,16 +3439,16 @@ export namespace crvUSDETHAmm {
3496
3439
  }[];
3497
3440
  anonymous?: undefined;
3498
3441
  })[];
3499
- export { abi_46 as abi };
3500
- let networks_46: {
3442
+ export { abi_45 as abi };
3443
+ let networks_45: {
3501
3444
  "1": {
3502
3445
  address: string;
3503
3446
  };
3504
3447
  };
3505
- export { networks_46 as networks };
3448
+ export { networks_45 as networks };
3506
3449
  }
3507
3450
  export namespace crvUSDWBTCAmm {
3508
- let abi_47: ({
3451
+ let abi_46: ({
3509
3452
  name: string;
3510
3453
  inputs: {
3511
3454
  name: string;
@@ -3540,16 +3483,16 @@ export namespace crvUSDWBTCAmm {
3540
3483
  }[];
3541
3484
  anonymous?: undefined;
3542
3485
  })[];
3543
- export { abi_47 as abi };
3544
- let networks_47: {
3486
+ export { abi_46 as abi };
3487
+ let networks_46: {
3545
3488
  "1": {
3546
3489
  address: string;
3547
3490
  };
3548
3491
  };
3549
- export { networks_47 as networks };
3492
+ export { networks_46 as networks };
3550
3493
  }
3551
3494
  export namespace crvUSDtBTCAmm {
3552
- let abi_48: ({
3495
+ let abi_47: ({
3553
3496
  name: string;
3554
3497
  inputs: {
3555
3498
  name: string;
@@ -3584,16 +3527,16 @@ export namespace crvUSDtBTCAmm {
3584
3527
  }[];
3585
3528
  anonymous?: undefined;
3586
3529
  })[];
3587
- export { abi_48 as abi };
3588
- let networks_48: {
3530
+ export { abi_47 as abi };
3531
+ let networks_47: {
3589
3532
  "1": {
3590
3533
  address: string;
3591
3534
  };
3592
3535
  };
3593
- export { networks_48 as networks };
3536
+ export { networks_47 as networks };
3594
3537
  }
3595
3538
  export namespace crvUSDsfrxETHAmm {
3596
- let abi_49: ({
3539
+ let abi_48: ({
3597
3540
  name: string;
3598
3541
  inputs: {
3599
3542
  name: string;
@@ -3628,16 +3571,16 @@ export namespace crvUSDsfrxETHAmm {
3628
3571
  }[];
3629
3572
  anonymous?: undefined;
3630
3573
  })[];
3631
- export { abi_49 as abi };
3632
- let networks_49: {
3574
+ export { abi_48 as abi };
3575
+ let networks_48: {
3633
3576
  "1": {
3634
3577
  address: string;
3635
3578
  };
3636
3579
  };
3637
- export { networks_49 as networks };
3580
+ export { networks_48 as networks };
3638
3581
  }
3639
3582
  export namespace crvUSDView {
3640
- let abi_50: ({
3583
+ let abi_49: ({
3641
3584
  inputs: never[];
3642
3585
  name: string;
3643
3586
  type: string;
@@ -3687,8 +3630,8 @@ export namespace crvUSDView {
3687
3630
  stateMutability: string;
3688
3631
  type: string;
3689
3632
  })[];
3690
- export { abi_50 as abi };
3691
- let networks_50: {
3633
+ export { abi_49 as abi };
3634
+ let networks_49: {
3692
3635
  "1": {
3693
3636
  address: string;
3694
3637
  createdBlock: number;
@@ -3765,10 +3708,10 @@ export namespace crvUSDView {
3765
3708
  };
3766
3709
  };
3767
3710
  };
3768
- export { networks_50 as networks };
3711
+ export { networks_49 as networks };
3769
3712
  }
3770
3713
  export namespace crvUSDFactory {
3771
- let abi_51: ({
3714
+ let abi_50: ({
3772
3715
  name: string;
3773
3716
  inputs: {
3774
3717
  name: string;
@@ -3803,16 +3746,16 @@ export namespace crvUSDFactory {
3803
3746
  }[];
3804
3747
  anonymous?: undefined;
3805
3748
  })[];
3806
- export { abi_51 as abi };
3807
- let networks_51: {
3749
+ export { abi_50 as abi };
3750
+ let networks_50: {
3808
3751
  "1": {
3809
3752
  address: string;
3810
3753
  };
3811
3754
  };
3812
- export { networks_51 as networks };
3755
+ export { networks_50 as networks };
3813
3756
  }
3814
3757
  export namespace LiquityView {
3815
- let abi_52: {
3758
+ let abi_51: {
3816
3759
  inputs: {
3817
3760
  internalType: string;
3818
3761
  name: string;
@@ -3827,8 +3770,8 @@ export namespace LiquityView {
3827
3770
  stateMutability: string;
3828
3771
  type: string;
3829
3772
  }[];
3830
- export { abi_52 as abi };
3831
- let networks_52: {
3773
+ export { abi_51 as abi };
3774
+ let networks_51: {
3832
3775
  "1": {
3833
3776
  address: string;
3834
3777
  createdBlock: number;
@@ -3908,10 +3851,10 @@ export namespace LiquityView {
3908
3851
  };
3909
3852
  };
3910
3853
  };
3911
- export { networks_52 as networks };
3854
+ export { networks_51 as networks };
3912
3855
  }
3913
3856
  export namespace CollSurplusPool {
3914
- let abi_53: ({
3857
+ let abi_52: ({
3915
3858
  anonymous: boolean;
3916
3859
  inputs: {
3917
3860
  indexed: boolean;
@@ -3946,16 +3889,16 @@ export namespace CollSurplusPool {
3946
3889
  name?: undefined;
3947
3890
  outputs?: undefined;
3948
3891
  })[];
3949
- export { abi_53 as abi };
3950
- let networks_53: {
3892
+ export { abi_52 as abi };
3893
+ let networks_52: {
3951
3894
  "1": {
3952
3895
  address: string;
3953
3896
  };
3954
3897
  };
3955
- export { networks_53 as networks };
3898
+ export { networks_52 as networks };
3956
3899
  }
3957
3900
  export namespace TroveManager {
3958
- let abi_54: ({
3901
+ let abi_53: ({
3959
3902
  anonymous: boolean;
3960
3903
  inputs: {
3961
3904
  indexed: boolean;
@@ -3983,16 +3926,16 @@ export namespace TroveManager {
3983
3926
  type: string;
3984
3927
  anonymous?: undefined;
3985
3928
  })[];
3986
- export { abi_54 as abi };
3987
- let networks_54: {
3929
+ export { abi_53 as abi };
3930
+ let networks_53: {
3988
3931
  "1": {
3989
3932
  address: string;
3990
3933
  };
3991
3934
  };
3992
- export { networks_54 as networks };
3935
+ export { networks_53 as networks };
3993
3936
  }
3994
3937
  export namespace PriceFeed {
3995
- let abi_55: ({
3938
+ let abi_54: ({
3996
3939
  anonymous: boolean;
3997
3940
  inputs: {
3998
3941
  indexed: boolean;
@@ -4027,16 +3970,16 @@ export namespace PriceFeed {
4027
3970
  type: string;
4028
3971
  anonymous?: undefined;
4029
3972
  })[];
4030
- export { abi_55 as abi };
4031
- let networks_55: {
3973
+ export { abi_54 as abi };
3974
+ let networks_54: {
4032
3975
  "1": {
4033
3976
  address: string;
4034
3977
  };
4035
3978
  };
4036
- export { networks_55 as networks };
3979
+ export { networks_54 as networks };
4037
3980
  }
4038
3981
  export namespace LiquityActivePool {
4039
- let abi_56: {
3982
+ let abi_55: {
4040
3983
  inputs: never[];
4041
3984
  name: string;
4042
3985
  outputs: {
@@ -4047,16 +3990,16 @@ export namespace LiquityActivePool {
4047
3990
  stateMutability: string;
4048
3991
  type: string;
4049
3992
  }[];
4050
- export { abi_56 as abi };
4051
- let networks_56: {
3993
+ export { abi_55 as abi };
3994
+ let networks_55: {
4052
3995
  "1": {
4053
3996
  address: string;
4054
3997
  };
4055
3998
  };
4056
- export { networks_56 as networks };
3999
+ export { networks_55 as networks };
4057
4000
  }
4058
4001
  export namespace McdView {
4059
- let abi_57: {
4002
+ let abi_56: {
4060
4003
  inputs: {
4061
4004
  internalType: string;
4062
4005
  name: string;
@@ -4071,8 +4014,8 @@ export namespace McdView {
4071
4014
  stateMutability: string;
4072
4015
  type: string;
4073
4016
  }[];
4074
- export { abi_57 as abi };
4075
- let networks_57: {
4017
+ export { abi_56 as abi };
4018
+ let networks_56: {
4076
4019
  "1": {
4077
4020
  address: string;
4078
4021
  createdBlock: number;
@@ -4116,10 +4059,10 @@ export namespace McdView {
4116
4059
  };
4117
4060
  };
4118
4061
  };
4119
- export { networks_57 as networks };
4062
+ export { networks_56 as networks };
4120
4063
  }
4121
4064
  export namespace McdSpotter {
4122
- let abi_58: {
4065
+ let abi_57: {
4123
4066
  constant: boolean;
4124
4067
  inputs: {
4125
4068
  name: string;
@@ -4134,16 +4077,16 @@ export namespace McdSpotter {
4134
4077
  stateMutability: string;
4135
4078
  type: string;
4136
4079
  }[];
4137
- export { abi_58 as abi };
4138
- let networks_58: {
4080
+ export { abi_57 as abi };
4081
+ let networks_57: {
4139
4082
  "1": {
4140
4083
  address: string;
4141
4084
  };
4142
4085
  };
4143
- export { networks_58 as networks };
4086
+ export { networks_57 as networks };
4144
4087
  }
4145
4088
  export namespace McdVat {
4146
- let abi_59: ({
4089
+ let abi_58: ({
4147
4090
  inputs: never[];
4148
4091
  payable: boolean;
4149
4092
  stateMutability: string;
@@ -4184,16 +4127,16 @@ export namespace McdVat {
4184
4127
  type: string;
4185
4128
  anonymous?: undefined;
4186
4129
  })[];
4187
- export { abi_59 as abi };
4188
- let networks_59: {
4130
+ export { abi_58 as abi };
4131
+ let networks_58: {
4189
4132
  "1": {
4190
4133
  address: string;
4191
4134
  };
4192
4135
  };
4193
- export { networks_59 as networks };
4136
+ export { networks_58 as networks };
4194
4137
  }
4195
4138
  export namespace McdJug {
4196
- let abi_60: ({
4139
+ let abi_59: ({
4197
4140
  inputs: {
4198
4141
  internalType: string;
4199
4142
  name: string;
@@ -4238,16 +4181,16 @@ export namespace McdJug {
4238
4181
  type: string;
4239
4182
  anonymous?: undefined;
4240
4183
  })[];
4241
- export { abi_60 as abi };
4242
- let networks_60: {
4184
+ export { abi_59 as abi };
4185
+ let networks_59: {
4243
4186
  "1": {
4244
4187
  address: string;
4245
4188
  };
4246
4189
  };
4247
- export { networks_60 as networks };
4190
+ export { networks_59 as networks };
4248
4191
  }
4249
4192
  export namespace McdDog {
4250
- let abi_61: ({
4193
+ let abi_60: ({
4251
4194
  inputs: {
4252
4195
  internalType: string;
4253
4196
  name: string;
@@ -4286,16 +4229,16 @@ export namespace McdDog {
4286
4229
  type: string;
4287
4230
  anonymous?: undefined;
4288
4231
  })[];
4289
- export { abi_61 as abi };
4290
- let networks_61: {
4232
+ export { abi_60 as abi };
4233
+ let networks_60: {
4291
4234
  "1": {
4292
4235
  address: string;
4293
4236
  };
4294
4237
  };
4295
- export { networks_61 as networks };
4238
+ export { networks_60 as networks };
4296
4239
  }
4297
4240
  export namespace ChickenBondsView {
4298
- let abi_62: ({
4241
+ let abi_61: ({
4299
4242
  inputs: never[];
4300
4243
  name: string;
4301
4244
  outputs: {
@@ -4325,17 +4268,17 @@ export namespace ChickenBondsView {
4325
4268
  stateMutability: string;
4326
4269
  type: string;
4327
4270
  })[];
4328
- export { abi_62 as abi };
4329
- let networks_62: {
4271
+ export { abi_61 as abi };
4272
+ let networks_61: {
4330
4273
  "1": {
4331
4274
  address: string;
4332
4275
  createdBlock: number;
4333
4276
  };
4334
4277
  };
4335
- export { networks_62 as networks };
4278
+ export { networks_61 as networks };
4336
4279
  }
4337
4280
  export namespace ChickenBondsManager {
4338
- let abi_63: {
4281
+ let abi_62: {
4339
4282
  inputs: {
4340
4283
  internalType: string;
4341
4284
  name: string;
@@ -4350,16 +4293,16 @@ export namespace ChickenBondsManager {
4350
4293
  stateMutability: string;
4351
4294
  type: string;
4352
4295
  }[];
4353
- export { abi_63 as abi };
4354
- let networks_63: {
4296
+ export { abi_62 as abi };
4297
+ let networks_62: {
4355
4298
  "1": {
4356
4299
  address: string;
4357
4300
  };
4358
4301
  };
4359
- export { networks_63 as networks };
4302
+ export { networks_62 as networks };
4360
4303
  }
4361
4304
  export namespace COMPPriceFeed {
4362
- let abi_64: ({
4305
+ let abi_63: ({
4363
4306
  inputs: {
4364
4307
  internalType: string;
4365
4308
  name: string;
@@ -4398,16 +4341,16 @@ export namespace COMPPriceFeed {
4398
4341
  type: string;
4399
4342
  anonymous?: undefined;
4400
4343
  })[];
4401
- export { abi_64 as abi };
4402
- let networks_64: {
4344
+ export { abi_63 as abi };
4345
+ let networks_63: {
4403
4346
  "1": {
4404
4347
  address: string;
4405
4348
  };
4406
4349
  };
4407
- export { networks_64 as networks };
4350
+ export { networks_63 as networks };
4408
4351
  }
4409
4352
  export namespace ETHPriceFeed {
4410
- let abi_65: ({
4353
+ let abi_64: ({
4411
4354
  inputs: {
4412
4355
  internalType: string;
4413
4356
  name: string;
@@ -4446,16 +4389,16 @@ export namespace ETHPriceFeed {
4446
4389
  type: string;
4447
4390
  anonymous?: undefined;
4448
4391
  })[];
4449
- export { abi_65 as abi };
4450
- let networks_65: {
4392
+ export { abi_64 as abi };
4393
+ let networks_64: {
4451
4394
  "1": {
4452
4395
  address: string;
4453
4396
  };
4454
4397
  };
4455
- export { networks_65 as networks };
4398
+ export { networks_64 as networks };
4456
4399
  }
4457
4400
  export namespace USDCPriceFeed {
4458
- let abi_66: ({
4401
+ let abi_65: ({
4459
4402
  inputs: {
4460
4403
  internalType: string;
4461
4404
  name: string;
@@ -4494,16 +4437,16 @@ export namespace USDCPriceFeed {
4494
4437
  type: string;
4495
4438
  anonymous?: undefined;
4496
4439
  })[];
4497
- export { abi_66 as abi };
4498
- let networks_66: {
4440
+ export { abi_65 as abi };
4441
+ let networks_65: {
4499
4442
  "1": {
4500
4443
  address: string;
4501
4444
  };
4502
4445
  };
4503
- export { networks_66 as networks };
4446
+ export { networks_65 as networks };
4504
4447
  }
4505
4448
  export namespace MorphoBlueView {
4506
- let abi_67: ({
4449
+ let abi_66: ({
4507
4450
  inputs: {
4508
4451
  components: {
4509
4452
  internalType: string;
@@ -4552,16 +4495,16 @@ export namespace MorphoBlueView {
4552
4495
  stateMutability: string;
4553
4496
  type: string;
4554
4497
  })[];
4555
- export { abi_67 as abi };
4556
- let networks_67: {
4498
+ export { abi_66 as abi };
4499
+ let networks_66: {
4557
4500
  "1": {
4558
4501
  address: string;
4559
4502
  };
4560
4503
  };
4561
- export { networks_67 as networks };
4504
+ export { networks_66 as networks };
4562
4505
  }
4563
4506
  export namespace FeedRegistry {
4564
- let abi_68: ({
4507
+ let abi_67: ({
4565
4508
  anonymous: boolean;
4566
4509
  inputs: {
4567
4510
  indexed: boolean;
@@ -4609,16 +4552,16 @@ export namespace FeedRegistry {
4609
4552
  type: string;
4610
4553
  anonymous?: undefined;
4611
4554
  })[];
4612
- export { abi_68 as abi };
4613
- let networks_68: {
4555
+ export { abi_67 as abi };
4556
+ let networks_67: {
4614
4557
  "1": {
4615
4558
  address: string;
4616
4559
  };
4617
4560
  };
4618
- export { networks_68 as networks };
4561
+ export { networks_67 as networks };
4619
4562
  }
4620
4563
  export namespace LlamaLendView {
4621
- let abi_69: ({
4564
+ let abi_68: ({
4622
4565
  inputs: {
4623
4566
  internalType: string;
4624
4567
  name: string;
@@ -4662,16 +4605,16 @@ export namespace LlamaLendView {
4662
4605
  stateMutability: string;
4663
4606
  type: string;
4664
4607
  })[];
4665
- export { abi_69 as abi };
4666
- let networks_69: {
4608
+ export { abi_68 as abi };
4609
+ let networks_68: {
4667
4610
  "1": {
4668
4611
  address: string;
4669
4612
  };
4670
4613
  };
4671
- export { networks_69 as networks };
4614
+ export { networks_68 as networks };
4672
4615
  }
4673
4616
  export namespace LlamaLendWstETHCrvUSDController {
4674
- let abi_70: ({
4617
+ let abi_69: ({
4675
4618
  name: string;
4676
4619
  inputs: {
4677
4620
  name: string;
@@ -4723,16 +4666,16 @@ export namespace LlamaLendWstETHCrvUSDController {
4723
4666
  }[];
4724
4667
  anonymous?: undefined;
4725
4668
  })[];
4726
- export { abi_70 as abi };
4727
- let networks_70: {
4669
+ export { abi_69 as abi };
4670
+ let networks_69: {
4728
4671
  "1": {
4729
4672
  address: string;
4730
4673
  };
4731
4674
  };
4732
- export { networks_70 as networks };
4675
+ export { networks_69 as networks };
4733
4676
  }
4734
4677
  export namespace LlamaLendCRVCrvUSDController {
4735
- let abi_71: ({
4678
+ let abi_70: ({
4736
4679
  name: string;
4737
4680
  inputs: {
4738
4681
  name: string;
@@ -4784,16 +4727,16 @@ export namespace LlamaLendCRVCrvUSDController {
4784
4727
  }[];
4785
4728
  anonymous?: undefined;
4786
4729
  })[];
4787
- export { abi_71 as abi };
4788
- let networks_71: {
4730
+ export { abi_70 as abi };
4731
+ let networks_70: {
4789
4732
  "1": {
4790
4733
  address: string;
4791
4734
  };
4792
4735
  };
4793
- export { networks_71 as networks };
4736
+ export { networks_70 as networks };
4794
4737
  }
4795
4738
  export namespace LlamaLendCrvUSDCRVController {
4796
- let abi_72: ({
4739
+ let abi_71: ({
4797
4740
  name: string;
4798
4741
  inputs: {
4799
4742
  name: string;
@@ -4845,16 +4788,16 @@ export namespace LlamaLendCrvUSDCRVController {
4845
4788
  }[];
4846
4789
  anonymous?: undefined;
4847
4790
  })[];
4848
- export { abi_72 as abi };
4849
- let networks_72: {
4791
+ export { abi_71 as abi };
4792
+ let networks_71: {
4850
4793
  "1": {
4851
4794
  address: string;
4852
4795
  };
4853
4796
  };
4854
- export { networks_72 as networks };
4797
+ export { networks_71 as networks };
4855
4798
  }
4856
4799
  export namespace LlamaLendTBTCCrvUSDController {
4857
- let abi_73: ({
4800
+ let abi_72: ({
4858
4801
  name: string;
4859
4802
  inputs: {
4860
4803
  name: string;
@@ -4906,11 +4849,11 @@ export namespace LlamaLendTBTCCrvUSDController {
4906
4849
  }[];
4907
4850
  anonymous?: undefined;
4908
4851
  })[];
4909
- export { abi_73 as abi };
4910
- let networks_73: {
4852
+ export { abi_72 as abi };
4853
+ let networks_72: {
4911
4854
  "1": {
4912
4855
  address: string;
4913
4856
  };
4914
4857
  };
4915
- export { networks_73 as networks };
4858
+ export { networks_72 as networks };
4916
4859
  }