├── .github └── workflows │ └── test.yml ├── .gitignore ├── .gitmodules ├── LICENSE ├── README.md ├── demo.sh ├── foundry.toml ├── remappings.txt ├── script ├── DeployAndProvision.s.sol └── DeployBenefits.s.sol ├── src ├── HyperlaneLPHook.sol └── examples │ ├── Emissions.sol │ └── LPBenefits.sol └── test ├── HyperlaneLPHook.t.sol ├── implementation └── HyperlaneLPHookImplementation.sol └── utils └── HookTest.sol /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saucepoint/v4-hyperlane-LPTs/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saucepoint/v4-hyperlane-LPTs/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saucepoint/v4-hyperlane-LPTs/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saucepoint/v4-hyperlane-LPTs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saucepoint/v4-hyperlane-LPTs/HEAD/README.md -------------------------------------------------------------------------------- /demo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saucepoint/v4-hyperlane-LPTs/HEAD/demo.sh -------------------------------------------------------------------------------- /foundry.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saucepoint/v4-hyperlane-LPTs/HEAD/foundry.toml -------------------------------------------------------------------------------- /remappings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saucepoint/v4-hyperlane-LPTs/HEAD/remappings.txt -------------------------------------------------------------------------------- /script/DeployAndProvision.s.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saucepoint/v4-hyperlane-LPTs/HEAD/script/DeployAndProvision.s.sol -------------------------------------------------------------------------------- /script/DeployBenefits.s.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saucepoint/v4-hyperlane-LPTs/HEAD/script/DeployBenefits.s.sol -------------------------------------------------------------------------------- /src/HyperlaneLPHook.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saucepoint/v4-hyperlane-LPTs/HEAD/src/HyperlaneLPHook.sol -------------------------------------------------------------------------------- /src/examples/Emissions.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saucepoint/v4-hyperlane-LPTs/HEAD/src/examples/Emissions.sol -------------------------------------------------------------------------------- /src/examples/LPBenefits.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saucepoint/v4-hyperlane-LPTs/HEAD/src/examples/LPBenefits.sol -------------------------------------------------------------------------------- /test/HyperlaneLPHook.t.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saucepoint/v4-hyperlane-LPTs/HEAD/test/HyperlaneLPHook.t.sol -------------------------------------------------------------------------------- /test/implementation/HyperlaneLPHookImplementation.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saucepoint/v4-hyperlane-LPTs/HEAD/test/implementation/HyperlaneLPHookImplementation.sol -------------------------------------------------------------------------------- /test/utils/HookTest.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saucepoint/v4-hyperlane-LPTs/HEAD/test/utils/HookTest.sol --------------------------------------------------------------------------------