mvs_rpc 1.0.0.3
.NET Framework 4.5.2
Install-Package mvs_rpc -Version 1.0.0.3
dotnet add package mvs_rpc --version 1.0.0.3
<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
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: mvs_rpc, 1.0.0.3"
#r directive can be used in F# Interactive, C# scripting and .NET Interactive. 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
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
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
- git clone https://github.com/mvshub/mvs_rpc_dotnet.git
- compile the mvs_rpc_dotnet.sln
- add the reference mvs_rpc.dll in your project
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 | Versions |
---|---|
.NET Framework | net452 net46 net461 net462 net463 net47 net471 net472 net48 |
Compatible target framework(s)
Additional computed target framework(s)
Learn more about Target Frameworks and .NET Standard.
-
- Newtonsoft.Json (>= 11.0.2)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
metaverse rpc connection of dotnet.