forked from coinbase/mesh-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
default.json
86 lines (86 loc) · 1.87 KB
/
default.json
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
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"network": {
"blockchain": "Ethereum",
"network": "Ropsten"
},
"online_url": "http://localhost:8080",
"data_directory": "",
"http_timeout": 10,
"block_concurrency": 8,
"transaction_concurrency": 16,
"tip_delay": 300,
"construction": {
"offline_url": "http://localhost:8080",
"currency": {
"symbol": "ETH",
"decimals": 18
},
"minimum_balance": "0",
"maximum_fee": "5000000000000000",
"curve_type": "secp256k1",
"accounting_model": "account",
"scenario": [
{
"operation_identifier": {
"index": 0
},
"type": "transfer",
"status": "",
"account": {
"address": "{{ SENDER }}"
},
"amount": {
"value": "{{ SENDER_VALUE }}",
"currency": null
}
},
{
"operation_identifier": {
"index": 1
},
"related_operations": [
{
"index": 0
}
],
"type": "transfer",
"status": "",
"account": {
"address": "{{ RECIPIENT }}"
},
"amount": {
"value": "{{ RECIPIENT_VALUE }}",
"currency": null
}
}
],
"confirmation_depth": 10,
"stale_depth": 30,
"broadcast_limit": 3,
"ignore_broadcast_failures": false,
"change_scenario": null,
"clear_broadcasts": false,
"broadcast_behind_tip": false,
"block_broadcast_limit": 5,
"rebroadcast_all": false,
"new_account_probability": 0.5,
"max_addresses": 200
},
"data": {
"active_reconciliation_concurrency": 16,
"inactive_reconciliation_concurrency": 4,
"inactive_reconciliation_frequency": 250,
"log_blocks": false,
"log_transactions": false,
"log_balance_changes": false,
"log_reconciliations": false,
"ignore_reconciliation_error": false,
"exempt_accounts": "",
"bootstrap_balances": "",
"historical_balance_disabled": false,
"interesting_accounts": "",
"reconciliation_disabled": false,
"inactive_discrepency_search_disabled": false,
"balance_tracking_disabled": false
}
}