sdk
sdk copied to clipboard
IC SDK: a Software Development Kit for creating and managing canister smart contracts on the ICP blockchain.
# Motivation When writing commands, tab completion helps. # Proposed implementation `clap` generates tab completion scripts. Can we use it please? An example of how tab completion is installed in...
# Description Please include a summary of the change and which issue is fixed. Please also include relevant motivation and context. Fixes # (issue) # How Has This Been Tested?...
I tried the following: 1. `dfx wallet --network ic set-name default` 2. `dfx wallet --network ic get-wallet` I expected to see this happen: wallet name is set Instead, this happened:...
I tried the following: 1. include the ledger in a project with the following `dfx.json` ```{ "canisters": { "ledger": { "type": "custom", "wasm": "ledger.wasm", "candid": "ledger.private.did", "remote": { "candid": "ledger.public.did",...
when deploying the `ledger` locally using the `ledger.private.did` and after that swapping to `ledger.public.did` (no service arguments) and deploying a canister that has a dependency on the `ledger`, if i...
I tried the following: 1. create canister through nns dapp 2. make local dfx identity controller of that canister 3. try and install the wallet wasm into the canister I...
Hi team, I've discussed the issue in Discord [here](https://discord.com/channels/748416164832608337/863096478301290527/1047270911289597952) and [here](https://discord.com/channels/748416164832608337/863096478301290527/1047594813727440967). I'm running `dfx` on a `Ubuntu` machine (`Ubuntu 20.04 LTS (GNU/Linux 4.4.0-19041-Microsoft x86_64)`) running on Windows 10 WSL. I...
I tried the following: 1. run `dfx generate` in a virgin project after running `dfx deploy` I expected to see this happen: the command should output all files generated Instead,...
I tried the following: 1. have a projects `dfx.json` setup like this ``` { "canisters": { "assets": { "frontend": { "entrypoint": "dist/index.html" }, "source": ["dist/"], "type": "assets" }, "ledger": {...
Hi so I'm trying to install with a custom build but upon doing some checks it's not working as intended. With the release of 0.12.1 I wanted to try custom...