Signed-off-by: Uncle Fatso <uncle.fatso@ghostchain.io>
This commit is contained in:
parent
39118c3b93
commit
d1d4313851
@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "ghost-dao-interface",
|
"name": "ghost-dao-interface",
|
||||||
"private": true,
|
"private": true,
|
||||||
"version": "0.4.0",
|
"version": "0.4.1",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"dev": "vite",
|
"dev": "vite",
|
||||||
|
|||||||
@ -30,7 +30,6 @@ const StyledArrow = styled(Box)(
|
|||||||
|
|
||||||
const SwapCollection = ({ UpperSwapCard, LowerSwapCard, arrowOnClick, iconNotNeeded, maxWidth}) => {
|
const SwapCollection = ({ UpperSwapCard, LowerSwapCard, arrowOnClick, iconNotNeeded, maxWidth}) => {
|
||||||
const theme = useTheme();
|
const theme = useTheme();
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Box display="flex" flexDirection="column" maxWidth={maxWidth ? maxWidth : "476px"}>
|
<Box display="flex" flexDirection="column" maxWidth={maxWidth ? maxWidth : "476px"}>
|
||||||
{UpperSwapCard}
|
{UpperSwapCard}
|
||||||
|
|||||||
@ -38,8 +38,8 @@ const Tooltip = ({ message, children }) => {
|
|||||||
onResizeCapture={undefined}
|
onResizeCapture={undefined}
|
||||||
slotProps={undefined}
|
slotProps={undefined}
|
||||||
slots={undefined}
|
slots={undefined}
|
||||||
>
|
>
|
||||||
<Paper className="info-tooltip">
|
<Paper style={{ boxShadow: "rgba(99, 99, 99, 0.2) 0px 2px 8px 0px" }} className="info-tooltip">
|
||||||
{typeof message === "string" ? (
|
{typeof message === "string" ? (
|
||||||
<Typography variant="body1" className="info-tooltip-text">
|
<Typography variant="body1" className="info-tooltip-text">
|
||||||
{message}
|
{message}
|
||||||
|
|||||||
@ -242,12 +242,12 @@ const Bridge = ({ chainId, address, config, connect }) => {
|
|||||||
let certainty = 0n;
|
let certainty = 0n;
|
||||||
for (let i = 0; i < length; i++) {
|
for (let i = 0; i < length; i++) {
|
||||||
const commit = latestCommits.at(i);
|
const commit = latestCommits.at(i);
|
||||||
if (commit.disabled) {
|
if (commit.disabled || blockNumber < blocksInFourHours) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
certainty += (commit?.lastStoredBlock ?? 0n) - (blockNumber - blocksInFourHours);
|
certainty += (commit?.lastStoredBlock ?? 0n) - (blockNumber - blocksInFourHours);
|
||||||
}
|
}
|
||||||
return Number(certainty * 100n / (blocksInFourHours * BigInt(length)));
|
return Math.max(Number(certainty * 100n / (blocksInFourHours * BigInt(length))), 0);
|
||||||
}, [latestCommits, blockNumber]);
|
}, [latestCommits, blockNumber]);
|
||||||
|
|
||||||
const timeToNextEpoch = useMemo(() => {
|
const timeToNextEpoch = useMemo(() => {
|
||||||
@ -284,7 +284,7 @@ const Bridge = ({ chainId, address, config, connect }) => {
|
|||||||
timestamp: Date.now()
|
timestamp: Date.now()
|
||||||
}
|
}
|
||||||
|
|
||||||
const newStoredTransactions = [...storedTransactions, transaction];
|
const newStoredTransactions = [transaction, ...storedTransactions];
|
||||||
setStoredTransactions(newStoredTransactions);
|
setStoredTransactions(newStoredTransactions);
|
||||||
localStorage.setItem(STORAGE_PREFIX, JSON.stringify(newStoredTransactions));
|
localStorage.setItem(STORAGE_PREFIX, JSON.stringify(newStoredTransactions));
|
||||||
setActiveTxIndex(newStoredTransactions.length - 1)
|
setActiveTxIndex(newStoredTransactions.length - 1)
|
||||||
@ -322,7 +322,7 @@ const Bridge = ({ chainId, address, config, connect }) => {
|
|||||||
<Grid container spacing={1}>
|
<Grid container spacing={1}>
|
||||||
<Grid item xs={12} height="100%">
|
<Grid item xs={12} height="100%">
|
||||||
<Paper
|
<Paper
|
||||||
sx={{ paddingBottom: "0 !important", marginBottom: "0 !important" }}
|
sx={{ height: isBigScreen ? "100%" : "150px", paddingBottom: "0 !important", marginBottom: "0 !important" }}
|
||||||
fullWidth
|
fullWidth
|
||||||
enableBackground
|
enableBackground
|
||||||
>
|
>
|
||||||
@ -362,6 +362,7 @@ const Bridge = ({ chainId, address, config, connect }) => {
|
|||||||
/>
|
/>
|
||||||
</Box>
|
</Box>
|
||||||
)}
|
)}
|
||||||
|
style={{ height: "434px" }}
|
||||||
fullWidth
|
fullWidth
|
||||||
enableBackground
|
enableBackground
|
||||||
>
|
>
|
||||||
@ -383,6 +384,7 @@ const Bridge = ({ chainId, address, config, connect }) => {
|
|||||||
/>
|
/>
|
||||||
: <BridgeCardHistory
|
: <BridgeCardHistory
|
||||||
isSemiSmallScreen={isSemiSmallScreen}
|
isSemiSmallScreen={isSemiSmallScreen}
|
||||||
|
isBigScreen={isBigScreen}
|
||||||
filteredStoredTransactions={filteredStoredTransactions}
|
filteredStoredTransactions={filteredStoredTransactions}
|
||||||
ghstSymbol={ghstSymbol}
|
ghstSymbol={ghstSymbol}
|
||||||
blockNumber={blockNumber}
|
blockNumber={blockNumber}
|
||||||
@ -407,6 +409,7 @@ const Bridge = ({ chainId, address, config, connect }) => {
|
|||||||
}</Typography>
|
}</Typography>
|
||||||
</Box>
|
</Box>
|
||||||
}
|
}
|
||||||
|
style={{ height: "434px" }}
|
||||||
enableBackground
|
enableBackground
|
||||||
fullWidth
|
fullWidth
|
||||||
>
|
>
|
||||||
|
|||||||
@ -13,6 +13,7 @@ import {
|
|||||||
TableCell,
|
TableCell,
|
||||||
Modal,
|
Modal,
|
||||||
useTheme,
|
useTheme,
|
||||||
|
useMediaQuery,
|
||||||
} from "@mui/material";
|
} from "@mui/material";
|
||||||
|
|
||||||
import { useConfig } from "wagmi";
|
import { useConfig } from "wagmi";
|
||||||
@ -23,7 +24,6 @@ import { PrimaryButton } from "../../components/Button";
|
|||||||
import GhostStyledIcon from "../../components/Icon/GhostIcon";
|
import GhostStyledIcon from "../../components/Icon/GhostIcon";
|
||||||
import SwapCard from "../../components/Swap/SwapCard";
|
import SwapCard from "../../components/Swap/SwapCard";
|
||||||
import SwapCollection from "../../components/Swap/SwapCollection";
|
import SwapCollection from "../../components/Swap/SwapCollection";
|
||||||
import InfoTooltip from "../../components/Tooltip/InfoTooltip";
|
|
||||||
|
|
||||||
import { ghost } from "../../hooks/staking";
|
import { ghost } from "../../hooks/staking";
|
||||||
import { useBalance } from "../../hooks/tokens";
|
import { useBalance } from "../../hooks/tokens";
|
||||||
@ -158,9 +158,10 @@ export const BridgeCardAction = ({
|
|||||||
}, [receiver])
|
}, [receiver])
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Box width="100%" height="320px" display="flex" flexDirection="column" justifyContent="space-between">
|
<Box width="100%" height="340px" display="flex" flexDirection="column" justifyContent="space-between">
|
||||||
<SwapCollection
|
<SwapCollection
|
||||||
iconNotNeeded
|
iconNotNeeded
|
||||||
|
maxWidth="100%"
|
||||||
UpperSwapCard={<SwapCard
|
UpperSwapCard={<SwapCard
|
||||||
id={`bridge-token-receiver`}
|
id={`bridge-token-receiver`}
|
||||||
inputWidth={"100%"}
|
inputWidth={"100%"}
|
||||||
@ -200,7 +201,7 @@ export const BridgeCardAction = ({
|
|||||||
</Box>
|
</Box>
|
||||||
)}
|
)}
|
||||||
{!gatekeeperAddressEmpty && (
|
{!gatekeeperAddressEmpty && (
|
||||||
<>
|
<Box width="100%" maxWidth="416px" display="flex" justifyContent={isVerySmallScreen ? "end" : "space-between"}>
|
||||||
{!isVerySmallScreen && <Typography fontSize="12px" lineHeight="15px">Gatekeeper:</Typography>}
|
{!isVerySmallScreen && <Typography fontSize="12px" lineHeight="15px">Gatekeeper:</Typography>}
|
||||||
<Link
|
<Link
|
||||||
fontSize="12px"
|
fontSize="12px"
|
||||||
@ -211,7 +212,7 @@ export const BridgeCardAction = ({
|
|||||||
>
|
>
|
||||||
{sliceString(gatekeeperAddress, 10, -8)}
|
{sliceString(gatekeeperAddress, 10, -8)}
|
||||||
</Link>
|
</Link>
|
||||||
</>
|
</Box>
|
||||||
)}
|
)}
|
||||||
</Box>
|
</Box>
|
||||||
<Box width="100%" display="flex" justifyContent={isVerySmallScreen ? "end" : "space-between"}>
|
<Box width="100%" display="flex" justifyContent={isVerySmallScreen ? "end" : "space-between"}>
|
||||||
@ -248,12 +249,15 @@ export const BridgeCardAction = ({
|
|||||||
|
|
||||||
export const BridgeCardHistory = ({
|
export const BridgeCardHistory = ({
|
||||||
isSemiSmallScreen,
|
isSemiSmallScreen,
|
||||||
|
isBigScreen,
|
||||||
filteredStoredTransactions,
|
filteredStoredTransactions,
|
||||||
ghstSymbol,
|
ghstSymbol,
|
||||||
blockNumber,
|
blockNumber,
|
||||||
finalityDelay,
|
finalityDelay,
|
||||||
setActiveTxIndex
|
setActiveTxIndex
|
||||||
}) => {
|
}) => {
|
||||||
|
const isVeryBigScreen = useMediaQuery("(max-width: 1360px)");
|
||||||
|
|
||||||
const theme = useTheme();
|
const theme = useTheme();
|
||||||
const background = (index) => {
|
const background = (index) => {
|
||||||
return index % 2 === 1 ? "" : theme.colors.gray[750];
|
return index % 2 === 1 ? "" : theme.colors.gray[750];
|
||||||
@ -274,9 +278,9 @@ export const BridgeCardHistory = ({
|
|||||||
<Table sx={{ marginTop: "0px" }} stickyHeader aria-label="sticky available transactions">
|
<Table sx={{ marginTop: "0px" }} stickyHeader aria-label="sticky available transactions">
|
||||||
<TableHead>
|
<TableHead>
|
||||||
<TableRow sx={{ height: "40px" }}>
|
<TableRow sx={{ height: "40px" }}>
|
||||||
<TableCell align="left" style={{ padding: "0px", paddingLeft: "16px", fontSize: "12px", borderTopLeftRadius: "3px", background: theme.colors.paper.cardHover }}>
|
{!(isBigScreen ^ isVeryBigScreen) && <TableCell align="left" style={{ padding: "0px", paddingLeft: "16px", fontSize: "12px", borderTopLeftRadius: "3px", background: theme.colors.paper.cardHover }}>
|
||||||
Transaction
|
Transaction
|
||||||
</TableCell>
|
</TableCell>}
|
||||||
<TableCell align="center" style={{ padding: "0px", fontSize: "12px", background: theme.colors.paper.cardHover }}>
|
<TableCell align="center" style={{ padding: "0px", fontSize: "12px", background: theme.colors.paper.cardHover }}>
|
||||||
Datetime
|
Datetime
|
||||||
</TableCell>
|
</TableCell>
|
||||||
@ -294,7 +298,7 @@ export const BridgeCardHistory = ({
|
|||||||
data-testid={idx + `--tx-history`}
|
data-testid={idx + `--tx-history`}
|
||||||
onClick={() => setActiveTxIndex(idx)}
|
onClick={() => setActiveTxIndex(idx)}
|
||||||
>
|
>
|
||||||
<TableCell style={{ background: background(idx) }}>
|
{!(isBigScreen ^ isVeryBigScreen) && <TableCell style={{ background: background(idx) }}>
|
||||||
<Box display="flex" flexDirection="column" justifyContent="center">
|
<Box display="flex" flexDirection="column" justifyContent="center">
|
||||||
<Typography variant="caption">
|
<Typography variant="caption">
|
||||||
{formatCurrency(
|
{formatCurrency(
|
||||||
@ -311,7 +315,7 @@ export const BridgeCardHistory = ({
|
|||||||
)}
|
)}
|
||||||
</Typography>
|
</Typography>
|
||||||
</Box>
|
</Box>
|
||||||
</TableCell>
|
</TableCell>}
|
||||||
|
|
||||||
<TableCell style={{ background: background(idx) }}>
|
<TableCell style={{ background: background(idx) }}>
|
||||||
<Box display="flex" flexDirection="column" alignItems="center" paddingLeft="5px">
|
<Box display="flex" flexDirection="column" alignItems="center" paddingLeft="5px">
|
||||||
|
|||||||
@ -3,6 +3,7 @@ import { Box, Paper, Grid, Typography, LinearProgress, useTheme } from "@mui/mat
|
|||||||
|
|
||||||
import Metric from "../../components/Metric/Metric";
|
import Metric from "../../components/Metric/Metric";
|
||||||
import Countdown from "../../components/Countdown/Countdown";
|
import Countdown from "../../components/Countdown/Countdown";
|
||||||
|
import InfoTooltip from "../../components/Tooltip/InfoTooltip";
|
||||||
import { formatNumber } from "../../helpers";
|
import { formatNumber } from "../../helpers";
|
||||||
|
|
||||||
export const BridgeHeader = ({
|
export const BridgeHeader = ({
|
||||||
@ -91,12 +92,12 @@ export const BridgeHeader = ({
|
|||||||
<Grid item xs={isSmallScreen ? 12 : 4}>
|
<Grid item xs={isSmallScreen ? 12 : 4}>
|
||||||
<Metric
|
<Metric
|
||||||
isLoading={transactionEta === undefined}
|
isLoading={transactionEta === undefined}
|
||||||
metric={formatTime(transactionEta)}
|
metric={transactionEta > 14400 ? "∞" : formatTime(transactionEta)}
|
||||||
label="Max Bridge ETA"
|
label="Max Bridge ETA"
|
||||||
tooltip="Maximum estimated time for finalizing bridge transactions based on the latest update."
|
tooltip="Maximum estimated time for finalizing bridge transactions based on the latest update."
|
||||||
/>
|
/>
|
||||||
</Grid>
|
</Grid>
|
||||||
<Grid item gap={2} xs={12} sx={{ marginTop: "20px" }}>
|
<Grid item gap={2} xs={12}>
|
||||||
<Box position="relative" margin="4.5px 0">
|
<Box position="relative" margin="4.5px 0">
|
||||||
<LinearProgress
|
<LinearProgress
|
||||||
variant="determinate"
|
variant="determinate"
|
||||||
@ -125,6 +126,15 @@ export const BridgeHeader = ({
|
|||||||
: "Unknown"
|
: "Unknown"
|
||||||
}
|
}
|
||||||
</Typography>
|
</Typography>
|
||||||
|
<InfoTooltip message={
|
||||||
|
<Box width="350px">
|
||||||
|
<Typography>0% - 50%: Bridge Stability ❌ Do NOT Bridge</Typography>
|
||||||
|
<Typography>50% - 70%: Bridge Stability ⚠️ Critical Risk</Typography>
|
||||||
|
<Typography>70% - 80%: Bridge Stability ⚠️ High Risk</Typography>
|
||||||
|
<Typography>80% - 90%: Bridge Stability ✅ Moderate Risk</Typography>
|
||||||
|
<Typography>90% - 100%: Bridge Stability ✅ Safe</Typography>
|
||||||
|
</Box>
|
||||||
|
} />
|
||||||
</Box>
|
</Box>
|
||||||
</Box>
|
</Box>
|
||||||
</Grid>
|
</Grid>
|
||||||
|
|||||||
@ -300,7 +300,10 @@ export const BridgeModal = ({
|
|||||||
}</Typography>
|
}</Typography>
|
||||||
</Box>
|
</Box>
|
||||||
<Box display="flex" flexDirection="row" justifyContent="space-between">
|
<Box display="flex" flexDirection="row" justifyContent="space-between">
|
||||||
<Typography variant="body2">Executed at:</Typography>
|
<Box display="flex" flexDirection="row">
|
||||||
|
<Typography variant="body2">Executed at:</Typography>
|
||||||
|
<InfoTooltip message="The timestamp when the bridge transaction was submitted." />
|
||||||
|
</Box>
|
||||||
<Typography variant="body2">{
|
<Typography variant="body2">{
|
||||||
new Date(currentRecord ? currentRecord.timestamp : 0).toLocaleString('en-US')
|
new Date(currentRecord ? currentRecord.timestamp : 0).toLocaleString('en-US')
|
||||||
}</Typography>
|
}</Typography>
|
||||||
@ -378,7 +381,7 @@ export const BridgeConfirmModal = ({
|
|||||||
}}
|
}}
|
||||||
target="_blank"
|
target="_blank"
|
||||||
rel="noopener noreferrer"
|
rel="noopener noreferrer"
|
||||||
href="https://google.com"
|
href="https://ghostchain.io/bridge-disclaimer"
|
||||||
>
|
>
|
||||||
Learn more.
|
Learn more.
|
||||||
</Link>
|
</Link>
|
||||||
|
|||||||
@ -10,6 +10,7 @@ import {
|
|||||||
TableHead,
|
TableHead,
|
||||||
TableRow,
|
TableRow,
|
||||||
Typography,
|
Typography,
|
||||||
|
Link,
|
||||||
LinearProgress,
|
LinearProgress,
|
||||||
} from "@mui/material";
|
} from "@mui/material";
|
||||||
import { useTheme } from "@mui/material/styles";
|
import { useTheme } from "@mui/material/styles";
|
||||||
@ -39,11 +40,12 @@ export const ValidatorTable = ({
|
|||||||
}, [bridgeStability]);
|
}, [bridgeStability]);
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Box width="100%" height="320px" display="flex" flexDirection="column" justifyContent="space-between">
|
<Box width="100%" height="340px" display="flex" flexDirection="column" justifyContent="space-between" gap="10px">
|
||||||
{!providerDetail && <Box sx={{ borderRadius: "15px", background: theme.colors.paper.background, paddingTop: "40px" }} width="100%" height="100%" display="flex" justifyContent="center">
|
{!providerDetail && <Box sx={{ borderRadius: "15px", background: theme.colors.paper.background }} width="100%" height="100%" display="flex" justifyContent="center">
|
||||||
<Box padding="20px 30px" display="flex" flexDirection="column" justifyContent="space-around" alignItems="center">
|
<Box padding="20px 30px" display="flex" flexDirection="column" justifyContent="space-around" alignItems="center">
|
||||||
<Typography sx={{ textAlign: "center" }} variant="h6">GHOST Wallet is not detected on your browser!</Typography>
|
<Typography sx={{ textAlign: "center" }} variant="h6">GHOST Wallet is not detected on your browser!</Typography>
|
||||||
<Typography sx={{ textAlign: "center" }}>Download GHOST Wallet Extension to see real-time validator stats for bridging transaction.</Typography>
|
<Typography sx={{ textAlign: "center" }} variant="body2">Download GHOST Wallet Extension for real-time visibility into validator status and related transaction risks.</Typography>
|
||||||
|
<Typography sx={{ textAlign: "center" }} variant="body2"><b>Important:</b> The GHOST Wallet Extension is optional, but be aware that your bridge transaction will succeed or fail irreversibly based on the condition of the validators.</Typography>
|
||||||
<PrimaryButton onClick={() => window.open('https://git.ghostchain.io/ghostchain/ghost-extension-wallet/releases', '_blank', 'noopener,noreferrer')}>
|
<PrimaryButton onClick={() => window.open('https://git.ghostchain.io/ghostchain/ghost-extension-wallet/releases', '_blank', 'noopener,noreferrer')}>
|
||||||
Get GHOST Extension
|
Get GHOST Extension
|
||||||
</PrimaryButton>
|
</PrimaryButton>
|
||||||
@ -53,7 +55,7 @@ export const ValidatorTable = ({
|
|||||||
component={Paper}
|
component={Paper}
|
||||||
className="custom-scrollbar"
|
className="custom-scrollbar"
|
||||||
sx={{
|
sx={{
|
||||||
height: "320px",
|
height: "310px",
|
||||||
overflowY: 'scroll',
|
overflowY: 'scroll',
|
||||||
msOverflowStyle: "thin !important",
|
msOverflowStyle: "thin !important",
|
||||||
scrollbarWidth: "thin !important",
|
scrollbarWidth: "thin !important",
|
||||||
@ -86,6 +88,18 @@ export const ValidatorTable = ({
|
|||||||
</TableBody>
|
</TableBody>
|
||||||
</Table>
|
</Table>
|
||||||
</TableContainer>}
|
</TableContainer>}
|
||||||
|
<Box marginTop="5px" display="flex" flexDirection="row" justifyContent="center" alignItems="center">
|
||||||
|
<Link
|
||||||
|
underline="always"
|
||||||
|
fontSize="12px"
|
||||||
|
lineHeight="15px"
|
||||||
|
target="_blank"
|
||||||
|
rel="noopener noreferrer"
|
||||||
|
href="https://telemetry.ghostchain.io"
|
||||||
|
>
|
||||||
|
See Validator Telemetry
|
||||||
|
</Link>
|
||||||
|
</Box>
|
||||||
</Box>
|
</Box>
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|||||||
@ -7,6 +7,7 @@ import Paper from "../../components/Paper/Paper";
|
|||||||
|
|
||||||
import GhostIcon from "../../assets/icons/ghost-nav-header.svg?react";
|
import GhostIcon from "../../assets/icons/ghost-nav-header.svg?react";
|
||||||
import EthIcon from "../../assets/tokens/ETH.svg?react";
|
import EthIcon from "../../assets/tokens/ETH.svg?react";
|
||||||
|
import { parseKnownToken } from "../../components/Token/Token"
|
||||||
|
|
||||||
import { useSwitchChain } from 'wagmi';
|
import { useSwitchChain } from 'wagmi';
|
||||||
import toast from "react-hot-toast";
|
import toast from "react-hot-toast";
|
||||||
@ -92,7 +93,7 @@ export default function NotFound({
|
|||||||
alignItems="center"
|
alignItems="center"
|
||||||
gap="15px"
|
gap="15px"
|
||||||
>
|
>
|
||||||
<SvgIcon component={EthIcon} viewBox="0 0 32 32" />
|
<SvgIcon component={parseKnownToken(chain.nativeCurrency.symbol)} inheritViewBox style={{ height: "25px" }} />
|
||||||
<Typography fontSize="1.2em">{chain.name}</Typography>
|
<Typography fontSize="1.2em">{chain.name}</Typography>
|
||||||
</Box>
|
</Box>
|
||||||
</Button>
|
</Button>
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user