-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdfx.json
31 lines (31 loc) · 854 Bytes
/
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
{
"canisters": {
"issuanceTool": {
"type": "custom",
"build": [
"cargo build --target wasm32-unknown-unknown --package issuance_tool --release",
"ic-cdk-optimizer target/wasm32-unknown-unknown/release/issuance_tool.wasm -o target/wasm32-unknown-unknown/release/issuance_tool_opt.wasm"
],
"candid": "canisters/issuance_tool/src/actor.did",
"wasm": "target/wasm32-unknown-unknown/release/issuance_tool_opt.wasm"
},
"empty": {
"type": "custom",
"candid": "canisters/issuance_tool/src/actor.did",
"wasm": "target/wasm32-unknown-unknown/release/issuance_tool_opt.wasm"
}
},
"defaults": {
"build": {
"args": "",
"packtool": ""
}
},
"networks": {
"local": {
"bind": "127.0.0.1:8000",
"type": "ephemeral"
}
},
"version": 1
}