@defisaver/positions-sdk 0.0.20 → 0.0.22

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 (99) hide show
  1. package/README.md +63 -0
  2. package/cjs/aaveV2/index.js +9 -4
  3. package/cjs/aaveV3/index.js +9 -4
  4. package/cjs/compoundV2/index.d.ts +1 -0
  5. package/cjs/compoundV2/index.js +15 -8
  6. package/cjs/config/contracts.d.ts +373 -201
  7. package/cjs/config/contracts.js +22 -0
  8. package/cjs/helpers/aaveHelpers/index.js +0 -5
  9. package/cjs/helpers/compoundHelpers/index.js +2 -2
  10. package/cjs/markets/compound/index.d.ts +2 -0
  11. package/cjs/markets/compound/index.js +60 -13
  12. package/cjs/markets/compound/marketsAssets.d.ts +7 -1
  13. package/cjs/markets/compound/marketsAssets.js +12 -2
  14. package/cjs/morphoAaveV2/index.js +4 -3
  15. package/cjs/morphoAaveV3/index.js +9 -4
  16. package/cjs/spark/index.js +9 -4
  17. package/cjs/types/aave.d.ts +0 -5
  18. package/cjs/types/compound.d.ts +6 -4
  19. package/cjs/types/compound.js +1 -0
  20. package/cjs/types/contracts/generated/CUSDCev3.d.ts +441 -0
  21. package/cjs/types/contracts/generated/CUSDCev3.js +5 -0
  22. package/cjs/types/contracts/generated/CompV3USDCBulkerArb.d.ts +41 -0
  23. package/cjs/types/contracts/generated/CompV3USDCBulkerArb.js +5 -0
  24. package/cjs/types/contracts/generated/index.d.ts +2 -0
  25. package/esm/aaveV2/index.js +11 -6
  26. package/esm/aaveV3/index.js +11 -6
  27. package/esm/compoundV2/index.d.ts +1 -0
  28. package/esm/compoundV2/index.js +13 -7
  29. package/esm/config/contracts.d.ts +373 -201
  30. package/esm/config/contracts.js +22 -0
  31. package/esm/helpers/aaveHelpers/index.js +0 -5
  32. package/esm/helpers/compoundHelpers/index.js +2 -2
  33. package/esm/markets/compound/index.d.ts +2 -0
  34. package/esm/markets/compound/index.js +59 -13
  35. package/esm/markets/compound/marketsAssets.d.ts +7 -1
  36. package/esm/markets/compound/marketsAssets.js +11 -1
  37. package/esm/morphoAaveV2/index.js +4 -3
  38. package/esm/morphoAaveV3/index.js +9 -4
  39. package/esm/spark/index.js +11 -6
  40. package/esm/types/aave.d.ts +0 -5
  41. package/esm/types/compound.d.ts +6 -4
  42. package/esm/types/compound.js +1 -0
  43. package/esm/types/contracts/generated/CUSDCev3.d.ts +441 -0
  44. package/esm/types/contracts/generated/CUSDCev3.js +4 -0
  45. package/esm/types/contracts/generated/CompV3USDCBulkerArb.d.ts +41 -0
  46. package/esm/types/contracts/generated/CompV3USDCBulkerArb.js +4 -0
  47. package/esm/types/contracts/generated/index.d.ts +2 -0
  48. package/package.json +40 -40
  49. package/src/aaveV2/index.ts +226 -220
  50. package/src/aaveV3/index.ts +561 -554
  51. package/src/assets/index.ts +60 -60
  52. package/src/chickenBonds/index.ts +123 -123
  53. package/src/compoundV2/index.ts +219 -206
  54. package/src/compoundV3/index.ts +275 -275
  55. package/src/config/contracts.js +673 -651
  56. package/src/constants/index.ts +3 -3
  57. package/src/contracts.ts +100 -100
  58. package/src/curveUsd/index.ts +228 -228
  59. package/src/exchange/index.ts +17 -17
  60. package/src/helpers/aaveHelpers/index.ts +134 -141
  61. package/src/helpers/chickenBondsHelpers/index.ts +23 -23
  62. package/src/helpers/compoundHelpers/index.ts +181 -181
  63. package/src/helpers/curveUsdHelpers/index.ts +32 -32
  64. package/src/helpers/index.ts +5 -5
  65. package/src/helpers/makerHelpers/index.ts +94 -94
  66. package/src/helpers/sparkHelpers/index.ts +106 -106
  67. package/src/index.ts +40 -40
  68. package/src/liquity/index.ts +116 -116
  69. package/src/maker/index.ts +101 -101
  70. package/src/markets/aave/index.ts +80 -80
  71. package/src/markets/aave/marketAssets.ts +32 -32
  72. package/src/markets/compound/index.ts +141 -85
  73. package/src/markets/compound/marketsAssets.ts +46 -35
  74. package/src/markets/curveUsd/index.ts +69 -69
  75. package/src/markets/index.ts +3 -3
  76. package/src/markets/spark/index.ts +29 -29
  77. package/src/markets/spark/marketAssets.ts +9 -9
  78. package/src/moneymarket/moneymarketCommonService.ts +75 -75
  79. package/src/morpho/markets.ts +39 -39
  80. package/src/morphoAaveV2/index.ts +255 -254
  81. package/src/morphoAaveV3/index.ts +619 -614
  82. package/src/multicall/index.ts +22 -22
  83. package/src/services/dsrService.ts +15 -15
  84. package/src/services/priceService.ts +21 -21
  85. package/src/services/utils.ts +34 -34
  86. package/src/spark/index.ts +421 -413
  87. package/src/staking/staking.ts +167 -167
  88. package/src/types/aave.ts +256 -261
  89. package/src/types/chickenBonds.ts +45 -45
  90. package/src/types/common.ts +83 -83
  91. package/src/types/compound.ts +128 -122
  92. package/src/types/contracts/generated/CUSDCev3.ts +685 -0
  93. package/src/types/contracts/generated/CompV3USDCBulkerArb.ts +85 -0
  94. package/src/types/contracts/generated/index.ts +2 -0
  95. package/src/types/curveUsd.ts +112 -112
  96. package/src/types/index.ts +6 -6
  97. package/src/types/liquity.ts +30 -30
  98. package/src/types/maker.ts +50 -50
  99. package/src/types/spark.ts +106 -106
