Interface Account<Options>

interface Account<Options> {
    options: Options;
    getBalance(address?): Promise<bigint>;
}

Type Parameters

Implemented by

Properties

Methods

Properties

options: Options

Methods

  • Parameters

    • Optional address: string

    Returns Promise<bigint>