Bidding Contract
Functions
getBid
Get the bid from a bidder for a specific slot and round.
function getBid(uint256 slot) external view returns (uint256[] memory packedBids);
Parameters
| Name | Type | Description |
|---|---|---|
slot | uint256 | The auction slot. |
Returns
| Name | Type | Description |
|---|---|---|
packedBids | uint256[] | Array of bids (in a packed format). uint256(uint128(bidPrice),uint120(itemsToBuy),uint8(biderId)) |