Skip to content

Commit f92e36b

Browse files
Updated Mutuari Pool address. (DefiLlama#12836)
1 parent b49fcf1 commit f92e36b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

projects/mutuari/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
const { sumTokens2 } = require("../helper/unwrapLPs")
22

33
async function tvl(api) {
4-
const pool = await api.call({ target: '0x831fc32221924f8a6d47251327ef67ebcc5cd6dc', abi: "address:mutuariPool" })
4+
const pool = await api.call({ target: '0x72b674D0546fda0C9B5205178740c98398456EaE', abi: "address:mutuariPool" })
55
const tokens = await api.call({ target: pool, abi: "address[]:getReserves" })
66
return sumTokens2({ api, owner: pool, tokens,})
77
}
88
async function borrowed(api) {
9-
const [_, borrowed] = await api.call({ target: '0x831fc32221924f8a6d47251327ef67ebcc5cd6dc', abi: "function getGeneralInfo() view returns (uint256 totalSupplied, uint256 totalBorrowed)" })
9+
const [_, borrowed] = await api.call({ target: '0x72b674D0546fda0C9B5205178740c98398456EaE', abi: "function getGeneralInfo() view returns (uint256 totalSupplied, uint256 totalBorrowed)" })
1010
api.addGasToken(borrowed)
1111
return sumTokens2({ api })
1212
}

0 commit comments

Comments
 (0)