From 56b8a05689e800666f88bbe5c547af85b710596d Mon Sep 17 00:00:00 2001 From: Paxe Date: Thu, 15 Aug 2024 13:39:07 +0300 Subject: [PATCH] paxe project listing (#11296) * paxe project listing * paxe tvl adapters update * Update index.js --------- Co-authored-by: g1nt0ki <99907941+g1nt0ki@users.noreply.github.com> --- projects/paxe/index.js | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 projects/paxe/index.js diff --git a/projects/paxe/index.js b/projects/paxe/index.js new file mode 100644 index 000000000000..eb070c98bc78 --- /dev/null +++ b/projects/paxe/index.js @@ -0,0 +1,13 @@ +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) + } +}