iotaledger / iota.lib.csharp

Iota.Lib.Csharp
Apache License 2.0
61 stars 32 forks source link
iota iota-csharp-library iota-library

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#.

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

What is missing