mirror of
https://github.com/alexgo-io/DefiLlama-Adapters.git
synced 2026-01-12 16:53:02 +08:00
12 lines
419 B
JavaScript
12 lines
419 B
JavaScript
const { staking } = require('../helper/staking')
|
|
|
|
const EARNING_CONTRACT = '0x7016db90c1f8b87ea4d18b7e53fb7c42999bc995';
|
|
const TURTLE_TOKEN = '0x8C9E2bEf2962CE302ef578113eebEc62920B7e57';
|
|
|
|
module.exports = {
|
|
methodology: 'Staking includes tokens locked in staking contract. TVL is empty.',
|
|
cronos: {
|
|
tvl: () => ({}), // No base TVL since only staking
|
|
staking: staking(EARNING_CONTRACT, TURTLE_TOKEN),
|
|
}
|
|
}; |