BulletinBoardMarket
Inherits: BaseMarket
A simpler approach: the seller lists an asset at a set price, any buyer can come buy it at that price. No bidding, no advanced matching.
Functions
createListing
function createListing(uint96 quantity, uint256 price) external override returns (bytes32);
executeTrade
function executeTrade(bytes32 listingId, uint96 tradeQuantity) external payable override;
cancelListing
function cancelListing(bytes32 listingId) external override;
Last updated
Was this helpful?