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

Lobster Protocol Adapter #11349

Merged
merged 6 commits into from
Aug 20, 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
30 changes: 30 additions & 0 deletions projects/lobster-protocol/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
const DHEDGE_FACTORY_ABI = "function getManagedPools(address manager) view returns (address[] managedPools)";
const LOBSTER_POOL_ABI = "function getFundSummary() view returns (tuple(string name, uint256 totalSupply, uint256 totalFundValue))";

const CONFIG_DATA = {
arbitrum: {
dhedgeFactory: "0xffFb5fB14606EB3a548C113026355020dDF27535",
lobsterManager: "0x6EBb1B5Be9bc93858f71714eD03f67BF237473cB",
}
}

async function tvl(api) {
const { dhedgeFactory, lobsterManager } = CONFIG_DATA[api.chain];

const pools = await api.call({ abi: DHEDGE_FACTORY_ABI, target: dhedgeFactory, params: lobsterManager, });
const poolSummaries = await api.multiCall({ abi: LOBSTER_POOL_ABI, calls: pools, })
api.addCGToken('tether', poolSummaries.reduce((acc, p) => acc + +p.totalFundValue/1e18, 0))
}

module.exports = {
misrepresentedTokens: true,
start: 1704067199, // Sunday 31 December 2023 23:59:59
methodology:
"Aggregates total value of Lobster protocol vaults on Arbitrum",
arbitrum: {
tvl,
},
hallmarks: [
[1710971510, "First Arbitrum Vault Release"],
],
}
Loading