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

Docs: Add Pool tiers details for createPool Method UniswapFactoryV3 & IUniswapFactoryV3 #694

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
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
10 changes: 10 additions & 0 deletions docs/contracts/v3/reference/core/UniswapV3Factory.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,16 @@ tokenA and tokenB may be passed in either order: token0/token1 or token1/token0.
from the fee. The call will revert if the pool already exists, the fee is invalid, or the token arguments
are invalid.

##### Available pool fees tiers:
| Uint24 | Fee |
| :----- | :------ |
| `100` | 0.01% |
| `500` | 0.05% |
| `3000` | 0.3% |
| `10000` | 1% |

More information about [Pool Fees](https://docs.uniswap.org/concepts/protocol/fees#pool-fees-tiers)

#### Parameters:

| Name | Type | Description |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,15 @@ Returns the pool address for a given pair of tokens and a fee, or address 0 if i

tokenA and tokenB may be passed in either token0/token1 or token1/token0 order

##### Available pool fees tiers:
| Uint24 | Fee |
| :----- | :------ |
| `100` | 0.01% |
| `500` | 0.05% |
| `3000` | 0.3% |
| `10000` | 1% |

More information about [Pool Fees](https://docs.uniswap.org/concepts/protocol/fees#pool-fees-tiers)
#### Parameters:

| Name | Type | Description |
Expand Down