LucidOcean.MultiChain
0.0.0.11
See the version list below for details.
dotnet add package LucidOcean.MultiChain --version 0.0.0.11
NuGet\Install-Package LucidOcean.MultiChain -Version 0.0.0.11
<PackageReference Include="LucidOcean.MultiChain" Version="0.0.0.11" />
paket add LucidOcean.MultiChain --version 0.0.0.11
#r "nuget: LucidOcean.MultiChain, 0.0.0.11"
// Install LucidOcean.MultiChain as a Cake Addin #addin nuget:?package=LucidOcean.MultiChain&version=0.0.0.11 // Install LucidOcean.MultiChain as a Cake Tool #tool nuget:?package=LucidOcean.MultiChain&version=0.0.0.11
LucidOcean.MultiChain Assembly
The library is an unofficial wrapper for multichain_cli JSON RPC. Refer to https://www.multichain.com/developers/json-rpc-api/ for more information on each JSON RPC call and how it is used.
Follow these instructions to create your own chain. https://www.multichain.com/developers/creating-connecting/
The Source is in Visual Studio 2017. The compiled Assemblies is targeting netstandard_2_0 and 4.5.1 NUGET: https://www.nuget.org/packages/LucidOcean.MultiChain/0.0.0.9
This library divides the calls into
- MultiChainClient.Address
- MultiChainClient.Asset
- MultiChainClient.Block
- MultiChainClient.Peer
- MultiChainClient.Permission
- MultiChainClient.Transaction
- MultiChainClient.Utility
- MultiChainClient.Wallet
- MultiChainClient.Stream
example usage:
MultiChainConnection connection = new MultiChainConnection()
{
Hostname = "IP",
Port = 100,
Username = "multichainrpc",
Password = "password",
ChainName = "chain1",
BurnAddress = "address",
RootNodeAddress = "address"
};
MultiChainClient _Client = new MultiChainClient(connection);
response = _Client.Wallet.GetNewAddress();
There are sync and async versions.
Issue and Send an Asset
MultiChainConnection connection = new MultiChainConnection()
{
Hostname = "IP",
Port = 100,
Username = "multichainrpc",
Password = "password",
ChainName = "chain1",
BurnAddress = "address",
RootNodeAddress = "address"
};
MultiChainClient _Client = new MultiChainClient(connection);
JsonRpcResponse<string> response = _Client.Asset.Issue(issueAddress, assetName, quantity, units);
_Client.Asset.Send(toAddress, assetName, amount);
//Use SendAssetFrom to specify an address FROM and and address To
Using List
_Client.Asset.ListAssetsAsync(assetName,true);
Issue and Subscribe
var response = _Client.Asset.Issue(fromAddress, new { name = assetName, open = true }, 10, 1, asset);
_Client.Asset.Subscribe(response.Result, true);
MultiChain Explorer
- MultiChain explorer running on C# ASP.NET MVC 5.2.3
- Change connection details in LucidOcean.MultiChain.Explorer.Data.ExplorerSettings to connect the explorer to your node.
* This works the same as seen in example of issue and sending of an asset.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net6.0 is compatible. 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 Framework | net48 is compatible. net481 was computed. |
-
.NETFramework 4.8
- Microsoft.NETCore.Platforms (>= 7.0.4)
- Newtonsoft.Json (>= 13.0.3)
-
net6.0
- Microsoft.NETCore.Platforms (>= 7.0.4)
- Newtonsoft.Json (>= 13.0.3)
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 |
---|---|---|
0.0.0.17 | 178 | 2/19/2024 |
0.0.0.14 | 124 | 2/7/2024 |
0.0.0.13 | 98 | 2/7/2024 |
0.0.0.12 | 108 | 2/6/2024 |
0.0.0.11 | 191 | 10/4/2023 |
0.0.0.10 | 2,220 | 2/22/2018 |
0.0.0.9 | 4,770 | 12/19/2017 |
0.0.0.8 | 1,261 | 11/8/2017 |
0.0.0.7 | 1,284 | 10/9/2017 |
0.0.0.6 | 970 | 10/3/2017 |
0.0.0.4 | 986 | 9/19/2017 |
0.0.0.3 | 958 | 9/15/2017 |
-- removed NetStandard2.0; net45 in favour of net48;dotnet6
-- Upgraded MVC Explorer project (see git)
-- Updated nuget packages