Files
Paxe de25b6add6 paxe project listing (#11296)
* paxe project listing

* paxe tvl adapters update

* Update index.js

---------

Co-authored-by: g1nt0ki <99907941+g1nt0ki@users.noreply.github.com>
2024-08-15 12:39:07 +02:00

14 lines
487 B
JavaScript

const { staking } = require("../helper/staking")
const PAXE_TOKEN = "0xd2A3eec06719D5Ac66248003B5488E02165dd2fa"
const PAXE_FARMING_CONTRACT = '0xbA576f5ecbA5182a20f010089107dFb00502241f'
const RESTAKING_POOL = '0x269e1ceb128ccCD5684BbAFF9906D69eD1e9e9C8'
module.exports = {
methodology: 'We count the TVL on the PAXE token in the farming contract and the restaking pool',
bsc: {
tvl: () => ({}),
staking: staking([RESTAKING_POOL, PAXE_FARMING_CONTRACT], PAXE_TOKEN)
}
}