Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: Adapter, defi.money #11330

Merged
merged 7 commits into from
Aug 17, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
51 changes: 51 additions & 0 deletions projects/defi-money/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
const { sumTokens2 } = require("../helper/unwrapLPs")

const config = {
optimism: {
controller: "0x1337F001E280420EcCe9E7B934Fa07D67fdb62CD",
MONEY: "0x7e803F4edd6528caFBf5C5d03Cc106b04379C24b",
stakeLPs: [
// "0x7e803F4edd6528caFBf5C5d03Cc106b04379C24b", // MONEY - already included in tvl
"0xE8f00491afa68B4A653C77e5f92DBA0F8df3a185", // crvUSD/MONEY
"0xa398a48C2738fd6c79F5654823Fb93456B0fDaF6", // USDT/MONEY
"0x36afCD1083eE9186A2b984E10d75C1E14b99B75e", // USDC/MONEY
"0xcf38a66DeD7825cfEF66046c256Aa0EDbd41BEf5", // DAI/MONEY
"0x73C3eC2b8e00929824a529e60fb6ed8aF193c7cc", // FRAX/MONEY
],
},
arbitrum: {
controller: "0x1337F001E280420EcCe9E7B934Fa07D67fdb62CD",
MONEY: "0xEbE54BEE7A397919C53850bA68E126b0A6b295ed",
stakeLPs: [
// "0xEbE54BEE7A397919C53850bA68E126b0A6b295ed", // MONEY - already included in tvl
"0xF2852d7e810d3EC7094bFE1D7DDCa5044c259c25", // crvUSD/MONEY
"0x6e59b326984fC132F16a977cd20E38641A9043De", // USDT/MONEY
"0xdE718A791226c93B53C77D60E5D4693C05a31422", // USDC/MONEY
"0xE3763d545707F435e21eeBbe75070495c806B744", // DAI/MONEY
"0x07aDF588508b923B8eA0389d27b61b9CB8a197Cb", // FRAX/MONEY
],
},
}

const tvl = async (api) => {
const { controller, } = config[api.chain]
const colls = await api.call({ target: controller, abi: 'address[]:get_all_collaterals' })
const amms = await api.multiCall({ abi: 'function get_amm(address) view returns (address)', calls: colls, target: controller })
return sumTokens2({ api, tokensAndOwners2: [colls, amms]})
}

const pool2 = async (api) => {
const { stakeLPs = [], } = config[api.chain]
const tokens = await api.multiCall({ abi: 'address:STAKE_TOKEN', calls: stakeLPs })
return sumTokens2({ api, tokensAndOwners2: [tokens, stakeLPs]})
}

module.exports = {
methodology: "TVL corresponds to the collateral deposited in the markets",
}

Object.keys(config).forEach((chain) => {
module.exports[chain] = {
tvl, pool2,
}
})
Loading