NFT bundle includes NFT with stack, markets and listings

NFTBundle

interface NFTBundle {
    nft_with_stack: NFTWithStack;
    market: null | Market;
    listings: blockchainData.Types.Listing[];
    bids: blockchainData.Types.Bid[];
}

Properties

nft_with_stack: NFTWithStack

NFTBundle

market: null | Market

NFTBundle

List of open listings for the NFT.

NFTBundle

List of open bids for the NFT.

NFTBundle