typescript-sdk

Home > @3rdweb/sdk > IMarketplace > makeAuctionListingBid

IMarketplace.makeAuctionListingBid() method

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>;

Parameters

Parameter Type Description
bid { listingId: BigNumberish; pricePerToken: BigNumberish; }  

Returns:

Promise<void>