-
Notifications
You must be signed in to change notification settings - Fork 0
/
dfx.json
72 lines (72 loc) · 1.43 KB
/
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"canisters": {
"backend": {
"candid": "src/backend/backend.did",
"package": "backend",
"type": "rust",
"gzip": true,
"declarations": {
"bindings": ["ts", "js"],
"output": "frontend/declarations/"
}
},
"frontend": {
"dependencies": [
"backend"
],
"frontend": {
"entrypoint": "frontend/out/index.html"
},
"source": [
"frontend/out"
],
"type": "assets",
"build": [
"./scripts/build-frontend.sh"
]
},
"internet_identity" : {
"type": "pull",
"id": "rdmx6-jaaaa-aaaaa-aaadq-cai"
},
"icp_ledger_canister": {
"type": "custom",
"candid": "src/icp_ledger/icp_ledger.did",
"wasm": "src/icp_ledger/icp_ledger.wasm.gz",
"remote": {
"id": {
"ic": "ryjl3-tyaaa-aaaaa-aaaba-cai"
}
}
},
"xrc": {
"type": "custom",
"candid": "src/xrc/xrc.did",
"wasm": "src/xrc/xrc.wasm.gz",
"optimize": "cycles",
"gzip": true,
"remote": {
"id": {
"ic": "uf6dk-hyaaa-aaaaq-qaaaq-cai"
}
}
}
},
"defaults": {
"build": {
"args": "",
"packtool": ""
}
},
"networks": {
"local": {
"bind": "127.0.0.1:4943",
"type": "ephemeral",
"replica": {
"subnet_type": "system"
}
}
},
"output_env_file": ".env",
"version": 1
}