Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Library that holds the core structs for the exchange
library; abi OrderSettler { fn take(id:u64, order: LimitOrder); fn make(id:u64, order: LimitOrder); fn cancel(id:u64, order: LimitOrder); } pub struct LimitOrder { maker_token: b256, taker_token: b256, maker_amount: u64, taker_amount: u64, maker: Address, }