-
Notifications
You must be signed in to change notification settings - Fork 20
/
txgen.conf.example
72 lines (62 loc) · 1.54 KB
/
txgen.conf.example
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
{
"transactions_per_block" : 40,
"steem_block_interval" : 3,
"num_blocks_to_clear_witness_round" : 21,
"transaction_witness_setup_pad" : 100,
"steem_max_authority_membership" : 10,
"steem_address_prefix" : "TST",
"steem_init_miner_name" : "initminer",
"snapshot_file" : "snapshot.json",
"backfill_file" : "backfill.actions",
"min_vesting_per_account" : {"amount" : "1", "precision" : 3, "nai" : "@@000000021"},
"total_port_balance" : {"amount" : "200000000000", "precision" : 3, "nai" : "@@000000021"},
"accounts" :
{
"initminer" :
{
"name" : "initminer",
"vesting" : {"amount" : "1000000", "precision" : 3, "nai" : "@@000000021"}
},
"init" :
{
"name" : "init-{index}",
"vesting" : {"amount" : "1000000", "precision" : 3, "nai" : "@@000000021"},
"count" : 21,
"creator" : "initminer"
},
"elector" :
{
"name" : "elect-{index}",
"vesting" : {"amount" : "1000000000", "precision" : 3, "nai" : "@@000000021"},
"count" : 10,
"round_robin_votes_per_elector" : 2,
"random_votes_per_elector" : 3,
"randseed" : 1234,
"creator" : "initminer"
},
"porter" :
{
"name" : "porter",
"creator" : "initminer",
"vesting" : {"amount" : "1000000", "precision" : 3, "nai" : "@@000000021"}
},
"manager" :
{
"name" : "tnman",
"creator" : "initminer",
"vesting" : {"amount" : "1000000", "precision" : 3, "nai" : "@@000000021"}
},
"STEEM_MINER_ACCOUNT" :
{
"name" : "miners"
},
"STEEM_NULL_ACCOUNT" :
{
"name" : "null"
},
"STEEM_TEMP_ACCOUNT" :
{
"name" : "temp"
}
}
}