Inherits from Simple Market. Shares the same liquidity pool. Uses` a sorted list to facilitate order matching.
Alias: make
Simple market offers with sorting and position
function offer(uint wad, ERC20 gemA, uint jam, ERC20 gemB, uint pos) returns (uint) { ... }
Alias: take
Simple market buys with sorting and position
function buy(uint offer, uint qty) returns (bool) { ... }
Alias: kill
Cancel an offer - refunds the maker.
function uint(uint offer) returns (bool success) { ... }
Insert an offer into the sorted list
function uint(uint id, uint pos) returns (bool) { ... }
TODO