Skip to content

Commit

Permalink
fix build, lint
Browse files Browse the repository at this point in the history
  • Loading branch information
fadeev committed Jul 14, 2024
1 parent 6cb769d commit a29aa7e
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions packages/client/src/getBalances.ts
Original file line number Diff line number Diff line change
Expand Up @@ -138,11 +138,10 @@ export const getBalances = async function (
multicallContexts[token.chain_name] = [];
}
multicallContexts[token.chain_name].push({
target: token.contract,
callData: new ethers.utils.Interface(
target: token.contract,
token.coin_type === "ERC20" ? ERC20_ABI.abi : ZRC20.abi
).encodeFunctionData("balanceOf", [evmAddress]),
target: token.contract,
});
}
});
Expand Down

0 comments on commit a29aa7e

Please sign in to comment.