status-react/src/status_im/constants.cljs
Roman Volosovskyi b746bcef4f attempt to fix performance issues
Former-commit-id: 3a93e0890bfea4b167b934c26f2c5096ea73421a
2016-06-30 17:23:38 +03:00

20 lines
535 B
Clojure

(ns status-im.constants)
(def ethereum-rpc-url "http://localhost:8545")
(def server-address "http://api.status.im/")
;; (def server-address "http://10.0.3.2:3000/")
;; (def server-address "http://localhost:3000/")
(def text-content-type "text/plain")
(def content-type-command "command")
(def content-type-command-request "command-request")
(def content-type-status "status")
(def max-chat-name-length 20)
(def response-input-hiding-duration 100)
(def response-suggesstion-resize-duration 100)
(def default-number-of-messages 5)