MCWrapper.RPC 6.0.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package MCWrapper.RPC --version 6.0.0
NuGet\Install-Package MCWrapper.RPC -Version 6.0.0
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="MCWrapper.RPC" Version="6.0.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add MCWrapper.RPC --version 6.0.0
#r "nuget: MCWrapper.RPC, 6.0.0"
#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 MCWrapper.RPC as a Cake Addin
#addin nuget:?package=MCWrapper.RPC&version=6.0.0

// Install MCWrapper.RPC as a Cake Tool
#tool nuget:?package=MCWrapper.RPC&version=6.0.0

A simple .NET Core wrapper for the MultiChain Core blockchain library that utilitzes Remote Procedure Calls (RPC) to communicate with distributed ledgers. Written with C# 8.0 and supports .NET Core 2.1, 2.2, and 3.0.

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.1 is compatible.  netcoreapp2.2 is compatible.  netcoreapp3.0 was computed.  netcoreapp3.1 is compatible. 
.NET Standard netstandard2.1 is compatible. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen 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 (1)

Showing the top 1 NuGet packages that depend on MCWrapper.RPC:

Package Downloads
MCWrapper

A compilation of the MCWrapper.RPC and MCWrapper.CLI libraries with a new extension method permitting the additional of both the MultiChain Core RPC and CLI client factories using a single line of code.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
7.1.1 761 2/3/2020
7.1.0 841 1/19/2020
7.0.0 553 1/18/2020
6.0.0 668 1/7/2020
5.1.10 682 1/2/2020
5.1.9 632 12/22/2019
5.1.8 434 12/22/2019
5.1.7 563 12/22/2019
5.1.6 446 12/22/2019
5.0.6 606 12/12/2019
5.0.5 539 11/30/2019
5.0.4 426 11/30/2019
5.0.3 584 11/28/2019
5.0.2 578 11/25/2019
5.0.1 545 11/24/2019
5.0.0 431 11/23/2019
4.0.1 684 11/4/2019
4.0.0 574 10/30/2019
3.0.0 562 10/24/2019
2.0.0 460 10/20/2019
1.0.1 433 10/19/2019
1.0.0 466 10/16/2019

The following IMultiChainRpcWallet interface methods have had their return types changed to RpcResponse<string> from RpcResponse<object>;
GrantAsync
GrantFromAsync
GrantWithDataAsync
GrantWithDataFromAsync

IssueAsync and IssueFromAsync methods are now expressed with generic and strongly (AssetEntity class) typed object parameters. Consumers may now also simply pass a string type unique name to these methods, versus using either object argument type option.

IssueAsync and IssueFromAsync methods with a 'customFields' parameter are now have the parameter expressed as a Dictionary<string, string> instead of a generic object. Hopefully, this will make using the API a bit more explicit and easier to pass multiple fields.

IssueMoreAsync and IssueMoreFromAsync with a 'customFields' parameter are now have the parameter expressed as a Dictionary<string, string> instead of a generic object. Hopefully, this will make using the API a bit more explicit and easier to pass multiple fields.

Change to MultiChainRpcClient - Now only requires the base data type, to be wrapped by the RpcResponse, to be passed into the method. We now simply infer the RpcResponse type during Json deserialization. Probably a micro optimization but puts our RPC clients more in sync with how our CLI client library is constructed, more consistent code-base between our different libraries.

A new Target Framework has been added, netstandard2.1.

Prior to the release we are targeting:
netcoreapp3.0;netcoreapp2.2;netcoreapp2.1

Post release we will target:
netcoreapp3.1;netcoreapp2.2;netcoreapp2.1;netstandard2.1

We added several more data models to make our return types more strongly typed.

Many methods return generic object types, they now return more specific accurate data model types or base types (string, bool, int, etc...).

Please view all supported MultiChain Community Edition methods here, https://mcwrapper.com/supported-methods