Open Kaleb47 opened 2 years ago
Only the createBid, startAuction, setAuctionReservePrice, endAuction, cancelAuction, createAuction functions are public to interact with. The other functions are internal functions call inside the AuctionHouse contract.
Only the createBid, startAuction, setAuctionReservePrice, endAuction, cancelAuction, createAuction functions are public to interact with. The other functions are internal functions call inside the AuctionHouse contract.
Thank you, I'll modify these
Description
Make sure that that the Auctionhouse class and all the other functions corresponding to it are written and tested.
Definition of Done
createBid(auctionId: uint256, amount: uint256, mediaContract: address)
startAuction(auctionId: uint256, approved: bool)
setAuctionReservePrice(auctionId: uint256, reservePrice: uint256)
endAuction(auctionId: uint256, mediaContract: address)
cancelAuction(auctionId: uint256)
createAuction()
Resources
Find the architecture here.