forked from botanix-labs/Macbeth
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
64 lines (50 loc) · 1.51 KB
/
.env.example
File metadata and controls
64 lines (50 loc) · 1.51 KB
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
# Botanix Local Development Environment Configuration
# Copy this file to .env and customize as needed
# ============================================
# Docker Compose Setup Configuration
# ============================================
# Number of nodes in the cluster
NUM_NODES=3
# Output and config paths
OUTPUT_PATH=docker-local
CONFIG_PATH=docker-local/configs
# FROST multisig configuration
MIN_SIGNERS=2
MAX_SIGNERS=3
# Docker network configuration
DOCKER_SUBNET=172.22.0.0/16
PROJECT_PREFIX=botanix
# Block fee recipient address
BLOCK_FEE_RECIPIENT_ADDRESS=0xF27a6Ea4a1d5f7341Da7EDAaa47C5C933b738f4F
# ============================================
# Local Configuration using local directories
# ============================================
# Botanix local node configs
NODES_DIR=.botanix-local
NODES_NUMBER=2
FROST_MIN_SIGNERS=2
FROST_MAX_SIGNERS=2
# local directories
NODE_1_DIR=/path_to_/node_1
NODE_2_DIR=/path_to_/node_2
NON_FED_1_DIR=/path_to_/non_fed_1
# Filter for POA stdout logs
#POA_LOG_STDOUT_FILTER=reth_authority_consensus=trace,reth=trace,block_with_context=off
# bitcoind
BITCOIND_NETWORK=regtest
BITCOIND_URL=http://localhost:18443
BITCOIND_USER=foo
BITCOIND_PWD=bar
# ntp server
NTP_SERVER_URL=time.cloudflare.com
# profiler
PROFILER_FROST_ID=0
PROFILER_DB_DIR=path_to_/db
PROFILER_NODE_DIR=path_to_/node
PROFILER_POA_HTTP_PORT=8545
PROFILER_POA_WS_PORT=9545
PROFILER_BTC_SERVER_PORT=8081
PROFILER_FROST_MIN_SIGNERS=2
PROFILER_FROST_MAX_SIGNERS=2
PROFILER_POA_RPC_PORT=30303
PROFILER_COMMET_ABCI_PORT=26658