Type Alias NFTDetail

NFTDetail: NFT & {
    transfer_history?: {
        block_height: number;
        from: Address;
        timestamp: Timestamp;
        to: Address;
        transaction_hash: HashHex;
    }[];
}

NFT detail including optional transfer history.