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(website): add uniswap v3 addresses #14804

Merged
merged 3 commits into from
Sep 25, 2023
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
9 changes: 9 additions & 0 deletions packages/website/domain/chain/baseTypes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,15 @@ interface Alpha5RollupContracts {
interface OtherContracts {
deterministicDeploymentProxy?: Contract;
erc4337Entrypoint?: Contract;
weth?: Contract;
/** Uniswap V3 */
v3CoreFactoryAddress?: Contract;
multicallAddress?: Contract;
quoterAddress?: Contract;
v3MigratorAddress?: Contract;
nonfungiblePositionManagerAddress?: Contract;
tickLensAddress?: Contract;
swapRouter02Address?: Contract;
}

interface TaikoL1Alpha3 extends Network {
Expand Down
42 changes: 42 additions & 0 deletions packages/website/domain/chain/jolnir/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -112,5 +112,47 @@ export const JOLNIR_CONFIG = {
impl: "0xTODO(docs)",
},
},
weth: {
name: "WETH",
address: {
impl: "0xf86E3b4cde65c0cd59580Ee3F8dd34343E23ea5B",
},
},
v3CoreFactoryAddress: {
name: "Uniswap V3 Core Factory",
address: {
impl: "0xae2C46ddb314B9Ba743C6dEE4878F151881333D9",
},
},
multicallAddress: {
name: "Multicall",
address: {
impl: "0xC4d03e4055381525F9d7B545f87AC6F7c114218D",
},
},
tickLensAddress: {
name: "TickLens",
address: {
impl: "0xaF23C54A651A548Eb17B9aF1Fd5b33a224579769",
},
},
nonfungiblePositionManagerAddress: {
name: "NonfungiblePositionManager",
address: {
impl: "0x0b89d0FB71B81D0C04f3F71c47bbBd128896DA6b",
},
},
v3MigratorAddress: {
name: "Uniswap V3 Migrator",
address: {
impl: "0xA4ACE40E895C11977a57FbCE154F2790f1C18892",
},
},
swapRouter02Address: {
name: "SwapRouter02",
address: {
impl: "0x73B721608Ec729cE60c8a2746Ea3dcdd36a4EA10",
},
},
},
} as const satisfies TaikoL2Alpha5;
Loading