IpfsClient with some improvements
$ dotnet add package DreadIpfsHttpClientAn easy to use .NET library for the IPFS HTTP Gateway API, and the Kubo RPC API v0.
Published releases of IPFS API are available on NuGet. To install, run the following command in the Package Manager Console.
PM> Install-Package IpfsShipyard.Ipfs.Http.Client
Or using dotnet
> dotnet add package IpfsShipyard.Ipfs.Http.Client
Every feature of IPFS is a property of the IpfsClient). The following example
uses FileSystem to read a text file
using Ipfs.Http;
var ipfs = new IpfsClient();
const string filename = "QmXarR6rgkQ2fDSHjSY5nM2kuCXKYGViky5nohtwgF65Ec/about";
string text = await ipfs.FileSystem.ReadAllTextAsync(filename);
The IPFS API library is licensed under the MIT license. Refer to the LICENSE file for more information.