-
Notifications
You must be signed in to change notification settings - Fork 15
/
dfx.json
29 lines (29 loc) · 1004 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
{
"canisters": {
"eth": {
"candid": "examples/ic_web3.did",
"type": "custom",
"wasm": "target/wasm32-unknown-unknown/release/examples/example_opt.wasm",
"build": [
"cargo build --target wasm32-unknown-unknown --example example --release",
"ic-cdk-optimizer target/wasm32-unknown-unknown/release/examples/example.wasm -o target/wasm32-unknown-unknown/release/examples/example_opt.wasm"
]
},
"endpoint": {
"candid": "examples/endpoint.did",
"type": "custom",
"wasm": "target/wasm32-unknown-unknown/release/examples/endpoint_opt.wasm",
"build": [
"cargo build --target wasm32-unknown-unknown --example endpoint --release",
"ic-cdk-optimizer target/wasm32-unknown-unknown/release/examples/endpoint.wasm -o target/wasm32-unknown-unknown/release/examples/endpoint_opt.wasm"
]
}
},
"networks": {
"local": {
"bind": "127.0.0.1:8000",
"type": "ephemeral"
}
},
"version": 1
}