Directly buy an auctioned NFT

Prerequisites

Before getting started, make sure you have the following ready:

  1. Create a Ternoa account with Alphanet CAPS

  2. Install and set up your editor of choice (we will use Visual Studio Code [VSC] in this tutorial)

  3. Install NodeJS v.14+ & NPM

Buy directly an auctioned NFT using Ternoa-JS

This function buys an auctioned NFT before the auction has started on the Ternoa chain. It returns an object promise containing the AuctionCompletedEvent provided by the Ternoa blockchain.

Use your own account by updating the //TernoaTestAccount with your account seed when retrieving the keyring from the example below. Replace the NFT_ID with the existing one to buy. Note: BuyItNow is optional when creating the auction. If no amount is provided at auction creation, it's not possible to run this transaction.

import {
    buyItNow,
    initializeApi,
    getKeyringFromSeed,
    WaitUntil,
} from "ternoa-js";

const auctionBid = async () => {
    try {
        await initializeApi();
        const keyring = await getKeyringFromSeed("//TernoaTestAccount");
        const NFT_ID = // update with the nft id you want to buy.
        const res = await buyItNow(
            NFT_ID,
            keyring,
            WaitUntil.BlockInclusion
        );
        console.log(`BuyItNow_Auction: NFT id ${res.nftId} bought for ${res.amountRounded}CAPS`);
    } catch (e) {
        console.error(e);
    }
};

The expected params

Response

The response provided from the blockchain event includes all the information below according to the parameters provided when buying the auctioned NFT.

Support

If you face any trouble, feel free to reach out to our community engineers in our Discord.

Last updated