forked from AllDigitalShop/valorem-frontend
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathnext.config.js
More file actions
41 lines (41 loc) · 981 Bytes
/
next.config.js
File metadata and controls
41 lines (41 loc) · 981 Bytes
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
module.exports = {
compiler: {
styledComponents: true,
},
env: {
development: {
contract: {
url: "https://rinkeby.etherscan.io/address/0xB79DDbEc890fdE9A993e3C8C57e27629E2217AAA",
address: "0xB79DDbEc890fdE9A993e3C8C57e27629E2217AAA",
},
network: {
chainId: "4",
key: "rinkeby",
name: "Rinkeby Test Network",
},
subgraph: {
uri: "https://api.studio.thegraph.com/query/29509/valorem-subgraph/v0.0.1",
},
infura: {
projectId: "11b7fd47c34f4b8097cea3ffc2e215f1",
},
},
production: {
contract: {
url: "",
address: "",
},
network: {
chainId: 1,
key: "mainnet",
name: "Ethereum Mainnet",
},
subgraph: {
uri: "https://api.studio.thegraph.com/query/29509/valorem-subgraph/v0.0.1",
},
infura: {
projectId: "11b7fd47c34f4b8097cea3ffc2e215f1",
},
},
},
};