-
Notifications
You must be signed in to change notification settings - Fork 0
/
constants.js
27 lines (27 loc) · 1.18 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
27
module.exports = {
dev: {
FACTORY_ADDRESS: '', // IXS FactoryV2 deployment address
TEST: true, // test LP creation
WETH_ADDRESS: null, // this will be deployed automatically when null
},
stage: {
FACTORY_ADDRESS: '0xE83942dC9D244418272E6b7D83271D0BcFC0DB30', // IXS FactoryV2 deployment address
TEST: true, // test LP creation
/**
* DO NOT CHANGE UNLESS YOU KNOW WHAT YOU DO!
*/
WETH_ADDRESS: '0xd0a1e359811322d97991e03f863a0c30c2cf029c', // WETH deployment address (kovan)
// for WETH9 known implementations consult: sdk-core/src/entities/weth9.ts
// should be the same as: subgraph/src/mappings/pricing.ts (WETH_ADDRESS)
},
prod: {
FACTORY_ADDRESS: '', // IXS FactoryV2 deployment address
TEST: false, // test LP creation
/**
* DO NOT CHANGE UNLESS YOU KNOW WHAT YOU DO!
*/
WETH_ADDRESS: '0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2', // WETH deployment address (mainnet)
// for WETH9 known implementations consult: sdk-core/src/entities/weth9.ts
// should be the same as: subgraph/src/mappings/pricing.ts (WETH_ADDRESS)
},
};