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: Ethereum spelling errors, OP Sepolia chain ID, and Blast chain ID #699

Merged
merged 1 commit into from
Apr 22, 2024
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Contract addresses for the [`Uniswap V2 Factory`](https://github.com/Uniswap/v2-
| Network | Factory Contract Address | V2Router02 Contract Address |
| ---------------------------------------------------- | -------------------------------------------- | -------------------------------------------- |
| Mainnet | `0x5C69bEe701ef814a2B6a3EDD4B1652CB9cc5aA6f` | `0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D` |
| Etherum Sepolia | `0xB7f907f7A9eBC822a80BD25E224be42Ce0A698A0` | `0x425141165d3DE9FEC831896C016617a52363b687` |
| Ethereum Sepolia | `0xB7f907f7A9eBC822a80BD25E224be42Ce0A698A0` | `0x425141165d3DE9FEC831896C016617a52363b687` |
| Arbitrum | `0xf1D7CC64Fb4452F05c498126312eBE29f30Fbcf9` | `0x4752ba5dbc23f44d87826276bf6fd6b1c372ad24` |
| Avalanche | `0x9e5A52f57b3038F1B8EeE45F28b3C1967e22799C` | `0x4752ba5dbc23f44d87826276bf6fd6b1c372ad24` |
| BNB Chain | `0x8909Dc15e40173Ff4699343b6eB8132c65e18eC6` | `0x4752ba5dbc23f44d87826276bf6fd6b1c372ad24` |
Expand Down
6 changes: 3 additions & 3 deletions docs/contracts/v3/reference/deployments/Blast-Deployments.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,6 @@ getPool("0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", "0xc02aaa39b223fe8d0a0e5c4

The Uniswap Protocol supports trading of ERC20 tokens. In order to swap a native asset like ETH (or MATIC on Polygon), the Uniswap protocol wraps these assets in an ERC20 wrapped native token contract. The protocol uses the following WETH9 addresses on Ethereum and WMATIC addresses on Polygon.

| Network | ChainId | Wrapped Native Token | Address |
| ------- | -------- | -------------------- | -------------------------------------------- |
| Blast | `1` | WETH | `0x4300000000000000000000000000000000000004` |
| Network | ChainId | Wrapped Native Token | Address |
| ------- | ------- | -------------------- | -------------------------------------------- |
| Blast | `81457` | WETH | `0x4300000000000000000000000000000000000004` |
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ getPool("0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", "0xc02aaa39b223fe8d0a0e5c4

The Uniswap Protocol supports trading of ERC20 tokens. In order to swap a native asset like ETH (or MATIC on Polygon), the Uniswap protocol wraps these assets in an ERC20 wrapped native token contract. The protocol uses the following WETH9 addresses on Ethereum and WMATIC addresses on Polygon.

| Network | ChainId | Wrapped Native Token | Address |
| ------------------- | -------- | -------------------- | -------------------------------------------- |
| Optimism | `10` | WETH | `0x4200000000000000000000000000000000000006` |
| Optimism Sepolia | `137` | WETH | `0x4200000000000000000000000000000000000006` |
| Network | ChainId | Wrapped Native Token | Address |
| ------------------- | ---------- | -------------------- | -------------------------------------------- |
| Optimism | `10` | WETH | `0x4200000000000000000000000000000000000006` |
| Optimism Sepolia | `11155420` | WETH | `0x4200000000000000000000000000000000000006` |
2 changes: 1 addition & 1 deletion docs/contracts/v3/reference/deployments/deployments.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ The Uniswap Protocol is made up of multiple contracts on many networks.

Please do not assume contracts are deployed to the same addresses across chains, and be extremely careful to confirm addresses before using a contract.

- [`Etherum`](./Ethereum-Deployments.md)
- [`Ethereum`](./Ethereum-Deployments.md)
- [`Arbitrum`](./Arbitrum-Deployments.md)
- [`Optimism`](./Optimism-Deployments.md)
- [`Polygon`](./Polygon-Deployments.md)
Expand Down
Loading