Skip to content

Commit

Permalink
feat: add flow tvl (#11695)
Browse files Browse the repository at this point in the history
  • Loading branch information
ittikorns authored Sep 20, 2024
1 parent fd7a7b7 commit f1ca637
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions projects/ankr/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,12 @@ async function getAvaxTvl() {
}
}

async function getFlowTvl() {
return {
'flow': await getTvls("flowevm", "totalStaked"),
}
}

async function polkadot() {
return {
polkadot: await getTvls("dot", "totalStaked"),
Expand Down Expand Up @@ -91,6 +97,9 @@ module.exports = {
fantom: {
tvl: getFantomTvl,
},
flow: {
tvl: getFlowTvl,
},
polkadot: {
tvl: polkadot,
},
Expand Down

0 comments on commit f1ca637

Please sign in to comment.