This is an old/depricated library, use waves-csharp. NuGet package
A C# library for interacting with the Waves blockchain
Supports node interaction, offline transaction signing, Matcher orders, and creating addresses and keys.
Here you we can discuss library usage and further development:
https://forum.wavesplatform.com/t/wavescs-c-client-library-for-waves-api/83
You can install WavesPlatform.WavesCS NuGet package and add it to your project's References and in your code as:
using WavesCS;
For installation NuGet package from VS Package Manager Console you should use:
PM> Install-Package WavesPlatform.WavesCS -Version 1.1.0
For installation via UI Package Manager use this instruction.
Target framework .NET Framework 4.5.1
The library utilizes classes to represent various Waves data structures and encoding and serialization methods:
- WavesCS.Node
- WavesCS.Order
- WavesCS.OrderBook
- WavesCS.PrivateKeyAccount
- WavesCS.Transaction
- WavesCS.AddressEncoding
- WavesCS.Base58
- WavesCS.Utils
Code examples are in WavesCSTests project and Examples page.
[WavesCS Github repository](https://github.com/wavesplatform/WavesCS