NFTBalance

interface NFTBalance {
	id: string;
	/** Balance of this NFT. Can be > 1 if ERC1155 */
	balance: number;
	/** Cost object. Cost of this NFT, inclusive of gas fees at the time of minting or swapping */
	cost: NFTCostSerializer;
	/** Best Floor (Ask) of this NFT. Sourced from OpenSea and LooksRare */
	floor: NFTBalanceFloor;
	/** NFT object */
	nft: NFT;
	wallet: string;
	tx: string;
}