We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5ea290e commit 8e272d7Copy full SHA for 8e272d7
projects/rosswap/index.js
@@ -12,7 +12,7 @@ async function tvl(api) {
12
const getReservesABI = 'function getReserves() view returns (uint112 _reserve0, uint112 _reserve1, uint32 _blockTimestampLast)'
13
14
const pairs = logs.map(log => log.pair)
15
- const res = await api.multiCall({ abi: getReservesABI, calls: pairs, permitFailure: true })
+ const res = await api.multiCall({ abi: getReservesABI, calls: pairs, })
16
const data = []
17
res.forEach((r, i) => {
18
if (!r) return;
0 commit comments