import { ethers } from "ethers"; export const getBalanceOf = async ( reliquaryContract: ethers.Contract, ownerAddress: string ) => { const balanceOf = await reliquaryContract.balanceOf(ownerAddress); return balanceOf.toNumber(); };