GAS.BalanceOf Method
Gets the GAS balance in the account.
Namespace: Neo.SmartContract.Framework.Native
Assembly: Neo.SmartContract.Framework
#
Syntaxpublic static extern BigInteger BalanceOf(byte[] account);
Parameters:
- account: Script hash of the account
#
Examplepublic class Contract1 : SmartContract.Framework.SmartContract{ private static readonly UInt160 account = "NXsG3zwpwcfvBiA3bNMx6mWZGEro9ZqTqM".ToScriptHash();
public static object Test() { BigInteger result = GAS.BalanceOf(account); return result; }}
Response body:
{ "Type":"Integer", "value":"100000000"}
Response description
Integer type: The account balance obtained successfully.
Other: failed.