From 866d7f7531ed77e9f888f783727d5613a8115956 Mon Sep 17 00:00:00 2001 From: Barry Gitarts Date: Thu, 19 Dec 2019 13:56:31 -0500 Subject: [PATCH] remove compound currencies There will be new assets releases soon so this will be breaking we can add them back once they are released --- src/utils/currencies.js | 23 ----------------------- 1 file changed, 23 deletions(-) diff --git a/src/utils/currencies.js b/src/utils/currencies.js index 9b78267..f120e21 100644 --- a/src/utils/currencies.js +++ b/src/utils/currencies.js @@ -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) } ]