Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/ts95/cryptocoinrpc.net

JSON RPC client for cryptocurrencies derived from Bitcoin.
https://github.com/ts95/cryptocoinrpc.net

Last synced: about 2 months ago
JSON representation

JSON RPC client for cryptocurrencies derived from Bitcoin.

Awesome Lists containing this project

README

        

CryptocoinRPC.NET
=================

JSON RPC client for cryptocurrencies derived from Bitcoin.

__Example__
```C#
class Program
{
static void Main(string[] args)
{
var username = "Bit";
var password = "Coin";
var port = 22555;
var client = new CryptocoinRpcClient(username, password, "127.0.0.1:" + port);

Console.WriteLine("Difficulty: " + client.GetDifficulty());
}
}
```