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

fix: deployment readme #188

Merged
merged 1 commit into from
Aug 1, 2024
Merged
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
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,9 @@ yarn test # run the tests

## Creating a Pool
- Create a new pool by calling the corresponding pool factory:
- `IBFactory.newBPool()` for regular Balancer `BPool`s
- `IBCoWFactory.newBPool()` for Balancer `BCoWPool`s, compatible with CoW Protocol
- `IBFactory.newBPool(name, symbol)` for regular Balancer `BPool`s
- `IBCoWFactory.newBPool(name, symbol)` for Balancer `BCoWPool`s, compatible with CoW Protocol
> Being `name` and `symbol` strings with the desired name and symbol of the pool's ERC20 LP token
- Give ERC20 allowance to the pool by calling `IERC20.approve(pool, amount)`
- Bind tokens one by one by calling `IBPool.bind(token, amount, weight)`
- The amount represents the initial balance of the token in the pool (pulled from the caller's balance)
Expand Down
Loading