Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
@rarible/auction
Advanced tools
Auction House implements English auction with fixed step
For now there are two AuctionHouse contracts, the main difference between them is the type of sell asset:
AuctionHouse721
AuctionHouse1155
There are two parameters of AuctionHouse that are the same for all autions and can be changed by AuctionHouse owner:
minimalDuration
minimalStepBasePoint
ERC721 Auction supports party bid
Auction time frame is decided by 2 parameters
duration
minimalDuration
(default value is 15 days) and 1000 days
(constant)startTime
So there are two cases of how the auction time frame can work:
startTime
is 0, then then the auction starts at the first bid that satisfies minimalPrice
. Then the endTime
is calculated at the moment of the first bid as well (now
+ duration
)startTime
is set, then the endTime
is calculated at the creation of an auction (startTime
+ duration
)If a new bid is put when auction has less than minimalDuration
left till endTime
, then endTime
= now
+ minimalDuration
Auction
(ERC721):Bid
data
fieldAuction
(ERC1155, the main difference from struct Auction ERC721 is the additional field uint96 sellTokenValue):Bid
data
fieldbid
amountdata
fieldAuctionCreated(uint indexed auctionId, address seller, uint128 endTime)
BidPlaced(uint indexed auctionId, address seller, uint128 endTime)
AuctionFinished(_auctionId)
AuctionBuyOut(uint indexed auctionId, address buyer)
AuctionFinished(_auctionId)
AuctionCancelled(uint indexed auctionId)
AuctionFinished(_auctionId)
FAQs
Auction House implements English auction with fixed step
We found that @rarible/auction demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.