fix warmupInfo read function based on the actual StakingAbi
Signed-off-by: Uncle Fatso <uncle.fatso@ghostchain.io>
This commit is contained in:
parent
8d23d55ae2
commit
c66b4d182b
@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "ghost-dao-interface",
|
"name": "ghost-dao-interface",
|
||||||
"private": true,
|
"private": true,
|
||||||
"version": "0.6.5",
|
"version": "0.6.6",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"dev": "vite",
|
"dev": "vite",
|
||||||
|
|||||||
@ -69,16 +69,16 @@ export const useWarmupInfo = (chainId, address) => {
|
|||||||
const { data: info, refetch } = useReadContract({
|
const { data: info, refetch } = useReadContract({
|
||||||
abi: StakingAbi,
|
abi: StakingAbi,
|
||||||
address: STAKING_ADDRESSES[chainId],
|
address: STAKING_ADDRESSES[chainId],
|
||||||
functionName: "getWarmupInfo",
|
functionName: "warmupInfo",
|
||||||
args: [address],
|
args: [address],
|
||||||
scopeKey: `getWarmupInfo-${address}-${chainId}`,
|
scopeKey: `warmupInfo-${address}-${chainId}`,
|
||||||
chainId: chainId,
|
chainId: chainId,
|
||||||
});
|
});
|
||||||
|
|
||||||
const warmupInfo = {
|
const warmupInfo = {
|
||||||
deposit: info ? new DecimalBigNumber(info.deposit, 9) : new DecimalBigNumber(0n, 9),
|
deposit: info ? new DecimalBigNumber(info.at(0), 9) : new DecimalBigNumber(0n, 9),
|
||||||
shares: info ? info.shares : 0n,
|
shares: info ? info.at(1) : 0n,
|
||||||
expiry: info ? Number(info.expiry) : 0,
|
expiry: info ? Number(info.at(2)) : 0,
|
||||||
}
|
}
|
||||||
|
|
||||||
return { warmupInfo, refetch }
|
return { warmupInfo, refetch }
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user