mirror of
https://github.com/status-im/status-mobile.git
synced 2025-01-10 16:56:31 +00:00
29 lines
824 B
Clojure
29 lines
824 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-log-message "log-message")
|
|
(def content-type-command "command")
|
|
(def content-type-command-request "command-request")
|
|
(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-discover-search-results 20)
|
|
|
|
(def console-chat-id "console")
|
|
(def wallet-chat-id "wallet")
|