Client library for strike.me API, bitcoin and lightning services
$ dotnet add package StrikeWallet.Client
This is a C# implementation of the Strike API found here:
MIT
var apiKey = "YOUR_API_KEY";
var environment = Environment.Live;
var client = new StrikeClient(environment, apiKey);
var profile = await client.Accounts.GetProfile("marfusios");
appsettings.json
{
"Strike": {
"Environment": "Live",
"ApiKey": "YOUR_API_KEY"
}
}
Startup.cs
services.AddStrike();
More usage examples:
Pull Requests are welcome!