Skip to content

Instantly share code, notes, and snippets.

@donma
Created February 7, 2019 15:56
Show Gist options
  • Save donma/8c49402f565a5498c74c9bbfa85a4398 to your computer and use it in GitHub Desktop.
Save donma/8c49402f565a5498c74c9bbfa85a4398 to your computer and use it in GitHub Desktop.
Call GetBalance
//Call function from https://gist.github.com/donma/da94fe7a6a57e088aae9be25d5e50a6b
decimal confirmsBalance = 0;
decimal unConfirmsBalance = 0;
GetWalletBalance("mvJh993ZpnVFgX4Bs9jacjFLsKPhXj3nkj", out confirmsBalance, out unConfirmsBalance);
Console.WriteLine("Wallet A : " + "mvJh993ZpnVFgX4Bs9jacjFLsKPhXj3nkj");
Console.WriteLine("Confirm Balance : " + confirmsBalance);
Console.WriteLine("UnConfirm Balance : " + unConfirmsBalance);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment