Skip to content

Commit bd667b7

Browse files
author
george-lr
committed
feat: Add Blast Sepolia chain config
1 parent a795ec1 commit bd667b7

File tree

3 files changed

+26
-0
lines changed

3 files changed

+26
-0
lines changed

src/constants/addresses.ts

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,18 @@ const baseSepoliaAddresses: Addresses = {
8484
AGGREGATOR_UNISWAP_V3: "",
8585
};
8686

87+
const blastSepoliaAddresses: Addresses = {
88+
LOOKS: "",
89+
EXCHANGE_V2: "",
90+
TRANSFER_MANAGER_V2: "",
91+
WETH: "",
92+
ORDER_VALIDATOR_V2: "",
93+
REVERSE_RECORDS: "",
94+
LOOKS_LP_V3: "",
95+
STAKING_POOL_FOR_LOOKS_LP: "",
96+
AGGREGATOR_UNISWAP_V3: "",
97+
};
98+
8799
/**
88100
* List of useful contract addresses
89101
*/
@@ -96,4 +108,5 @@ export const addressesByNetwork: { [chainId in ChainId]: Addresses } = {
96108
[ChainId.ARB_MAINNET]: arbitrumMainnetAddresses,
97109
[ChainId.BASE_MAINNET]: baseMainnetAddresses,
98110
[ChainId.BASE_SEPOLIA]: baseSepoliaAddresses,
111+
[ChainId.BLAST_SEPOLIA]: blastSepoliaAddresses,
99112
};

src/constants/chains.ts

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -97,4 +97,16 @@ export const chainInfo: { [chainId in ChainId]: ChainInfo } = {
9797
cloudinaryUrl: "",
9898
wsUrl: "ws://localhost:5001/ws",
9999
},
100+
[ChainId.BLAST_SEPOLIA]: {
101+
label: "Blast Sepolia",
102+
appUrl: "https://sepolia.looksrare.org",
103+
explorer: "https://testnet.blastscan.io/",
104+
rpcUrl: "https://sepolia.blast.io",
105+
baseApiUrl: "https://graphql-sepolia.looksrare.org",
106+
osApiUrl: "https://testnets-api.opensea.io",
107+
cdnUrl: "https://static-sepolia.looksnice.org",
108+
rewardsSubgraphUrl: "https://api.thegraph.com/subgraphs/name/0xjurassicpunk/looks-distribution",
109+
cloudinaryUrl: "https://looksrare.mo.cloudinary.net/sepolia",
110+
wsUrl: "wss://ws-sepolia.looksrare.org/ws",
111+
},
100112
};

src/types.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ export enum ChainId {
2525
ARB_SEPOLIA = 421614,
2626
BASE_MAINNET = 8453,
2727
BASE_SEPOLIA = 84532,
28+
BLAST_SEPOLIA = 168587773,
2829
}
2930

3031
/** ChainInfo data used to interact with LooksRare ecosystem */

0 commit comments

Comments
 (0)