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