NFT.Storage.Net
1.0.1
See the version list below for details.
dotnet add package NFT.Storage.Net --version 1.0.1
NuGet\Install-Package NFT.Storage.Net -Version 1.0.1
<PackageReference Include="NFT.Storage.Net" Version="1.0.1" />
paket add NFT.Storage.Net --version 1.0.1
#r "nuget: NFT.Storage.Net, 1.0.1"
// Install NFT.Storage.Net as a Cake Addin #addin nuget:?package=NFT.Storage.Net&version=1.0.1 // Install NFT.Storage.Net as a Cake Tool #tool nuget:?package=NFT.Storage.Net&version=1.0.1
NFT.Storage.Net
c# library to easily upload files to NFT.Storage.
loads files directly into your account and returns a readable .net object
Usage:
public void TestUploadRandomImage()
{
// can upload local files from disk right now
GUID_Image.GenerateGuidImage("Testfile1.png");
// create api
NFT_Storage_API api = new NFT_Storage_API(GlobalVar.TestApiKey);
NFT_File file = api.Upload("Testfile1.png").Result;
string url = file.URL;
string checksum = file.Sha256Sum;
}
→ returns a simplified c# object file
supported filetypes
- stream data
- locally stored files
- files up to 100 mb
features
- upload image to nft.storage
- validate and show sha256sum
- async / multithreading
- unit tests
- api key
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net6.0 is compatible. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 is compatible. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
-
net6.0
- No dependencies.
-
net7.0
- No dependencies.
NuGet packages (1)
Showing the top 1 NuGet packages that depend on NFT.Storage.Net:
Package | Downloads |
---|---|
CHIA-RPC
CHIA-RPC is a C# Nuget package that simplifies communication with the Chia client using RPC-JSON files. The package offers a wrapper for creating RPC objects and accessing RPC JSON via .ToString() or file I/O. It can be used with the HTTP-API, WebSocket API, or CLI of the Chia client. |
GitHub repositories
This package is not used by any popular GitHub repositories.
- file download now supports progress update for processes
- improved async behaviour
- added support for .net 6