32 lines
1.1 KiB
TypeScript
32 lines
1.1 KiB
TypeScript
export const chainsData = [
|
|
{
|
|
//sepolia
|
|
id: 11155111,
|
|
thegraph: "https://api.studio.thegraph.com/query/71271/harb/v0.0.50",
|
|
path: "sepolia",
|
|
stake: "0xCd21a41a137BCAf8743E47D048F57D92398f7Da9",
|
|
harb: "0x087F256D11fe533b0c7d372e44Ee0F9e47C89dF9",
|
|
uniswap: "https://app.uniswap.org/swap?chain=mainnet&inputCurrency=NATIVE"
|
|
}, {
|
|
//base-sepolia
|
|
id: 84532,
|
|
thegraph: "https://api.studio.thegraph.com/query/71271/harb-base-sepolia/v0.0.12",
|
|
path: "sepoliabase",
|
|
stake: "0xe28020BCdEeAf2779dd47c670A8eFC2973316EE2",
|
|
harb: "0x22c264Ecf8D4E49D1E3CabD8DD39b7C4Ab51C1B8",
|
|
uniswap: "https://app.uniswap.org/swap?chain=mainnet&inputCurrency=NATIVE"
|
|
},
|
|
{
|
|
//base
|
|
id: 8453,
|
|
thegraph: import.meta.env.VITE_BASE_URL,
|
|
path: "base",
|
|
stake: "0xed70707fab05d973ad41eae8d17e2bcd36192cfc",
|
|
harb: "0x45caa5929f6ee038039984205bdecf968b954820",
|
|
uniswap: "https://app.uniswap.org/swap?chain=mainnet&inputCurrency=NATIVE"
|
|
},
|
|
]
|
|
|
|
export function getChain(id:number){
|
|
return chainsData.find((obj) => obj.id === id)
|
|
}
|