public async Task TestGetInformation()
        {
            var result = await _bitcoinWalletProvider.GetInformation("1aa5cmqmvQq8YQTEqcTmW7dfBNuFwgdCD");

            Assert.NotEmpty(result.data.txs);
            Assert.All(result.data.txs, item => item.txid.Should().NotBeNullOrEmpty());
        }
Пример #2
0
 public async Task <BitcoinWalletInformation> GetInformation(string address)
 {
     return(await _bitcoinWalletProvider.GetInformation(address));
 }