Chia-Metadata 1.6.2.3

There is a newer version of this package available.
See the version list below for details.
dotnet add package Chia-Metadata --version 1.6.2.3
NuGet\Install-Package Chia-Metadata -Version 1.6.2.3
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Chia-Metadata" Version="1.6.2.3" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Chia-Metadata --version 1.6.2.3
#r "nuget: Chia-Metadata, 1.6.2.3"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Chia-Metadata as a Cake Addin
#addin nuget:?package=Chia-Metadata&version=1.6.2.3

// Install Chia-Metadata as a Cake Tool
#tool nuget:?package=Chia-Metadata&version=1.6.2.3

Chia-Metadata

Welcome to the CHIA-Metadata GitHub repository!

CHIA-Metadata is a C# library that serves as a wrapper for Chia NFTs with the CHIP-0007 JSON metadata standard. It simplifies the process of working with Chia NFTs and allows developers to easily create, mint, and manage NFTs on the Chia blockchain.

Here is a code example of how to use CHIA-Metadata to create metadata:

public void TestSerialize()
{
    FileInfo testfile = new FileInfo(Path.Combine("Temp","TestSerialize"));
    if (testfile.Exists) testfile.Delete();
    if (!testfile.Directory.Exists) testfile.Directory.Create();
    MetadataAttribute[] attributes = new MetadataAttribute[]
    {
        new MetadataAttribute(Trait_Type: "type", Value: "TestAttribute"),
        new MetadataAttribute(Trait_Type: "rarity", Value: 2,Min_Value:0, Max_Value:4),
    };
    Chia_Metadata_CHIP_0007_std.CollectionAttribute[] socialMedia_attributes = new Chia_Metadata_CHIP_0007_std.CollectionAttribute[]
    {
        new Chia_Metadata_CHIP_0007_std.CollectionAttribute(Type: "website", Value: "https://kryptomine.ch/"),
        new Chia_Metadata_CHIP_0007_std.CollectionAttribute(Type: "twitter", Value: "@KryptomineCH"),
        new Chia_Metadata_CHIP_0007_std.CollectionAttribute(Type: "discord", Value: "https://discord.gg/J7z3hVHT8a"),
    };
    Collection testCollection = new Collection(
        Name: "testcollection",
        ID: "4ae1649c-6740-11ed-9022-0242ac120002",
        Description: $"This is a unit test collection.{Environment.NewLine}You should never see it out in the wild!",
        IconLink: "https://nft.kryptomine.ch/Kryptomine_Basecollection/KryptoMine_Logo.png",
        BannerLink: "https://nft.kryptomine.ch/Kryptomine_Basecollection/KryptoMine_Logo.png",
        socialMedia: socialMedia_attributes.ToList());

    Metadata data = new Metadata
        (
        Name: "TestSerialize name",
        Description: $"Test Metadata Description{Environment.NewLine}with 2 lines.",
        Minting_Tool: "Chia-Metadata-UnitTests",
        Sensitive_Content: false,
        Series_Number: 1,
        Series_Total: 10000,
        Attributes: attributes.ToList(),
        Collection: testCollection
        );
    data.Save(testfile.FullName);
}

And here is a code example of how to use CHIA-Metadata to load metadata:

public void TestDeSerialize()
{
    Metadata test = Chia_Metadata.IO.Load(Path.Combine("TestAssets", "CryptoCrests_Templar_Order_1.json"));
}
Product 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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • net6.0

    • No dependencies.
  • net7.0

    • No dependencies.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on Chia-Metadata:

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.

Version Downloads Last updated
1.8.2 579 7/26/2023
1.6.2.5 1,256 2/8/2023
1.6.2.4 211 2/7/2023
1.6.2.3 244 2/6/2023
1.6.2.2 467 2/5/2023
1.6.2.1 717 1/25/2023
1.6.2 543 1/12/2023
1.6.1.5 324 1/11/2023
1.6.1.2 371 1/10/2023
1.6.1 464 12/29/2022

added function to match a metadata attribute vs a filter