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