-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathdfx.json
More file actions
43 lines (43 loc) · 1.04 KB
/
dfx.json
File metadata and controls
43 lines (43 loc) · 1.04 KB
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
{
"dfx": "0.8.4",
"canisters": {
"btc": {
"type": "custom",
"candid": "canister/candid.did",
"wasm": "target/wasm32-unknown-unknown/release/canister.wasm",
"build": "scripts/build-canister.sh"
},
"btc-example-rust": {
"type": "custom",
"candid": "examples/rust/candid.did",
"wasm": "target/wasm32-unknown-unknown/release/example.wasm",
"build": "scripts/build-example.sh"
},
"btc-example-common": {
"type": "custom",
"candid": "examples/common/candid.did",
"wasm": "target/wasm32-unknown-unknown/release/example-common.wasm",
"build": "scripts/build-example-common.sh"
},
"btc-example-motoko": {
"type": "motoko",
"candid": "examples/motoko/candid.did",
"main": "examples/motoko/src/Main.mo",
"dependencies": [
"btc-example-common"
]
}
},
"defaults": {
"build": {
"packtool": ""
}
},
"networks": {
"local": {
"bind": "127.0.0.1:8000",
"type": "ephemeral"
}
},
"version": 1
}