mirror of
https://github.com/alexgo-io/DefiLlama-Adapters.git
synced 2026-04-29 13:25:30 +08:00
* Fetch and Calculate TVL Fetch and Calculate TVL in USD for Liquidity and NFT Farm for Tangent Protocol * Update calculation Update calculation Add new API for fetching tvl * change staking wallet to new one
9 lines
269 B
JavaScript
9 lines
269 B
JavaScript
const { sumTokensExport } = require('../helper/chain/cardano')
|
|
|
|
module.exports = {
|
|
cardano: {
|
|
tvl: () => 0,
|
|
staking: sumTokensExport({ owner: 'addr1qyglpmc5gq5gdgd5fznfwlwjdn3xkgyjkdpt6mdjkq8knaqpta0u8t4h8ljhzygdg9lsx2rg92darh9gny4wh0w4s9zsntv7aw'}),
|
|
},
|
|
};
|