-
Notifications
You must be signed in to change notification settings - Fork 6
/
config-sample.toml
73 lines (58 loc) · 1.96 KB
/
config-sample.toml
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
66
67
68
69
70
71
72
73
# Default network settings
url = "http://localhost:8545"
network = "sokol" # "core" for the main and "sokol" for the test network
# Custom network settings
coreRpcUrl="http://localhost:8541"
sokolRpcUrl="http://localhost:8540"
coreWsUrl="ws://localhost:8451"
sokolWsUrl="ws://localhost:8450"
coreInfuraUrl="https://poa.infura.io"
corePublicRpcUrl="https://core.poa.network"
sokolPublicRpcUrl="https://sokol.poa.network"
# mining-block-test settings
maxRounds = 5
# Sending txs test
addressTxTest1_sokol = "0x...dfcb"
passwordTxTest1_sokol = "password"
addressTxTest2_sokol = "0x...a72"
passwordTxTest2_sokol = "password"
addressTxTest1_core = "0x"
passwordTxTest1_core = "password"
addressTxTest2_core = "0x.."
passwordTxTest2_core = "password"
#Sending txs via public RPC test
keyStorePathPublicRpc1_sokol = "/path/UTC--.."
addressPublicRpc1_sokol = "0x.."
passwordPublicRpc1_sokol = "password"
keyStorePathPublicRpc2_sokol = "/path/UTC--.."
addressPublicRpc2_sokol = "0x.."
passwordPublicRpc2_sokol = "password"
keyStorePathPublicRpc1_core = "/path/UTC--.."
addressPublicRpc1_core = "0x.."
passwordPublicRpc1_core = "password"
keyStorePathPublicRpc2_core = "/path/UTC--.."
addressPublicRpc2_core = "0x.."
passwordPublicRpc2_core = "password"
# Sending txs via Infura test
keyStorePathInfura1_core = "/path/UTC--.."
addressInfura1_core = "0x.."
passwordInfura1_core = "password"
keyStorePathInfura2_core = "/path/UTC--.."
addressInfura2_core = "0x.."
passwordInfura2_core = "password"
# Transaction settings
gasPrice = "1000000000"
simpleTransactionGas = "21000"
simpleTransactionCost = "21000000000000" # equals to gas multipty by gascost: 21000 * 1000000000
amountToSend = "20000000000"
txsNumber = 10
#Block reward settings
miningReward = "1000000000000000000"
emissionFundsAmount = "1000000000000000000"
# Reorgs settings
maxBlocksToSave = 20
#slack
slackWebHookUrl = 'https://hooks.slack.com/services/............token'
channel = 'monitor'
#Monitor
domainName = "http://localhost:3000/"