Skip to content
This repository has been archived by the owner on Dec 22, 2022. It is now read-only.

.NET and Unity3D-compatible (Desktop, Mobile, WebGL) ApiClient for Hyperion History APIs

Notifications You must be signed in to change notification settings

liquiidio/HyperionApiClient-Archive

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 

Repository files navigation

HyperionApiClient

.NET and Unity3D-compatible (Desktop, Mobile, WebGL) ApiClient for Hyperion History APIs

Examples

Accounts

   var accountsClient = new AccountsClient(new HttpClient());
   var account = await accountsClient.GetAccountAsync("eosio");

Chain

   var chainClient = new ChainClient(new HttpClient());
   var abi = await chainClient.GetAbiAsync("eosio");

History

   var historyClient = new HistoryClient(new HttpClient());
   var actions = await historyClient.GetActionsAsync(null, null, "kingcoolcorv");

Stats

  var statsClient = new StatsClient(new HttpClient());
  var actionUsage = await statsClient.GetActionUsageAsync("1h");

Status

  var statusClient = new StatusClient(new HttpClient());
  var health = await statusClient.HealthAsync();

System

  var systemClient = new SystemClient(new HttpClient());
  var voters = await systemClient.GetVotersAsync();

About

.NET and Unity3D-compatible (Desktop, Mobile, WebGL) ApiClient for Hyperion History APIs

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages