-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathgenesis-template.json
107 lines (107 loc) · 3.16 KB
/
genesis-template.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
107
{
"config": {
"chainId": {{chainId}},
"homesteadBlock": 0,
"eip150Block": 0,
"eip150Hash": "0x0000000000000000000000000000000000000000000000000000000000000000",
"eip155Block": 0,
"eip158Block": 0,
"byzantiumBlock": 0,
"constantinopleBlock": 0,
"petersburgBlock": 0,
"istanbulBlock": 0,
"muirGlacierBlock": 0,
"hashPowerBlock": 0,
"satoshi": {
"period": {{initCycle.blockPeriod}},
"epoch": {{initCycle.epochLength}},
"round": {{initCycle.roundInterval}}
}
},
"nonce": "0x0",
"timestamp": "0x61936E60",
"extraData": "{{extraData}}",
"gasLimit": "0x2625a00",
"difficulty": "0x1",
"mixHash": "0x0000000000000000000000000000000000000000000000000000000000000000",
"coinbase": "0xffffFFFfFFffffffffffffffFfFFFfffFFFfFFfE",
"alloc": {
"0xffffFFFfFFffffffffffffffFfFFFfffFFFfFFfE": {
"balance": "0x0"
},
"0x0000000000000000000000000000000000001000": {
"balance": "839900000000000000000000000",
"code": "0x{{validatorContract}}"
},
"0x0000000000000000000000000000000000001001": {
"balance": "0x0",
"code": "0x{{slashContract}}"
},
"0x0000000000000000000000000000000000001002": {
"balance": "10000000000000000000000000",
"code": "0x{{systemRewardContract}}"
},
"0x0000000000000000000000000000000000001003": {
"balance": "0x0",
"code": "0x{{btcLightClient}}"
},
"0x0000000000000000000000000000000000001004": {
"balance": "0x0",
"code": "0x{{relayerHub}}"
},
"0x0000000000000000000000000000000000001005": {
"balance": "0x0",
"code": "0x{{candidateHub}}"
},
"0x0000000000000000000000000000000000001006": {
"balance": "0x0",
"code": "0x{{govHub}}"
},
"0x0000000000000000000000000000000000001007": {
"balance": "0x0",
"code": "0x{{pledgeAgent}}"
},
"0x0000000000000000000000000000000000001008": {
"balance": "0x0",
"code": "0x{{burn}}"
},
"0x0000000000000000000000000000000000001009": {
"balance": "1250100000000000000000000000",
"code": "0x{{foundation}}"
},
"0x0000000000000000000000000000000000001010": {
"balance": "0x0",
"code": "0x{{stakehub}}"
},
"0x0000000000000000000000000000000000001011": {
"balance": "0x0",
"code": "0x{{coreagent}}"
},
"0x0000000000000000000000000000000000001012": {
"balance": "0x0",
"code": "0x{{hashpoweragent}}"
},
"0x0000000000000000000000000000000000001013": {
"balance": "0x0",
"code": "0x{{bitcoinagent}}"
},
"0x0000000000000000000000000000000000001014": {
"balance": "0x0",
"code": "0x{{bitcoinstake}}"
},
"0x0000000000000000000000000000000000001015": {
"balance": "0x0",
"code": "0x{{bitcoinLSTstake}}"
},
"0x0000000000000000000000000000000000010001": {
"balance": "0x0",
"code": "0x{{bitcoinLSTtoken}}"
}{% for v in initHolders %},
"{{ v.address.replace('0x', '') }}": {
"balance": "0x{{ v.balance }}"
}{% endfor %}
},
"number": "0x0",
"gasUsed": "0x0",
"parentHash": "0x0000000000000000000000000000000000000000000000000000000000000000"
}