diff --git a/images/contacts/flight-delays-suck.png b/images/contacts/flight-delays-suck.png new file mode 100644 index 0000000000..05b6fcf7aa Binary files /dev/null and b/images/contacts/flight-delays-suck.png differ diff --git a/images/contacts/jarrad.png b/images/contacts/jarrad.png new file mode 100644 index 0000000000..7b6720535c Binary files /dev/null and b/images/contacts/jarrad.png differ diff --git a/images/contacts/mkr-market.png b/images/contacts/mkr-market.png new file mode 100644 index 0000000000..16e4f78071 Binary files /dev/null and b/images/contacts/mkr-market.png differ diff --git a/images/contacts/oaken-water-meter.png b/images/contacts/oaken-water-meter.png new file mode 100644 index 0000000000..2377175391 Binary files /dev/null and b/images/contacts/oaken-water-meter.png differ diff --git a/resources/default_contacts.json b/resources/default_contacts.json index 92ffd08314..0a8bfe8031 100644 --- a/resources/default_contacts.json +++ b/resources/default_contacts.json @@ -13,6 +13,17 @@ "dapp?": true }, + "0x0428c9d6c1aaaa8369a7c63819684f30e34396dc0907d49afeac85a0a774ccb919b3482097d992e66bcc538e7a0c6acf874c77748f396f53c0a102e10d1a37765b": + { + "name": + { + "en": "Jarrad" + }, + "photo-path": "contacts://jarrad", + "add-chat?": false, + "dapp?": false + }, + "auction-house": { "name": @@ -25,5 +36,47 @@ { "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" + } } } diff --git a/src/status_im/resources.cljs b/src/status_im/resources.cljs index c7e574dd4e..9ebd25505c 100644 --- a/src/status_im/resources.cljs +++ b/src/status_im/resources.cljs @@ -19,4 +19,8 @@ (def v (js/require "./images/v.png")) (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")})