Skip to content
This repository has been archived by the owner on Jul 27, 2021. It is now read-only.

iotaledger/iota.lib.csharp

Repository files navigation

Build status

Introduction

The Iota.Lib.CSharp library implements the [Core API calls] as well as the [proposed calls].

It allows to connect easily to a local or a remote [IOTA node] using C#.

  • Latest release: 0.9.0-beta
  • Compatibility: fully compatible with IOTA IRI v1.2.4
  • License: Apache License 2.0

Technologies & dependencies

The Iota.Lib.CSharp library has been designed to be used with .Net 4.0+.

Core dependencies:

Getting started

Connect to your node is quite straightforward: it requires only 2 lines of code. For example, in order to fetch the Node Info:

IotaApi iotaApi = new IotaApi("node.iotawallet.info", 14265);
GetNodeInfoResponse nodeInfo = iotaApi.GetNodeInfo();

You can easily add the library to your Visual Studio project using the NuGet package manager or in the Package Manager Console with this command:

Install-Package Iota.Lib.CSharp -Pre

Documentation

Please refer to the github wiki for the library documentation.

Warning

  • This is pre-release software!
  • There may be performance and stability issues.
  • You may loose all your money :)
  • Please report any issues using the Issue Tracker

What is missing

  • Multisig support