Skip to content

Commit

Permalink
chore: update to 303 (#48)
Browse files Browse the repository at this point in the history
* chore: upate to 303

* fix: branch
  • Loading branch information
Schlagonia authored Sep 24, 2024
1 parent 6f0ec92 commit 03dfef6
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .gitmodules
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
[submodule "lib/tokenized-strategy"]
path = lib/tokenized-strategy
url = https://github.com/yearn/tokenized-strategy
release = v3.0.2
branch = v3.0.3
[submodule "lib/yearn-vaults-v3"]
path = lib/yearn-vaults-v3
url = https://github.com/yearn/yearn-vaults-v3
release = v3.0.2
branch = v3.0.3
2 changes: 1 addition & 1 deletion lib/yearn-vaults-v3
Submodule yearn-vaults-v3 updated 47 files
+1 −28 .github/workflows/foundry.yaml
+2 −2 .github/workflows/lint.yaml
+8 −5 .github/workflows/test.yaml
+2 −1 .gitignore
+7 −0 .gitmodules
+3 −1 README.md
+15 −8 TECH_SPEC.md
+4 −4 ape-config.yaml
+ audits/Yearn V3 report Statemind.pdf
+109 −51 contracts/VaultFactory.vy
+133 −102 contracts/VaultV3.vy
+1 −1 contracts/interfaces/IDeployer.sol
+10 −1 contracts/interfaces/IVault.sol
+1 −5 contracts/interfaces/IVaultFactory.sol
+1 −1 contracts/interfaces/Roles.sol
+1 −1 contracts/interfaces/VaultConstants.sol
+1 −1 contracts/test/ERC4626BaseStrategy.sol
+1 −1 contracts/test/Token.sol
+86 −69 contracts/test/USDT.sol
+1 −1 contracts/test/mocks/ERC4626/BaseStrategyMock.sol
+1 −1 contracts/test/mocks/ERC4626/FaultyStrategy.sol
+1 −1 contracts/test/mocks/ERC4626/Generic4626.sol
+1 −1 contracts/test/mocks/ERC4626/LockedStrategy.sol
+1 −1 contracts/test/mocks/ERC4626/LossyStrategy.sol
+1 −1 contracts/test/mocks/ERC4626/MockTokenizedStrategy.sol
+6 −3 foundry.toml
+291 −0 foundry_tests/handlers/VaultHandler.sol
+19 −1 foundry_tests/tests/ERC4626Std.t.sol
+99 −0 foundry_tests/tests/Invariants.t.sol
+145 −0 foundry_tests/utils/BaseInvariant.sol
+1 −1 foundry_tests/utils/ExtendedTest.sol
+44 −0 foundry_tests/utils/LibAddressSet.sol
+34 −1 foundry_tests/utils/Setup.sol
+1 −0 lib/openzeppelin-contracts
+1 −0 lib/tokenized-strategy
+3 −2 requirements.txt
+5 −3 scripts/deploy.py
+21 −21 tests/unit/factory/test_ownership.py
+24 −37 tests/unit/factory/test_protocol_fees_config.py
+437 −0 tests/unit/vault/test_auto_allocate.py
+25 −9 tests/unit/vault/test_debt_management.py
+1 −1 tests/unit/vault/test_emergency_shutdown.py
+23 −0 tests/unit/vault/test_erc4626.py
+2 −2 tests/unit/vault/test_protocol_fees.py
+40 −0 tests/unit/vault/test_role_base_access.py
+89 −2 tests/unit/vault/test_shares.py
+36 −0 tests/unit/vault/test_vault_accounting.py

0 comments on commit 03dfef6

Please sign in to comment.