Skip to content

Commit

Permalink
feat: removed backed from token restrictions (#180)
Browse files Browse the repository at this point in the history
  • Loading branch information
0xpApaSmURf committed Feb 1, 2024
1 parent cdb60cb commit 8b86d61
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions 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 { bIB01_MAINNET,EURS, OUT2 } from './tokens'
import {EURS, OUT2 } from './tokens'

export enum TOKEN_RESTRICTION_TYPE {
NONE = -1,
Expand All @@ -20,7 +20,7 @@ export const TOKEN_RESTRICTIONS: {
[EURS.address]: TOKEN_RESTRICTION_TYPE.ACCREDITED_INVESTOR,
},
[SupportedChainId.MAINNET]: {
[bIB01_MAINNET.address]: TOKEN_RESTRICTION_TYPE.ACCREDITED_INVESTOR,

},
}

Expand Down
14 changes: 7 additions & 7 deletions src/constants/tokens.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,13 +45,13 @@ export const STETH_MAINNET = new Token(
'stETH',
'Liquid staked Ether 2.0'
)
export const bIB01_MAINNET = new Token(
SupportedChainId.MAINNET,
"0xca30c93b02514f86d5c86a6e375e3a330b435fb5",
18,
'bIB01',
'Backed IB01 $ Treasury Bond 0-1yr'
)
// const bIB01_MAINNET = new Token(
// SupportedChainId.MAINNET,
// "0xca30c93b02514f86d5c86a6e375e3a330b435fb5",
// 18,
// 'bIB01',
// 'Backed IB01 $ Treasury Bond 0-1yr'
// )
export const OUT1 = new Token(
SupportedChainId.OPTIMISM_GOERLI,
'0x32307adfFE088e383AFAa721b06436aDaBA47DBE',
Expand Down

0 comments on commit 8b86d61

Please sign in to comment.