-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* chore: version 304 * chore: ts * chore: fix tests
- Loading branch information
1 parent
68b201f
commit 516f95e
Showing
7 changed files
with
19 additions
and
19 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,19 @@ | ||
[submodule "lib/yearn-vaults-v3"] | ||
path = lib/yearn-vaults-v3 | ||
url = https://github.com/yearn/yearn-vaults-v3 | ||
branch = v3.0.3 | ||
[submodule "lib/tokenized-strategy"] | ||
path = lib/tokenized-strategy | ||
url = https://github.com/yearn/tokenized-strategy | ||
branch = v3.0.3 | ||
[submodule "lib/openzeppelin-contracts"] | ||
path = lib/openzeppelin-contracts | ||
url = https://github.com/OpenZeppelin/openzeppelin-contracts | ||
branch = v4.9.5 | ||
[submodule "lib/tokenized-strategy-periphery"] | ||
path = lib/tokenized-strategy-periphery | ||
url = https://github.com/yearn/tokenized-strategy-periphery | ||
branch = master | ||
[submodule "lib/forge-std"] | ||
path = lib/forge-std | ||
url = https://github.com/foundry-rs/forge-std | ||
[submodule "lib/tokenized-strategy"] | ||
path = lib/tokenized-strategy | ||
url = https://github.com/yearn/tokenized-strategy | ||
branch = v3.0.4 | ||
[submodule "lib/yearn-vaults-v3"] | ||
path = lib/yearn-vaults-v3 | ||
url = https://github.com/yearn/yearn-vaults-v3 | ||
branch = v3.0.4 | ||
[submodule "lib/tokenized-strategy-periphery"] | ||
path = lib/tokenized-strategy-periphery | ||
url = https://github.com/yearn/tokenized-strategy-periphery | ||
branch = master |
Submodule tokenized-strategy
updated
4 files
+3 −4 | script/Deploy.s.sol | |
+1 −1 | src/BaseStrategy.sol | |
+1 −1 | src/TokenizedStrategy.sol | |
+1 −1 | src/test/ERC20Std.t.sol |
Submodule tokenized-strategy-periphery
updated
13 files
+5 −0 | .github/workflows/test.yml | |
+2 −2 | .gitmodules | |
+4 −15 | README.md | |
+1 −1 | lib/tokenized-strategy | |
+1 −1 | lib/yearn-vaults-v3 | |
+0 −2 | script/BaseScript.s.sol | |
+2 −3 | script/DeployAprOracle.s.sol | |
+0 −24 | script/DeployAuctionFactory.sol | |
+11 −19 | script/DeployCommonTrigger.s.sol | |
+82 −16 | src/AprOracle/AprOracle.sol | |
+2 −1 | src/Bases/4626Compounder/Base4626Compounder.sol | |
+9 −21 | src/ReportTrigger/CommonReportTrigger.sol | |
+18 −17 | src/test/CommonTrigger.t.sol |
Submodule yearn-vaults-v3
updated
11 files
+1 −1 | ape-config.yaml | |
+1 −1 | contracts/VaultFactory.vy | |
+38 −26 | contracts/VaultV3.vy | |
+1 −0 | contracts/interfaces/IVault.sol | |
+4 −2 | foundry_tests/handlers/VaultHandler.sol | |
+1 −1 | package.json | |
+3 −3 | scripts/deploy.py | |
+5 −1 | tests/unit/vault/test_emergency_shutdown.py | |
+16 −4 | tests/unit/vault/test_roles.py | |
+115 −0 | tests/unit/vault/test_strategy_accounting.py | |
+4 −4 | yarn.lock |
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