examples
examples copied to clipboard
NFT minting is missing the canisister id in the example. Breadcrumbsportal/docs/samples /nft.md
The step to deploy fails. It needs the canister id as the last argument:
dfx deploy --no-wallet --argument
"(record {
name = "Numbers One Through Fifty";
symbol = "NOTF";
logo = opt record {
data = "$(base64 -i ./logo.png)";
logo_type = "image/png";
};
custodians = opt vec { principal "$(dfx identity get-principal)" };
})" dip721_nft_container <<<<<<<<<<<<----- the canister name is required. Works when I added dip721_nft_container [I think].