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