Type alias TokenAccountState

TokenAccountState: {
    balance: Type;
    moduleState?: Type;
}

Represents a protocol level token state for an account.

Type declaration

  • balance: Type

    The amount of tokens held by the account.

  • Optional moduleState?: Type

    Token module specific state (CBOR encoded), such as membership of allow/deny lists. This should be a CBOR-encoded TokenModuleAccountState object.

Generated using TypeDoc