mirror of
https://github.com/alexgo-io/DefiLlama-Adapters.git
synced 2026-01-12 16:53:02 +08:00
13 lines
352 B
JavaScript
13 lines
352 B
JavaScript
const { stakings } = require('../helper/staking')
|
|
|
|
const {
|
|
cryptexConfig,
|
|
} = require('./cryptex-config');
|
|
|
|
module.exports = {
|
|
methodology: "TVL includes locked LP tokens and vested team tokens",
|
|
bsc: {
|
|
tvl: ()=>({}),
|
|
staking: stakings([cryptexConfig.staking.V1, cryptexConfig.staking.V2, ], cryptexConfig.crxToken)
|
|
}
|
|
}; |