forked from Psychedelic/dank
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dfx.json
41 lines (41 loc) · 1.1 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
{
"version": 1,
"dfx": "0.8.4",
"canisters": {
"xtc": {
"build": "node build.js",
"candid": "candid/xtc.did",
"wasm": "target/wasm32-unknown-unknown/release/xtc-rel-opt.wasm",
"type": "custom"
},
"xtc_test": {
"build": "node build.js",
"candid": "candid/xtc.did",
"wasm": "target/wasm32-unknown-unknown/release/xtc-rel-opt.wasm",
"type": "custom"
},
"piggy-bank": {
"build": "cargo build --target wasm32-unknown-unknown --release --package piggy-bank",
"candid": "candid/piggy-bank.did",
"wasm": "target/wasm32-unknown-unknown/release/piggy_bank.wasm",
"type": "custom"
},
"history-e2e": {
"build": "cargo build --target wasm32-unknown-unknown --release --package xtc-history-e2e",
"candid": "candid/xtc-history-e2e.did",
"wasm": "target/wasm32-unknown-unknown/release/xtc_history_e2e-rel-opt.wasm",
"type": "custom"
}
},
"defaults": {
"build": {
"packtool": ""
}
},
"networks": {
"local": {
"bind": "127.0.0.1:8000",
"type": "ephemeral"
}
}
}