aboutsummaryrefslogtreecommitdiffstats
path: root/core/gen_genesis_account.go
blob: 15393d9783cda1b3e8bfc6527d9e215b9b07736d (plain) (blame)
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
// Code generated by github.com/fjl/gencodec. DO NOT EDIT.

package core

import (
    "encoding/json"
    "errors"
    "math/big"

    "github.com/dexon-foundation/dexon/common"
    "github.com/dexon-foundation/dexon/common/hexutil"
    "github.com/dexon-foundation/dexon/common/math"
)

var _ = (*genesisAccountMarshaling)(nil)

// MarshalJSON marshals as JSON.
func (g GenesisAccount) MarshalJSON() ([]byte, error) {
    type GenesisAccount struct {
        Code       hexutil.Bytes               `json:"code,omitempty"`
        Storage    map[storageJSON]storageJSON `json:"storage,omitempty"`
        Balance    *math.HexOrDecimal256       `json:"balance" gencodec:"required"`
        Nonce      math.HexOrDecimal64         `json:"nonce,omitempty"`
        Staked     *math.HexOrDecimal256       `json:"staked"`
        PublicKey  hexutil.Bytes               `json:"publicKey"`
        NodeInfo   NodeInfo                    `json:"info"`
        PrivateKey hexutil.Bytes               `json:"secretKey,omitempty"`
    }
    var enc GenesisAccount
    enc.Code = g.Code
    if g.Storage != nil {
        enc.Storage = make(map[storageJSON]storageJSON, len(g.Storage))
        for k, v := range g.Storage {
            enc.Storage[storageJSON(k)] = storageJSON(v)
        }
    }
    enc.Balance = (*math.HexOrDecimal256)(g.Balance)
    enc.Nonce = math.HexOrDecimal64(g.Nonce)
    enc.Staked = (*math.HexOrDecimal256)(g.Staked)
    enc.PublicKey = g.PublicKey
    enc.NodeInfo = g.NodeInfo
    enc.PrivateKey = g.PrivateKey
    return json.Marshal(&enc)
}

// UnmarshalJSON unmarshals from JSON.
func (g *GenesisAccount) UnmarshalJSON(input []byte) error {
    type GenesisAccount struct {
        Code       *hexutil.Bytes              `json:"code,omitempty"`
        Storage    map[storageJSON]storageJSON `json:"storage,omitempty"`
        Balance    *math.HexOrDecimal256       `json:"balance" gencodec:"required"`
        Nonce      *math.HexOrDecimal64        `json:"nonce,omitempty"`
        Staked     *math.HexOrDecimal256       `json:"staked"`
        PublicKey  *hexutil.Bytes              `json:"publicKey"`
        NodeInfo   *NodeInfo                   `json:"info"`
        PrivateKey *hexutil.Bytes              `json:"secretKey,omitempty"`
    }
    var dec GenesisAccount
    if err := json.Unmarshal(input, &dec); err != nil {
        return err
    }
    if dec.Code != nil {
        g.Code = *dec.Code
    }
    if dec.Storage != nil {
        g.Storage = make(map[common.Hash]common.Hash, len(dec.Storage))
        for k, v := range dec.Storage {
            g.Storage[common.Hash(k)] = common.Hash(v)
        }
    }
    if dec.Balance == nil {
        return errors.New("missing required field 'balance' for GenesisAccount")
    }
    g.Balance = (*big.Int)(dec.Balance)
    if dec.Nonce != nil {
        g.Nonce = uint64(*dec.Nonce)
    }
    if dec.Staked != nil {
        g.Staked = (*big.Int)(dec.Staked)
    }
    if dec.PublicKey != nil {
        g.PublicKey = *dec.PublicKey
    }
    if dec.NodeInfo != nil {
        g.NodeInfo = *dec.NodeInfo
    }
    if dec.PrivateKey != nil {
        g.PrivateKey = *dec.PrivateKey
    }
    return nil
}