@defisaver/positions-sdk 1.0.11-dev → 1.0.11-fluid-dev2

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 (109) hide show
  1. package/.mocharc.json +4 -4
  2. package/.nvmrc +1 -1
  3. package/README.md +69 -69
  4. package/cjs/config/contracts.d.ts +113 -49
  5. package/cjs/config/contracts.js +10 -2
  6. package/cjs/contracts.d.ts +1 -0
  7. package/cjs/contracts.js +2 -1
  8. package/cjs/fluid/index.d.ts +2 -0
  9. package/cjs/fluid/index.js +631 -13
  10. package/cjs/helpers/fluidHelpers/index.d.ts +59 -2
  11. package/cjs/helpers/fluidHelpers/index.js +142 -4
  12. package/cjs/helpers/morphoBlueHelpers/index.js +66 -66
  13. package/cjs/markets/fluid/index.js +276 -245
  14. package/cjs/services/priceService.d.ts +23 -0
  15. package/cjs/services/priceService.js +44 -5
  16. package/cjs/types/contracts/generated/FluidView.d.ts +220 -3
  17. package/cjs/types/contracts/generated/WeETHPriceFeed.d.ts +135 -0
  18. package/cjs/types/contracts/generated/WeETHPriceFeed.js +5 -0
  19. package/cjs/types/contracts/generated/index.d.ts +1 -0
  20. package/cjs/types/fluid.d.ts +39 -10
  21. package/esm/config/contracts.d.ts +113 -49
  22. package/esm/config/contracts.js +10 -2
  23. package/esm/contracts.d.ts +1 -0
  24. package/esm/contracts.js +1 -0
  25. package/esm/fluid/index.d.ts +2 -0
  26. package/esm/fluid/index.js +634 -16
  27. package/esm/helpers/fluidHelpers/index.d.ts +59 -2
  28. package/esm/helpers/fluidHelpers/index.js +137 -3
  29. package/esm/helpers/morphoBlueHelpers/index.js +66 -66
  30. package/esm/markets/fluid/index.js +276 -245
  31. package/esm/services/priceService.d.ts +23 -0
  32. package/esm/services/priceService.js +40 -5
  33. package/esm/types/contracts/generated/FluidView.d.ts +220 -3
  34. package/esm/types/contracts/generated/WeETHPriceFeed.d.ts +135 -0
  35. package/esm/types/contracts/generated/WeETHPriceFeed.js +4 -0
  36. package/esm/types/contracts/generated/index.d.ts +1 -0
  37. package/esm/types/fluid.d.ts +39 -10
  38. package/package.json +54 -54
  39. package/src/aaveV2/index.ts +227 -227
  40. package/src/aaveV3/index.ts +624 -624
  41. package/src/assets/index.ts +60 -60
  42. package/src/chickenBonds/index.ts +123 -123
  43. package/src/compoundV2/index.ts +220 -220
  44. package/src/compoundV3/index.ts +291 -291
  45. package/src/config/contracts.js +1155 -1147
  46. package/src/constants/index.ts +6 -6
  47. package/src/contracts.ts +135 -134
  48. package/src/curveUsd/index.ts +239 -239
  49. package/src/eulerV2/index.ts +303 -303
  50. package/src/exchange/index.ts +17 -17
  51. package/src/fluid/index.ts +1211 -354
  52. package/src/helpers/aaveHelpers/index.ts +203 -203
  53. package/src/helpers/chickenBondsHelpers/index.ts +23 -23
  54. package/src/helpers/compoundHelpers/index.ts +248 -248
  55. package/src/helpers/curveUsdHelpers/index.ts +40 -40
  56. package/src/helpers/eulerHelpers/index.ts +234 -234
  57. package/src/helpers/fluidHelpers/index.ts +295 -57
  58. package/src/helpers/index.ts +11 -11
  59. package/src/helpers/liquityV2Helpers/index.ts +80 -80
  60. package/src/helpers/llamaLendHelpers/index.ts +53 -53
  61. package/src/helpers/makerHelpers/index.ts +94 -94
  62. package/src/helpers/morphoBlueHelpers/index.ts +367 -367
  63. package/src/helpers/sparkHelpers/index.ts +154 -154
  64. package/src/index.ts +52 -52
  65. package/src/liquity/index.ts +116 -116
  66. package/src/liquityV2/index.ts +295 -295
  67. package/src/llamaLend/index.ts +275 -275
  68. package/src/maker/index.ts +117 -117
  69. package/src/markets/aave/index.ts +152 -152
  70. package/src/markets/aave/marketAssets.ts +46 -46
  71. package/src/markets/compound/index.ts +213 -213
  72. package/src/markets/compound/marketsAssets.ts +82 -82
  73. package/src/markets/curveUsd/index.ts +69 -69
  74. package/src/markets/euler/index.ts +26 -26
  75. package/src/markets/fluid/index.ts +2043 -2012
  76. package/src/markets/index.ts +27 -27
  77. package/src/markets/liquityV2/index.ts +54 -54
  78. package/src/markets/llamaLend/contractAddresses.ts +141 -141
  79. package/src/markets/llamaLend/index.ts +235 -235
  80. package/src/markets/morphoBlue/index.ts +895 -895
  81. package/src/markets/spark/index.ts +29 -29
  82. package/src/markets/spark/marketAssets.ts +10 -10
  83. package/src/moneymarket/moneymarketCommonService.ts +80 -80
  84. package/src/morphoAaveV2/index.ts +256 -256
  85. package/src/morphoAaveV3/index.ts +630 -630
  86. package/src/morphoBlue/index.ts +202 -202
  87. package/src/multicall/index.ts +33 -33
  88. package/src/services/priceService.ts +130 -91
  89. package/src/services/utils.ts +59 -59
  90. package/src/setup.ts +8 -8
  91. package/src/spark/index.ts +460 -460
  92. package/src/staking/staking.ts +217 -217
  93. package/src/types/aave.ts +275 -275
  94. package/src/types/chickenBonds.ts +45 -45
  95. package/src/types/common.ts +84 -84
  96. package/src/types/compound.ts +133 -133
  97. package/src/types/contracts/generated/FluidView.ts +263 -2
  98. package/src/types/contracts/generated/WeETHPriceFeed.ts +202 -0
  99. package/src/types/contracts/generated/index.ts +1 -0
  100. package/src/types/curveUsd.ts +119 -119
  101. package/src/types/euler.ts +173 -173
  102. package/src/types/fluid.ts +299 -268
  103. package/src/types/index.ts +11 -11
  104. package/src/types/liquity.ts +30 -30
  105. package/src/types/liquityV2.ts +119 -119
  106. package/src/types/llamaLend.ts +155 -155
  107. package/src/types/maker.ts +50 -50
  108. package/src/types/morphoBlue.ts +194 -194
  109. package/src/types/spark.ts +135 -135
