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