add default dapps

new file:   images/contacts/flight-delays-suck.png
	new file:   images/contacts/jarrad.png
	new file:   images/contacts/mkr-market.png
	new file:   images/contacts/oaken-water-meter.png
	modified:   resources/default_contacts.json
	modified:   src/status_im/resources.cljs
This commit is contained in:
Jarrad Hope 2017-01-04 13:02:39 +07:00
parent 6875bf3aba
commit 0eefb02e25
6 changed files with 58 additions and 1 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.2 KiB

BIN
images/contacts/jarrad.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 49 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.7 KiB

View File

@ -13,6 +13,17 @@
"dapp?": true "dapp?": true
}, },
"0x0428c9d6c1aaaa8369a7c63819684f30e34396dc0907d49afeac85a0a774ccb919b3482097d992e66bcc538e7a0c6acf874c77748f396f53c0a102e10d1a37765b":
{
"name":
{
"en": "Jarrad"
},
"photo-path": "contacts://jarrad",
"add-chat?": false,
"dapp?": false
},
"auction-house": "auction-house":
{ {
"name": "name":
@ -25,5 +36,47 @@
{ {
"en": "http://auctionhouse.dappbench.com" "en": "http://auctionhouse.dappbench.com"
} }
},
"flight-delays-suck":
{
"name":
{
"en": "Flight Delays Suck"
},
"photo-path": "contacts://flight-delays-suck",
"dapp?": true,
"dapp-url":
{
"en": "https://fdd.etherisc.com"
}
},
"mkr-market":
{
"name":
{
"en": "Maker Market"
},
"photo-path": "contacts://mkr-market",
"dapp?": true,
"dapp-url":
{
"en": "https://mkr.market"
}
},
"oaken-water-meter":
{
"name":
{
"en": "Oaken Water Meter"
},
"photo-path": "contacts://oaken-water-meter",
"dapp?": true,
"dapp-url":
{
"en": "http://waterflowdapp.projectoaken.com"
}
} }
} }

View File

@ -19,4 +19,8 @@
(def v (js/require "./images/v.png")) (def v (js/require "./images/v.png"))
(def contacts (def contacts
{:auction-house (js/require "./images/contacts/auction-house.png")}) {:auction-house (js/require "./images/contacts/auction-house.png")
:mkr-market (js/require "./images/contacts/mkr-market.png")
:oaken-water-meter (js/require "./images/contacts/oaken-water-meter.png")
:flight-delays-suck (js/require "./images/contacts/flight-delays-suck.png")
:jarrad (js/require "./images/contacts/jarrad.png")})