-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* chore: remove old version * chore: remove old versions * forge install: tokenized-strategy v3.0.2 * forge install: tokenized-strategy-periphery 62fff222eac29f544ce8a1cd8ee2a4b478aaf628 * chore: update comments * chore: remove old oz * forge install: openzeppelin-contracts v4.9.5 * test: update tests
- Loading branch information
1 parent
a3a91c7
commit c6108e4
Showing
12 changed files
with
32 additions
and
55 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule openzeppelin-contracts
updated
544 files
Submodule tokenized-strategy
updated
28 files
+2 −1 | .gitignore | |
+2 −2 | .gitmodules | |
+2 −2 | .vscode/settings.json | |
+16 −0 | README.md | |
+4 −4 | SPECIFICATION.md | |
+1 −1 | lib/openzeppelin-contracts | |
+5 −5 | package.json | |
+18 −18 | script/Deploy.s.sol | |
+37 −25 | src/BaseStrategy.sol | |
+511 −540 | src/TokenizedStrategy.sol | |
+44 −44 | src/interfaces/IEvents.sol | |
+1 −1 | src/interfaces/IFactory.sol | |
+28 −44 | src/interfaces/ITokenizedStrategy.sol | |
+1 −5 | src/test/AccessControl.t.sol | |
+74 −55 | src/test/Accounting.t.sol | |
+19 −16 | src/test/CustomImplementation.t.sol | |
+2 −93 | src/test/ERC20Std.t.sol | |
+20 −50 | src/test/FaultyStrategy.t.sol | |
+7 −6 | src/test/InvariantsSingleStrategy.t.sol | |
+117 −10 | src/test/ProfitLocking.t.sol | |
+9 −6 | src/test/e2e.t.sol | |
+14 −10 | src/test/handlers/StrategyHandler.sol | |
+1 −1 | src/test/mocks/MockFaultyStrategy.sol | |
+1 −1 | src/test/mocks/MockIlliquidStrategy.sol | |
+53 −0 | src/test/mocks/MockStorage.sol | |
+17 −19 | src/test/utils/BaseInvariant.sol | |
+30 −56 | src/test/utils/Setup.sol | |
+4 −4 | yarn.lock |
Submodule tokenized-strategy-periphery
updated
22 files
+1 −2 | .env.example | |
+1 −1 | .github/workflows/lint.yaml | |
+3 −3 | .gitmodules | |
+2 −1 | .solhint.json | |
+10 −10 | Makefile | |
+6 −1 | foundry.toml | |
+1 −1 | lib/openzeppelin-contracts | |
+1 −1 | lib/tokenized-strategy | |
+1 −1 | lib/yearn-vaults-v3 | |
+0 −4 | remapping.txt | |
+36 −0 | script/DeployAuctionFactory.sol | |
+1 −1 | src/AprOracle/AprOracle.sol | |
+709 −0 | src/Auctions/Auction.sol | |
+212 −0 | src/Auctions/AuctionFactory.sol | |
+12 −0 | src/interfaces/ITaker.sol | |
+81 −0 | src/libraries/Maths.sol | |
+215 −0 | src/swappers/AuctionSwapper.sol | |
+16 −0 | src/swappers/interfaces/IAuctionSwapper.sol | |
+445 −0 | src/test/Auction.t.sol | |
+548 −0 | src/test/AuctionSwapper.t.sol | |
+111 −0 | src/test/mocks/MockAuctionSwapper.sol | |
+26 −17 | src/test/utils/Setup.sol |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters