diff --git a/public/images/dapps/cdpsaver.png b/public/images/dapps/cdpsaver.png new file mode 100644 index 0000000..0320ee2 Binary files /dev/null and b/public/images/dapps/cdpsaver.png differ diff --git a/public/images/dapps/faast.png b/public/images/dapps/faast.png new file mode 100644 index 0000000..c14a8c0 Binary files /dev/null and b/public/images/dapps/faast.png differ diff --git a/public/images/dapps/originprotocol.png b/public/images/dapps/originprotocol.png new file mode 100644 index 0000000..f14e2a0 Binary files /dev/null and b/public/images/dapps/originprotocol.png differ diff --git a/src/common/data/dapps.js b/src/common/data/dapps.js index dd2ed95..e765b97 100644 --- a/src/common/data/dapps.js +++ b/src/common/data/dapps.js @@ -60,6 +60,15 @@ const Dapps = [ category: Categories.EXCHANGES, dateAdded: '2019-04-05', }, + { + name: 'Faa.st', + url: 'https://faa.st/app/mobile/connect/status', + description: + 'The future of crypto trading is here. Building a strong, diversified crypto portfolio has never been this easy.', + image: '/images/dapps/faast.png', + category: Categories.EXCHANGES, + dateAdded: '2019-05-28', + }, { name: 'Eth2phone', url: 'https://eth2.io', @@ -111,6 +120,14 @@ const Dapps = [ category: Categories.EXCHANGES, dateAdded: '2019-04-11', }, + { + name: 'Origin Protocol', + url: 'https://dapp.originprotocol.com', + description: 'True peer-to-peer commerce', + image: '/images/dapps/originprotocol.png', + category: Categories.MARKETPLACES, + dateAdded: '2019-06-07', + }, { name: 'Bidali', url: 'https://commerce.bidali.com/dapp', @@ -327,6 +344,14 @@ const Dapps = [ category: Categories.OTHER, dateAdded: '2019-04-05', }, + { + name: 'CDP Saver', + url: 'https://cdpsaver.com', + description: 'Next generation management dashboard for MakerDAO CDPs.', + image: '/images/dapps/cdpsaver.png', + category: Categories.UTILITIES, + dateAdded: '2019-06-03', + }, { name: 'Aragon', url: 'https://mainnet.aragon.org/', diff --git a/src/modules/RecentlyAdded/RecentlyAdded.selector.js b/src/modules/RecentlyAdded/RecentlyAdded.selector.js index 1db81bd..da03311 100644 --- a/src/modules/RecentlyAdded/RecentlyAdded.selector.js +++ b/src/modules/RecentlyAdded/RecentlyAdded.selector.js @@ -11,7 +11,7 @@ const recentDapps = createSelector( return ( moment(dapp.dateAdded).toISOString() > moment() - .subtract(21, 'days') + .subtract(45, 'days') .utc() .toISOString() )