Adds Origin
This commit is contained in:
parent
b115e3d011
commit
de21242948
Binary file not shown.
After Width: | Height: | Size: 10 KiB |
Binary file not shown.
After Width: | Height: | Size: 18 KiB |
Binary file not shown.
After Width: | Height: | Size: 2.6 KiB |
|
@ -60,6 +60,15 @@ const Dapps = [
|
||||||
category: Categories.EXCHANGES,
|
category: Categories.EXCHANGES,
|
||||||
dateAdded: '2019-04-05',
|
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',
|
name: 'Eth2phone',
|
||||||
url: 'https://eth2.io',
|
url: 'https://eth2.io',
|
||||||
|
@ -111,6 +120,14 @@ const Dapps = [
|
||||||
category: Categories.EXCHANGES,
|
category: Categories.EXCHANGES,
|
||||||
dateAdded: '2019-04-11',
|
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',
|
name: 'Bidali',
|
||||||
url: 'https://commerce.bidali.com/dapp',
|
url: 'https://commerce.bidali.com/dapp',
|
||||||
|
@ -327,6 +344,14 @@ const Dapps = [
|
||||||
category: Categories.OTHER,
|
category: Categories.OTHER,
|
||||||
dateAdded: '2019-04-05',
|
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',
|
name: 'Aragon',
|
||||||
url: 'https://mainnet.aragon.org/',
|
url: 'https://mainnet.aragon.org/',
|
||||||
|
|
|
@ -11,7 +11,7 @@ const recentDapps = createSelector(
|
||||||
return (
|
return (
|
||||||
moment(dapp.dateAdded).toISOString() >
|
moment(dapp.dateAdded).toISOString() >
|
||||||
moment()
|
moment()
|
||||||
.subtract(21, 'days')
|
.subtract(45, 'days')
|
||||||
.utc()
|
.utc()
|
||||||
.toISOString()
|
.toISOString()
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in New Issue