From 0bf6df34f5074e606867ef3cf82b9cca5f62f0ba Mon Sep 17 00:00:00 2001 From: 0xSolDev Date: Thu, 9 Jan 2025 23:45:28 +0530 Subject: [PATCH] fix: added scope --- README.md | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/README.md b/README.md index ac16efb..0521452 100644 --- a/README.md +++ b/README.md @@ -180,6 +180,33 @@ simply copy paste the path): $ yarn run test:coverage:report ``` +## Scope + +``` +src/ +├── LPToken.sol +├── SelfPeggingAsset.sol +├── SelfPeggingAssetFactory.sol +├── WLPToken.sol +├── interfaces +│ ├── IExchangeRateProvider.sol +│ └── ILPToken.sol +├── misc +│ ├── ConstantExchangeRateProvider.sol +│ ├── ERC4626ExchangeRate.sol +│ ├── OracleExchangeRate.sol +│ └── reth +│ ├── RocketTokenExchangeRateProvider.sol +│ └── RocketTokenRETHInterface.sol +└── mock + ├── MockERC4626Token.sol + ├── MockExchangeRateProvider.sol + ├── MockOracle.sol + ├── MockToken.sol + ├── MockTokenERC4626.sol + └── WETH.sol +``` + ## License This project is licensed under MIT.