forked from dangdennis/btc-lending-protocol
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dfx.json
59 lines (59 loc) · 1.54 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
{
"dfx": "0.9.3",
"canisters": {
"btc": {
"type": "custom",
"candid": "btc/candid.did",
"wasm": "target/wasm32-unknown-unknown/release/btc.wasm",
"build": "scripts/build-btc.sh"
},
"protocol": {
"type": "custom",
"candid": "protocol/candid.did",
"wasm": "target/wasm32-unknown-unknown/release/protocol.wasm",
"build": "scripts/build-protocol.sh"
},
"crypto_oracle": {
"main": "crypto_oracle/main.mo",
"candid": "crypto_oracle/candid.did",
"type": "motoko"
},
"internet_identity": {
"type": "custom",
"candid": "internet_identity/internet_identity.did",
"wasm": "internet_identity/internet_identity.wasm"
}
},
"example_canisters": {
"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
}