import { ethers } from "ethers"; export const setEmissionSetter = async ( reliquaryContract: ethers.Contract, emissionSetterAddress: string ) => { try { const tx = await reliquaryContract.setEmissionSetter(emissionSetterAddress); await tx.wait(); } catch (error) { return error; } };