mirror of
https://github.com/alexgo-io/DefiLlama-Adapters.git
synced 2026-01-12 16:53:02 +08:00
14 lines
396 B
JavaScript
14 lines
396 B
JavaScript
const { staking } = require("../helper/staking");
|
|
|
|
const STAKING_CONTRACT = "0xFbb61c8C8aA305F3ced88cA7D6E7859126Dc3B83";
|
|
const FAET_TOKEN = "0xdF92bA28D17329a7284A5eC230967768D4cb7A89";
|
|
|
|
module.exports = {
|
|
methodology: "TVL includes FAET tokens staked in the FaetStaking contract.",
|
|
start: 17400000,
|
|
lisk: {
|
|
tvl: () => ({}),
|
|
staking: staking(STAKING_CONTRACT, FAET_TOKEN),
|
|
},
|
|
};
|