Skip to content

Commit

Permalink
Update core
Browse files Browse the repository at this point in the history
  • Loading branch information
shaspitz committed Sep 17, 2024
1 parent 84496df commit cc4812d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contracts/lib/core
Submodule core updated 43 files
+2 −2 README.md
+1 −1 package.json
+14 −0 src/contracts/common/Entity.sol
+29 −0 src/contracts/common/Factory.sol
+28 −6 src/contracts/common/MigratableEntity.sol
+30 −4 src/contracts/common/MigratablesFactory.sol
+30 −10 src/contracts/delegator/BaseDelegator.sol
+7 −4 src/contracts/delegator/FullRestakeDelegator.sol
+7 −4 src/contracts/delegator/NetworkRestakeDelegator.sol
+15 −3 src/contracts/slasher/BaseSlasher.sol
+2 −6 src/contracts/slasher/Slasher.sol
+13 −10 src/contracts/slasher/VetoSlasher.sol
+67 −30 src/contracts/vault/Vault.sol
+0 −99 src/interfaces/collateral/ICollateral.sol
+8 −0 src/interfaces/common/IEntity.sol
+30 −0 src/interfaces/common/IFactory.sol
+7 −0 src/interfaces/common/IMigratableEntity.sol
+1 −3 src/interfaces/common/IMigratableEntityProxy.sol
+29 −0 src/interfaces/common/IMigratablesFactory.sol
+16 −1 src/interfaces/delegator/IBaseDelegator.sol
+3 −1 src/interfaces/slasher/IBaseSlasher.sol
+2 −2 src/interfaces/slasher/IVetoSlasher.sol
+26 −2 src/interfaces/vault/IVault.sol
+3 −6 test/DelegatorFactory.t.sol
+27 −0 test/POC.t.sol
+636 −0 test/POCBase.t.sol
+3 −6 test/SlasherFactory.t.sol
+3 −6 test/VaultConfigurator.t.sol
+3 −6 test/VaultFactory.t.sol
+19 −1 test/common/Entity.t.sol
+22 −2 test/common/Factory.t.sol
+7 −2 test/common/MigratableEntity.t.sol
+2 −2 test/common/MigratableEntityProxy.t.sol
+23 −2 test/common/MigratablesFactory.t.sol
+1 −1 test/common/Registry.t.sol
+121 −8 test/delegator/FullRestakeDelegator.t.sol
+123 −8 test/delegator/NetworkRestakeDelegator.t.sol
+0 −99 test/mocks/SimpleCollateral.sol
+7 −3 test/mocks/SimpleFullRestakeDelegatorHook.sol
+7 −3 test/mocks/SimpleNetworkRestakeDelegatorHook.sol
+12 −10 test/slasher/Slasher.t.sol
+236 −11 test/slasher/VetoSlasher.t.sol
+165 −17 test/vault/Vault.t.sol

0 comments on commit cc4812d

Please sign in to comment.