import { BigNumber, ethers } from "ethers"; export const createRelicAndDeposit = async ( reliquaryContract: ethers.Contract, toAddress: string, pid: number, amount: BigNumber ) => { const tx = await reliquaryContract.createRelicAndDeposit( toAddress, pid, amount ); await tx.wait(); };