This is a C# implementation of the Strike API found here:
MIT
- installation via NuGet (StrikeWallet.Client)
- targeting .NET Standard 2.1 (.NET Core, Linux/MacOS compatible), .NET 5-8
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!