Skip to content

Commit

Permalink
Deployment preparation: V3 Routers (#127)
Browse files Browse the repository at this point in the history
  • Loading branch information
jubeira authored Dec 5, 2024
1 parent 422253a commit e94346b
Show file tree
Hide file tree
Showing 30 changed files with 4,971 additions and 0 deletions.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,10 @@ Returns an object with all contracts from a deployment and their addresses.
| V3 Vault | [`20241204-v3-vault`](./v3/tasks/20241204-v3-vault) |
| V3 Weighted Pool | [`20241205-v3-weighted-pool`](./v3/tasks/20241205-v3-weighted-pool) |
| V3 Stable Pool | [`20241205-v3-stable-pool`](./v3/tasks/20241205-v3-stable-pool) |
| V3 Router | [`20241205-v3-router`](./v3/tasks/20241205-v3-router) |
| V3 Batch Router | [`20241205-v3-batch-router`](./v3/tasks/20241205-v3-batch-router) |
| V3 Composite Liquidity Router | [`20241205-v3-composite-liquidity-router`](./v3/tasks/20241205-v3-composite-liquidity-router) |
| V3 Buffer Router | [`20241205-v3-buffer-router`](./v3/tasks/20241205-v3-buffer-router) |

## Scripts

Expand Down
1 change: 1 addition & 0 deletions src/helpers/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ export const MAX_UINT96: BigNumber = maxUint(96);
export const MAX_UINT10: BigNumber = maxUint(10);
export const MAX_UINT31: BigNumber = maxUint(31);
export const MAX_UINT32: BigNumber = maxUint(32);
export const MAX_UINT48: BigNumber = maxUint(48);
export const MAX_UINT64: BigNumber = maxUint(64);

export const MIN_INT22: BigNumber = minInt(22);
Expand Down
3 changes: 3 additions & 0 deletions v3/tasks/00000000-permit2/output/gnosis.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"Permit2": "0x000000000022D473030F116dDEE9F6B43aC78BA3"
}
3 changes: 3 additions & 0 deletions v3/tasks/00000000-permit2/output/mainnet.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"Permit2": "0x000000000022D473030F116dDEE9F6B43aC78BA3"
}
3 changes: 3 additions & 0 deletions v3/tasks/00000000-permit2/output/sepolia.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"Permit2": "0x000000000022D473030F116dDEE9F6B43aC78BA3"
}
3 changes: 3 additions & 0 deletions v3/tasks/00000000-permit2/readme.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Permit2

This is not a real task; it just contains deployment addresses for Permit2 in different networks.
Loading

0 comments on commit e94346b

Please sign in to comment.