forked from coinbase/mesh-cli
-
Notifications
You must be signed in to change notification settings - Fork 8
/
coda.json
executable file
·106 lines (105 loc) · 2.35 KB
/
coda.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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"network": {
"blockchain": "coda",
"network": "debug"
},
"online_url": "http://localhost:3087",
"data_directory": "",
"http_timeout": 10,
"sync_concurrency": 8,
"transaction_concurrency": 16,
"tip_delay": 300,
"disable_memory_limit": false,
"log_configuration": false,
"construction": {
"offline_url": "http://localhost:3087",
"currency": {
"symbol": "CODA",
"decimals": 9
},
"minimum_balance": "150000000",
"maximum_fee": "50000000000",
"curve_type": "tweedle",
"accounting_model": "account",
"scenario": [
{
"operation_identifier": {
"index": 0
},
"type": "fee_payer_dec",
"status": "",
"account": {
"address": "{{ SENDER }}",
"metadata": { "token_id": "1" }
},
"amount": {
"value": "-{{ FEE_VALUE }}",
"currency": {"symbol": "CODA", "decimals": 9 }
}
},
{
"operation_identifier": {
"index": 1
},
"type": "payment_source_dec",
"status": "",
"account": {
"address": "{{ SENDER }}",
"metadata": { "token_id": "1" }
},
"amount": {
"value": "-{{ SENDER_VALUE }}",
"currency": {"symbol": "CODA", "decimals": 9 }
}
},
{
"operation_identifier": {
"index": 2
},
"related_operations": [
{
"index": 1
}
],
"type": "payment_receiver_inc",
"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": true,
"interesting_accounts": "",
"reconciliation_disabled": false,
"inactive_discrepency_search_disabled": false,
"balance_tracking_disabled": false,
"coin_tracking_disabled": false
}
}