-
Notifications
You must be signed in to change notification settings - Fork 0
/
dfx.json
67 lines (67 loc) · 1.69 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
{
"canisters": {
"backend": {
"main": "src/backend/main.mo",
"type": "motoko",
"declarations": {
"output": "src/declarations/backend"
}
},
"icrc1_token_canister": {
"type": "custom",
"wasm": "src/icrc1-token-canister/icrc1.wasm",
"candid": "src/icrc1-token-canister/icrc1.did",
"declarations": {
"output": "src/declarations/null"
},
"COMMENT": "Note the remote canister id below points to the ckBTC token canister",
"remote": {
"candid": "src/icrc1-token-canister/icrc1.did",
"id": {
"ic": "mxzaz-hqaaa-aaaar-qaada-cai"
}
}
},
"internet_identity": {
"type": "custom",
"candid": "https://github.com/dfinity/internet-identity/releases/latest/download/internet_identity.did",
"wasm": "https://github.com/dfinity/internet-identity/releases/latest/download/internet_identity_dev.wasm.gz",
"shrink": false,
"remote": {
"candid": "internet_identity.did",
"id": {
"ic": "rdmx6-jaaaa-aaaaa-aaadq-cai"
}
},
"declarations": {
"output": "src/declarations/null"
}
},
"frontend": {
"dependencies": [
"backend",
"internet_identity",
"icrc1_token_canister"
],
"frontend": {
"entrypoint": "src/frontend/index.html"
},
"source": [
"src/frontend/assets",
"src/frontend/dist/"
],
"type": "assets",
"declarations": {
"output": "src/declarations/null"
}
}
},
"defaults": {
"build": {
"args": "",
"packtool": "mops sources"
}
},
"output_env_file": "./.env",
"version": 1
}