Skip to content

Commit

Permalink
build: Sepolia addresses
Browse files Browse the repository at this point in the history
  • Loading branch information
0xhiroshi committed Aug 21, 2023
1 parent 18cc274 commit 87f8c45
Show file tree
Hide file tree
Showing 3 changed files with 237 additions and 129 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
},
"peerDependencies": {
"@looksrare/sdk": "^0.9.0-0",
"@looksrare/sdk-v2": "^0.6.0",
"@looksrare/sdk-v2": "^0.9.2",
"@opensea/seaport-js": "^1.2.0",
"ethers": "^5.7.1"
},
Expand All @@ -40,7 +40,7 @@
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@looksrare/contracts-exchange-v2": "^0.1.2",
"@looksrare/sdk": "^0.9.0-0",
"@looksrare/sdk-v2": "^0.6.0",
"@looksrare/sdk-v2": "^0.9.2",
"@nomiclabs/hardhat-ethers": "^2.0.6",
"@nomiclabs/hardhat-waffle": "^2.0.3",
"@opensea/seaport-js": "^1.2.0",
Expand Down
9 changes: 9 additions & 0 deletions src/constants/addresses.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,17 @@ const goerliAddresses: Addresses = {
SEAPORT_V1_5_PROXY: "0x000000000055d65008F1dFf7167f24E70DB431F6",
};

const sepoliaAddresses: Addresses = {
AGGREGATOR: "0x00000000005228B791a99a61f36A130d50600106",
ERC20_ENABLED_AGGREGATOR: "0x0000000000a35231D7706BD1eE827d43245655aB",
LOOKSRARE_V2_PROXY: "0xbe1A28000cfE2009051ac6F5b865BC03a04be875",
SEAPORT_V1_4_PROXY: "",
SEAPORT_V1_5_PROXY: "0x000000000055d65008F1dFf7167f24E70DB431F6",
};

export const addressesByNetwork: { [chainId in ChainId]: Addresses } = {
[ChainId.MAINNET]: mainnetAddresses,
[ChainId.GOERLI]: goerliAddresses,
[ChainId.SEPOLIA]: sepoliaAddresses,
[ChainId.HARDHAT]: goerliAddresses,
};
Loading

0 comments on commit 87f8c45

Please sign in to comment.