representation of onchain data fixes

Signed-off-by: Uncle Fatso <uncle.fatso@ghostchain.io>
This commit is contained in:
Uncle Fatso 2025-11-12 19:04:48 +03:00
parent b44b6f0c14
commit 772041d5ed
Signed by: f4ts0
GPG Key ID: 565F4F2860226EBB
2 changed files with 27 additions and 25 deletions

View File

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

View File

@ -272,12 +272,8 @@ const Bridge = ({ chainId, address, config, connect }) => {
} else { } else {
setIsPending(true); setIsPending(true);
try {
const txHash = await ghost(chainId, address, convertedReceiver, preparedAmount); const txHash = await ghost(chainId, address, convertedReceiver, preparedAmount);
await ghstBalanceRefetch();
setReceiver("");
setAmount("");
setIsPending(false);
const transaction = { const transaction = {
sessionIndex: currentSession ?? 0, sessionIndex: currentSession ?? 0,
@ -296,6 +292,12 @@ const Bridge = ({ chainId, address, config, connect }) => {
if (providerDetail) { if (providerDetail) {
setActiveTxIndex(newStoredTransactions.length - 1) setActiveTxIndex(newStoredTransactions.length - 1)
} }
} finally {
await ghstBalanceRefetch();
setReceiver("");
setAmount("");
setIsPending(false);
}
} }
} }
@ -476,7 +478,7 @@ const Bridge = ({ chainId, address, config, connect }) => {
</Box> </Box>
</Box> </Box>
{(currentRecord?.step ?? 0) < 3 && currentSession > (currentRecord?.sessionIndex ?? 0) + 2 && {(currentRecord?.step ?? 0) < 3 && (currentSession && currentRecord && currentSession > (currentRecord.sessionIndex ?? 0) + 2) &&
<Box display="flex" flexDirection="column" gap="5px"> <Box display="flex" flexDirection="column" gap="5px">
<PrimaryButton <PrimaryButton
fullWidth fullWidth
@ -513,7 +515,7 @@ const Bridge = ({ chainId, address, config, connect }) => {
> >
{authorities?.map((authority, idx) => { {authorities?.map((authority, idx) => {
const authorityAddress = ss58Address(authority.asHex(), 1996); const authorityAddress = ss58Address(authority.asHex(), 1996);
const disabled = clapsInSession?.at(idx)?.at(1)?.disabled; const disabled = clapsInSession?.find((info => info.at(0) === idx))?.at(1)?.disabled;
const clapped = receivedClaps?.some(authId => authId === idx); const clapped = receivedClaps?.some(authId => authId === idx);
return ( return (
@ -775,7 +777,7 @@ const Bridge = ({ chainId, address, config, connect }) => {
> >
{authorities?.map((authority, idx) => { {authorities?.map((authority, idx) => {
const authorityAddress = ss58Address(authority.asHex(), 1996); const authorityAddress = ss58Address(authority.asHex(), 1996);
const clapInfo = clapsInSession?.at(idx)?.at(1); const clapInfo = clapsInSession?.find((info => info.at(0) === idx))?.at(1);
return ( return (
<Box <Box
@ -808,7 +810,7 @@ const Bridge = ({ chainId, address, config, connect }) => {
</Box> </Box>
</>} /> </>} />
</Box>} </Box>}
<Typography fontSize="12px" lineHeight="15px">{clapsInSessionLength}</Typography> <Typography fontSize="12px" lineHeight="15px">{clapsInSessionLength} / {authorities?.length}</Typography>
</Box> </Box>
</Box> </Box>
) )