Zenon.Sdk 0.6.14

There is a newer prerelease version of this package available.
See the version list below for details.
dotnet add package Zenon.Sdk --version 0.6.14
                    
NuGet\Install-Package Zenon.Sdk -Version 0.6.14
                    
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="Zenon.Sdk" Version="0.6.14" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Zenon.Sdk" Version="0.6.14" />
                    
Directory.Packages.props
<PackageReference Include="Zenon.Sdk" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Zenon.Sdk --version 0.6.14
                    
#r "nuget: Zenon.Sdk, 0.6.14"
                    
#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.
#addin nuget:?package=Zenon.Sdk&version=0.6.14
                    
Install as a Cake Addin
#tool nuget:?package=Zenon.Sdk&version=0.6.14
                    
Install as a Cake Tool

Zenon Sdk for .NET

nuget build codecov

Reference implementation for the Zenon SDK for .NET. Compatible with the Zenon Alphanet - Network of Momentum Phase 1. It provides a simple integration with any .NET based projects.

Installation

Install the Zenon.Sdk package from NuGet

dotnet add package Zenon.Sdk

Usage

Connect node

using Zenon;
using Zenon.Client;

// Create client instance with default options (mainnet)
using var client = new WsClient("wss://my.hc1node.com:35998");

// Connect to node
await client.ConnectAsync();

Generate wallet

using Zenon;
using Zenon.Wallet;

var walletName = "name";
var passphrase = "secret";

// Use key store manager
var walletManager = new KeyStoreManager();

// Create wallet
var walletDefinition = walletManager
    .CreateNew(passphrase, walletName);

Generate wallet from mnemonic

using Zenon;
using Zenon.Wallet;

var walletName = "name";
var passphrase = "secret";
var mnemonic = @"route become dream access impulse price inform obtain 
    engage ski believe awful absent pig thing vibrant 
    possible exotic flee pepper marble rural fire fancy";

// Use key store manager
var walletManager = new KeyStoreManager();

// Create wallet
var walletDefinition = walletManager
    .CreateFromMnemonic(mnemonic, passphrase, walletName);

Sending a transaction

using Zenon;
using Zenon.Client;
using Zenon.Wallet;

// Use key store manager
var walletManager = new KeyStoreManager();

// Use first wallet available
var walletDefinition =
    (await walletManager.GetWalletDefinitionsAsync()).First();

// Options for retrieving the wallet
var options = new KeyStoreOptions()
{
    DecryptionPassword = "secret"
};

// Retrieve the wallet
var wallet =
    await walletManager.GetWalletAsync(walletDefinition, options);

// Create client instance with default options (mainnet)
using var client = new WsClient("wss://my.hc1node.com:35998");

// Connect to node
await client.ConnectAsync();

// Create zdk instance and attach primary wallet account
var zdk = new Zdk(client)
{
    DefaultWalletAccount =
        await wallet.GetAccountAsync(accountIndex: 0)
};

// Send tx
await zdk.SendAsync(zdk.Embedded.Pillar.CollectReward());

Receive a transaction

using Zenon;
using Zenon.Client;
using Zenon.Wallet;
using Zenon.Model.NoM;

// Use key store manager
var walletManager = new KeyStoreManager();

// Use first wallet available
var walletDefinition =
    (await walletManager.GetWalletDefinitionsAsync()).First();

// Options for retrieving the wallet
var options = new KeyStoreOptions()
{
    DecryptionPassword = "secret"
};

// Retrieve the wallet
var wallet =
    await walletManager.GetWalletAsync(walletDefinition, options);

// Create client instance with default options (mainnet)
using var client = new WsClient("wss://my.hc1node.com:35998");

// Connect to node
await client.ConnectAsync();

// Create zdk instance and attach primary wallet account
var zdk = new Zdk(client)
{
    DefaultWalletAccount =
        await wallet.GetAccountAsync(accountIndex: 0)
};

// Get account address
var address = await zdk.DefaultWalletAccount.GetAddressAsync();

// Get all unreceived tx's
var result = await zdk.Ledger
    .GetUnreceivedBlocksByAddress(address);

if (result.Count != 0)
{
    foreach (var item in result.List)
    {
        // Send tx
        await zdk.SendAsync(AccountBlockTemplate
            .Receive(client.ProtocolVersion, client.ChainIdentifier, item.Hash));
    }
}

Contributing

Please check CONTRIBUTING for more details.

License

The MIT License (MIT). Please check LICENSE for more information.

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 was computed.  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.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on Zenon.Sdk:

Package Downloads
Zenon.Wallet.Ledger

Ledger wallet for the Zenon .NET SDK

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
0.6.25-ledger-g727123be4d 137 12/11/2023
0.6.24-ledger-g403a3f8f67 126 12/11/2023
0.6.22-ledger-gbdfa921f2b 117 12/11/2023
0.6.20-ledger-gef4ff81bd3 172 9/11/2023
0.6.19-ledger-ga45e76931d 167 9/11/2023
0.6.17-ledger-g59034ed1b6 131 9/6/2023
0.6.16-ledger-g6a30ee89b1 127 9/6/2023
0.6.15-ledger-g0b99f5fe01 152 9/6/2023
0.6.14 188 4/29/2024
0.6.14-ledger-g30ff5b1b3c 174 8/8/2023
0.6.13 217 4/4/2024
0.6.12 137 3/29/2024
0.6.12-ledger-gf29ee9d4de 187 7/23/2023
0.6.11 142 3/21/2024
0.6.10 211 3/6/2024
0.6.9 313 12/13/2023
0.6.8-g8373116dd0 122 12/13/2023
0.6.6 180 9/18/2023
0.6.4 180 9/6/2023
0.6.3 164 9/6/2023
0.6.2 178 9/6/2023
0.6.1 209 8/1/2023
0.5.8 216 5/22/2023
0.5.7 292 4/22/2023
0.5.4-ptlc-g5a7a6e5328 171 4/14/2023
0.4.1 230 4/14/2023
0.3.12 354 1/25/2023
0.3.10 364 1/14/2023
0.3.9 382 12/22/2022
0.3.8 365 12/22/2022
0.3.7 451 10/14/2022
0.3.6 462 10/14/2022
0.3.5 476 10/8/2022
0.3.2 509 7/12/2022