Skip to content

Commit

Permalink
feat: update KatanaGovernance
Browse files Browse the repository at this point in the history
  • Loading branch information
thaixuandang committed Aug 1, 2024
1 parent 289eaae commit 187dd4a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/katana-v3-contracts
Submodule katana-v3-contracts updated 42 files
+0 −3 .gitmodules
+7 −0 Makefile
+1 −3 foundry.toml
+0 −1 lib/v2-core
+0 −1 remappings.txt
+40 −0 script/DeployKatanaV3Core.s.sol
+74 −0 script/DeployKatanaV3Periphery.s.sol
+31 −0 script/local/DeployKatanaV3Local.s.sol
+31 −0 script/ronin-mainnet/DeployKatanaV3Mainnet.s.sol
+31 −0 script/ronin-testnet/DeployKatanaV3Testnet.s.sol
+19 −14 src/core/KatanaV3Factory.sol
+40 −0 src/core/KatanaV3FactoryProxy.sol
+14 −3 src/core/KatanaV3Pool.sol
+7 −3 src/core/KatanaV3PoolDeployer.sol
+6 −3 src/core/KatanaV3PoolProxy.sol
+16 −0 src/core/KatanaV3PoolProxyBytecode.sol
+0 −4 src/core/interfaces/IKatanaV3Factory.sol
+14 −0 src/core/interfaces/IKatanaV3FactoryImmutables.sol
+2 −0 src/core/interfaces/IKatanaV3Pool.sol
+4 −0 src/core/interfaces/pool/IKatanaV3PoolImmutables.sol
+14 −0 src/core/interfaces/pool/IKatanaV3PoolImmutablesInitializable.sol
+87 −0 src/external/KatanaGovernanceMock.sol
+134 −0 src/external/interfaces/IKatanaGovernance.sol
+21 −0 src/external/libraries/AuthorizationLib.sol
+61 −1 src/periphery/NonfungiblePositionManager.sol
+3 −3 src/periphery/V3Migrator.sol
+18 −0 src/periphery/base/ImmutableState.sol
+4 −0 src/periphery/base/PeripheryImmutableState.sol
+4 −0 src/periphery/base/PoolInitializer.sol
+12 −0 src/periphery/interfaces/IImmutableState.sol
+53 −0 src/periphery/interfaces/IKatanaV2Pair.sol
+67 −0 src/periphery/interfaces/IMixedRouteQuoterV1.sol
+6 −0 src/periphery/interfaces/INonfungiblePositionManager.sol
+3 −0 src/periphery/interfaces/IPeripheryImmutableState.sol
+194 −0 src/periphery/lens/MixedRouteQuoterV1.sol
+194 −0 src/periphery/lens/MixedRouteQuoterV1Testnet.sol
+86 −0 src/periphery/libraries/KatanaV2Library.sol
+86 −0 src/periphery/libraries/KatanaV2LibraryTestnet.sol
+3 −2 src/periphery/libraries/PoolAddress.sol
+22 −4 test/core/KatanaV3Factory.t.sol
+72 −20 test/core/KatanaV3Pool.t.sol
+17 −0 test/core/PoolProxyInitCodeHash.t.sol

0 comments on commit 187dd4a

Please sign in to comment.