import { ethers } from "ethers"; export const harvest = async ( reliquaryContract: ethers.Contract, relicId: number ) => { const tx = await reliquaryContract.harvest(relicId); await tx.wait(); return tx; };