-
Notifications
You must be signed in to change notification settings - Fork 115
/
constants.js
26 lines (23 loc) · 1.33 KB
/
constants.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
module.exports = {
graphAPIEndpoints: {
masterchef: 'https://api.thegraph.com/subgraphs/name/jiro-ono/masterchef-staging',
bar: 'https://api.thegraph.com/subgraphs/name/sushiswap/sushi-bar',
timelock: 'https://api.thegraph.com/subgraphs/name/sushiswap/sushi-timelock',
maker: 'https://api.thegraph.com/subgraphs/name/sushiswap/sushi-maker',
exchange: 'https://api.thegraph.com/subgraphs/name/sushiswap/exchange',
exchange_v1: 'https://api.thegraph.com/subgraphs/name/jiro-ono/sushiswap-v1-exchange',
blocklytics: 'https://api.thegraph.com/subgraphs/name/blocklytics/ethereum-blocks',
lockup: 'https://api.thegraph.com/subgraphs/name/matthewlilley/lockup',
},
graphWSEndpoints: {
bar: 'wss://api.thegraph.com/subgraphs/name/sushiswap/sushi-bar',
exchange: 'wss://api.thegraph.com/subgraphs/name/sushiswap/exchange',
blocklytics: 'wss://api.thegraph.com/subgraphs/name/blocklytics/ethereum-blocks'
},
barAddress: "0x8798249c2e607446efb7ad49ec89dd1865ff4272",
makerAddress: "0xe11fc0b43ab98eb91e9836129d1ee7c3bc95df50",
chefAddress: "0xc2edad668740f1aa35e4d8f227fb8e17dca888cd",
sushiAddress: "0x6b3595068778dd592e39a122f4f5a5cf09c90fe2",
factoryAddress: "0xc0aee478e3658e2610c5f7a4a2e1777ce9e4f2ac",
TWENTY_FOUR_HOURS: 86400,
}