import { ethers } from "ethers"; export const safeTransferFrom = async ( reliquaryContract: ethers.Contract, from: string, to: string, tokenId: number ) => { const tx = await reliquaryContract[ "safeTransferFrom(address,address,uint256)" ](from, to, tokenId); await tx.wait(); return tx; };