Skip to content

A library for .NET/C#/Unity to natively communicate with the Internet Computer (ICP)

License

Notifications You must be signed in to change notification settings

edjCase/ICP.NET

Folders and files

NameName
Last commit message
Last commit date

Latest commit

f4c1962 ยท May 2, 2023
Jan 19, 2023
Apr 25, 2023
Aug 13, 2022
Jan 19, 2023
May 2, 2023
May 2, 2023
May 1, 2023
Jun 4, 2022
Jan 19, 2023
Jan 19, 2023
Mar 9, 2023
Mar 31, 2022
Apr 12, 2023
Jan 19, 2023
Jan 19, 2023

Repository files navigation

ICP.NET

Collection of Internet Computer Protocol (ICP) libraries for .NET/Blazor/Unity

See each individual project README for more in depth guides

๐ŸŽฎ Unity Integration

Note: WebGL/IL2CPP is not supported YET due to an issue with IL2CPP, working on it

  • Download latest binaries for the agent: https://github.com/edjCase/ICP.NET/releases
  • Extract .zip to a plugins folder in your Unity Assets: Assets/plugins/ICP.NET/
  • If generating a client (see below), place the generated files into the scripts folder: Assets/scripts/MyClient
  • Start coding ๐Ÿ’ป

๐Ÿ“ก Generating a client for a canister

  • Prerequisite: Have .Net 6 installed (https://dotnet.microsoft.com/en-us/download/dotnet)

  • Navigate to directory of .Net project

    cd {path/to/project}
    
  • Add Agent nuget package to project

    dotnet add package EdjCase.ICP.Agent
    
  • Install ClientGenerator

    dotnet tool install -g EdjCase.ICP.ClientGenerator
    

    This will allow a client to be automatically be generated for a canister. See ClientGenerator README for more details and advanced config

  • Initialize ClientGenerator config (first run only)

    candid-client-generator init
    

    This will create a TOML config file in the directory that can be changed for more advanced options

  • Update created config file candid-client.toml

    If using a canister id:

    namespace = "ProjectGovernance" # Base namespace to use
    output-directory = "./Clients" # Output directory
    
    [[clients]]
    name = "Governance" # Label of client to use
    type = "canister" # Indicates to make client from a canister id
    canister-id = "rrkah-fqaaa-aaaaa-aaaaq-cai" # Canister id to make client for

    If using a service definition file (.did)

    namespace = "ProjectGovernance" # Base namespace to use
    output-directory = "./Clients" # Output directory
    
    [[clients]]
    name = "Governance" # Label of client to use
    type = "file" # Indicates to make client from a service definition file
    file-path = "Governance.did" # File to use

    For all configuration options see ClientGenerator README for more details

  • Generate Client

    candid-client-generator gen
    

    Will output C# file to the output directory specified in the config

  • Use client in code

    var agent = new HttpAgent();
    Principal canisterId = Principal.FromText("rrkah-fqaaa-aaaaa-aaaaq-cai");
    var client = new GovernanceApiClient(agent, canisterId);
    OptionalValue<Sample.Shared.Governance.Models.ProposalInfo> proposalInfo = await client.GetProposalInfo(110174);
    ...
  • SHIP IT! ๐Ÿš€

Candid Related Links