public string GetTransactionAge(string id) { using (var client = CreateApi()) { if (!id.Contains(".")) { return(string.Empty); } var poolHash = id.Split(".")[0]; if (string.IsNullOrEmpty(poolHash)) { return(string.Empty); } var pool = client.PoolInfoGet(ConvUtils.ConvertHashBackAscii(poolHash), 0); return(ConvUtils.GetAge(pool.Pool.Time)); } }