Update getPairsInfo.js

This commit is contained in:
Daniel
2022-11-05 11:44:36 +01:00
parent 9f4b695ff2
commit 8928bd0576

View File

@@ -6,6 +6,8 @@ export async function getPairsInfo(pairAddresses, web3) {
const tokenABI = abis.erc20.abi;
for (let i = 0; i < pairAddresses.length; ++i) {
const pairAddress = pairAddresses[i];
const pair = new web3.eth.Contract(pairABI, pairAddresses[i]);
}