-
-
- As a result of{' '}
-
- SEP #5
-
- , you qualify for
-
- {formatAmount(formatEther(sep5Vesting.amount), 2)} SAFE
-
-
-
-
-
-
-
- )
-}
diff --git a/src/hooks/useCampaigns.ts b/src/hooks/useCampaigns.ts
index 7bb0a470..db3bd9a3 100644
--- a/src/hooks/useCampaigns.ts
+++ b/src/hooks/useCampaigns.ts
@@ -18,6 +18,12 @@ export type Campaign = {
description: string
maxPoints: string
}[]
+ rewardValue: string | null
+ rewardText: string | null
+ iconUrl: string | null
+ safeAppUrl: string | null
+ partnerUrl: string | null
+ isPromoted: boolean
}
const PAGE_SIZE = 5
diff --git a/src/utils/airdrop.ts b/src/utils/airdrop.ts
index 869380c6..2742044a 100644
--- a/src/utils/airdrop.ts
+++ b/src/utils/airdrop.ts
@@ -1,9 +1,6 @@
import { BigNumber } from 'ethers'
import { parseEther } from 'ethers/lib/utils'
-import { AIRDROP_TAGS } from '@/config/constants'
-import { useSafeTokenAllocation } from '@/hooks/useSafeTokenAllocation'
-
const MAX_UINT128 = BigNumber.from('0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF')
/**
@@ -64,13 +61,3 @@ export const splitAirdropAmounts = ({
amountInWei.sub(userAndSep5AndInvestor).toString(),
]
}
-
-export const canRedeemSep5Airdrop = (allocation: ReturnType