Hi, I followed actor class creation tutorial using Motoko. It works fine
in local environment but when I’m deploying it to the IC network and try to create new bucket I get following error The Replica returned an error: code 4, message: "Creating a canister requires a fee of 100000000000 that is deducted from the canister's initial balance but only 0 cycles were received with the create_canister request."Untitled :: Internet Computer
Guess you are using Motoko playground. We don’t allow cycle transfer in the playground, and creating canister requires cycle transfer. It’s best to use dfx and deploy to the IC for this example.
Thanks for the quick response @chenyan . I didn’t use the playground. I deployed it through my laptop with command dfx deploy --network ic --wallet <wallet-id> --with-cycles 4000000000000
Before the line where you instantiate a new canister, you have to call the Cycles.send() method to send the cycles to the canister that you’re creating
hey @Jesse. In the documentation, they didn’t mention something like that. Why do we need to handle cycle manipulation in our code? it should inherit by default right?
Not sure why it’s not included in the documentation. I think they still have some updates to make. But it’s not handled inherently. You’ll have to explicitly send the cycles. It’s not too hard. I’ll post an example for you here when i get near my laptop. If i haven’t posted it here within 24 hrs, feel free to send me a reminder.
I used the dfx deposit command to deposit cycles in my respective wallets . I am receiving the same error in that case as well , is there a fix ?
Or I need to re-deploy with ( --with-cycles arguments passed ) ?
I mean if I have initially not specied any amount of cycles during deployment , i should be able to deposit cycles later and not face this error , right ?
Can you explain a bit more what you’re doing? This thread so far is about Motoko but now you say you’re using dfx canister deposit-cycles. What exactly are you running and what’s the exact error output you are getting?
this shouldn’t be necessary
Topping up a canister with more cycles is always possible. --with-cycles is only relevant for initial creation of a canister.
I am creating a nft minting tool , I am taking the principal id from plug wallet and passing it in the mint function .
The mint function implementation :
public shared({ caller }) func mintDip721(to: Principal, metadata: Types.MetadataPart) : async Types.MintReceiptPart {
if (not List.some(custodians, func (custodian : Principal) : Bool { custodian == to })) {
throw Error.reject("Unauthorised")
};
let newIndex = Nat64.fromNat(List.size(nfts));
let newNFT = await NFTActorClass.NFT(metadata.nftName , metadata.data, to,newIndex);
let newId = await newNFT.getCanisterId();
let nft : Types.Nft = {
owner = to;
id = newId;
index = newIndex;
metadata = metadata;
};
// Debug.print(Principal.toText(nft.owner));
// Debug.print(Principal.toText(nft.id));
nfts := List.push(nft, nfts);
transactionId += 1;
return {
token_id = newId;
id = transactionId;
owner = to;
};
};
I am taking the principal id and image data from frontend .
The error I am getting is :
Reject code: 4
Reject text: Creating a canister requires a fee of 100000000000 that is deducted from the canister's initial balance but only 0 cycles were received with the create_canister request.
I am deploying the canister using this command :
dfx deploy --argument "( principal\"$(dfx identity get-principal)\", record {
logo = record {
logo_type = \"image/png\";
data = \"\";
};
name = \"My DIP721\";
symbol = \"DFXB\";
maxLimit = 10;
}
)" --network=ic
Before dynamically creating a new canister from an actor, you need to use the add method from the ExperimentalCycles API with the number of cycles to give the canister in the line directly before your canister creation call motoko-base/ExperimentalCycles.mo at master · dfinity/motoko-base · GitHub.
Since canister creation takes 100 billion cycles, I’d recommend allocating at least 200-300 billion cycles for canister creation so that you’ll have 100-200 billion cycles left over for the newly created canister.