From 9ecd07869304b443bf58050f77caacfb440bd12f Mon Sep 17 00:00:00 2001 From: tedison Date: Tue, 10 Dec 2024 22:58:55 -0500 Subject: [PATCH] fix hyperstructure shares --- client/src/dojo/modelManager/LeaderboardManager.ts | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/client/src/dojo/modelManager/LeaderboardManager.ts b/client/src/dojo/modelManager/LeaderboardManager.ts index 568a2e734..c7d60ad92 100644 --- a/client/src/dojo/modelManager/LeaderboardManager.ts +++ b/client/src/dojo/modelManager/LeaderboardManager.ts @@ -9,7 +9,7 @@ import { TickIds, WORLD_CONFIG_ID, } from "@bibliothecadao/eternum"; -import { Entity, getComponentValue, HasValue, runQuery } from "@dojoengine/recs"; +import { Entity, HasValue, getComponentValue, runQuery } from "@dojoengine/recs"; import { getEntityIdFromKeys } from "@dojoengine/utils"; import { configManager } from "../setup"; import { ClientConfigManager } from "./ConfigManager"; @@ -33,15 +33,16 @@ export class LeaderboardManager { ); if (!hyperstructure) return; + const epochIndex = hyperstructure.current_epoch - 1 >= 0 ? hyperstructure.current_epoch - 1 : 0; const currentEpoch = getComponentValue( this.dojoResult.setup.components.Epoch, - getEntityIdFromKeys([BigInt(hyperstructureEntityId), BigInt(hyperstructure.current_epoch)]), + getEntityIdFromKeys([BigInt(hyperstructureEntityId), BigInt(epochIndex)]), ); if (!currentEpoch) return; const coOwners = (currentEpoch.owners as any).map((owner: any) => { let [owner_address, percentage] = owner.value.map((value: any) => value.value); - return { address: owner_address, percentage: Number(percentage) / 10_000 }; + return { address: ContractAddress(owner_address), percentage: Number(percentage) }; }); return { coOwners, timestamp: Number(currentEpoch.start_timestamp) };