Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: Pool LP 相关功能开发 V2 #104

Closed
wants to merge 25 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added P103_PoolLP/img/find_next_tick.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added P103_PoolLP/img/tick_bitmap.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1,250 changes: 1,250 additions & 0 deletions P103_PoolLP/readme.md

Large diffs are not rendered by default.

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