-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdfx.json
48 lines (48 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
{
"canisters": {
"internet-identity": {
"type": "pull",
"id": "rdmx6-jaaaa-aaaaa-aaadq-cai"
},
"token": {
"type": "motoko",
"main": "src/token/token.mo"
},
"staking": {
"dependencies": ["token"],
"type": "custom",
"main": "src/staking/index.ts",
"candid": "src/staking/index.did",
"build": "npx azle staking",
"wasm": ".azle/staking/staking.wasm",
"gzip": true,
"env": ["TOKEN_CANISTER_ID"]
},
"whoami": {
"main": "src/whoami/main.mo",
"type": "motoko",
"declarations": {
"node_compatibility": true
},
"pullable": {
"dependencies": [],
"wasm_url": "https://github.com/krpeacock/auth-client-demo/releases/latest/download/whoami.wasm",
"wasm_hash": "a5af74d01aec228c5a717dfb43f773917e1a9138e512431aafcd225ad0001a8b",
"init_guide": "null"
}
},
"app": {
"dependencies": ["whoami", "staking", "internet-identity"],
"source": ["src/app/dist"],
"type": "assets"
}
},
"defaults": {
"build": {
"args": "",
"packtool": ""
}
},
"output_env_file": ".env",
"version": 2
}