Skip to content

Commit

Permalink
Update footer
Browse files Browse the repository at this point in the history
Signed-off-by: mxmar <[email protected]>
  • Loading branch information
mxmar committed Sep 28, 2023
1 parent ddb4908 commit ebbe332
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 9 deletions.
8 changes: 1 addition & 7 deletions ui/snippets/footer/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -36,12 +36,6 @@ const Footer = () => {
const apiVersionUrl = getApiVersionUrl(backendVersionData?.backend_version);
const issueUrl = useIssueUrl(backendVersionData?.backend_version);
const BLOCKSCOUT_LINKS = [
{
icon: editIcon,
iconSize: '16px',
text: 'Submit an issue',
url: issueUrl,
},
{
icon: gitIcon,
iconSize: '18px',
Expand Down Expand Up @@ -91,7 +85,7 @@ const Footer = () => {
<Link fontSize="xs" href="https://lukso.network/">lukso.network</Link>
</Box>
<Text mt={ 3 } maxW={{ base: 'unset', lg: '470px' }} fontSize="xs">
Blockscout is a tool for inspecting and analyzing EVM based blockchains. Blockchain explorer for Ethereum Networks.
Execution explorer is a tool for inspecting and analyzing EVM based blockchains. Blockchain explorer for EVM Networks. It's the <Link fontSize="xs" href="https://www.blockscout.com/">Blockscout</Link> fork.
</Text>
<VStack spacing={ 1 } mt={ 6 } alignItems="start">
{ apiVersionUrl && (
Expand Down
4 changes: 2 additions & 2 deletions ui/snippets/footer/utils/getApiVersionUrl.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ export default function getApiVersionUrl(version: string | undefined): string |
const [ tag, commit ] = version.split('.+commit.');

if (commit) {
return `https://github.com/blockscout/blockscout/commit/${ commit }`;
return `https://github.com/lukso-network/network-explorer-execution/tree/lukso`;
}

return `https://github.com/blockscout/blockscout/tree/${ tag }`;
return `https://github.com/lukso-network/network-explorer-execution/tree/lukso`;
}

0 comments on commit ebbe332

Please sign in to comment.