Interface IBalance

Represents the balance information for a given address.

Remarks

This interface is used to track both the final and candidate balances for an address, which are represented as BigInt.

interface IBalance {
    candidate: bigint;
    final: bigint;
}

Properties

Properties

candidate: bigint
final: bigint

Generated using TypeDoc