Zenon.Sdk
0.6.14-ledger-g30ff5b1b3c
This is a prerelease version of Zenon.Sdk.
There is a newer version of this package available.
See the version list below for details.
See the version list below for details.
dotnet add package Zenon.Sdk --version 0.6.14-ledger-g30ff5b1b3c
NuGet\Install-Package Zenon.Sdk -Version 0.6.14-ledger-g30ff5b1b3c
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-ledger-g30ff5b1b3c" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Zenon.Sdk --version 0.6.14-ledger-g30ff5b1b3c
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: Zenon.Sdk, 0.6.14-ledger-g30ff5b1b3c"
#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 Zenon.Sdk as a Cake Addin #addin nuget:?package=Zenon.Sdk&version=0.6.14-ledger-g30ff5b1b3c&prerelease // Install Zenon.Sdk as a Cake Tool #tool nuget:?package=Zenon.Sdk&version=0.6.14-ledger-g30ff5b1b3c&prerelease
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
Zenon Sdk for .NET
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 | 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 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. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
net6.0
- Chaos.NaCl.Standard (>= 1.0.0)
- Konscious.Security.Cryptography.Argon2 (>= 1.3.0)
- Newtonsoft.Json (>= 13.0.1)
- P3.Ed25519.HdKey (>= 1.0.3)
- SHA3.Net (>= 2.0.0)
- StreamJsonRpc (>= 2.11.35)
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 | 124 | 12/11/2023 |
0.6.24-ledger-g403a3f8f67 | 108 | 12/11/2023 |
0.6.22-ledger-gbdfa921f2b | 102 | 12/11/2023 |
0.6.20-ledger-gef4ff81bd3 | 151 | 9/11/2023 |
0.6.19-ledger-ga45e76931d | 140 | 9/11/2023 |
0.6.17-ledger-g59034ed1b6 | 106 | 9/6/2023 |
0.6.16-ledger-g6a30ee89b1 | 104 | 9/6/2023 |
0.6.15-ledger-g0b99f5fe01 | 130 | 9/6/2023 |
0.6.14 | 139 | 4/29/2024 |
0.6.14-ledger-g30ff5b1b3c | 142 | 8/8/2023 |
0.6.13 | 183 | 4/4/2024 |
0.6.12 | 106 | 3/29/2024 |
0.6.12-ledger-gf29ee9d4de | 162 | 7/23/2023 |
0.6.11 | 104 | 3/21/2024 |
0.6.10 | 170 | 3/6/2024 |
0.6.9 | 286 | 12/13/2023 |
0.6.8-g8373116dd0 | 110 | 12/13/2023 |
0.6.6 | 161 | 9/18/2023 |
0.6.4 | 154 | 9/6/2023 |
0.6.3 | 138 | 9/6/2023 |
0.6.2 | 146 | 9/6/2023 |
0.6.1 | 181 | 8/1/2023 |
0.5.8 | 179 | 5/22/2023 |
0.5.7 | 257 | 4/22/2023 |
0.5.4-ptlc-g5a7a6e5328 | 138 | 4/14/2023 |
0.4.1 | 197 | 4/14/2023 |
0.3.12 | 313 | 1/25/2023 |
0.3.10 | 324 | 1/14/2023 |
0.3.9 | 336 | 12/22/2022 |
0.3.8 | 321 | 12/22/2022 |
0.3.7 | 412 | 10/14/2022 |
0.3.6 | 421 | 10/14/2022 |
0.3.5 | 432 | 10/8/2022 |
0.3.2 | 461 | 7/12/2022 |