import { ethers } from "ethers"; export const getEmissionSetter = async (reliquaryContract: ethers.Contract) => { try { const emissionSetter = await reliquaryContract.emissionSetter(); return emissionSetter.toString(); } catch (error) { return error; } };