/net-ipfs-engine

IPFS Core API implementation in .Net

Primary LanguageC#MIT LicenseMIT

net-ipfs-engine

build status travis build CircleCI Coverage Status Version docs

An embedded IPFS engine implemented in C#. More information, including the class reference, is on the Project web site.

IPFS Core API

This is BETA CODE and is not yet ready for prime time.

Features

Getting started

Published releases are available on NuGet. To install, run the following command in the Package Manager Console.

PM> Install-Package Ipfs.Engine

Usage

using Ipfs.Engine;

var ipfs = new IpfsEngine();

const string filename = "QmS4ustL54uo8FzR9455qaxZwuMiUhyvMcX9Ba8nUH4uVv/about";
string text = await ipfs.FileSystem.ReadAllTextAsync(filename);

Related projects

License

Copyright © 2018 Richard Schneider (makaretu@gmail.com)

The IPFS Engine is licensed under the MIT license. Refer to the LICENSE file for more information.