mirror of
https://github.com/status-im/status-mobile.git
synced 2025-01-15 03:05:17 +00:00
b5763bb8ad
Former-commit-id: 6a5250247ca0de762169548c2ff109486b709f13
22 lines
468 B
Clojure
22 lines
468 B
Clojure
(ns status-im.constants)
|
|
|
|
(def ethereum-rpc-url "http://localhost:8545")
|
|
|
|
(def server-address "http://rpc0.status.im:20000/")
|
|
;; (def server-address "http://10.0.3.2:3000/")
|
|
|
|
(def text-content-type "text/plain")
|
|
(def content-type-command "command")
|
|
(def content-type-command-request "command-request")
|
|
(def content-type-status "status")
|
|
|
|
|
|
(comment
|
|
|
|
(map (fn [c]
|
|
{:background c
|
|
:foreground c}) group-chat-colors)
|
|
(reverse group-chat-colors)
|
|
|
|
)
|