import { ethers } from "ethers"; //This will return a string. May need to handle the promise in a different way in order to return an actual bool instead of string export const getLpToken = async ( reliquaryContract: ethers.Contract, input: number ) => { try { const lpAddress = await reliquaryContract.lpToken(input); return lpAddress.toString(); } catch (error) { return error; } };