Cancel or end an auction
Prerequisites
Before getting started, make sure you have the following ready:
Create a Ternoa account with Alphanet CAPS
Install and set up your editor of choice (we will use Visual Studio Code [VSC] in this tutorial)
Install NodeJS v.14+ & NPM
Cancel an auction on a marketplace using Ternoa-JS
This function cancels an auctioned NFT from a marketplace on the Ternoa chain. It returns an object promise containing the AuctionCancelledEvent provided by the Ternoa blockchain.
import {
cancelAuction,
initializeApi,
getKeyringFromSeed,
WaitUntil,
} from "ternoa-js";
const cancelAuctionNFT = async () => {
try {
await initializeApi();
const keyring = await getKeyringFromSeed("//TernoaTestAccount");
const NFT_ID = // update with the auctioned nft id you want to cancel.
const res = await cancelAuction(
NFT_ID,
keyring,
WaitUntil.BlockInclusion
);
console.log(`Auction cancelled for NFT id: ${res.nftId}`);
} 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 canceling an auction.
End an auction on a marketplace using Ternoa-JS
This function ends an auctioned NFT from a marketplace on the Ternoa chain. It returns an object promise containing the AuctionCompletedEvent provided by the Ternoa blockchain.
The expected params
Response
The response provided from the blockchain event includes all the information below according to the parameters provided when ending an auction.
Support
If you face any trouble, feel free to reach out to our community engineers in our Discord.
Last updated