Netezos 2.4.4

The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org. Prefix Reserved
There is a newer version of this package available.
See the version list below for details.
dotnet add package Netezos --version 2.4.4
NuGet\Install-Package Netezos -Version 2.4.4
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="Netezos" Version="2.4.4" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Netezos --version 2.4.4
#r "nuget: Netezos, 2.4.4"
#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 Netezos as a Cake Addin
#addin nuget:?package=Netezos&version=2.4.4

// Install Netezos as a Cake Tool
#tool nuget:?package=Netezos&version=2.4.4

For full documentation and API Reference, please refer to the Netezos website

Contribution

Netezos is an open development project so any contribution is highly appreciated, starting from documentation improvements, writing examples of usage, etc. and ending with adding new features (as long as these features do not break existing API or are only intended for one person and for very specific use case).

Do not hesitate to use GitHub issue tracker to report bugs or request features.

Support

Feel free to join our Discord: https://discord.gg/aG8XKuwsQd, Telegram chat: https://t.me/baking_bad_chat, or find us in Slack: https://tezos-dev.slack.com #baking-bad. We will be glad to hear any feedback and feature requests and will try to help you with general use cases of the Netezos library.

Getting started

Let's consider the most common use case - sending a transaction.

Installation

PM> Install-Package Netezos

Create private key

// generate new key
var key = new Key();

// or use existing one
var key = Key.FromBase58("edsk4ZkGeBwDyFVjZLL2neV5FUeWNN4NJntFNWmWyEBNbRwa2u3jh1");

// use this address to receive some tez
var address = key.PubKey.Address; // tz1SauKgPRsTSuQRWzJA262QR8cKdw1d9pyK

Get some data from RPC

using var rpc = new TezosRpc("https://mainnet-tezos.giganode.io/");

// get a head block
var head = await rpc.Blocks.Head.Hash.GetAsync<string>();

// get account's counter
var counter = await rpc.Blocks.Head.Context.Contracts[address].Counter.GetAsync<int>();

Forge an operation

Since our address has just been created, we need to reveal its public key before sending any operation, so that everyone can validate our signatures. Therefore, we need to send actually two operations: a reveal and then a transaction.

Netezos allows you to pack multiple operations into a group and forge/send it as a single batch.

var content = new ManagerOperationContent[]
{
    new RevealContent
    {
        Source = address,
        Counter = ++counter,
        PublicKey = key.PubKey.GetBase58(),
        GasLimit = 1500,
        Fee = 1000 // 0.001 tez
    },
    new TransactionContent
    {
        Source = address,
        Counter = ++counter,
        Amount = 1000000, // 1 tez
        Destination = "tz1KhnTgwoRRALBX6vRHRnydDGSBFsWtcJxc",
        GasLimit = 1500,
        Fee = 1000 // 0.001 tez
    }
};

var bytes = await new LocalForge().ForgeOperationGroupAsync(head, content);

Sign and send

// sign the operation bytes
byte[] signature = key.SignOperation(bytes);

// inject the operation and get its id (operation hash)
var result = await rpc.Inject.Operation.PostAsync(bytes.Concat(signature));

That is it. We have successfully injected our first operation into the Tezos blockchain.

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  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. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (5)

Showing the top 5 NuGet packages that depend on Netezos:

Package Downloads
Swisschain.Sirius.Sdk.Crypto

Package Description

Beacon.Sdk

Beacon .NET SDK for Tezos wallet / dApps developers.

Nichelson

Package Description

TzWatch.Lib

Package Description

TezosPayments

Package for payment generation in the Tezos Payments system

GitHub repositories (1)

Showing the top 1 popular GitHub repositories that depend on Netezos:

Repository Stars
baking-bad/tzkt
😼 Awesome Tezos blockchain indexer and API
Version Downloads Last updated
2.9.0 573 2/5/2024
2.8.0 2,262 3/29/2023
2.7.7 1,237 2/8/2023
2.7.6 742 2/7/2023
2.7.5 1,136 1/24/2023
2.7.4 841 1/22/2023
2.7.3 1,137 12/25/2022
2.7.2 1,023 12/9/2022
2.7.1 933 11/29/2022
2.7.0 919 11/24/2022
2.6.2 1,955 8/18/2022
2.6.1 1,054 8/3/2022
2.6.0 1,353 6/29/2022
2.6.0-rc.1 299 5/23/2022
2.5.2 2,938 3/31/2022
2.5.1 1,783 3/12/2022
2.5.0 939 3/12/2022
2.4.7 1,450 12/22/2021
2.4.6 9,457 11/25/2021
2.4.5 3,976 11/25/2021
2.4.4 1,068 11/4/2021
2.4.3 14,869 10/28/2021
2.4.2 824 10/28/2021
2.4.1 1,288 10/20/2021
2.4.0 904 10/20/2021
2.4.0-rc.1 341 9/29/2021
2.3.14 1,205 9/2/2021
2.3.13 3,944 6/15/2021
2.3.12 1,010 6/2/2021
2.3.11 986 5/25/2021
2.3.10 1,003 5/23/2021
2.3.9 2,366 4/9/2021
2.3.8 1,793 4/7/2021
2.3.7 883 4/2/2021
2.3.6 870 4/1/2021
2.3.5 974 3/29/2021
2.3.4 881 3/28/2021
2.3.3 906 3/26/2021
2.3.2 1,354 3/19/2021
2.3.1 966 3/17/2021
2.3.0 892 3/16/2021
2.2.1 1,489 2/20/2021
2.2.0 1,085 2/11/2021
2.1.5 902 2/9/2021
2.1.4 956 1/28/2021
2.1.3 980 1/25/2021
2.1.2 935 1/24/2021
2.1.1 1,008 1/22/2021
2.1.0 1,001 1/21/2021
2.0.1 990 12/9/2020
2.0.0 1,056 12/6/2020
2.0.0-rc.1 517 10/22/2020