On-chain trading account state.

interface TradeAccount {
    last_modification: number;
    nonce: bigint;
    owner: Identity;
    sync_state?: unknown;
    synced_with_network?: boolean;
}

Properties

last_modification: number

Last block number at which the account was modified.

nonce: bigint

Current nonce (increments with each on-chain action).

owner: Identity

The account owner's identity.

sync_state?: unknown

Internal sync state details.

synced_with_network?: boolean

Whether the account state is synced with the network.