pyopenbook/pyserum/_layouts/account_flags.py

16 lines
502 B
Python

from construct import BitsInteger, BitsSwapped, BitStruct, Const, Flag # type: ignore
# We will use a bitstruct with 64 bits instead of the widebits implementation in serum-js.
ACCOUNT_FLAGS_LAYOUT = BitsSwapped( # Swap to little endian
BitStruct(
"initialized" / Flag,
"market" / Flag,
"open_orders" / Flag,
"request_queue" / Flag,
"event_queue" / Flag,
"bids" / Flag,
"asks" / Flag,
Const(0, BitsInteger(57)), # Padding
)
)