Skip to content

Commit

Permalink
VIOL-1131: Sepolia accredited investor warning.
Browse files Browse the repository at this point in the history
  • Loading branch information
henrik-web3 committed Nov 24, 2023
1 parent bbbbd0d commit 9926a12
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/constants/tokenRestrictions.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { SupportedChainId } from './chains'
import TokenRestrictionCache from './TokenRestrictionLookupTable'
import { OUT2 } from './tokens'
import { EURS, OUT2 } from './tokens'

export enum TOKEN_RESTRICTION_TYPE {
NONE = -1,
Expand All @@ -16,6 +16,9 @@ export const TOKEN_RESTRICTIONS: {
[SupportedChainId.OPTIMISM_GOERLI]: {
[OUT2.address]: TOKEN_RESTRICTION_TYPE.ACCREDITED_INVESTOR,
},
[SupportedChainId.SEPOLIA]: {
[EURS.address]: TOKEN_RESTRICTION_TYPE.ACCREDITED_INVESTOR,
},
}

if (!process.env.REACT_APP_SUMSUB_ACCREDITED_INVESTOR_FORM_URL) {
Expand Down
9 changes: 9 additions & 0 deletions src/constants/tokens.ts
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,15 @@ export const USDC_SEPOLIA = new Token(
'USDC',
'USD//C'
)
// eslint-disable-next-line import/no-unused-modules
export const EURS = new Token(
SupportedChainId.SEPOLIA,
'0x6d906e526a4e2Ca02097BA9d0caA3c382F52278E',
2,
'EURS',
'EURS'
)

const USDC_KOVAN = new Token(SupportedChainId.KOVAN, '0x31eeb2d0f9b6fd8642914ab10f4dd473677d80df', 6, 'USDC', 'USD//C')
const USDC_OPTIMISM = new Token(
SupportedChainId.OPTIMISM,
Expand Down

0 comments on commit 9926a12

Please sign in to comment.