remove compound currencies

There will be new assets releases soon so this will be breaking
we can add them back once they are released
This commit is contained in:
Barry Gitarts 2019-12-19 13:56:31 -05:00 committed by Barry G
parent f000161202
commit 866d7f7531
1 changed files with 0 additions and 23 deletions

View File

@ -24,29 +24,6 @@ export const currencies = [
label: 'WBTC',
img: `${TOKEN_API}/0x2260fac5e5542a773aa44fbcfedf7c193bc2c599.png`,
width: `2rem`,
},
{
value: '0xf5dce57282a584d2746faf1593d3121fcac444dc',
label: 'cDAI',
img: `${TOKEN_API}/0xf5dce57282a584d2746faf1593d3121fcac444dc.png`,
width: '2rem',
contract: cDAI,
humanReadibleFn: compoundWhole,
chainReadibleFn: compoundToChain,
getAllowance: () => getLpAllowance(cDAI),
setAllowance: (amount) => transferApproval(cDAI, amount)
},
{
value: '0x4Ddc2D193948926D02f9B1fE9e1daa0718270ED5',
label: 'cETH',
img: `${TOKEN_API}/0x4ddc2d193948926d02f9b1fe9e1daa0718270ed5.png`,
width: '2rem',
contract: cETH,
humanReadibleFn: compoundWhole,
chainReadibleFn: compoundToChain,
getAllowance: () => getLpAllowance(cETH),
setAllowance: (amount) => transferApproval(cETH, amount)
}
]