import { ethers } from "ethers"; export const getApproved = async ( reliquaryContract: ethers.Contract, tokenId: number ) => { const approvedAddress = await reliquaryContract.getApproved(tokenId); return approvedAddress.toString(); };