diff --git a/src/custom/pages/Claim/CanUserClaimMessage.tsx b/src/custom/pages/Claim/CanUserClaimMessage.tsx
index 32ebe20a9..3d5e6d7f0 100644
--- a/src/custom/pages/Claim/CanUserClaimMessage.tsx
+++ b/src/custom/pages/Claim/CanUserClaimMessage.tsx
@@ -6,6 +6,7 @@ import { ClaimCommonTypes } from './types'
import { useClaimState, useClaimTimeInfo } from 'state/claim/hooks'
import { ClaimStatus } from 'state/claim/actions'
import { formatDateWithTimezone } from 'utils/time'
+import { COW_LINKS } from 'pages/Claim/index'
type ClaimIntroductionProps = Pick & {
isAirdropOnly: boolean
@@ -27,7 +28,7 @@ export default function CanUserClaimMessage({ hasClaims, isAirdropOnly, handleCh
Thank you for being a supporter of CowSwap and the CoW protocol. As an important member of the CowSwap
Community you may claim vCOW to be used for voting and governance. You can claim your tokens until{' '}
{formatDateWithTimezone(airdropDeadline)}
- Read more about vCOW
+ Read more about vCOW
@@ -42,7 +43,7 @@ export default function CanUserClaimMessage({ hasClaims, isAirdropOnly, handleCh
Try another account
{' '}
- or read more about vCOW
+ or read more about vCOW
)
diff --git a/src/custom/pages/Claim/InvestmentFlow/index.tsx b/src/custom/pages/Claim/InvestmentFlow/index.tsx
index 36ba06620..ff13fb613 100644
--- a/src/custom/pages/Claim/InvestmentFlow/index.tsx
+++ b/src/custom/pages/Claim/InvestmentFlow/index.tsx
@@ -24,6 +24,8 @@ import { useActiveWeb3React } from 'hooks/web3'
import InvestOption from './InvestOption'
import { ClaimCommonTypes, ClaimWithInvestmentData, EnhancedUserClaimData } from '../types'
+import { COW_LINKS } from 'pages/Claim'
+import { ExternalLink } from 'theme'
const STEPS_DATA = [
{
@@ -177,13 +179,9 @@ export default function InvestmentFlow({ hasClaims, isAirdropOnly, ...tokenAppro
For more details around the token, please read{' '}
-
- the blog post
-
+ the blog post
.
For more details about the claiming process, please read the{' '}
-
- step by step guide
-
+ step by step guide
)}
diff --git a/src/custom/pages/Claim/index.tsx b/src/custom/pages/Claim/index.tsx
index 5c522881f..95f200851 100644
--- a/src/custom/pages/Claim/index.tsx
+++ b/src/custom/pages/Claim/index.tsx
@@ -33,6 +33,12 @@ import FooterNavButtons from './FooterNavButtons'
const GNO_CLAIM_APPROVE_MESSAGE = 'Approving GNO for investing in vCOW'
const USDC_CLAIM_APPROVE_MESSAGE = 'Approving USDC for investing in vCOW'
+/* TODO: Replace URLs with the actual final URL destinations */
+export const COW_LINKS = {
+ vCowPost: 'https://cow.fi/',
+ stepGuide: 'https://cow.fi/',
+}
+
export default function Claim() {
const { account, chainId } = useActiveWeb3React()
@@ -82,7 +88,7 @@ export default function Claim() {
// get user claim data
const userClaimData = useUserEnhancedClaimData(activeClaimAccount)
- // get total unclaimed ammount
+ // get total unclaimed amount
const unclaimedAmount = useUserUnclaimedAmount(activeClaimAccount)
const hasClaims = useMemo(() => userClaimData.length > 0, [userClaimData])
@@ -137,7 +143,7 @@ export default function Claim() {
console.log('Starting claiming with', inputData)
sendTransaction(inputData)
} else if (investFlowStep == 2) {
- // Free claimings + selected investment oportunities
+ // Free claims + selected investment opportunities
const investClaims = prepareInvestClaims(investFlowData, userClaimData)
inputData.push(...investClaims)
console.log('Starting claiming with', inputData)
@@ -214,7 +220,7 @@ export default function Claim() {
handleChangeAccount={handleChangeAccount}
/>
- {/* Try claiming or inform succesfull claim */}
+ {/* Try claiming or inform successful claim */}
{/* IS Airdrop + investing (advanced) */}