Auction
Verified contract
Active on
Ethereum with 9,047 txns
Slot
XX
32
30
28
26
24
22
20
18
16
14
12
10
8
6
4
2
0
Balances ($465,843.92)
Native
Value
$465,843.92
Asset | Symbol | Type | Quantity | Price | Value |
---|---|---|---|---|---|
ETH | Native | 134.15 | $3,472.56 |
$465,843.92 |
Transactions
Txn hash | Method | Block | Age | From | To | Value (ETH) | Fee (ETH) |
---|---|---|---|---|---|---|---|
| 16680345 | 2 years ago | | | 0 | 0.0021274750 | |
| 16572121 | 2 years ago | | | 0 | 0.0026517498 | |
| 16572108 | 2 years ago | | | 0 | 0.0026940535 | |
| 16020960 | 2 years ago | | | 0 | 0.00083031299 | |
| 15530633 | 2 years ago | | | 0 | 0.00093220501 | |
| 15526025 | 2 years ago | | | 0 | 0.00097761583 | |
| 15491586 | 2 years ago | | | 0 | 0.0014688400 | |
| 15484459 | 2 years ago | | | 0 | 0.0011516921 | |
| 15483435 | 2 years ago | | | 0 | 0.00048965372 | |
| 15478611 | 2 years ago | | | 0 | 0.0017599276 |
ABI
ABI objects
Getter at block 21267270
AUCTION_END_THRESHOLD_HRS() view returns (uint256)
2
AUCTION_LENGTH_IN_HOURS() view returns (uint256)
24
MAXIMUM_QUANTITY() view returns (uint256)
50
MINIMUM_QUANTITY() view returns (uint256)
1
TIME_ENDING_P() view returns (uint256)
200
WINDOW_WIDTH_SECONDS() view returns (uint256)
60
auctionStart() view returns (uint256)
1660064399
auctionStatus() view returns (struct AuctionAuctionStatus)
(true, true)
beneficiaryAddress() view returns (address)
0x0b4e6f5c38a5e0fa2ea528bac2055e7304f82fef
itemsPerAuction() view returns (uint256)
7870
lastRequestedRandomness() view returns (uint256)
1660150780
maximumUnitPrice() view returns (uint256)
2000000000000000000
minimumBidIncrement() view returns (uint256)
50000000000000000
minimumUnitPrice() view returns (uint256)
250000000000000000
numberOfAuctions() view returns (uint256)
1
numberOfBidsPlaced() view returns (uint256)
5759
owner() view returns (address)
0xbf9f7e7046b7a90a759cdc06ced11be634aada56
paused() view returns (bool)
false
quantityAtMaxPrice() view returns (uint256)
78
randomEndStarted() view returns (bool randomEndStarted_)
true
refundMerkleRoot() view returns (bytes32)
0x580d90a13c95a59d927e9816ff636ac1b0d62f7a54616397b3e9d9c29999bf03
unitPriceStepSize() view returns (uint256)
50000000000000000
vrfCallbackGasLimit() view returns (uint32)
150000
vrfCoordinator() view returns (address)
0x271682deb8c4e0901d1a1550ad2e64d568e69909
vrfKeyHash() view returns (bytes32)
0x8af398995b04c28e9951adb9721ef74c74f93e6a478f39e7e0777be13527e7ef
vrfNumWords() view returns (uint32)
1
vrfRequestConfirmations() view returns (uint16)
3
vrfSubscriptionId() view returns (uint64)
277
Read-only
getBid(uint256 auctionIndex_, address bidder_) view returns (struct AuctionBid)
State-modifying
Events claimRefund(uint256 refundAmount_, bytes32[] proof_)
endAuction()
pause()
placeBid(uint256 auctionIndex_, uint256 quantity_, uint256 unitPrice_) payable
rawFulfillRandomWords(uint256 requestId, uint256[] randomWords)
renounceOwnership()
setRefundMerkleRoot(bytes32 refundMerkleRoot_)
setVRFCallbackGasLimit(uint32 vrfCallbackGasLimit_)
setVRFCoordinator(address vrfCoordinator_)
setVRFKeyHash(bytes32 vrfKeyHash_)
setVRFNumWords(uint32 vrfNumWords_)
setVRFRequestConfirmations(uint16 vrfRequestConfirmations_)
setVRFSubscriptionId(uint64 vrfSubscriptionId_)
startAuction()
transferERC20Token(address token, uint256 amount)
transferOwnership(address newOwner)
unpause()
withdrawContractBalance()
withdrawETH(uint256 amount_)
AuctionEnded()
AuctionStarted()
BidPlaced(bytes32 indexed bidHash, uint256 indexed auctionIndex, address indexed bidder, uint256 bidIndex, uint256 unitPrice, uint256 quantity, uint256 balance)
OwnershipTransferred(address indexed previousOwner, address indexed newOwner)
Paused(address account)
RandomEnd(string endType, uint256 endingProbability, uint256 randomNumber, string result)
RandomNumberReceived(uint256 indexed requestId, uint256 randomNumber)
RefundIssued(address indexed refundRecipient, uint256 refundAmount)
Unpaused(address account)
constructor(address beneficiaryAddress_, uint256 minimumUnitPrice_, uint256 minimumBidIncrement_, uint256 unitPriceStepSize_, uint256 numberOfAuctions_, uint256 itemsPerAuction_, uint256 maximumUnitPrice_, address vrfCoordinator_, bytes32 vrfKeyHash_)
receive()
OnlyCoordinatorCanFulfill(address have, address want)