package/.mocharc.json CHANGED
@@ -1,4 +1,4 @@
1
- {
2
- "require": "ts-node/register",
3
- "extension": ["ts"]
4
- }
1
+ {
2
+ "require": "ts-node/register",
3
+ "extension": ["ts"]
4
+ }
package/.nvmrc CHANGED
@@ -1 +1 @@
1
- v20.17.0
1
+ v20.17.0
package/README.md CHANGED
@@ -1,69 +1,69 @@
1
- # DeFi Saver Positions SDK
2
-
3
- Supported protocols:
4
- - [Maker](https://github.com/defisaver/defisaver-positions-sdk/tree/main/src/maker)
5
- - [Spark](https://github.com/defisaver/defisaver-positions-sdk/tree/main/src/spark)
6
- - [CrvUSD](https://github.com/defisaver/defisaver-positions-sdk/tree/main/src/curveUsd)
7
- - [Aave V2](https://github.com/defisaver/defisaver-positions-sdk/tree/main/src/aaveV2)
8
- - [Aave V3](https://github.com/defisaver/defisaver-positions-sdk/tree/main/src/aaveV3)
9
- - [Morpho Aave V2](https://github.com/defisaver/defisaver-positions-sdk/tree/main/src/morphoAaveV2)
10
- - [Morpho Aave V3](https://github.com/defisaver/defisaver-positions-sdk/tree/main/src/morphoAaveV3)
11
- - [Compound V2](https://github.com/defisaver/defisaver-positions-sdk/tree/main/src/compoundV2)
12
- - [Compound V3](https://github.com/defisaver/defisaver-positions-sdk/tree/main/src/compoundV3)
13
- - [Liquity](https://github.com/defisaver/defisaver-positions-sdk/tree/main/src/liquity)
14
- - [Chicken Bonds](https://github.com/defisaver/defisaver-positions-sdk/tree/main/src/chickenBonds)
15
-
16
- ## Setup
17
- Supported Node version is v10.
18
-
19
- - run `npm install` (first time)
20
- - run `npm run build`
21
-
22
- `build` command will generate contracts and build ejs and esm folders
23
-
24
- ## How to use
25
- [All available imports](https://github.com/defisaver/defisaver-positions-sdk/blob/main/src/index.ts)
26
-
27
- This is a Compound V3 example, and every other protocol is similar
28
- ```js
29
- import Web3 from 'web3';
30
- import { compoundV3 } from '@defisaver/positions-sdk';
31
-
32
-
33
- // every protocol has market data and user data getters
34
- const {
35
- getCompoundV3MarketsData,
36
- getCompoundV3AccountData,
37
- } = compoundV3;
38
-
39
- const provider = 'Your RPC provider';
40
- const web3 = new Web3(provider);
41
-
42
- const user = '0x123...';
43
-
44
- const { assetsData } = await getCompoundV3MarketsData(
45
- web3, // rpc for the network you are using (note: can be tenderly or any other testnet rpc)
46
- 1, // network
47
- selectedMarket, // market object like in /src/markets/compound/index.ts
48
- web3, // this must be mainnet rpc - used for getting prices onchain and calculating apys
49
- );
50
-
51
- const userData = await getCompoundV3AccountData(
52
- web3,
53
- 1, // network
54
- userAddress, // EOA or DSProxy
55
- '', // proxy address of the user, or just empty string if checking for EOA
56
- {
57
- selectedMarket, // market object as in /src/markets/compound/index.ts
58
- assetsData,
59
- }
60
- );
61
- ```
62
-
63
- More examples found [here](https://github.com/defisaver/defisaver-positions-sdk/tree/main/tests)
64
-
65
- ## Testing
66
-
67
- `npm run test` - Run all tests
68
-
69
- `npm run test-single --name=your_test_name` - Run single test for specified name e.g. for MyTest.js test name is MyTest
1
+ # DeFi Saver Positions SDK
2
+
3
+ Supported protocols:
4
+ - [Maker](https://github.com/defisaver/defisaver-positions-sdk/tree/main/src/maker)
5
+ - [Spark](https://github.com/defisaver/defisaver-positions-sdk/tree/main/src/spark)
6
+ - [CrvUSD](https://github.com/defisaver/defisaver-positions-sdk/tree/main/src/curveUsd)
7
+ - [Aave V2](https://github.com/defisaver/defisaver-positions-sdk/tree/main/src/aaveV2)
8
+ - [Aave V3](https://github.com/defisaver/defisaver-positions-sdk/tree/main/src/aaveV3)
9
+ - [Morpho Aave V2](https://github.com/defisaver/defisaver-positions-sdk/tree/main/src/morphoAaveV2)
10
+ - [Morpho Aave V3](https://github.com/defisaver/defisaver-positions-sdk/tree/main/src/morphoAaveV3)
11
+ - [Compound V2](https://github.com/defisaver/defisaver-positions-sdk/tree/main/src/compoundV2)
12
+ - [Compound V3](https://github.com/defisaver/defisaver-positions-sdk/tree/main/src/compoundV3)
13
+ - [Liquity](https://github.com/defisaver/defisaver-positions-sdk/tree/main/src/liquity)
14
+ - [Chicken Bonds](https://github.com/defisaver/defisaver-positions-sdk/tree/main/src/chickenBonds)
15
+
16
+ ## Setup
17
+ Supported Node version is v10.
18
+
19
+ - run `npm install` (first time)
20
+ - run `npm run build`
21
+
22
+ `build` command will generate contracts and build ejs and esm folders
23
+
24
+ ## How to use
25
+ [All available imports](https://github.com/defisaver/defisaver-positions-sdk/blob/main/src/index.ts)
26
+
27
+ This is a Compound V3 example, and every other protocol is similar
28
+ ```js
29
+ import Web3 from 'web3';
30
+ import { compoundV3 } from '@defisaver/positions-sdk';
31
+
32
+
33
+ // every protocol has market data and user data getters
34
+ const {
35
+ getCompoundV3MarketsData,
36
+ getCompoundV3AccountData,
37
+ } = compoundV3;
38
+
39
+ const provider = 'Your RPC provider';
40
+ const web3 = new Web3(provider);
41
+
42
+ const user = '0x123...';
43
+
44
+ const { assetsData } = await getCompoundV3MarketsData(
45
+ web3, // rpc for the network you are using (note: can be tenderly or any other testnet rpc)
46
+ 1, // network
47
+ selectedMarket, // market object like in /src/markets/compound/index.ts
48
+ web3, // this must be mainnet rpc - used for getting prices onchain and calculating apys
49
+ );
50
+
51
+ const userData = await getCompoundV3AccountData(
52
+ web3,
53
+ 1, // network
54
+ userAddress, // EOA or DSProxy
55
+ '', // proxy address of the user, or just empty string if checking for EOA
56
+ {
57
+ selectedMarket, // market object as in /src/markets/compound/index.ts
58
+ assetsData,
59
+ }
60
+ );
61
+ ```
62
+
63
+ More examples found [here](https://github.com/defisaver/defisaver-positions-sdk/tree/main/tests)
64
+
65
+ ## Testing
66
+
67
+ `npm run test` - Run all tests
68
+
69
+ `npm run test-single --name=your_test_name` - Run single test for specified name e.g. for MyTest.js test name is MyTest
@@ -7012,8 +7012,62 @@ export namespace WstETHPriceFeed {
7012
7012
  };
7013
7013
  export { networks_75 as networks };
7014
7014
  }
7015
- export namespace MorphoBlueView {
7015
+ export namespace WeETHPriceFeed {
7016
7016
  let abi_76: ({
7017
+ inputs: {
7018
+ internalType: string;
7019
+ name: string;
7020
+ type: string;
7021
+ }[];
7022
+ stateMutability: string;
7023
+ type: string;
7024
+ anonymous?: undefined;
7025
+ name?: undefined;
7026
+ outputs?: undefined;
7027
+ } | {
7028
+ anonymous: boolean;
7029
+ inputs: {
7030
+ indexed: boolean;
7031
+ internalType: string;
7032
+ name: string;
7033
+ type: string;
7034
+ }[];
7035
+ name: string;
7036
+ type: string;
7037
+ stateMutability?: undefined;
7038
+ outputs?: undefined;
7039
+ } | {
7040
+ inputs: {
7041
+ internalType: string;
7042
+ name: string;
7043
+ type: string;
7044
+ }[];
7045
+ name: string;
7046
+ outputs: {
7047
+ internalType: string;
7048
+ name: string;
7049
+ type: string;
7050
+ }[];
7051
+ stateMutability: string;
7052
+ type: string;
7053
+ anonymous?: undefined;
7054
+ })[];
7055
+ export { abi_76 as abi };
7056
+ let networks_76: {
7057
+ "1": {
7058
+ address: string;
7059
+ };
7060
+ "8453": {
7061
+ address: string;
7062
+ };
7063
+ "42161": {
7064
+ address: string;
7065
+ };
7066
+ };
7067
+ export { networks_76 as networks };
7068
+ }
7069
+ export namespace MorphoBlueView {
7070
+ let abi_77: ({
7017
7071
  inputs: {
7018
7072
  components: {
7019
7073
  internalType: string;
@@ -7096,8 +7150,8 @@ export namespace MorphoBlueView {
7096
7150
  stateMutability: string;
7097
7151
  type: string;
7098
7152
  })[];
7099
- export { abi_76 as abi };
7100
- let networks_76: {
7153
+ export { abi_77 as abi };
7154
+ let networks_77: {
7101
7155
  "1": {
7102
7156
  address: string;
7103
7157
  createdBlock: number;
@@ -7407,10 +7461,10 @@ export namespace MorphoBlueView {
7407
7461
  };
7408
7462
  };
7409
7463
  };
7410
- export { networks_76 as networks };
7464
+ export { networks_77 as networks };
7411
7465
  }
7412
7466
  export namespace FeedRegistry {
7413
- let abi_77: ({
7467
+ let abi_78: ({
7414
7468
  anonymous: boolean;
7415
7469
  inputs: {
7416
7470
  indexed: boolean;
@@ -7458,16 +7512,16 @@ export namespace FeedRegistry {
7458
7512
  type: string;
7459
7513
  anonymous?: undefined;
7460
7514
  })[];
7461
- export { abi_77 as abi };
7462
- let networks_77: {
7515
+ export { abi_78 as abi };
7516
+ let networks_78: {
7463
7517
  "1": {
7464
7518
  address: string;
7465
7519
  };
7466
7520
  };
7467
- export { networks_77 as networks };
7521
+ export { networks_78 as networks };
7468
7522
  }
7469
7523
  export namespace DFSFeedRegistry {
7470
- let abi_78: ({
7524
+ let abi_79: ({
7471
7525
  inputs: never[];
7472
7526
  name: string;
7473
7527
  type: string;
@@ -7488,8 +7542,8 @@ export namespace DFSFeedRegistry {
7488
7542
  stateMutability: string;
7489
7543
  type: string;
7490
7544
  })[];
7491
- export { abi_78 as abi };
7492
- let networks_78: {
7545
+ export { abi_79 as abi };
7546
+ let networks_79: {
7493
7547
  "8453": {
7494
7548
  address: string;
7495
7549
  };
@@ -7497,10 +7551,10 @@ export namespace DFSFeedRegistry {
7497
7551
  address: string;
7498
7552
  };
7499
7553
  };
7500
- export { networks_78 as networks };
7554
+ export { networks_79 as networks };
7501
7555
  }
7502
7556
  export namespace LlamaLendView {
7503
- let abi_79: ({
7557
+ let abi_80: ({
7504
7558
  inputs: never[];
7505
7559
  name: string;
7506
7560
  type: string;
@@ -7550,8 +7604,8 @@ export namespace LlamaLendView {
7550
7604
  stateMutability: string;
7551
7605
  type: string;
7552
7606
  })[];
7553
- export { abi_79 as abi };
7554
- let networks_79: {
7607
+ export { abi_80 as abi };
7608
+ let networks_80: {
7555
7609
  "1": {
7556
7610
  address: string;
7557
7611
  };
@@ -7559,10 +7613,10 @@ export namespace LlamaLendView {
7559
7613
  address: string;
7560
7614
  };
7561
7615
  };
7562
- export { networks_79 as networks };
7616
+ export { networks_80 as networks };
7563
7617
  }
7564
7618
  export namespace LlamaLendControllerAbi {
7565
- let abi_80: ({
7619
+ let abi_81: ({
7566
7620
  name: string;
7567
7621
  inputs: {
7568
7622
  name: string;
@@ -7614,12 +7668,12 @@ export namespace LlamaLendControllerAbi {
7614
7668
  }[];
7615
7669
  anonymous?: undefined;
7616
7670
  })[];
7617
- export { abi_80 as abi };
7618
- let networks_80: {};
7619
- export { networks_80 as networks };
7671
+ export { abi_81 as abi };
7672
+ let networks_81: {};
7673
+ export { networks_81 as networks };
7620
7674
  }
7621
7675
  export namespace LiquityV2View {
7622
- let abi_81: ({
7676
+ let abi_82: ({
7623
7677
  inputs: never[];
7624
7678
  name: string;
7625
7679
  type: string;
@@ -7650,8 +7704,8 @@ export namespace LiquityV2View {
7650
7704
  stateMutability: string;
7651
7705
  type: string;
7652
7706
  })[];
7653
- export { abi_81 as abi };
7654
- let networks_81: {
7707
+ export { abi_82 as abi };
7708
+ let networks_82: {
7655
7709
  "1": {
7656
7710
  address: string;
7657
7711
  createdBlock: number;
@@ -7687,10 +7741,10 @@ export namespace LiquityV2View {
7687
7741
  };
7688
7742
  };
7689
7743
  };
7690
- export { networks_81 as networks };
7744
+ export { networks_82 as networks };
7691
7745
  }
7692
7746
  export namespace LiquityV2CollSurplusPool {
7693
- let abi_82: ({
7747
+ let abi_83: ({
7694
7748
  inputs: {
7695
7749
  internalType: string;
7696
7750
  name: string;
@@ -7729,12 +7783,12 @@ export namespace LiquityV2CollSurplusPool {
7729
7783
  type: string;
7730
7784
  anonymous?: undefined;
7731
7785
  })[];
7732
- export { abi_82 as abi };
7733
- let networks_82: {};
7734
- export { networks_82 as networks };
7786
+ export { abi_83 as abi };
7787
+ let networks_83: {};
7788
+ export { networks_83 as networks };
7735
7789
  }
7736
7790
  export namespace LiquityV2TroveNFT {
7737
- let abi_83: ({
7791
+ let abi_84: ({
7738
7792
  inputs: {
7739
7793
  internalType: string;
7740
7794
  name: string;
@@ -7773,12 +7827,12 @@ export namespace LiquityV2TroveNFT {
7773
7827
  type: string;
7774
7828
  anonymous?: undefined;
7775
7829
  })[];
7776
- export { abi_83 as abi };
7777
- let networks_83: {};
7778
- export { networks_83 as networks };
7830
+ export { abi_84 as abi };
7831
+ let networks_84: {};
7832
+ export { networks_84 as networks };
7779
7833
  }
7780
7834
  export namespace EulerV2View {
7781
- let abi_84: ({
7835
+ let abi_85: ({
7782
7836
  inputs: {
7783
7837
  internalType: string;
7784
7838
  name: string;
@@ -7841,16 +7895,16 @@ export namespace EulerV2View {
7841
7895
  stateMutability: string;
7842
7896
  type: string;
7843
7897
  })[];
7844
- export { abi_84 as abi };
7845
- let networks_84: {
7898
+ export { abi_85 as abi };
7899
+ let networks_85: {
7846
7900
  "1": {
7847
7901
  address: string;
7848
7902
  };
7849
7903
  };
7850
- export { networks_84 as networks };
7904
+ export { networks_85 as networks };
7851
7905
  }
7852
7906
  export namespace LiquityV2StabilityPool {
7853
- let abi_85: ({
7907
+ let abi_86: ({
7854
7908
  inputs: {
7855
7909
  internalType: string;
7856
7910
  name: string;
@@ -7889,12 +7943,12 @@ export namespace LiquityV2StabilityPool {
7889
7943
  type: string;
7890
7944
  anonymous?: undefined;
7891
7945
  })[];
7892
- export { abi_85 as abi };
7893
- let networks_85: {};
7894
- export { networks_85 as networks };
7946
+ export { abi_86 as abi };
7947
+ let networks_86: {};
7948
+ export { networks_86 as networks };
7895
7949
  }
7896
7950
  export namespace FluidView {
7897
- let abi_86: ({
7951
+ let abi_87: ({
7898
7952
  inputs: {
7899
7953
  internalType: string;
7900
7954
  name: string;
@@ -7902,11 +7956,6 @@ export namespace FluidView {
7902
7956
  }[];
7903
7957
  name: string;
7904
7958
  outputs: {
7905
- components: {
7906
- internalType: string;
7907
- name: string;
7908
- type: string;
7909
- }[];
7910
7959
  internalType: string;
7911
7960
  name: string;
7912
7961
  type: string;
@@ -7921,6 +7970,21 @@ export namespace FluidView {
7921
7970
  }[];
7922
7971
  name: string;
7923
7972
  outputs: {
7973
+ components: ({
7974
+ internalType: string;
7975
+ name: string;
7976
+ type: string;
7977
+ components?: undefined;
7978
+ } | {
7979
+ components: {
7980
+ internalType: string;
7981
+ name: string;
7982
+ type: string;
7983
+ }[];
7984
+ internalType: string;
7985
+ name: string;
7986
+ type: string;
7987
+ })[];
7924
7988
  internalType: string;
7925
7989
  name: string;
7926
7990
  type: string;
@@ -7928,8 +7992,8 @@ export namespace FluidView {
7928
7992
  stateMutability: string;
7929
7993
  type: string;
7930
7994
  })[];
7931
- export { abi_86 as abi };
7932
- let networks_86: {
7995
+ export { abi_87 as abi };
7996
+ let networks_87: {
7933
7997
  "1": {
7934
7998
  address: string;
7935
7999
  };
@@ -7940,5 +8004,5 @@ export namespace FluidView {
7940
8004
  address: string;
7941
8005
  };
7942
8006
  };
7943
- export { networks_86 as networks };
8007
+ export { networks_87 as networks };
7944
8008
  }