logware-dotnet
.Net Library for saving data to the Blockchain with Logware
Basic Usage:
Insert "Hash" (up to 80B)
Logware logware = new Logware("accountname", "password");
string TxId = await logware.InsertHash("Hello World");
Insert "Data" (up to 2kB)
Logware logware = new Logware("accountname", "password");
string TxId = await logware.InsertData("Hello World");
NOTE: This project is still incomplete, and in-process