-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsample.env
58 lines (44 loc) · 2.16 KB
/
sample.env
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
# ETHEREUM_RPC_URL - defaults to stroom provided. Set if want to use own
ETHEREUM_RPC_URL="https://ethereum.testnet.stroom.ninja:443"
# APP_VERSION - version of app which will be deployed
APP_VERSION=""
# APPROVAL_THRESHOLD - number of validators required to approve transaction.
# should be same for all validators. Determined during key generation ceremony
APPROVAL_THRESHOLD=7
# BITCOIN_RPC_HOST - rpc host of bitcoind. Default to stroom provided bitcoind
BITCOIN_RPC_HOST="support-bitcoind-proxy:80"
# BITCOIN_RPC_USER - user to access secured bitcoin rpc
# for stroom provided node should be requested separately
BITCOIN_RPC_USER="sampleUser"
# BITCOIN_RPC_PASSWORD - password to access secured bitcoin rpc
# for stroom provided node should be requested separately
BITCOIN_RPC_PASSWORD="samplePass"
# BITCOIN_CHAIN - bitcoin network which validator is operated in.
# valid options [simnet|signet|testnet|testnet4|regtest|mainnet] defaults to testnet4
# Should be same for all validators
BITCOIN_CHAIN="testnet4"
# ETHEREUM_START_HEIGHT - defines from where to watch for ethereum transactions
# all transaction on lower hight will be ignored
# Should be same for all validators
ETHEREUM_START_HEIGHT=7176028
# BITCOIN_START_HEIGHT - defines from where to watch for bitcoin transactions
# all transaction on lower hight will be ignored
# Should be same for all validators
BITCOIN_START_HEIGHT=55832
# NODE_PRIVATE_KEY - private key used for transactions signing
# gathered from key-generator
NODE_PRIVATE_KEY="samplenodeprivatekey0d5f7758a20da68e2bdc66fe946a96df2b892ba39e02"
# TENANT - name of validator used for tagging of metrics sent to stroom via telegraf
TENANT="exampleTenant"
# AWS_ROLE_ARN - stroom provided role arn for to send logs to cloudwatch
AWS_ROLE_ARN=""
# AWS_ACCESS_KEY_ID - stroom provided access key to send logs to cloudwatch
AWS_ACCESS_KEY_ID=""
# AWS_SECRET_ACCESS_KEY - stroom provided secret access key to send logs to cloudwatch
AWS_SECRET_ACCESS_KEY=""
# LOG_GROUP_NAME - stroom provided name of log group used for logs storage
LOG_GROUP_NAME=""
# LOG_LEVEL = sets stroom stack log level
LOG_LEVEL="debug"
# BITCOIN_URL
BITCOIND_URL="https://bitcoind.example.com:443"