forked from cosmos/mainnet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.go
315 lines (274 loc) · 7.98 KB
/
main.go
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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
package main
import (
"bytes"
"encoding/json"
"fmt"
"io/ioutil"
"math"
"sort"
"strings"
"time"
amino "github.com/tendermint/go-amino"
tmtypes "github.com/tendermint/tendermint/types"
gaia "github.com/cosmos/cosmos-sdk/cmd/gaia/app"
sdk "github.com/cosmos/cosmos-sdk/types"
"github.com/cosmos/launch/pkg"
)
const (
// processed contributors files
icfJSON = "accounts/icf/contributors.json"
privateJSON = "accounts/private/contributors.json"
publicJSON = "accounts/public/contributors.json"
// seperate because vesting
aibEmployeeJSON = "accounts/aib/employees.json"
aibMultisigJSON = "accounts/aib/multisig.json"
genesisTemplate = "params/genesis_template.json"
genesisFile = "penultimate_genesis.json"
atomDenomination = "uatom"
atomGenesisTotal = 236198958.12
addressGenesisTotal = 984
timeGenesisString = "2019-03-13 23:00:00 -0000 UTC"
)
// constants but can't use `const`
var (
timeGenesis time.Time
// vesting times
timeGenesisTwoMonths time.Time
timeGenesisOneYear time.Time
timeGenesisTwoYears time.Time
)
// initialize the times!
func init() {
var err error
timeLayoutString := "2006-01-02 15:04:05 -0700 MST"
timeGenesis, err = time.Parse(timeLayoutString, timeGenesisString)
if err != nil {
panic(err)
}
timeGenesisTwoMonths = timeGenesis.AddDate(0, 2, 0)
timeGenesisOneYear = timeGenesis.AddDate(1, 0, 0)
timeGenesisTwoYears = timeGenesis.AddDate(2, 0, 0)
}
// max precision on amt is two decimals ("centi-atoms")
func atomToUAtomInt(amt float64) sdk.Int {
// amt is specified to 2 decimals ("centi-atoms").
// multiply by 100 to get the number of centi-atoms
// and round to int64.
// Multiply by remaining to get uAtoms.
var precision float64 = 100
var remaining int64 = 10000
catoms := int64(math.Round(amt * precision))
uAtoms := catoms * remaining
return sdk.NewInt(uAtoms)
}
// convert atoms with two decimal precision to coins
func newCoins(amt float64) sdk.Coins {
uAtoms := atomToUAtomInt(amt)
return sdk.Coins{
sdk.Coin{
Denom: atomDenomination,
Amount: uAtoms,
},
}
}
func main() {
// for each path, accumulate the contributors file
// icf addresses are in bech32, fundraiser are in hex
contribs := make(map[string]float64)
{
accumulateBechContributors(icfJSON, contribs)
accumulateHexContributors(privateJSON, contribs)
accumulateHexContributors(publicJSON, contribs)
}
// load the aib pieces
employees, multisig := aibAtoms(aibEmployeeJSON, aibMultisigJSON, contribs)
// construct the genesis accounts :)
var genesisAccounts []gaia.GenesisAccount
{
for addr, amt := range contribs {
acc := gaia.GenesisAccount{
Address: fromBech32(addr),
Coins: newCoins(amt),
}
genesisAccounts = append(genesisAccounts, acc)
}
// add aib employees vesting for 1 year cliff
for _, aibAcc := range employees {
coins := newCoins(aibAcc.Amount)
genAcc := gaia.GenesisAccount{
Address: fromBech32(aibAcc.Address),
Coins: coins,
OriginalVesting: coins,
EndTime: timeGenesisOneYear.Unix(),
}
genesisAccounts = append(genesisAccounts, genAcc)
}
// add aib multisig vesting continuosuly for 2 years
// starting after 2 months
multisigCoins := newCoins(multisig.Amount)
genAcc := gaia.GenesisAccount{
Address: fromBech32(multisig.Address),
Coins: multisigCoins,
OriginalVesting: multisigCoins,
StartTime: timeGenesisTwoMonths.Unix(),
EndTime: timeGenesisTwoYears.Unix(),
}
genesisAccounts = append(genesisAccounts, genAcc)
}
// check uAtom total
uAtomTotal := sdk.NewInt(0)
for _, account := range genesisAccounts {
uAtomTotal = uAtomTotal.Add(account.Coins[0].Amount)
}
if !uAtomTotal.Equal(atomToUAtomInt(atomGenesisTotal)) {
panicStr := fmt.Sprintf("expected %s atoms, got %s atoms allocated in genesis", atomToUAtomInt(atomGenesisTotal), uAtomTotal.String())
panic(panicStr)
}
if len(genesisAccounts) != addressGenesisTotal {
panicStr := fmt.Sprintf("expected %d addresses, got %d addresses allocated in genesis", addressGenesisTotal, len(genesisAccounts))
panic(panicStr)
}
fmt.Println("-----------")
fmt.Println("TOTAL addrs", len(genesisAccounts))
fmt.Println("TOTAL uAtoms", uAtomTotal.String())
// ensure no duplicates
{
checkdupls := make(map[string]struct{})
for _, acc := range genesisAccounts {
if _, ok := checkdupls[acc.Address.String()]; ok {
panic(fmt.Sprintf("Got duplicate: %v", acc.Address))
}
checkdupls[acc.Address.String()] = struct{}{}
}
if len(checkdupls) != len(genesisAccounts) {
panic("length mismatch!")
}
}
// sort the accounts
sort.SliceStable(genesisAccounts, func(i, j int) bool {
return strings.Compare(
genesisAccounts[i].Address.String(),
genesisAccounts[j].Address.String(),
) < 0
})
var genesisDoc *tmtypes.GenesisDoc
// XXX: this is a bit much. is there something we can more easily resuse here?
// and do we need to register amino here?
// Note the app state is decoded using amino (ints are strings, anything else ?)
cdc := amino.NewCodec()
{
// read the template with the params
var err error
genesisDoc, err = tmtypes.GenesisDocFromFile(genesisTemplate)
if err != nil {
panic(err)
}
// set genesis time
genesisDoc.GenesisTime = timeGenesis
// read the gaia state from the generic tendermint app state bytes
// and populate with the accounts.
var genesisState gaia.GenesisState
err = cdc.UnmarshalJSON(genesisDoc.AppState, &genesisState)
if err != nil {
panic(err)
}
genesisState.Accounts = genesisAccounts
// marshal the gaia app state back to json and update the genesisDoc
genesisStateJSON, err := cdc.MarshalJSON(genesisState)
if err != nil {
panic(err)
}
genesisDoc.AppState = genesisStateJSON
}
// write the genesis file
{
bz, err := cdc.MarshalJSON(genesisDoc)
if err != nil {
panic(err)
}
buf := bytes.NewBuffer([]byte{})
err = json.Indent(buf, bz, "", " ")
if err != nil {
panic(err)
}
err = ioutil.WriteFile(genesisFile, buf.Bytes(), 0600)
if err != nil {
panic(err)
}
}
}
func fromBech32(address string) sdk.AccAddress {
bech32PrefixAccAddr := "cosmos"
bz, err := sdk.GetFromBech32(address, bech32PrefixAccAddr)
if err != nil {
panic(err)
}
if len(bz) != sdk.AddrLen {
panic("Incorrect address length")
}
return sdk.AccAddress(bz)
}
// load a map of hex addresses and convert them to bech32
func accumulateHexContributors(fileName string, contribs map[string]float64) error {
allocations := pkg.ObjToMap(fileName)
for addr, amt := range allocations {
bech32Addr, err := sdk.AccAddressFromHex(addr)
if err != nil {
return err
}
addr = bech32Addr.String()
if _, ok := contribs[addr]; ok {
fmt.Println("Duplicate addr", addr)
}
contribs[addr] += amt
}
return nil
}
func accumulateBechContributors(fileName string, contribs map[string]float64) error {
allocations := pkg.ObjToMap(fileName)
for addr, amt := range allocations {
if _, ok := contribs[addr]; ok {
fmt.Println("Duplicate addr", addr)
}
contribs[addr] += amt
}
return nil
}
//----------------------------------------------------------
// AiB Data
type Account struct {
Address string `json:"addr"`
Amount float64 `json:"amount"`
Lock string `json:"lock"`
}
type MultisigAccount struct {
Address string `json:"addr"`
Threshold int `json:"threshold"`
Pubs []string `json:"pubs"`
Amount float64 `json:"amount"`
}
// load the aib atoms and ensure there are no duplicates with the contribs
func aibAtoms(employeesFile, multisigFile string, contribs map[string]float64) (employees []Account, multisigAcc MultisigAccount) {
bz, err := ioutil.ReadFile(employeesFile)
if err != nil {
panic(err)
}
err = json.Unmarshal(bz, &employees)
if err != nil {
panic(err)
}
bz, err = ioutil.ReadFile(multisigFile)
if err != nil {
panic(err)
}
err = json.Unmarshal(bz, &multisigAcc)
if err != nil {
panic(err)
}
for _, acc := range employees {
if _, ok := contribs[acc.Address]; ok {
fmt.Println("AiB Addr Duplicate", acc.Address)
}
}
return
}