diff --git a/src/constants/tokenRestrictions.tsx b/src/constants/tokenRestrictions.tsx index 47e58617..e15f5e91 100644 --- a/src/constants/tokenRestrictions.tsx +++ b/src/constants/tokenRestrictions.tsx @@ -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, @@ -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) { diff --git a/src/constants/tokens.ts b/src/constants/tokens.ts index 33ff4bad..3c504e76 100644 --- a/src/constants/tokens.ts +++ b/src/constants/tokens.ts @@ -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,