EdjCase.ICP.Candid
7.0.0-pre.1
dotnet add package EdjCase.ICP.Candid --version 7.0.0-pre.1
NuGet\Install-Package EdjCase.ICP.Candid -Version 7.0.0-pre.1
<PackageReference Include="EdjCase.ICP.Candid" Version="7.0.0-pre.1" />
paket add EdjCase.ICP.Candid --version 7.0.0-pre.1
#r "nuget: EdjCase.ICP.Candid, 7.0.0-pre.1"
// Install EdjCase.ICP.Candid as a Cake Addin #addin nuget:?package=EdjCase.ICP.Candid&version=7.0.0-pre.1&prerelease // Install EdjCase.ICP.Candid as a Cake Tool #tool nuget:?package=EdjCase.ICP.Candid&version=7.0.0-pre.1&prerelease
Candid - Library of Candid Encoding, Models and Helpers
- Nuget:
EdjCase.ICP.Candid
Using Native Candid Types
CandidArg
is the set of candid typed value parameters that is sent to a IC canister for a requestCandidTypedValue
is the combo of aCandidValue
and its correspondingCandidType
CandidValue
is a raw candid valueCandidType
is the type definition of a candid type
Create Type
Some Examples:
// Nat (positive integer)
CandidType natType = CandidType.Nat(); // shorthand for `new CandidPrimitiveType(PrimitiveType.Nat)`
// Text (string)
CandidType textType = CandidType.Text(); // shorthand for `new CandidPrimitiveType(PrimitiveType.Text)`
// Opt (optional/nullable) Principal (identifier)
CandidType optionalPrincipalType = CandidType.Opt(CandidType.Principal());
// Record (dictionary/object)
CandidType recordType = new CandidRecordType(new Dictionary<CandidTag, CandidType>
{
{ CandidTag.FromName("name"), CandidType.Text() },
{ CandidTag.FromName("age"), CandidType.Nat() }
});
// Variant (union)
CandidType variantType = new CandidVariantType(new Dictionary<CandidTag, CandidType>
{
{ CandidTag.FromName("option1"), CandidType.Bool() },
{ CandidTag.FromName("option2"), CandidType.Null() }
});
// Vec (list/array) of Float32
CandidType float32Vec = new CandidVectorType(CandidType.Float32());
Create Value
Some Examples:
// Nat (positive integer)
CandidValue natType = CandidValue.Nat(4);
// Text (string)
CandidValue textType = CandidValue.Text("SomeText");
// Opt (optional/nullable) Principal (identifier)
CandidValue optionalPrincipalType = new CandidOptional(CandidValue.Principal(Principal.Anonymous()));
// Record (dictionary/object)
CandidValue recordType = new CandidRecord(new Dictionary<CandidTag, CandidValue>
{
{ CandidTag.FromName("name"), CandidValue.Text("Name1") },
{ CandidTag.FromName("age"), CandidValue.Nat(21) }
});
// Variant (union)
CandidValue variantType = new CandidVariant("option1", CandidValue.Bool(true));
// Vec (list/array) of Float32
CandidValue float32Vec = new CandidVector(new CandidValue[]
{
CandidValue.Float32(1.1f),
CandidValue.Float32(2.2f),
CandidValue.Float32(3.3f)
});
Parse From bytes
When candid is encoded, its in the form of a CandidArg
. Individual values and types are not usually encoded
CandidArg arg = CandidByteParser.Parse(rawCandidBytes);
OR
CandidArg arg = CandidArg.FromBytes(rawCandidBytes);
Reading Values (without custom types)
// Assume arg is `(Nat, record { title : Text; length : Nat; })`
CandidArg arg = ...;
CandidTypedValue firstTypedValue = arg.Values[0];
UnboundedUInt natValue = firstTypedValue.Value.AsNat();
CandidTypedValue secondTypedValue = arg.Values[1];
CandidRecord recordValue = secondTypedValue.Value.AsRecord();
string title = recordValue["title"].AsText();
UnboundedUInt length = recordValue["length"].AsNat();
Using Self Defined Types
Self defined types are helpful for predefining classes to the candid schema of an endpoint. This can be done manually (as shown below) or done automattically with the ClientGenerator
From Candid To Self Defined Type
Single argument:
CandidArg arg = ...;
MyObj1 obj = arg.ToObjects<MyObj1>();
Multi arguments:
CandidArg arg = ...;
(MyObj1 obj, MyObj2 obj2) = arg.ToObjects<MyObj1, MyObj2>();
To Candid From Self Defined Type
// Serialze
MyObj obj = new MyObj
{
Title = "Title 1",
IsGoodTitle = false
};
CandidTypedValue value = CandidTypedValue.FromObject(obj);
Defining Variant Types
[Variant] // Required to flag as variant
public class MyVariant
{
[VariantTagProperty] // Flag for tag/enum property, not required if name is `Tag`
public MyVariantTag Tag { get; set; }
[VariantValueProperty] // Flag for value property, not required if name is `Value`
public object? Value { get; set; }
// This method is used to specify if the option has a type/value associated
[VariantOption("o2")] // Specify the candid tag if different than 'As{CandidTag}' like 'Option2' here
public string AsOption2()
{
return (string)this.Value!;
}
}
public enum MyVariantTag
{
[CandidName("o1")] // Used to override name for candid
Option1,
[CandidName("o2")]
Option2
}
Or if variant options have no type, just an Enum can be used
public enum MyVariant
{
[CandidName("o1")]
Option1,
[CandidName("o2")]
Option2
}
Defining Record Types
public class MyRecord
{
[CandidName("title")] // Used to override name for candid
public string Title { get; set; }
[CandidName("is_good_title")]
public bool IsGoodTitle { get; set; }
}
NOTE: [CandidName(...)] is not needed if the property name is exactly the same as the candid name
// Equivalent to above
public class MyRecord
{
public string title { get; set; }
public bool is_good_title { get; set; }
}
Raw Candid Types
If you want to use the raw candid forms for the value, then the candid type definition must be specified with the CandidTypeDefinitionAttribute The definition is in text form of candid (like in a *.did file) as seen here https://github.com/dfinity/candid/blob/master/spec/Candid.md#core-grammar The text form is used because attributes cannot have an object type, so cannot accept the CandidType class
NOTE: func and service do not have a compatible type that is not the raw candid form, so they must have the CandidTypeDefinitionAttribute
public class MyRecord
{
[CandidTypeDefinition("() -> ()")]
public CandidFunc Callback { get; set; }
}
Defining Other Types
(C# type) -> (Candid type)
UnboundedUInt -> Nat
byte -> Nat8
ushort -> Nat16
uint -> Nat32
ulong -> Nat64
UnboundedInt -> Int
sbyte -> Int8
short -> Int16
int -> Int32
long -> Int64
string -> Text
float -> Float32
double -> Float64
bool -> Bool
Principal -> Principal
List<T> -> Vec T
T[] -> Vec T
OptionalValue<T> -> Opt T
EmptyValue -> Empty
ReservedValue -> Reserved
NullValue -> Null
* CandidFunc -> Func
* CandidService -> Service
* Raw types require the [CandidTypeDefinition("...")] attribute
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
.NET Core | netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.1 is compatible. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETStandard 2.1
- Microsoft.Bcl.HashCode (>= 1.1.1)
- System.Formats.Asn1 (>= 8.0.1)
- System.Memory (>= 4.5.5)
NuGet packages (2)
Showing the top 2 NuGet packages that depend on EdjCase.ICP.Candid:
Package | Downloads |
---|---|
EdjCase.ICP.Agent
Package Description |
|
EdjCase.ICP.InternetIdentity
Package Description |
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
7.0.0-pre.1 | 109 | 10/27/2024 |
6.2.1 | 133 | 10/23/2024 |
6.2.0 | 128 | 10/21/2024 |
6.1.2 | 1,625 | 4/30/2024 |
6.1.1 | 189 | 4/17/2024 |
6.1.0 | 185 | 4/15/2024 |
6.0.0 | 201 | 3/21/2024 |
5.1.0 | 288 | 1/25/2024 |
5.0.0 | 1,221 | 1/12/2024 |
5.0.0-pre.2 | 121 | 12/13/2023 |
5.0.0-pre.1 | 75 | 12/11/2023 |
4.1.0 | 513 | 11/10/2023 |
4.0.1 | 291 | 11/1/2023 |
4.0.0 | 415 | 10/12/2023 |
4.0.0-pre.10 | 86 | 10/10/2023 |
4.0.0-pre.9 | 80 | 10/10/2023 |
4.0.0-pre.8 | 86 | 10/9/2023 |
4.0.0-pre.7 | 83 | 10/9/2023 |
4.0.0-pre.6 | 80 | 10/9/2023 |
4.0.0-pre.5 | 78 | 10/8/2023 |
4.0.0-pre.4 | 89 | 10/6/2023 |
4.0.0-pre.3 | 77 | 10/5/2023 |
4.0.0-pre.2 | 83 | 9/27/2023 |
4.0.0-pre.1 | 79 | 9/25/2023 |
3.2.2 | 534 | 9/22/2023 |
3.2.1 | 228 | 9/22/2023 |
3.2.0 | 826 | 8/2/2023 |
3.1.5 | 247 | 9/27/2023 |
3.1.4 | 391 | 7/20/2023 |
3.1.3 | 771 | 6/12/2023 |
3.1.2 | 1,260 | 5/11/2023 |
3.1.1 | 422 | 5/9/2023 |
3.1.0 | 335 | 5/9/2023 |
3.0.1 | 357 | 5/2/2023 |
3.0.0 | 343 | 5/1/2023 |
3.0.0-beta.1 | 115 | 4/17/2023 |
2.3.9 | 318 | 5/1/2023 |
2.3.8 | 356 | 4/28/2023 |
2.3.7 | 339 | 4/28/2023 |
2.3.6 | 348 | 4/28/2023 |
2.3.5 | 399 | 4/27/2023 |
2.3.4 | 369 | 4/27/2023 |
2.3.3 | 384 | 4/26/2023 |
2.3.2 | 366 | 4/26/2023 |
2.3.1 | 510 | 4/26/2023 |
2.3.0 | 399 | 4/25/2023 |
2.2.10 | 398 | 4/24/2023 |
2.2.9 | 356 | 4/24/2023 |
2.2.8 | 403 | 4/24/2023 |
2.2.7 | 615 | 4/17/2023 |
2.2.6 | 704 | 4/12/2023 |
2.2.5 | 402 | 4/12/2023 |
2.2.4 | 493 | 4/11/2023 |
2.2.3 | 411 | 4/11/2023 |
2.2.2 | 484 | 4/7/2023 |
2.2.1 | 426 | 4/7/2023 |
2.2.0 | 460 | 4/6/2023 |
2.1.1 | 599 | 3/30/2023 |
2.1.0 | 709 | 3/23/2023 |
2.0.8 | 540 | 3/20/2023 |
2.0.7 | 608 | 3/12/2023 |
2.0.6 | 292 | 3/12/2023 |
2.0.5 | 268 | 3/12/2023 |
2.0.4 | 298 | 3/12/2023 |
2.0.3 | 287 | 3/12/2023 |
2.0.2 | 518 | 3/10/2023 |
2.0.1 | 510 | 3/10/2023 |
2.0.0 | 544 | 3/8/2023 |
2.0.0-beta.26 | 118 | 3/8/2023 |
2.0.0-beta.25 | 118 | 3/8/2023 |
2.0.0-beta.24 | 124 | 3/7/2023 |
2.0.0-beta.23 | 122 | 3/6/2023 |
2.0.0-beta.22 | 120 | 3/1/2023 |
2.0.0-beta.21 | 120 | 2/28/2023 |
2.0.0-beta.20 | 136 | 2/20/2023 |
2.0.0-beta.19 | 126 | 2/14/2023 |
2.0.0-beta.18 | 124 | 2/14/2023 |
2.0.0-beta.17 | 128 | 2/14/2023 |
2.0.0-beta.16 | 127 | 2/11/2023 |
2.0.0-beta.15 | 132 | 2/10/2023 |
2.0.0-beta.14 | 136 | 2/6/2023 |
2.0.0-beta.13 | 136 | 2/3/2023 |
2.0.0-beta.12 | 144 | 2/2/2023 |
2.0.0-beta.11 | 150 | 1/30/2023 |
2.0.0-beta.10 | 142 | 1/23/2023 |
2.0.0-beta.9 | 151 | 1/19/2023 |
2.0.0-beta.8 | 138 | 1/19/2023 |
2.0.0-beta.7 | 150 | 1/12/2023 |
2.0.0-beta.6 | 144 | 12/31/2022 |
2.0.0-beta.5 | 133 | 12/30/2022 |
2.0.0-beta.4 | 139 | 12/21/2022 |
2.0.0-beta.3 | 137 | 12/19/2022 |
2.0.0-beta.2 | 138 | 12/10/2022 |
2.0.0-beta.1 | 140 | 12/2/2022 |
1.2.1 | 704 | 11/29/2022 |
1.2.0 | 642 | 11/28/2022 |
1.1.0 | 667 | 11/28/2022 |
1.0.3 | 655 | 11/25/2022 |
1.0.2 | 824 | 6/8/2022 |
1.0.1 | 863 | 6/7/2022 |
0.0.1-beta.20 | 173 | 6/1/2022 |
0.0.1-beta.19 | 171 | 5/20/2022 |
0.0.1-beta.18 | 165 | 5/20/2022 |
0.0.1-beta.14 | 179 | 5/19/2022 |
0.0.1-beta.13 | 173 | 5/18/2022 |
0.0.1-beta.2 | 203 | 5/16/2022 |
0.0.1-beta.1 | 185 | 5/11/2022 |