From 4dd52e207ea8d1dc58984f737871b6865a1d6543 Mon Sep 17 00:00:00 2001 From: Bob <> Date: Wed, 2 Oct 2024 11:41:50 -0400 Subject: [PATCH] Fix reference from ustake to utoken to fix accounting --- projects/silostake/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/projects/silostake/index.js b/projects/silostake/index.js index 101c07d4d95..0a54e7cfa7e 100644 --- a/projects/silostake/index.js +++ b/projects/silostake/index.js @@ -36,7 +36,7 @@ Object.keys(config).forEach(chain => { // Logic for calculating TVL - just get total ustake. let state = await getState(chain, hub); - let total_ustake = state['total_ustake']; + let total_ustake = state['total_utoken']; api.add(coinGeckoId, total_ustake / 10 ** 6, { skipChain: true });