candid icon indicating copy to clipboard operation
candid copied to clipboard

Candid Library for the Internet Computer

Results 90 candid issues
Sort by recently updated
recently updated
newest added

I have this Candid type taken as an argument to the initialization of a canister: ``` type InitArgs = record { "decimals": nat8; "fee": nat; "initial_account_balances": vec InitialAccountBalance; "metadata": vec...

Whenever a user execute an update call, send a heartbeat to playground

When we designed the solution for extensible records, with special rules for `opt` so that they can be used in record fields, we thought we had also solved it dually...

I recently added the following to my own project: https://github.com/dfinity/cdk-rs/blob/d823c7c5bb2a3b07c13e2210239e74a15669ba59/src/ic-certified-assets/src/lib.rs#L214-L232 This works well, but I made a lot of changes and now the test is failing. I’ve manually gone over...

The current design of `Func` and `Service` cannot produce correct implementation of `ty()`, because you cannot decide the type for `Func::ty()`. `ty()` for references is only defined at the value...

bug
Rust

While implementing Azle Candid is giving me some trouble because it is converting `func` Candid types sometimes into `candid::Func` but at other times (when boxing is required) into a unit...

enhancement

didc is not generating Rust structs for records that aren't referenced from a service. This is undesirable for my use case, as I have Candid-defined records that may not be...

## Generic data ### Motivation Candid cannot currently describe services or functions with a type-generic interface. That is a severe limitation that both we and users keep bumping into. For...

enhancement

Candid has support for “future types”, meaning that new versions of Candid can introduce new types in a way that old clients can safely skip over them. Here the assumption...