Skip to content

Commit

Permalink
feat: init constructor
Browse files Browse the repository at this point in the history
  • Loading branch information
yutingzhao1991 committed Jul 31, 2024
1 parent 0570f4f commit da0baa1
Show file tree
Hide file tree
Showing 4 changed files with 705 additions and 631 deletions.
9 changes: 8 additions & 1 deletion demo-contract/contracts/wtfswap/Factory.sol
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,14 @@ contract Factory is IFactory {
external
view
override
returns (address factory, address token0, address token1, uint24 fee)
returns (
address factory,
address token0,
address token1,
uint24 fee,
int24 tickLower,
int24 tickUpper
)
{}

function getPool(
Expand Down
Loading

0 comments on commit da0baa1

Please sign in to comment.