forked from taggrx/beacon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dfx.json
31 lines (31 loc) · 858 Bytes
/
dfx.json
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
{
"canisters": {
"beacon": {
"candid": "src/backend/beacon.did",
"package": "beacon",
"type": "custom",
"wasm": "target/wasm32-unknown-unknown/release/beacon.wasm.gz",
"build": "./build.sh beacon",
"metadata": [
{
"name": "candid:service",
"networks": ["local", "ic"],
"visibility": "public"
}
]
}
},
"networks": {
"staging": {
"config": {
"FETCH_ROOT_KEY": true,
"API_HOST": "https://icp-api.io",
"STATIC_HOST": "https://icp0.io"
},
"providers": ["https://icp-api.io/"],
"type": "persistent"
}
},
"dfx": "0.16.1",
"version": 1
}