Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/ts95/cryptocoinrpc.net
- Owner: ts95
- Created: 2013-12-23T17:34:29.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2013-12-23T17:57:01.000Z (about 11 years ago)
- Last Synced: 2023-05-14T13:34:25.825Z (over 1 year ago)
- Language: C#
- Size: 2.54 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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());
}
}
```