-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdfx.json
57 lines (57 loc) · 1.17 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
{
"canisters": {
"ck_btc": {
"main": "src/ledger/main.mo",
"type": "motoko",
"remote": {
"candid": "src/ledger/ck_btc.did",
"id": {
"ic": "mxzaz-hqaaa-aaaar-qaada-cai"
}
}
},
"presence_ledger": {
"main": "src/ledger/main.mo",
"type": "motoko"
},
"resonance_ledger": {
"main": "src/ledger/main.mo",
"type": "motoko"
},
"protocol": {
"main": "src/protocol/main.mo",
"type": "motoko"
},
"backend": {
"main": "src/backend/main.mo",
"type": "motoko",
"dependencies": ["protocol", "ck_btc"],
"declarations": {
"node_compatibility": true
}
},
"frontend": {
"frontend": {
"entrypoint": "src/frontend/index.html"
},
"source": ["src/frontend/dist"],
"type": "assets"
},
"internet_identity": {
"type": "pull",
"id": "rdmx6-jaaaa-aaaaa-aaadq-cai"
},
"minter": {
"main": "simulation/minter.mo",
"type": "motoko"
}
},
"defaults": {
"build": {
"args": "",
"packtool": "mops sources"
}
},
"output_env_file": ".env",
"version": 1
}