$(document).ready(() => {
const id = '989'; // default NFT ID
$.getJSON(`/nft/${id}`, (nftData) => {
const { image_path, nft_info } = nftData;
$('#nft-info').html(`
NFT Information
- ID: ${nft_info.id}
- Collection: ${nft_info.collection}
- Name: ${nft_info.name}
- Description: ${nft_info.description}
- Total NFTs: ${nft_info.total_nfts}
- On Sale: ${nft_info.on_sale}
- Last Sale Value: ${nft_info.last_sale_value}
- Number of Bids: ${nft_info.num_bids}
- Rank: ${nft_info.rank}
`);
});
});