Skip to content

Commit

Permalink
Feat: Add staking TVL calculation for ParagonsDAO (#13083)
Browse files Browse the repository at this point in the history
  • Loading branch information
0xTea authored Jan 14, 2025
1 parent 53a3fcb commit 8434264
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions projects/paragons-dao/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
const sdk = require('@defillama/sdk');
const { staking } = require('../helper/staking');

const stakingContract = '0x51e025cb3ee0b99a84f7fb80994198281e29aa3e';
const stakedToken = '0xeff2A458E464b07088bDB441C21A42AB4b61e07E';

module.exports = {
methodology: 'TVL of ParagonsDAO corresponds to the staking of PDT tokens in the staking contract.',
start: 18751707, // Update with the block or timestamp when staking started
base: {
tvl: async () => ({}), // leave protocol TVL as empty
staking: staking(stakingContract, stakedToken),
},
};

0 comments on commit 8434264

Please sign in to comment.