net-ipfs-engine icon indicating copy to clipboard operation
net-ipfs-engine copied to clipboard

IPFS Core API implementation in .Net

Results 40 net-ipfs-engine issues
Sort by recently updated
recently updated
newest added

my code below, I upload a file to ipfs, then I want to get the file context, but I get nothing. public partial class Form1 : Form { IpfsEngine ipfs;...

My code: private async void GetData() { var ipfs = new IpfsEngine(); const string filename = "QmS4ustL54uo8FzR9455qaxZwuMiUhyvMcX9Ba8nUH4uVv/about"; string text = await ipfs.FileSystem.ReadAllTextAsync(filename); } when run at var ipfs = new...

Why there are some methods in documents that are not available in the code base like : `ipfs.IdAsync();` document link: https://richardschneider.github.io/net-ipfs-engine/articles/intro-ipfs.html

Quick links to the new repos: - [ipfs-shipyard/net-ipfs-http-client](https://github.com/ipfs-shipyard/net-ipfs-http-client) - [ipfs-shipyard/net-ipfs-core](https://github.com/ipfs-shipyard/net-ipfs-core) --- Sadly, Richard Schneider appears to have permanently logged off in November 2019. These are still some of the best...

The fix is simple enough: Just put this code directly after `await ipfs.StartAsync()` ```cs (await ipfs.SwarmService.Task).Blacklist.Clear(); ```

See https://github.com/richardschneider/peer-talk/issues/59. Currently, this means that net-ipfs-engine cannot work with go-ipfs.

i want to send an message in a topic with the pub/sub api. but the second client on the same pc does not recieve any messages ![image](https://user-images.githubusercontent.com/4117602/71343084-0426e480-255f-11ea-826e-264b06052f54.png)

Typo "subscribed"

I have found that what is present on nuget is not updated with the code developed after the release of 22 August 2020. Can I ask you to please create...

hi How to fix the following code problem: private async void Button1_Click(object sender, EventArgs e) { System.Net.ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls12 | SecurityProtocolType.Tls11 | SecurityProtocolType.Tls; string passphrase = "this is not a...