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