2017-08-21 14:49:31 +00:00
|
|
|
(ns status-im.constants
|
2017-10-20 07:15:56 +00:00
|
|
|
(:require [status-im.utils.types :as types]
|
|
|
|
[status-im.utils.config :as config]))
|
2016-03-23 19:05:42 +00:00
|
|
|
|
|
|
|
(def ethereum-rpc-url "http://localhost:8545")
|
|
|
|
|
2016-06-23 12:52:54 +00:00
|
|
|
(def server-address "http://api.status.im/")
|
2016-04-08 09:17:10 +00:00
|
|
|
;; (def server-address "http://10.0.3.2:3000/")
|
2016-05-19 08:51:13 +00:00
|
|
|
;; (def server-address "http://localhost:3000/")
|
2016-03-28 12:14:57 +00:00
|
|
|
|
|
|
|
(def text-content-type "text/plain")
|
2017-05-21 14:52:52 +00:00
|
|
|
(def content-type-log-message "log-message")
|
2016-04-04 15:19:52 +00:00
|
|
|
(def content-type-command "command")
|
2016-04-06 13:40:31 +00:00
|
|
|
(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")
|
2016-04-22 10:51:14 +00:00
|
|
|
(def content-type-status "status")
|
2016-05-25 09:44:00 +00:00
|
|
|
|
|
|
|
(def max-chat-name-length 20)
|
2016-05-30 13:50:23 +00:00
|
|
|
(def response-suggesstion-resize-duration 100)
|
2016-07-18 13:22:32 +00:00
|
|
|
(def default-number-of-messages 20)
|
2016-10-06 09:52:58 +00:00
|
|
|
(def blocks-per-hour 120)
|
2016-08-19 13:14:59 +00:00
|
|
|
|
2016-09-23 13:22:35 +00:00
|
|
|
(def console-chat-id "console")
|
2017-08-21 14:49:31 +00:00
|
|
|
|
|
|
|
(def default-network "testnet_rpc")
|
2017-10-05 11:23:25 +00:00
|
|
|
|
|
|
|
(defn- transform-config [networks]
|
|
|
|
(->> networks
|
|
|
|
(map (fn [[network-name {:keys [config] :as data}]]
|
|
|
|
[network-name (assoc data
|
|
|
|
:config (types/clj->json config)
|
|
|
|
:raw-config config)]))
|
|
|
|
(into {})))
|
|
|
|
|
2017-10-10 13:07:27 +00:00
|
|
|
(def mainnet-id 1)
|
|
|
|
(def ropsten-id 3)
|
|
|
|
(def rinkeby-id 4)
|
|
|
|
|
2017-10-13 10:20:19 +00:00
|
|
|
(defn get-testnet-name [testnet-id]
|
|
|
|
(cond
|
|
|
|
(= testnet-id ropsten-id) "Ropsten"
|
|
|
|
(= testnet-id rinkeby-id) "Rinkeby"
|
|
|
|
:else "Unknown"))
|
|
|
|
|
2017-10-20 07:15:56 +00:00
|
|
|
(def mainnet-networks
|
|
|
|
{"mainnet" {:id "mainnet",
|
|
|
|
:name "Mainnet",
|
|
|
|
:config {:NetworkId mainnet-id
|
|
|
|
:DataDir "/ethereum/mainnet"}}
|
|
|
|
"mainnet_rpc" {:id "mainnet_rpc",
|
|
|
|
:name "Mainnet with upstream RPC",
|
|
|
|
:config {:NetworkId mainnet-id
|
|
|
|
:DataDir "/ethereum/mainnet_rpc"
|
|
|
|
:UpstreamConfig {:Enabled true
|
|
|
|
:URL "https://mainnet.infura.io/z6GCTmjdP3FETEJmMBI4"}}}})
|
|
|
|
|
|
|
|
(def testnet-networks
|
|
|
|
{"testnet" {:id "testnet",
|
|
|
|
:name "Ropsten",
|
|
|
|
:config {:NetworkId ropsten-id
|
|
|
|
:DataDir "/ethereum/testnet"}}
|
|
|
|
"testnet_rpc" {:id "testnet_rpc",
|
|
|
|
:name "Ropsten with upstream RPC",
|
|
|
|
:config {:NetworkId ropsten-id
|
|
|
|
:DataDir "/ethereum/testnet_rpc"
|
|
|
|
:UpstreamConfig {:Enabled true
|
|
|
|
:URL "https://ropsten.infura.io/z6GCTmjdP3FETEJmMBI4"}}}
|
|
|
|
"rinkeby" {:id "rinkeby",
|
|
|
|
:name "Rinkeby",
|
|
|
|
:config {:NetworkId rinkeby-id
|
|
|
|
:DataDir "/ethereum/rinkeby"}}
|
|
|
|
"rinkeby_rpc" {:id "rinkeby_rpc",
|
|
|
|
:name "Rinkeby with upstream RPC",
|
|
|
|
:config {:NetworkId rinkeby-id
|
|
|
|
:DataDir "/ethereum/rinkeby_rpc"
|
|
|
|
:UpstreamConfig {:Enabled true
|
|
|
|
:URL "https://rinkeby.infura.io/z6GCTmjdP3FETEJmMBI4"}}}})
|
2017-08-21 14:49:31 +00:00
|
|
|
(def default-networks
|
2017-10-05 11:23:25 +00:00
|
|
|
(transform-config
|
2017-10-20 07:15:56 +00:00
|
|
|
(merge testnet-networks
|
|
|
|
(when config/mainnet-networks-enabled? mainnet-networks))))
|
2017-10-04 14:50:17 +00:00
|
|
|
|
|
|
|
(def ^:const send-transaction-no-error-code "0")
|
|
|
|
(def ^:const send-transaction-default-error-code "1")
|
|
|
|
(def ^:const send-transaction-password-error-code "2")
|
|
|
|
(def ^:const send-transaction-timeout-error-code "3")
|
|
|
|
(def ^:const send-transaction-discarded-error-code "4")
|