status-mobile/src/status_im/constants.cljs

28 lines
780 B
Plaintext
Raw Normal View History

(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")
2016-11-16 07:39:28 +00:00
(def content-type-wallet-command "wallet-command")
(def content-type-wallet-request "wallet-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 20)
(def blocks-per-hour 120)
(def default-number-of-discovery-search-results 20)
(def console-chat-id "console")
2016-11-16 07:39:28 +00:00
(def wallet-chat-id "wallet")