// Root myDeserializedClass = JsonConvert.DeserializeObject(myJsonResponse);
public class Price
{
public double rate { get; set; }
public double diff { get; set; }
public double diff7d { get; set; }
public int ts { get; set; }
public double marketCapUsd { get; set; }
public double availableSupply { get; set; }
public double volume24h { get; set; }
public double diff30d { get; set; }
public double volDiff1 { get; set; }
public double volDiff7 { get; set; }
public double volDiff30 { get; set; }
}
public class ETH
{
public Price price { get; set; }
public double balance { get; set; }
public string rawBalance { get; set; }
public double totalIn { get; set; }
public int totalOut { get; set; }
}
public class TokenInfo
{
public string address { get; set; }
public string decimals { get; set; }
public string name { get; set; }
public string owner { get; set; }
public string symbol { get; set; }
public string totalSupply { get; set; }
public int lastUpdated { get; set; }
public int issuancesCount { get; set; }
public int holdersCount { get; set; }
public int ethTransfersCount { get; set; }
public object price { get; set; }
public int? slot { get; set; }
public string storageTotalSupply { get; set; }
public string image { get; set; }
public string website { get; set; }
public string links { get; set; }
public string coingecko { get; set; }
public List publicTags { get; set; }
public string twitter { get; set; }
public string facebook { get; set; }
}
public class Token
{
public TokenInfo tokenInfo { get; set; }
public double balance { get; set; }
public int totalIn { get; set; }
public int totalOut { get; set; }
public string rawBalance { get; set; }
}
public class GetAddressInfoResponseModel
{
public string address { get; set; }
public ETH ETH { get; set; }
public int countTxs { get; set; }
public List tokens { get; set; }
}