public static Account GetDelegate(this ITzKtClient client, string address)
 {
     return(client.Download <Account>($"v1/delegates/{address}"));
 }
 public static Account GetAccount(this ITzKtClient client, string address)
 {
     return(client.Download <Account>($"v1/accounts/{address}"));
 }