import'dotenv/config';import { DataService } from'@kanalabs/mirai';(async () => {// Define the accountAddress and chainIdconstaccountAddress='';constchainId=80001;constdataApiKey=process.env.DATASERVICE_API_KEY||''asstring;// initializating DataService...constdataService=newDataService();// Retrieve nfts list using the specified accountAddress and chainId with your api keyconstresponse=awaitdataService.getNftsList(accountAddress, chainId, dataApiKey);// Log the nfts list responseconsole.log('response', response);})()