forked from 0xPolygon/polygon-edge
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathparams.go
129 lines (105 loc) · 2.91 KB
/
params.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
package chain
import (
"math/big"
"github.com/0xPolygon/polygon-edge/types"
)
// Params are all the set of params for the chain
type Params struct {
Forks *Forks `json:"forks"`
ChainID int `json:"chainID"`
Engine map[string]interface{} `json:"engine"`
Whitelists *Whitelists `json:"whitelists,omitempty"`
BlockGasTarget uint64 `json:"blockGasTarget"`
}
func (p *Params) GetEngine() string {
// We know there is already one
for k := range p.Engine {
return k
}
return ""
}
// Whitelists specifies supported whitelists
type Whitelists struct {
Deployment []types.Address `json:"deployment,omitempty"`
}
// Forks specifies when each fork is activated
type Forks struct {
Homestead *Fork `json:"homestead,omitempty"`
Byzantium *Fork `json:"byzantium,omitempty"`
Constantinople *Fork `json:"constantinople,omitempty"`
Petersburg *Fork `json:"petersburg,omitempty"`
Istanbul *Fork `json:"istanbul,omitempty"`
EIP150 *Fork `json:"EIP150,omitempty"`
EIP158 *Fork `json:"EIP158,omitempty"`
EIP155 *Fork `json:"EIP155,omitempty"`
}
func (f *Forks) active(ff *Fork, block uint64) bool {
if ff == nil {
return false
}
return ff.Active(block)
}
func (f *Forks) IsHomestead(block uint64) bool {
return f.active(f.Homestead, block)
}
func (f *Forks) IsByzantium(block uint64) bool {
return f.active(f.Byzantium, block)
}
func (f *Forks) IsConstantinople(block uint64) bool {
return f.active(f.Constantinople, block)
}
func (f *Forks) IsPetersburg(block uint64) bool {
return f.active(f.Petersburg, block)
}
func (f *Forks) IsEIP150(block uint64) bool {
return f.active(f.EIP150, block)
}
func (f *Forks) IsEIP158(block uint64) bool {
return f.active(f.EIP158, block)
}
func (f *Forks) IsEIP155(block uint64) bool {
return f.active(f.EIP155, block)
}
func (f *Forks) At(block uint64) ForksInTime {
return ForksInTime{
Homestead: f.active(f.Homestead, block),
Byzantium: f.active(f.Byzantium, block),
Constantinople: f.active(f.Constantinople, block),
Petersburg: f.active(f.Petersburg, block),
Istanbul: f.active(f.Istanbul, block),
EIP150: f.active(f.EIP150, block),
EIP158: f.active(f.EIP158, block),
EIP155: f.active(f.EIP155, block),
}
}
type Fork uint64
func NewFork(n uint64) *Fork {
f := Fork(n)
return &f
}
func (f Fork) Active(block uint64) bool {
return block >= uint64(f)
}
func (f Fork) Int() *big.Int {
return big.NewInt(int64(f))
}
type ForksInTime struct {
Homestead,
Byzantium,
Constantinople,
Petersburg,
Istanbul,
EIP150,
EIP158,
EIP155 bool
}
var AllForksEnabled = &Forks{
Homestead: NewFork(0),
EIP150: NewFork(0),
EIP155: NewFork(0),
EIP158: NewFork(0),
Byzantium: NewFork(0),
Constantinople: NewFork(0),
Petersburg: NewFork(0),
Istanbul: NewFork(0),
}