Skip to content

Account

Account state is a combination of the account balance, and locked and fulfilled flags for requests.

struct Account {
    uint96 balance;
    uint160 requestFlagsInitial;
    uint256[(1 << 32) * REQUEST_FLAGS_BITWIDTH / 256] requestFlagsExtended;
}