Closed smonn closed 2 years ago
Proposed model, based on @davidjmurphyjr's comment in #212:
id
collectibleId
userAccountId
reservePrice
startAt
endAt
createdAt
status
appId
activeBidId
transactionId
collectibleAuctionId
amount
Was meant to be closed via #227
Proposed model, based on @davidjmurphyjr's comment in #212:
CollectibleAuction
id
guid - primary keycollectibleId
guid - foreign key to a collectibleuserAccountId
guid - foreign key to a user account (represents the seller)reservePrice
int - minimum bid amount in microAlgosstartAt
datetime with tz - start date + time bids are allowed to be madeendAt
datetime with tz - end date + time bids are no longer allowed and auction is closedcreatedAt
datetime with tz - date listing was createdstatus
active | closing | closed | canceled - some statuses to help with background tasksappId
int - the blockchain app (smart contract) IDactiveBidId
guid - optional field for the current top bidtransactionId
guid - foreign key to an algorand transaction for the app creation transactionCollectibleAuctionBid
id
guid - primary keycollectibleAuctionId
guid - foreign key to a listingamount
int - bid in microAlgosuserAccountId
guid - foreign key to a user account (represents the bidder)createdAt
datetime with tz - date bid was madetransactionId
guid - optional foreign key to an algorand transaction for the payment or app call transaction