C# library for exploring Bitcoin Cash blockchain

2

2

Does anyone know of a good C# library which would enable me to explore the Bitcoin Cash blockchain by communicating with my own node?

Something like Nethereum (Web3) for Ethereum.

Or, alternatively, a third-party API provider, like BlockCypher for Bitcoin.

Eutherpy

Posted 2017-11-14T13:06:25.983

Reputation: 153

Answers

4

Since "Bitcoin Cash" is a fork of Bitcoin Core, you should be able to use the BitcoinLib C# Library to interact with a Bitcoin Cash node.

Eric Allam

Posted 2017-11-14T13:06:25.983

Reputation: 708

Do I need to be running a full node on my machine for this? I want to communicate with a remote node.Eutherpy 2017-11-14T14:02:02.233

No, you'll just need to configure the library to connect to the remote node using the remote node's IP address. Look at the Configuration section of the README and the Bitcoin_DaemonUrl key. Replace "localhost" with the IP address.Eric Allam 2017-11-14T14:04:13.837