Home > @3rdweb/sdk > IMarketplace > makeAuctionListingBid
Make an offer on an auction. The offer must be at least current bid * bid buffer %)
in order to be accepted.
Bid buffer is configured on the Marketplace contract.
Note: If you make a bid above the buyout price, you will automatically be awarded the the listing and the sale will be executed.
// TODO: come back to currencyContractAddress
Signature:
makeAuctionListingBid(bid: {
listingId: BigNumberish;
pricePerToken: BigNumberish;
}): Promise<void>;
Parameter | Type | Description |
---|---|---|
bid | { listingId: BigNumberish; pricePerToken: BigNumberish; } |
Returns:
Promise<void>