Show / Hide Table of Contents

GAS.BalanceOf Method

Gets the GAS balance in the account.

Namespace: Neo.SmartContract.Framework.Native

Assembly: Neo.SmartContract.Framework

Syntax

public static extern BigInteger BalanceOf(byte[] account);

Parameters:

  • account: Script hash of the account

Example

public 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.

Back