diff --git a/projects/newthrone/index.js b/projects/newthrone/index.js index 0e5f03ddd64..5953033fd37 100644 --- a/projects/newthrone/index.js +++ b/projects/newthrone/index.js @@ -1,11 +1,11 @@ -const { sumTokensExport } = require("../helper/unwrapLPs"); -const ADDRESSES= require("../helper/coreAssets.json"); +const { sumTokensExport } = require("../helper/unknownTokens"); const GAME_CONTRACT = '0x61C3A357bc3ca51b80eCD36CB1Ae37e5465C6701' module.exports = { - methodology: 'WETH tokens in the Game contract, which represents the current balance of the game (total spent - total claimed).', + methodology: 'THRO tokens in the Game contract, which represents the current balance of the game (total spent - total claimed).', base: { - tvl: sumTokensExport({ owner: GAME_CONTRACT, tokens: [ADDRESSES.base.WETH]}), + tvl: () => ({}), + staking: sumTokensExport({ owner: GAME_CONTRACT, tokens: ['0x0f929C29dcE303F96b1d4104505F2e60eE795caC'], lps: ['0x3267afBDFA739D4039D03172A4a80e4bb91370b6'], useDefaultCoreAssets: true,}), } -}; \ No newline at end of file +}