forked from bitfinity-network/canister-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dfx.json
53 lines (53 loc) · 1.64 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
{
"canisters": {
"canister-a": {
"build": "",
"candid": "target/wasm32-unknown-unknown/release/canister_a.did",
"wasm": "target/wasm32-unknown-unknown/release/canister_a.wasm",
"type": "custom"
},
"canister-b": {
"build": "",
"candid": "target/wasm32-unknown-unknown/release/canister_b.did",
"wasm": "target/wasm32-unknown-unknown/release/canister_b.wasm",
"type": "custom"
},
"canister-c": {
"build": "",
"candid": "target/wasm32-unknown-unknown/release/canister-c.did",
"wasm": "target/wasm32-unknown-unknown/release/canister-c.wasm",
"type": "custom"
},
"canister-d": {
"build": "",
"candid": "target/wasm32-unknown-unknown/release/canister-d.did",
"wasm": "target/wasm32-unknown-unknown/release/canister-d.wasm",
"type": "custom"
},
"dummy_canister": {
"build": "",
"candid": "target/wasm32-unknown-unknown/release/dummy_canister.did",
"wasm": "target/wasm32-unknown-unknown/release/dummy_canister.wasm",
"type": "custom"
},
"log_canister": {
"build": "",
"candid": "target/wasm32-unknown-unknown/release/log_canister.did",
"wasm": "target/wasm32-unknown-unknown/release/log_canister.wasm",
"type": "custom"
},
"dummy_scheduler_canister": {
"build": "",
"candid": "target/wasm32-unknown-unknown/release/dummy_scheduler_canister.did",
"wasm": "target/wasm32-unknown-unknown/release/dummy_scheduler_canister.wasm",
"type": "custom"
}
},
"networks": {
"local": {
"bind": "127.0.0.1:8000",
"type": "ephemeral"
}
},
"version": 1
}