Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Show contract verification and link to Sourcify #609

Merged
merged 5 commits into from
Jun 28, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 1 addition & 0 deletions .changelog/609.feature.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Show contract verification and link to Sourcify
8 changes: 4 additions & 4 deletions .env
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ REACT_APP_BUILD_DATETIME=0
REACT_APP_BUILD_SHA=sha0000000000000000000000000000000000000
REACT_APP_BUILD_VERSION=
# REACT_APP_API=http://localhost:8008/v1/
# REACT_APP_API=https://index-staging.oasislabs.com/v1/
# REACT_APP_TESTNET_API=https://testnet-index-staging.oasislabs.com/v1/
REACT_APP_API=https://index.oasislabs.com/v1/
REACT_APP_TESTNET_API=https://testnet-index.oasislabs.com/v1/
REACT_APP_API=https://index-staging.oasislabs.com/v1/
REACT_APP_TESTNET_API=https://testnet-index-staging.oasislabs.com/v1/
# REACT_APP_API=https://index.oasislabs.com/v1/
# REACT_APP_TESTNET_API=https://testnet-index.oasislabs.com/v1/
12 changes: 12 additions & 0 deletions src/app/components/Account/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ import { DashboardLink } from '../../pages/DashboardPage/DashboardLink'
import { getNameForTicker, Ticker } from '../../../types/ticker'
import { TokenPriceInfo } from '../../../coin-gecko/api'
import { TransactionLink } from '../Transactions/TransactionLink'
import { ContractVerificationIcon } from '../ContractVerificationIcon'

export const StyledAvatarContainer = styled('dt')(({ theme }) => ({
'&&': {
Expand Down Expand Up @@ -99,6 +100,17 @@ export const Account: FC<AccountProps> = ({ account, isLoading, tokenPriceInfo,
<CopyToClipboard value={address!} />
</dd>

{account?.evm_contract && (
<>
<dt>{t('contract.verification.title')}</dt>
<dd>
<ContractVerificationIcon
verified={!!account?.evm_contract?.verification}
address_eth={account.address_eth!}
/>
</dd>
</>
)}
{creationTxHash && (
<>
<dt>{t('common.createdAt')}</dt>
Expand Down
88 changes: 88 additions & 0 deletions src/app/components/ContractVerificationIcon/index.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,88 @@
import React, { FC, ReactNode } from 'react'
import { Trans, useTranslation } from 'react-i18next'
import Box from '@mui/material/Box'
import CheckCircleIcon from '@mui/icons-material/CheckCircle'
import CancelIcon from '@mui/icons-material/Cancel'
import { styled } from '@mui/material/styles'
import { COLORS } from '../../../styles/theme/colors'
import Link from '@mui/material/Link'
import Typography from '@mui/material/Typography'

type VerificationStatus = 'verified' | 'unverified'

const statusBgColor: Record<VerificationStatus, string> = {
verified: COLORS.honeydew,
unverified: COLORS.linen,
}

const statusFgColor: Record<VerificationStatus, string> = {
verified: COLORS.brandExtraDark,
unverified: COLORS.brandExtraDark,
}

const statusIcon: Record<VerificationStatus, ReactNode> = {
verified: <CheckCircleIcon color="success" fontSize="small" />,
unverified: <CancelIcon color="error" fontSize="small" />,
}

const StyledBox = styled(Box, {
shouldForwardProp: prop => prop !== 'verified',
})(({ verified }: ContractVerificationIconProps) => {
const status: VerificationStatus = verified ? 'verified' : 'unverified'
return {
display: 'flex',
justifyContent: 'center',
alignItems: 'center',
height: '28px',
fontSize: '12px',
backgroundColor: statusBgColor[status],
color: statusFgColor[status],
borderRadius: 10,
padding: 4,
paddingLeft: 10,
paddingRight: 5,
}
})

type ContractVerificationIconProps = {
verified: boolean
address_eth: string
}

export const ContractVerificationIcon: FC<ContractVerificationIconProps> = ({ verified, address_eth }) => {
const { t } = useTranslation()
const status: VerificationStatus = verified ? 'verified' : 'unverified'
const statusLabel: Record<VerificationStatus, string> = {
verified: t('contract.verification.isVerified'),
unverified: t('contract.verification.isNotVerified'),
}

return (
<>
<StyledBox verified={verified} address_eth={address_eth}>
{statusLabel[status]}
&nbsp; &nbsp;
{statusIcon[status]}
</StyledBox>
&nbsp; &nbsp;
{verified && (
<Typography component="span" sx={{ fontSize: '12px', color: COLORS.brandExtraDark }}>
<Trans
t={t}
i18nKey="contract.verification.openInSourcify"
components={{
SourcifyLink: (
<Link
href={`https://sourcify.dev/#/lookup/${address_eth}`}
rel="noopener noreferrer"
target="_blank"
sx={{ fontWeight: 400, color: 'inherit', textDecoration: 'underline' }}
/>
),
}}
/>
</Typography>
)}
</>
)
}
8 changes: 7 additions & 1 deletion src/locales/en/translation.json
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,13 @@
"valuePair": "{{value, number}}"
},
"contract": {
"title": "Contract"
"title": "Contract",
"verification": {
"title": "Verification",
"isVerified": "Verified",
"isNotVerified": "Unverified",
"openInSourcify": "Open in <SourcifyLink>Sourcify</SourcifyLink>"
}
},
"nodes": {
"title": "Active nodes",
Expand Down