I install ic_eth
as follows:
dfx canister create ic_eth
dfx canister install -m install --wasm=out/ic_eth.wasm ic_eth
out/ic_eth.wasm
is a copy of compiled (by Rust) ic_eth. The file out/ic_eth.did
exists and is a Candid file src/ic_eth/ic_eth.did
.
From dfx.json
:
"ic_eth": {
"type": "rust",
"candid": "src/ic_eth/ic_eth.did",
"package": "ic_eth"
},
Why does the following not work?
dfx canister metadata ic_eth candid:service
I missing something about how to install Candid for Rust’s .wasm
.