Skip to content

Commit

Permalink
Feat: Add Ethos-Network
Browse files Browse the repository at this point in the history
  • Loading branch information
0xpeluche committed Jan 23, 2025
1 parent 592853b commit 1adcea8
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions projects/ethos-network/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
const ADDRESSES = require('../helper/coreAssets.json')

const VOUCH_CONTRACT = '0xD89E6B7687f862dd6D24B3B2D4D0dec6A89A6fdd';
const NATIVE_ETH = ADDRESSES.null;

async function tvl(api) {
return api.sumTokens({ owner: VOUCH_CONTRACT, tokens: [NATIVE_ETH] });
}

module.exports = {
methodology: 'Measures the total amount of ETH stored in the Vouch contract. Each vouch represents a trust relationship backed by ETH.',
base: { tvl },
start: '2025-01-21',
};

0 comments on commit 1adcea8

Please sign in to comment.