import { ethers } from "ethers"; export const getTotalSupply = async (reliquaryContract: ethers.Contract) => { try { const supply = await reliquaryContract.totalSupply(); return supply.toNumber(); } catch (error) { return error; } };