const hallidayClient = new HallidayCheckout({
hallidayPublicApiKey: "A5A778C5-74E5-4D4E-AB30-08C6DC902999",
blockchainType: BlockchainType.ETHEREUM
});
// Prepare the data for the NFT the user would like to purchase.
const COLLECTION_ID = "0x6d5cE987C9B4B1838d31C4A438D608260EB7b977";
const TOKEN_ID = "1817";
const DESTINATION_ADDRESS = "0x0201173149462A0BBBCd273243Ab03a202945078";
// Get a price breakdown from Halliday to display to the player.
const priceBreakdown = await hallidayClient.getPriceBreakdown({
collectionId: COLLECTION_ID,
tokenId: TOKEN_ID,
});
// Opens up a new window where we take care of the rest.
hallidayClient.openCheckoutWindow({
collectionId: COLLECTION_ID,
tokenId: TOKEN_ID,
destinationAddress: DESTINATION_ADDRESS,
});