@@ -743,10 +743,13 @@ export namespace cUSDCv3 {
743
743
  "1": {
744
744
  address: string;
745
745
  };
746
+ "42161": {
747
+ address: string;
748
+ };
746
749
  };
747
750
  export { networks_13 as networks };
748
751
  }
749
- export namespace cUSDbCv3 {
752
+ export namespace cUSDCev3 {
750
753
  let abi_14: ({
751
754
  inputs: {
752
755
  components: ({
@@ -837,13 +840,13 @@ export namespace cUSDbCv3 {
837
840
  })[];
838
841
  export { abi_14 as abi };
839
842
  let networks_14: {
840
- "8453": {
843
+ "42161": {
841
844
  address: string;
842
845
  };
843
846
  };
844
847
  export { networks_14 as networks };
845
848
  }
846
- export namespace cETHv3 {
849
+ export namespace cUSDbCv3 {
847
850
  let abi_15: ({
848
851
  inputs: {
849
852
  components: ({
@@ -934,17 +937,66 @@ export namespace cETHv3 {
934
937
  })[];
935
938
  export { abi_15 as abi };
936
939
  let networks_15: {
937
- "1": {
938
- address: string;
939
- };
940
940
  "8453": {
941
941
  address: string;
942
942
  };
943
943
  };
944
944
  export { networks_15 as networks };
945
945
  }
946
- export namespace CompV3View {
946
+ export namespace cETHv3 {
947
947
  let abi_16: ({
948
+ inputs: {
949
+ components: ({
950
+ internalType: string;
951
+ name: string;
952
+ type: string;
953
+ components?: undefined;
954
+ } | {
955
+ components: {
956
+ internalType: string;
957
+ name: string;
958
+ type: string;
959
+ }[];
960
+ internalType: string;
961
+ name: string;
962
+ type: string;
963
+ })[];
964
+ internalType: string;
965
+ name: string;
966
+ type: string;
967
+ }[];
968
+ stateMutability: string;
969
+ type: string;
970
+ name?: undefined;
971
+ anonymous?: undefined;
972
+ outputs?: undefined;
973
+ } | {
974
+ inputs: never[];
975
+ name: string;
976
+ type: string;
977
+ stateMutability?: undefined;
978
+ anonymous?: undefined;
979
+ outputs?: undefined;
980
+ } | {
981
+ anonymous: boolean;
982
+ inputs: {
983
+ indexed: boolean;
984
+ internalType: string;
985
+ name: string;
986
+ type: string;
987
+ }[];
988
+ name: string;
989
+ type: string;
990
+ stateMutability?: undefined;
991
+ outputs?: undefined;
992
+ } | {
993
+ stateMutability: string;
994
+ type: string;
995
+ inputs?: undefined;
996
+ name?: undefined;
997
+ anonymous?: undefined;
998
+ outputs?: undefined;
999
+ } | {
948
1000
  inputs: {
949
1001
  internalType: string;
950
1002
  name: string;
@@ -958,6 +1010,7 @@ export namespace CompV3View {
958
1010
  }[];
959
1011
  stateMutability: string;
960
1012
  type: string;
1013
+ anonymous?: undefined;
961
1014
  } | {
962
1015
  inputs: {
963
1016
  internalType: string;
@@ -977,9 +1030,56 @@ export namespace CompV3View {
977
1030
  }[];
978
1031
  stateMutability: string;
979
1032
  type: string;
1033
+ anonymous?: undefined;
980
1034
  })[];
981
1035
  export { abi_16 as abi };
982
1036
  let networks_16: {
1037
+ "1": {
1038
+ address: string;
1039
+ };
1040
+ "8453": {
1041
+ address: string;
1042
+ };
1043
+ };
1044
+ export { networks_16 as networks };
1045
+ }
1046
+ export namespace CompV3View {
1047
+ let abi_17: ({
1048
+ inputs: {
1049
+ internalType: string;
1050
+ name: string;
1051
+ type: string;
1052
+ }[];
1053
+ name: string;
1054
+ outputs: {
1055
+ internalType: string;
1056
+ name: string;
1057
+ type: string;
1058
+ }[];
1059
+ stateMutability: string;
1060
+ type: string;
1061
+ } | {
1062
+ inputs: {
1063
+ internalType: string;
1064
+ name: string;
1065
+ type: string;
1066
+ }[];
1067
+ name: string;
1068
+ outputs: {
1069
+ components: {
1070
+ internalType: string;
1071
+ name: string;
1072
+ type: string;
1073
+ }[];
1074
+ internalType: string;
1075
+ name: string;
1076
+ type: string;
1077
+ }[];
1078
+ stateMutability: string;
1079
+ type: string;
1080
+ })[];
1081
+ export { abi_17 as abi };
1082
+ let networks_17: {
983
1083
  "1": {
984
1084
  address: string;
985
1085
  createdBlock: number;
@@ -990,11 +1090,14 @@ export namespace CompV3View {
990
1090
  "8453": {
991
1091
  address: string;
992
1092
  };
1093
+ "42161": {
1094
+ address: string;
1095
+ };
993
1096
  };
994
- export { networks_16 as networks };
1097
+ export { networks_17 as networks };
995
1098
  }
996
1099
  export namespace CompV3USDCBulker {
997
- let abi_17: ({
1100
+ let abi_18: ({
998
1101
  inputs: {
999
1102
  internalType: string;
1000
1103
  name: string;
@@ -1037,16 +1140,16 @@ export namespace CompV3USDCBulker {
1037
1140
  name?: undefined;
1038
1141
  outputs?: undefined;
1039
1142
  })[];
1040
- export { abi_17 as abi };
1041
- let networks_17: {
1143
+ export { abi_18 as abi };
1144
+ let networks_18: {
1042
1145
  "1": {
1043
1146
  address: string;
1044
1147
  };
1045
1148
  };
1046
- export { networks_17 as networks };
1149
+ export { networks_18 as networks };
1047
1150
  }
1048
1151
  export namespace CompV3USDbCBulker {
1049
- let abi_18: ({
1152
+ let abi_19: ({
1050
1153
  inputs: {
1051
1154
  internalType: string;
1052
1155
  name: string;
@@ -1106,16 +1209,16 @@ export namespace CompV3USDbCBulker {
1106
1209
  anonymous?: undefined;
1107
1210
  outputs?: undefined;
1108
1211
  })[];
1109
- export { abi_18 as abi };
1110
- let networks_18: {
1212
+ export { abi_19 as abi };
1213
+ let networks_19: {
1111
1214
  "8453": {
1112
1215
  address: string;
1113
1216
  };
1114
1217
  };
1115
- export { networks_18 as networks };
1218
+ export { networks_19 as networks };
1116
1219
  }
1117
1220
  export namespace CompV3ETHBulker {
1118
- let abi_19: ({
1221
+ let abi_20: ({
1119
1222
  inputs: {
1120
1223
  internalType: string;
1121
1224
  name: string;
@@ -1175,8 +1278,8 @@ export namespace CompV3ETHBulker {
1175
1278
  anonymous?: undefined;
1176
1279
  outputs?: undefined;
1177
1280
  })[];
1178
- export { abi_19 as abi };
1179
- let networks_19: {
1281
+ export { abi_20 as abi };
1282
+ let networks_20: {
1180
1283
  "1": {
1181
1284
  address: string;
1182
1285
  };
@@ -1184,10 +1287,79 @@ export namespace CompV3ETHBulker {
1184
1287
  address: string;
1185
1288
  };
1186
1289
  };
1187
- export { networks_19 as networks };
1290
+ export { networks_20 as networks };
1291
+ }
1292
+ export namespace CompV3USDCBulkerArb {
1293
+ let abi_21: ({
1294
+ inputs: {
1295
+ internalType: string;
1296
+ name: string;
1297
+ type: string;
1298
+ }[];
1299
+ stateMutability: string;
1300
+ type: string;
1301
+ name?: undefined;
1302
+ anonymous?: undefined;
1303
+ outputs?: undefined;
1304
+ } | {
1305
+ inputs: never[];
1306
+ name: string;
1307
+ type: string;
1308
+ stateMutability?: undefined;
1309
+ anonymous?: undefined;
1310
+ outputs?: undefined;
1311
+ } | {
1312
+ anonymous: boolean;
1313
+ inputs: {
1314
+ indexed: boolean;
1315
+ internalType: string;
1316
+ name: string;
1317
+ type: string;
1318
+ }[];
1319
+ name: string;
1320
+ type: string;
1321
+ stateMutability?: undefined;
1322
+ outputs?: undefined;
1323
+ } | {
1324
+ inputs: never[];
1325
+ name: string;
1326
+ outputs: {
1327
+ internalType: string;
1328
+ name: string;
1329
+ type: string;
1330
+ }[];
1331
+ stateMutability: string;
1332
+ type: string;
1333
+ anonymous?: undefined;
1334
+ } | {
1335
+ inputs: {
1336
+ internalType: string;
1337
+ name: string;
1338
+ type: string;
1339
+ }[];
1340
+ name: string;
1341
+ outputs: never[];
1342
+ stateMutability: string;
1343
+ type: string;
1344
+ anonymous?: undefined;
1345
+ } | {
1346
+ stateMutability: string;
1347
+ type: string;
1348
+ inputs?: undefined;
1349
+ name?: undefined;
1350
+ anonymous?: undefined;
1351
+ outputs?: undefined;
1352
+ })[];
1353
+ export { abi_21 as abi };
1354
+ let networks_21: {
1355
+ "42161": {
1356
+ address: string;
1357
+ };
1358
+ };
1359
+ export { networks_21 as networks };
1188
1360
  }
1189
1361
  export namespace wstETH {
1190
- let abi_20: ({
1362
+ let abi_22: ({
1191
1363
  inputs: {
1192
1364
  internalType: string;
1193
1365
  name: string;
@@ -1233,16 +1405,16 @@ export namespace wstETH {
1233
1405
  name?: undefined;
1234
1406
  outputs?: undefined;
1235
1407
  })[];
1236
- export { abi_20 as abi };
1237
- let networks_20: {
1408
+ export { abi_22 as abi };
1409
+ let networks_22: {
1238
1410
  "1": {
1239
1411
  address: string;
1240
1412
  };
1241
1413
  };
1242
- export { networks_20 as networks };
1414
+ export { networks_22 as networks };
1243
1415
  }
1244
1416
  export namespace AaveLoanInfoV2 {
1245
- let abi_21: ({
1417
+ let abi_23: ({
1246
1418
  inputs: {
1247
1419
  internalType: string;
1248
1420
  name: string;
@@ -1276,8 +1448,8 @@ export namespace AaveLoanInfoV2 {
1276
1448
  stateMutability: string;
1277
1449
  type: string;
1278
1450
  })[];
1279
- export { abi_21 as abi };
1280
- let networks_21: {
1451
+ export { abi_23 as abi };
1452
+ let networks_23: {
1281
1453
  "1": {
1282
1454
  address: string;
1283
1455
  createdBlock: number;
@@ -1293,10 +1465,10 @@ export namespace AaveLoanInfoV2 {
1293
1465
  };
1294
1466
  };
1295
1467
  };
1296
- export { networks_21 as networks };
1468
+ export { networks_23 as networks };
1297
1469
  }
1298
1470
  export namespace LendingPoolAddressesProvider {
1299
- let abi_22: ({
1471
+ let abi_24: ({
1300
1472
  anonymous: boolean;
1301
1473
  inputs: {
1302
1474
  indexed: boolean;
@@ -1324,16 +1496,16 @@ export namespace LendingPoolAddressesProvider {
1324
1496
  type: string;
1325
1497
  anonymous?: undefined;
1326
1498
  })[];
1327
- export { abi_22 as abi };
1328
- let networks_22: {
1499
+ export { abi_24 as abi };
1500
+ let networks_24: {
1329
1501
  "1": {
1330
1502
  address: string;
1331
1503
  };
1332
1504
  };
1333
- export { networks_22 as networks };
1505
+ export { networks_24 as networks };
1334
1506
  }
1335
1507
  export namespace AaveProtocolDataProvider {
1336
- let abi_23: ({
1508
+ let abi_25: ({
1337
1509
  inputs: {
1338
1510
  internalType: string;
1339
1511
  name: string;
@@ -1373,16 +1545,16 @@ export namespace AaveProtocolDataProvider {
1373
1545
  stateMutability: string;
1374
1546
  type: string;
1375
1547
  })[];
1376
- export { abi_23 as abi };
1377
- let networks_23: {
1548
+ export { abi_25 as abi };
1549
+ let networks_25: {
1378
1550
  "1": {
1379
1551
  address: string;
1380
1552
  };
1381
1553
  };
1382
- export { networks_23 as networks };
1554
+ export { networks_25 as networks };
1383
1555
  }
1384
1556
  export namespace AaveLendingPoolV2 {
1385
- let abi_24: ({
1557
+ let abi_26: ({
1386
1558
  anonymous: boolean;
1387
1559
  inputs: {
1388
1560
  indexed: boolean;
@@ -1440,16 +1612,16 @@ export namespace AaveLendingPoolV2 {
1440
1612
  type: string;
1441
1613
  anonymous?: undefined;
1442
1614
  })[];
1443
- export { abi_24 as abi };
1444
- let networks_24: {
1615
+ export { abi_26 as abi };
1616
+ let networks_26: {
1445
1617
  "1": {
1446
1618
  address: string;
1447
1619
  };
1448
1620
  };
1449
- export { networks_24 as networks };
1621
+ export { networks_26 as networks };
1450
1622
  }
1451
1623
  export namespace CompoundLoanInfo {
1452
- let abi_25: ({
1624
+ let abi_27: ({
1453
1625
  inputs: {
1454
1626
  internalType: string;
1455
1627
  name: string;
@@ -1483,8 +1655,8 @@ export namespace CompoundLoanInfo {
1483
1655
  stateMutability: string;
1484
1656
  type: string;
1485
1657
  })[];
1486
- export { abi_25 as abi };
1487
- let networks_25: {
1658
+ export { abi_27 as abi };
1659
+ let networks_27: {
1488
1660
  "1": {
1489
1661
  address: string;
1490
1662
  createdBlock: number;
@@ -1500,10 +1672,10 @@ export namespace CompoundLoanInfo {
1500
1672
  };
1501
1673
  };
1502
1674
  };
1503
- export { networks_25 as networks };
1675
+ export { networks_27 as networks };
1504
1676
  }
1505
1677
  export namespace Comptroller {
1506
- let abi_26: ({
1678
+ let abi_28: ({
1507
1679
  inputs: never[];
1508
1680
  payable: boolean;
1509
1681
  stateMutability: string;
@@ -1544,17 +1716,17 @@ export namespace Comptroller {
1544
1716
  type: string;
1545
1717
  anonymous?: undefined;
1546
1718
  })[];
1547
- export { abi_26 as abi };
1548
- let networks_26: {
1719
+ export { abi_28 as abi };
1720
+ let networks_28: {
1549
1721
  "1": {
1550
1722
  createdBlock: number;
1551
1723
  address: string;
1552
1724
  };
1553
1725
  };
1554
- export { networks_26 as networks };
1726
+ export { networks_28 as networks };
1555
1727
  }
1556
1728
  export namespace IVariableDebtToken {
1557
- let abi_27: {
1729
+ let abi_29: {
1558
1730
  inputs: {
1559
1731
  internalType: string;
1560
1732
  name: string;
@@ -1569,16 +1741,16 @@ export namespace IVariableDebtToken {
1569
1741
  stateMutability: string;
1570
1742
  type: string;
1571
1743
  }[];
1572
- export { abi_27 as abi };
1573
- let networks_27: {
1744
+ export { abi_29 as abi };
1745
+ let networks_29: {
1574
1746
  "1": {
1575
1747
  address: string;
1576
1748
  };
1577
1749
  };
1578
- export { networks_27 as networks };
1750
+ export { networks_29 as networks };
1579
1751
  }
1580
1752
  export namespace IAToken {
1581
- let abi_28: {
1753
+ let abi_30: {
1582
1754
  inputs: {
1583
1755
  internalType: string;
1584
1756
  name: string;
@@ -1593,16 +1765,16 @@ export namespace IAToken {
1593
1765
  stateMutability: string;
1594
1766
  type: string;
1595
1767
  }[];
1596
- export { abi_28 as abi };
1597
- let networks_28: {
1768
+ export { abi_30 as abi };
1769
+ let networks_30: {
1598
1770
  "1": {
1599
1771
  address: string;
1600
1772
  };
1601
1773
  };
1602
- export { networks_28 as networks };
1774
+ export { networks_30 as networks };
1603
1775
  }
1604
1776
  export namespace MorphoAaveV2Proxy {
1605
- let abi_29: ({
1777
+ let abi_31: ({
1606
1778
  inputs: never[];
1607
1779
  name: string;
1608
1780
  type: string;
@@ -1674,17 +1846,17 @@ export namespace MorphoAaveV2Proxy {
1674
1846
  stateMutability: string;
1675
1847
  type: string;
1676
1848
  anonymous?: undefined;
1677
- })[];
1678
- export { abi_29 as abi };
1679
- let networks_29: {
1849
+ })[];
1850
+ export { abi_31 as abi };
1851
+ let networks_31: {
1680
1852
  "1": {
1681
1853
  address: string;
1682
1854
  };
1683
1855
  };
1684
- export { networks_29 as networks };
1856
+ export { networks_31 as networks };
1685
1857
  }
1686
1858
  export namespace MorphoAaveV3ProxyEthMarket {
1687
- let abi_30: ({
1859
+ let abi_32: ({
1688
1860
  inputs: {
1689
1861
  internalType: string;
1690
1862
  name: string;
@@ -1752,16 +1924,16 @@ export namespace MorphoAaveV3ProxyEthMarket {
1752
1924
  stateMutability: string;
1753
1925
  type: string;
1754
1926
  })[];
1755
- export { abi_30 as abi };
1756
- let networks_30: {
1927
+ export { abi_32 as abi };
1928
+ let networks_32: {
1757
1929
  "1": {
1758
1930
  address: string;
1759
1931
  };
1760
1932
  };
1761
- export { networks_30 as networks };
1933
+ export { networks_32 as networks };
1762
1934
  }
1763
1935
  export namespace Pot {
1764
- let abi_31: ({
1936
+ let abi_33: ({
1765
1937
  inputs: {
1766
1938
  internalType: string;
1767
1939
  name: string;
@@ -1806,17 +1978,17 @@ export namespace Pot {
1806
1978
  type: string;
1807
1979
  anonymous?: undefined;
1808
1980
  })[];
1809
- export { abi_31 as abi };
1810
- let networks_31: {
1981
+ export { abi_33 as abi };
1982
+ let networks_33: {
1811
1983
  "1": {
1812
1984
  address: string;
1813
1985
  createdBlock: number;
1814
1986
  };
1815
1987
  };
1816
- export { networks_31 as networks };
1988
+ export { networks_33 as networks };
1817
1989
  }
1818
1990
  export namespace MorphoAaveV2View {
1819
- let abi_32: ({
1991
+ let abi_34: ({
1820
1992
  inputs: never[];
1821
1993
  name: string;
1822
1994
  outputs: {
@@ -1856,8 +2028,8 @@ export namespace MorphoAaveV2View {
1856
2028
  stateMutability: string;
1857
2029
  type: string;
1858
2030
  })[];
1859
- export { abi_32 as abi };
1860
- let networks_32: {
2031
+ export { abi_34 as abi };
2032
+ let networks_34: {
1861
2033
  "1": {
1862
2034
  address: string;
1863
2035
  createdBlock: number;
@@ -1866,10 +2038,10 @@ export namespace MorphoAaveV2View {
1866
2038
  };
1867
2039
  };
1868
2040
  };
1869
- export { networks_32 as networks };
2041
+ export { networks_34 as networks };
1870
2042
  }
1871
2043
  export namespace SparkView {
1872
- let abi_33: ({
2044
+ let abi_35: ({
1873
2045
  inputs: {
1874
2046
  internalType: string;
1875
2047
  name: string;
@@ -1922,8 +2094,8 @@ export namespace SparkView {
1922
2094
  stateMutability: string;
1923
2095
  type: string;
1924
2096
  })[];
1925
- export { abi_33 as abi };
1926
- let networks_33: {
2097
+ export { abi_35 as abi };
2098
+ let networks_35: {
1927
2099
  "1": {
1928
2100
  address: string;
1929
2101
  createdBlock: number;
@@ -1932,10 +2104,10 @@ export namespace SparkView {
1932
2104
  };
1933
2105
  };
1934
2106
  };
1935
- export { networks_33 as networks };
2107
+ export { networks_35 as networks };
1936
2108
  }
1937
2109
  export namespace SparkIncentiveDataProvider {
1938
- let abi_34: {
2110
+ let abi_36: {
1939
2111
  inputs: {
1940
2112
  internalType: string;
1941
2113
  name: string;
@@ -1975,16 +2147,16 @@ export namespace SparkIncentiveDataProvider {
1975
2147
  stateMutability: string;
1976
2148
  type: string;
1977
2149
  }[];
1978
- export { abi_34 as abi };
1979
- let networks_34: {
2150
+ export { abi_36 as abi };
2151
+ let networks_36: {
1980
2152
  "1": {
1981
2153
  address: string;
1982
2154
  };
1983
2155
  };
1984
- export { networks_34 as networks };
2156
+ export { networks_36 as networks };
1985
2157
  }
1986
2158
  export namespace SparkLendingPool {
1987
- let abi_35: ({
2159
+ let abi_37: ({
1988
2160
  inputs: {
1989
2161
  internalType: string;
1990
2162
  name: string;
@@ -2074,16 +2246,16 @@ export namespace SparkLendingPool {
2074
2246
  type: string;
2075
2247
  anonymous?: undefined;
2076
2248
  })[];
2077
- export { abi_35 as abi };
2078
- let networks_35: {
2249
+ export { abi_37 as abi };
2250
+ let networks_37: {
2079
2251
  "1": {
2080
2252
  address: string;
2081
2253
  };
2082
2254
  };
2083
- export { networks_35 as networks };
2255
+ export { networks_37 as networks };
2084
2256
  }
2085
2257
  export namespace SparkPoolAddressesProvider {
2086
- let abi_36: ({
2258
+ let abi_38: ({
2087
2259
  inputs: {
2088
2260
  internalType: string;
2089
2261
  name: string;
@@ -2122,16 +2294,16 @@ export namespace SparkPoolAddressesProvider {
2122
2294
  type: string;
2123
2295
  anonymous?: undefined;
2124
2296
  })[];
2125
- export { abi_36 as abi };
2126
- let networks_36: {
2297
+ export { abi_38 as abi };
2298
+ let networks_38: {
2127
2299
  "1": {
2128
2300
  address: string;
2129
2301
  };
2130
2302
  };
2131
- export { networks_36 as networks };
2303
+ export { networks_38 as networks };
2132
2304
  }
2133
2305
  export namespace SparkProtocolDataProvider {
2134
- let abi_37: ({
2306
+ let abi_39: ({
2135
2307
  inputs: {
2136
2308
  internalType: string;
2137
2309
  name: string;
@@ -2171,16 +2343,16 @@ export namespace SparkProtocolDataProvider {
2171
2343
  stateMutability: string;
2172
2344
  type: string;
2173
2345
  })[];
2174
- export { abi_37 as abi };
2175
- let networks_37: {
2346
+ export { abi_39 as abi };
2347
+ let networks_39: {
2176
2348
  "1": {
2177
2349
  address: string;
2178
2350
  };
2179
2351
  };
2180
- export { networks_37 as networks };
2352
+ export { networks_39 as networks };
2181
2353
  }
2182
2354
  export namespace crvUSDwstETHController {
2183
- let abi_38: ({
2355
+ let abi_40: ({
2184
2356
  name: string;
2185
2357
  inputs: {
2186
2358
  name: string;
@@ -2239,16 +2411,16 @@ export namespace crvUSDwstETHController {
2239
2411
  }[];
2240
2412
  anonymous?: undefined;
2241
2413
  })[];
2242
- export { abi_38 as abi };
2243
- let networks_38: {
2414
+ export { abi_40 as abi };
2415
+ let networks_40: {
2244
2416
  "1": {
2245
2417
  address: string;
2246
2418
  };
2247
2419
  };
2248
- export { networks_38 as networks };
2420
+ export { networks_40 as networks };
2249
2421
  }
2250
2422
  export namespace crvUSDETHController {
2251
- let abi_39: ({
2423
+ let abi_41: ({
2252
2424
  name: string;
2253
2425
  inputs: {
2254
2426
  name: string;
@@ -2307,16 +2479,16 @@ export namespace crvUSDETHController {
2307
2479
  }[];
2308
2480
  anonymous?: undefined;
2309
2481
  })[];
2310
- export { abi_39 as abi };
2311
- let networks_39: {
2482
+ export { abi_41 as abi };
2483
+ let networks_41: {
2312
2484
  "1": {
2313
2485
  address: string;
2314
2486
  };
2315
2487
  };
2316
- export { networks_39 as networks };
2488
+ export { networks_41 as networks };
2317
2489
  }
2318
2490
  export namespace crvUSDWBTCController {
2319
- let abi_40: ({
2491
+ let abi_42: ({
2320
2492
  name: string;
2321
2493
  inputs: {
2322
2494
  name: string;
@@ -2375,16 +2547,16 @@ export namespace crvUSDWBTCController {
2375
2547
  }[];
2376
2548
  anonymous?: undefined;
2377
2549
  })[];
2378
- export { abi_40 as abi };
2379
- let networks_40: {
2550
+ export { abi_42 as abi };
2551
+ let networks_42: {
2380
2552
  "1": {
2381
2553
  address: string;
2382
2554
  };
2383
2555
  };
2384
- export { networks_40 as networks };
2556
+ export { networks_42 as networks };
2385
2557
  }
2386
2558
  export namespace crvUSDtBTCController {
2387
- let abi_41: ({
2559
+ let abi_43: ({
2388
2560
  name: string;
2389
2561
  inputs: {
2390
2562
  name: string;
@@ -2443,16 +2615,16 @@ export namespace crvUSDtBTCController {
2443
2615
  }[];
2444
2616
  anonymous?: undefined;
2445
2617
  })[];
2446
- export { abi_41 as abi };
2447
- let networks_41: {
2618
+ export { abi_43 as abi };
2619
+ let networks_43: {
2448
2620
  "1": {
2449
2621
  address: string;
2450
2622
  };
2451
2623
  };
2452
- export { networks_41 as networks };
2624
+ export { networks_43 as networks };
2453
2625
  }
2454
2626
  export namespace crvUSDsfrxETHController {
2455
- let abi_42: ({
2627
+ let abi_44: ({
2456
2628
  name: string;
2457
2629
  inputs: {
2458
2630
  name: string;
@@ -2511,16 +2683,16 @@ export namespace crvUSDsfrxETHController {
2511
2683
  }[];
2512
2684
  anonymous?: undefined;
2513
2685
  })[];
2514
- export { abi_42 as abi };
2515
- let networks_42: {
2686
+ export { abi_44 as abi };
2687
+ let networks_44: {
2516
2688
  "1": {
2517
2689
  address: string;
2518
2690
  };
2519
2691
  };
2520
- export { networks_42 as networks };
2692
+ export { networks_44 as networks };
2521
2693
  }
2522
2694
  export namespace crvUSDwstETHAmm {
2523
- let abi_43: ({
2695
+ let abi_45: ({
2524
2696
  name: string;
2525
2697
  inputs: {
2526
2698
  name: string;
@@ -2555,16 +2727,16 @@ export namespace crvUSDwstETHAmm {
2555
2727
  }[];
2556
2728
  anonymous?: undefined;
2557
2729
  })[];
2558
- export { abi_43 as abi };
2559
- let networks_43: {
2730
+ export { abi_45 as abi };
2731
+ let networks_45: {
2560
2732
  "1": {
2561
2733
  address: string;
2562
2734
  };
2563
2735
  };
2564
- export { networks_43 as networks };
2736
+ export { networks_45 as networks };
2565
2737
  }
2566
2738
  export namespace crvUSDETHAmm {
2567
- let abi_44: ({
2739
+ let abi_46: ({
2568
2740
  name: string;
2569
2741
  inputs: {
2570
2742
  name: string;
@@ -2599,16 +2771,16 @@ export namespace crvUSDETHAmm {
2599
2771
  }[];
2600
2772
  anonymous?: undefined;
2601
2773
  })[];
2602
- export { abi_44 as abi };
2603
- let networks_44: {
2774
+ export { abi_46 as abi };
2775
+ let networks_46: {
2604
2776
  "1": {
2605
2777
  address: string;
2606
2778
  };
2607
2779
  };
2608
- export { networks_44 as networks };
2780
+ export { networks_46 as networks };
2609
2781
  }
2610
2782
  export namespace crvUSDWBTCAmm {
2611
- let abi_45: ({
2783
+ let abi_47: ({
2612
2784
  name: string;
2613
2785
  inputs: {
2614
2786
  name: string;
@@ -2643,16 +2815,16 @@ export namespace crvUSDWBTCAmm {
2643
2815
  }[];
2644
2816
  anonymous?: undefined;
2645
2817
  })[];
2646
- export { abi_45 as abi };
2647
- let networks_45: {
2818
+ export { abi_47 as abi };
2819
+ let networks_47: {
2648
2820
  "1": {
2649
2821
  address: string;
2650
2822
  };
2651
2823
  };
2652
- export { networks_45 as networks };
2824
+ export { networks_47 as networks };
2653
2825
  }
2654
2826
  export namespace crvUSDtBTCAmm {
2655
- let abi_46: ({
2827
+ let abi_48: ({
2656
2828
  name: string;
2657
2829
  inputs: {
2658
2830
  name: string;
@@ -2687,16 +2859,16 @@ export namespace crvUSDtBTCAmm {
2687
2859
  }[];
2688
2860
  anonymous?: undefined;
2689
2861
  })[];
2690
- export { abi_46 as abi };
2691
- let networks_46: {
2862
+ export { abi_48 as abi };
2863
+ let networks_48: {
2692
2864
  "1": {
2693
2865
  address: string;
2694
2866
  };
2695
2867
  };
2696
- export { networks_46 as networks };
2868
+ export { networks_48 as networks };
2697
2869
  }
2698
2870
  export namespace crvUSDsfrxETHAmm {
2699
- let abi_47: ({
2871
+ let abi_49: ({
2700
2872
  name: string;
2701
2873
  inputs: {
2702
2874
  name: string;
@@ -2731,16 +2903,16 @@ export namespace crvUSDsfrxETHAmm {
2731
2903
  }[];
2732
2904
  anonymous?: undefined;
2733
2905
  })[];
2734
- export { abi_47 as abi };
2735
- let networks_47: {
2906
+ export { abi_49 as abi };
2907
+ let networks_49: {
2736
2908
  "1": {
2737
2909
  address: string;
2738
2910
  };
2739
2911
  };
2740
- export { networks_47 as networks };
2912
+ export { networks_49 as networks };
2741
2913
  }
2742
2914
  export namespace crvUSDView {
2743
- let abi_48: ({
2915
+ let abi_50: ({
2744
2916
  inputs: {
2745
2917
  internalType: string;
2746
2918
  name: string;
@@ -2784,8 +2956,8 @@ export namespace crvUSDView {
2784
2956
  stateMutability: string;
2785
2957
  type: string;
2786
2958
  })[];
2787
- export { abi_48 as abi };
2788
- let networks_48: {
2959
+ export { abi_50 as abi };
2960
+ let networks_50: {
2789
2961
  "1": {
2790
2962
  address: string;
2791
2963
  createdBlock: number;
@@ -2794,10 +2966,10 @@ export namespace crvUSDView {
2794
2966
  };
2795
2967
  };
2796
2968
  };
2797
- export { networks_48 as networks };
2969
+ export { networks_50 as networks };
2798
2970
  }
2799
2971
  export namespace crvUSDFactory {
2800
- let abi_49: ({
2972
+ let abi_51: ({
2801
2973
  name: string;
2802
2974
  inputs: {
2803
2975
  name: string;
@@ -2832,16 +3004,16 @@ export namespace crvUSDFactory {
2832
3004
  }[];
2833
3005
  anonymous?: undefined;
2834
3006
  })[];
2835
- export { abi_49 as abi };
2836
- let networks_49: {
3007
+ export { abi_51 as abi };
3008
+ let networks_51: {
2837
3009
  "1": {
2838
3010
  address: string;
2839
3011
  };
2840
3012
  };
2841
- export { networks_49 as networks };
3013
+ export { networks_51 as networks };
2842
3014
  }
2843
3015
  export namespace LiquityView {
2844
- let abi_50: {
3016
+ let abi_52: {
2845
3017
  inputs: {
2846
3018
  internalType: string;
2847
3019
  name: string;
@@ -2856,8 +3028,8 @@ export namespace LiquityView {
2856
3028
  stateMutability: string;
2857
3029
  type: string;
2858
3030
  }[];
2859
- export { abi_50 as abi };
2860
- let networks_50: {
3031
+ export { abi_52 as abi };
3032
+ let networks_52: {
2861
3033
  "1": {
2862
3034
  address: string;
2863
3035
  createdBlock: number;
@@ -2869,10 +3041,10 @@ export namespace LiquityView {
2869
3041
  };
2870
3042
  };
2871
3043
  };
2872
- export { networks_50 as networks };
3044
+ export { networks_52 as networks };
2873
3045
  }
2874
3046
  export namespace CollSurplusPool {
2875
- let abi_51: ({
3047
+ let abi_53: ({
2876
3048
  anonymous: boolean;
2877
3049
  inputs: {
2878
3050
  indexed: boolean;
@@ -2907,16 +3079,16 @@ export namespace CollSurplusPool {
2907
3079
  name?: undefined;
2908
3080
  outputs?: undefined;
2909
3081
  })[];
2910
- export { abi_51 as abi };
2911
- let networks_51: {
3082
+ export { abi_53 as abi };
3083
+ let networks_53: {
2912
3084
  "1": {
2913
3085
  address: string;
2914
3086
  };
2915
3087
  };
2916
- export { networks_51 as networks };
3088
+ export { networks_53 as networks };
2917
3089
  }
2918
3090
  export namespace TroveManager {
2919
- let abi_52: ({
3091
+ let abi_54: ({
2920
3092
  anonymous: boolean;
2921
3093
  inputs: {
2922
3094
  indexed: boolean;
@@ -2944,16 +3116,16 @@ export namespace TroveManager {
2944
3116
  type: string;
2945
3117
  anonymous?: undefined;
2946
3118
  })[];
2947
- export { abi_52 as abi };
2948
- let networks_52: {
3119
+ export { abi_54 as abi };
3120
+ let networks_54: {
2949
3121
  "1": {
2950
3122
  address: string;
2951
3123
  };
2952
3124
  };
2953
- export { networks_52 as networks };
3125
+ export { networks_54 as networks };
2954
3126
  }
2955
3127
  export namespace PriceFeed {
2956
- let abi_53: ({
3128
+ let abi_55: ({
2957
3129
  anonymous: boolean;
2958
3130
  inputs: {
2959
3131
  indexed: boolean;
@@ -2988,16 +3160,16 @@ export namespace PriceFeed {
2988
3160
  type: string;
2989
3161
  anonymous?: undefined;
2990
3162
  })[];
2991
- export { abi_53 as abi };
2992
- let networks_53: {
3163
+ export { abi_55 as abi };
3164
+ let networks_55: {
2993
3165
  "1": {
2994
3166
  address: string;
2995
3167
  };
2996
3168
  };
2997
- export { networks_53 as networks };
3169
+ export { networks_55 as networks };
2998
3170
  }
2999
3171
  export namespace LiquityActivePool {
3000
- let abi_54: {
3172
+ let abi_56: {
3001
3173
  inputs: never[];
3002
3174
  name: string;
3003
3175
  outputs: {
@@ -3008,16 +3180,16 @@ export namespace LiquityActivePool {
3008
3180
  stateMutability: string;
3009
3181
  type: string;
3010
3182
  }[];
3011
- export { abi_54 as abi };
3012
- let networks_54: {
3183
+ export { abi_56 as abi };
3184
+ let networks_56: {
3013
3185
  "1": {
3014
3186
  address: string;
3015
3187
  };
3016
3188
  };
3017
- export { networks_54 as networks };
3189
+ export { networks_56 as networks };
3018
3190
  }
3019
3191
  export namespace McdView {
3020
- let abi_55: {
3192
+ let abi_57: {
3021
3193
  inputs: {
3022
3194
  internalType: string;
3023
3195
  name: string;
@@ -3032,8 +3204,8 @@ export namespace McdView {
3032
3204
  stateMutability: string;
3033
3205
  type: string;
3034
3206
  }[];
3035
- export { abi_55 as abi };
3036
- let networks_55: {
3207
+ export { abi_57 as abi };
3208
+ let networks_57: {
3037
3209
  "1": {
3038
3210
  address: string;
3039
3211
  createdBlock: number;
@@ -3042,10 +3214,10 @@ export namespace McdView {
3042
3214
  };
3043
3215
  };
3044
3216
  };
3045
- export { networks_55 as networks };
3217
+ export { networks_57 as networks };
3046
3218
  }
3047
3219
  export namespace McdSpotter {
3048
- let abi_56: {
3220
+ let abi_58: {
3049
3221
  constant: boolean;
3050
3222
  inputs: {
3051
3223
  name: string;
@@ -3060,16 +3232,16 @@ export namespace McdSpotter {
3060
3232
  stateMutability: string;
3061
3233
  type: string;
3062
3234
  }[];
3063
- export { abi_56 as abi };
3064
- let networks_56: {
3235
+ export { abi_58 as abi };
3236
+ let networks_58: {
3065
3237
  "1": {
3066
3238
  address: string;
3067
3239
  };
3068
3240
  };
3069
- export { networks_56 as networks };
3241
+ export { networks_58 as networks };
3070
3242
  }
3071
3243
  export namespace McdVat {
3072
- let abi_57: ({
3244
+ let abi_59: ({
3073
3245
  inputs: never[];
3074
3246
  payable: boolean;
3075
3247
  stateMutability: string;
@@ -3110,16 +3282,16 @@ export namespace McdVat {
3110
3282
  type: string;
3111
3283
  anonymous?: undefined;
3112
3284
  })[];
3113
- export { abi_57 as abi };
3114
- let networks_57: {
3285
+ export { abi_59 as abi };
3286
+ let networks_59: {
3115
3287
  "1": {
3116
3288
  address: string;
3117
3289
  };
3118
3290
  };
3119
- export { networks_57 as networks };
3291
+ export { networks_59 as networks };
3120
3292
  }
3121
3293
  export namespace McdJug {
3122
- let abi_58: ({
3294
+ let abi_60: ({
3123
3295
  inputs: {
3124
3296
  internalType: string;
3125
3297
  name: string;
@@ -3164,16 +3336,16 @@ export namespace McdJug {
3164
3336
  type: string;
3165
3337
  anonymous?: undefined;
3166
3338
  })[];
3167
- export { abi_58 as abi };
3168
- let networks_58: {
3339
+ export { abi_60 as abi };
3340
+ let networks_60: {
3169
3341
  "1": {
3170
3342
  address: string;
3171
3343
  };
3172
3344
  };
3173
- export { networks_58 as networks };
3345
+ export { networks_60 as networks };
3174
3346
  }
3175
3347
  export namespace McdDog {
3176
- let abi_59: ({
3348
+ let abi_61: ({
3177
3349
  inputs: {
3178
3350
  internalType: string;
3179
3351
  name: string;
@@ -3212,16 +3384,16 @@ export namespace McdDog {
3212
3384
  type: string;
3213
3385
  anonymous?: undefined;
3214
3386
  })[];
3215
- export { abi_59 as abi };
3216
- let networks_59: {
3387
+ export { abi_61 as abi };
3388
+ let networks_61: {
3217
3389
  "1": {
3218
3390
  address: string;
3219
3391
  };
3220
3392
  };
3221
- export { networks_59 as networks };
3393
+ export { networks_61 as networks };
3222
3394
  }
3223
3395
  export namespace ChickenBondsView {
3224
- let abi_60: ({
3396
+ let abi_62: ({
3225
3397
  inputs: never[];
3226
3398
  name: string;
3227
3399
  outputs: {
@@ -3251,17 +3423,17 @@ export namespace ChickenBondsView {
3251
3423
  stateMutability: string;
3252
3424
  type: string;
3253
3425
  })[];
3254
- export { abi_60 as abi };
3255
- let networks_60: {
3426
+ export { abi_62 as abi };
3427
+ let networks_62: {
3256
3428
  "1": {
3257
3429
  address: string;
3258
3430
  createdBlock: number;
3259
3431
  };
3260
3432
  };
3261
- export { networks_60 as networks };
3433
+ export { networks_62 as networks };
3262
3434
  }
3263
3435
  export namespace ChickenBondsManager {
3264
- let abi_61: {
3436
+ let abi_63: {
3265
3437
  inputs: {
3266
3438
  internalType: string;
3267
3439
  name: string;
@@ -3276,16 +3448,16 @@ export namespace ChickenBondsManager {
3276
3448
  stateMutability: string;
3277
3449
  type: string;
3278
3450
  }[];
3279
- export { abi_61 as abi };
3280
- let networks_61: {
3451
+ export { abi_63 as abi };
3452
+ let networks_63: {
3281
3453
  "1": {
3282
3454
  address: string;
3283
3455
  };
3284
3456
  };
3285
- export { networks_61 as networks };
3457
+ export { networks_63 as networks };
3286
3458
  }
3287
3459
  export namespace COMPPriceFeed {
3288
- let abi_62: ({
3460
+ let abi_64: ({
3289
3461
  inputs: {
3290
3462
  internalType: string;
3291
3463
  name: string;
@@ -3324,16 +3496,16 @@ export namespace COMPPriceFeed {
3324
3496
  type: string;
3325
3497
  anonymous?: undefined;
3326
3498
  })[];
3327
- export { abi_62 as abi };
3328
- let networks_62: {
3499
+ export { abi_64 as abi };
3500
+ let networks_64: {
3329
3501
  "1": {
3330
3502
  address: string;
3331
3503
  };
3332
3504
  };
3333
- export { networks_62 as networks };
3505
+ export { networks_64 as networks };
3334
3506
  }
3335
3507
  export namespace ETHPriceFeed {
3336
- let abi_63: ({
3508
+ let abi_65: ({
3337
3509
  inputs: {
3338
3510
  internalType: string;
3339
3511
  name: string;
@@ -3372,16 +3544,16 @@ export namespace ETHPriceFeed {
3372
3544
  type: string;
3373
3545
  anonymous?: undefined;
3374
3546
  })[];
3375
- export { abi_63 as abi };
3376
- let networks_63: {
3547
+ export { abi_65 as abi };
3548
+ let networks_65: {
3377
3549
  "1": {
3378
3550
  address: string;
3379
3551
  };
3380
3552
  };
3381
- export { networks_63 as networks };
3553
+ export { networks_65 as networks };
3382
3554
  }
3383
3555
  export namespace USDCPriceFeed {
3384
- let abi_64: ({
3556
+ let abi_66: ({
3385
3557
  inputs: {
3386
3558
  internalType: string;
3387
3559
  name: string;
@@ -3420,11 +3592,11 @@ export namespace USDCPriceFeed {
3420
3592
  type: string;
3421
3593
  anonymous?: undefined;
3422
3594
  })[];
3423
- export { abi_64 as abi };
3424
- let networks_64: {
3595
+ export { abi_66 as abi };
3596
+ let networks_66: {
3425
3597
  "1": {
3426
3598
  address: string;
3427
3599
  };
3428
3600
  };
3429
- export { networks_64 as networks };
3601
+ export { networks_66 as networks };
3430
3602
  }