From c1062a709a1e0bb82640016c8c476428c2469589 Mon Sep 17 00:00:00 2001 From: ItsMeTazz <104685150+ItsMeTazz@users.noreply.github.com> Date: Thu, 29 Feb 2024 08:58:34 -0700 Subject: [PATCH] Update to Newthrone: switching from WETH to THRO (#9093) * Adding NewThrone * minor fix * minor fix * Update index.js * Update index.js * Update index.js * Update index.js --------- Co-authored-by: llama Co-authored-by: g1nt0ki <99907941+g1nt0ki@users.noreply.github.com> --- projects/newthrone/index.js | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) 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 +}