Skip to content

Latest commit

 

History

History
20 lines (18 loc) · 879 Bytes

README.md

File metadata and controls

20 lines (18 loc) · 879 Bytes

.NET Generic badge

Block Cypher

A .net library application to wrap the BlockCypher Explorer web service.

How to use?

At first, you need an Api token from BlockCypher, Then in .Net:

Install-Package BlockCypher.Api

Quick start

var blockCypher = new BlockCypherClient("YOUR_TOKEN");
var wallet = blockCypher.CreateAsync(); // Btc - mainnet

wallet => { PrivateKey, PublicKey, Address, Wif }

var addressInfo = await blockCypher.GetInfoByAddress(wallet.Address);

addressInfo => { Balance, TotalSent, TotalReceived, UnconfirmedBalance, TransactionHistory, UnconfirmedTransactionHistory }