/** * Simple NFT asset spec */exportinterfaceAsset {// Information about the collection to which this asset belongs collection:collectionSchema,// Name of this asset name:string,// The asset's token ID token_id:string,// The asset's contract address token_address:string,// Address of the user who owns this asset owner:string,// Description of this asset description?:string,...}