mvs_rpc 1.0.0.3

dotnet add package mvs_rpc --version 1.0.0.3
NuGet\Install-Package mvs_rpc -Version 1.0.0.3
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="mvs_rpc" Version="1.0.0.3" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add mvs_rpc --version 1.0.0.3
#r "nuget: mvs_rpc, 1.0.0.3"
#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 mvs_rpc as a Cake Addin
#addin nuget:?package=mvs_rpc&version=1.0.0.3

// Install mvs_rpc as a Cake Tool
#tool nuget:?package=mvs_rpc&version=1.0.0.3

mvs_rpc_dotnet

Introduction

This project is a dotnet library that is intended to provide a wrapper around JSON-RPC provided by Metaverse MVS.

The user must be familiar with the metaverse jsonrpc interface before using this library

Installation

NuGet

Thie project is available for NuGet packages

Compile the Source

How to use

  • Start Metaverse Server (daemon).
  • add the referencec of mvs_rpc_dotnet
RPC rpc = new RPC();
rpc.URL="http://127.0.0.1:8820";
rpc.VERSION=rpcversion.v3;
String block = rpc.getblock(1200000);

All interfaces

account

  • getnewaccount
  • getaccount
  • deleteaccount
  • importaccount
  • changepasswd
  • getnewaddress
  • validateaddress
  • listaddresses
  • dumpkeyfile
  • importkeyfile

blockchain

  • shutdown
  • getinfo
  • addnode
  • getpeerinfo
  • startmining
  • stopmining
  • getmininginfo
  • setminingaccount
  • getwork
  • submitwork
  • getmemorypool
  • getheight
  • getblock
  • getblockheader

transaction

  • fetchheaderext
  • gettx
  • listtxs
  • createrawtx
  • decoderawtx
  • signrawtx
  • sendrawtx

multisignature

  • getpublickey
  • createmultisigtx
  • getnewmultisig
  • listmultisig
  • deletemultisig
  • signmultisigtx

etp

  • send
  • sendmore
  • sendfrom
  • deposit
  • listbalances
  • getbalance
  • getaddressetp

asset

  • createasset
  • deletelocalasset
  • issue
  • secondaryissue
  • sendasset
  • sendassetfrom
  • listassets
  • getasset
  • getaccountasset
  • getaddressasset
  • burn

cert

  • issuecert
  • transfercert

mit

  • registermit
  • transfermit
  • listmits
  • getmit

did

  • registerdid
  • didsend
  • didsendfrom
  • didsendasset
  • didsendassetfrom
  • didsendmore
  • didchangeaddress
  • listdids
  • getdid

Todo

Add more call methods.

Product Compatible and additional computed target framework versions.
.NET Framework net452 is compatible.  net46 was computed.  net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.0.0.3 1,050 6/28/2018
1.0.0 954 6/27/2018

metaverse rpc connection of dotnet.