Compare commits

..

2 Commits

Author SHA1 Message Date
57661ab6b1
fix typo during claim
Signed-off-by: Uncle Fatso <uncle.fatso@ghostchain.io>
2026-03-22 20:39:22 +03:00
c66b4d182b
fix warmupInfo read function based on the actual StakingAbi
Signed-off-by: Uncle Fatso <uncle.fatso@ghostchain.io>
2026-03-22 20:36:11 +03:00
3 changed files with 7 additions and 7 deletions

View File

@ -1,7 +1,7 @@
{
"name": "ghost-dao-interface",
"private": true,
"version": "0.6.5",
"version": "0.6.7",
"type": "module",
"scripts": {
"dev": "vite",

View File

@ -75,7 +75,7 @@ export const ClaimsArea = ({ chainId, address, epoch }) => {
const setIsPayoutGhstInner = (value) => {
setIsPayoutGhst(value);
localStorage.setitem("bond-isGhstPayout", value);
localStorage.setItem("bond-isGhstPayout", value);
}
const warmupTooltip = `Your claim earns rebases during warmup. You can emergency withdraw, but this forfeits the rebases`;

View File

@ -69,16 +69,16 @@ export const useWarmupInfo = (chainId, address) => {
const { data: info, refetch } = useReadContract({
abi: StakingAbi,
address: STAKING_ADDRESSES[chainId],
functionName: "getWarmupInfo",
functionName: "warmupInfo",
args: [address],
scopeKey: `getWarmupInfo-${address}-${chainId}`,
scopeKey: `warmupInfo-${address}-${chainId}`,
chainId: chainId,
});
const warmupInfo = {
deposit: info ? new DecimalBigNumber(info.deposit, 9) : new DecimalBigNumber(0n, 9),
shares: info ? info.shares : 0n,
expiry: info ? Number(info.expiry) : 0,
deposit: info ? new DecimalBigNumber(info.at(0), 9) : new DecimalBigNumber(0n, 9),
shares: info ? info.at(1) : 0n,
expiry: info ? Number(info.at(2)) : 0,
}
return { warmupInfo, refetch }