forked from dashpay/platform
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.env.example
65 lines (43 loc) · 1.34 KB
/
.env.example
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
# ABCI host and port to listen
ABCI_HOST=0.0.0.0
ABCI_PORT=26658
DB_PATH=./db
# Common store MerkDB file
GROVEDB_LATEST_FILE=${DB_PATH}/latest_state
# Cache size for Data Contracts
DATA_CONTRACT_CACHE_SIZE=500
# DashCore JSON-RPC host, port and credentials
# Read more: https://dashcore.readme.io/docs/core-api-ref-remote-procedure-calls
CORE_JSON_RPC_HOST=127.0.0.1
CORE_JSON_RPC_PORT=9998
CORE_JSON_RPC_USERNAME=dashrpc
CORE_JSON_RPC_PASSWORD=password
# DashCore ZMQ host and port
CORE_ZMQ_HOST=127.0.0.1
CORE_ZMQ_PORT=29998
CORE_ZMQ_CONNECTION_RETRIES=16
NETWORK=testnet
INITIAL_CORE_CHAINLOCKED_HEIGHT=
# https://github.com/dashevo/dashcore-lib/blob/286c33a9d29d33f05d874c47a9b33764a0be0cf1/lib/constants/index.js#L42-L57
VALIDATOR_SET_LLMQ_TYPE=100
# DPNS Contract
DPNS_MASTER_PUBLIC_KEY=
DPNS_SECOND_PUBLIC_KEY=
# Dashpay Contract
DASHPAY_MASTER_PUBLIC_KEY=
DASHPAY_SECOND_PUBLIC_KEY=
# Feature flags contract
FEATURE_FLAGS_MASTER_PUBLIC_KEY=
FEATURE_FLAGS_SECOND_PUBLIC_KEY=
# Masternode reward shares contract
MASTERNODE_REWARD_SHARES_MASTER_PUBLIC_KEY=
MASTERNODE_REWARD_SHARES_SECOND_PUBLIC_KEY=
# logging
LOG_STDOUT_LEVEL=info
LOG_PRETTY_FILE_LEVEL=silent
LOG_PRETTY_FILE_PATH=/tmp/drive-pretty.log
LOG_JSON_FILE_LEVEL=silent
LOG_JSON_FILE_PATH=/tmp/drive-json.log
LOG_STATE_REPOSITORY=false
NODE_ENV=production
TENDERDASH_P2P_PORT=26656