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 f5ef323 commit d2ebaedCopy full SHA for d2ebaed
projects/originarm/index.js
@@ -0,0 +1,12 @@
1
+const ADDRESSES = require('../helper/coreAssets.json')
2
+
3
+module.exports = {
4
+ ethereum: {
5
+ tvl: async (api) => {
6
+ const originLidoArm = "0x85b78aca6deae198fbf201c82daf6ca21942acc6";
7
+ const outstandingSteth = await api.call({abi: 'uint256:lidoWithdrawalQueueAmount', target: originLidoArm })
8
+ api.add(ADDRESSES.ethereum.STETH, outstandingSteth)
9
+ return api.sumTokens({ owner: originLidoArm, tokens: [ADDRESSES.ethereum.WETH, ADDRESSES.ethereum.STETH] })
10
+ },
11
12
+};
0 commit comments