-
Notifications
You must be signed in to change notification settings - Fork 179
/
epoch_config.go
72 lines (63 loc) · 2.36 KB
/
epoch_config.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
package epochs
import (
"github.com/onflow/cadence"
jsoncdc "github.com/onflow/cadence/encoding/json"
"github.com/onflow/flow-go/crypto"
"github.com/onflow/flow-go/model/flow"
)
// EpochConfig is a placeholder for config values used to deploy the epochs
// smart-contract.
type EpochConfig struct {
EpochTokenPayout cadence.UFix64
RewardCut cadence.UFix64
CurrentEpochCounter cadence.UInt64
NumViewsInEpoch cadence.UInt64
NumViewsInStakingAuction cadence.UInt64
NumViewsInDKGPhase cadence.UInt64
NumCollectorClusters cadence.UInt16
FLOWsupplyIncreasePercentage cadence.UFix64
RandomSource cadence.String
CollectorClusters flow.AssignmentList
ClusterQCs []*flow.QuorumCertificate
DKGPubKeys []crypto.PublicKey
}
// DefaultEpochConfig returns an EpochConfig with default values used for
// testing.
func DefaultEpochConfig() EpochConfig {
return EpochConfig{
CurrentEpochCounter: cadence.UInt64(0),
NumViewsInEpoch: cadence.UInt64(100),
NumViewsInStakingAuction: cadence.UInt64(10),
NumViewsInDKGPhase: cadence.UInt64(10),
NumCollectorClusters: cadence.UInt16(3),
FLOWsupplyIncreasePercentage: cadence.UFix64(5),
}
}
// EncodeClusterAssignments encodes a slice of QuorumCertificates into an encoded
// transaction argument for the deployEpoch transaction used during execution
// state bootstrapping.
//
// The resulting argument has type [{String: UInt64}] which represents a list
// of weight mappings for each cluster. The full Cluster struct is constructed
// within the transaction in Cadence for simplicity here.
//
func EncodeClusterAssignments(clusterAssignments flow.AssignmentList) []byte {
weightMappingPerCluster := []cadence.Value{}
for _, cluster := range clusterAssignments {
weightsByNodeID := []cadence.KeyValuePair{}
for _, id := range cluster {
cdcNodeID, err := cadence.NewString(id.String())
if err != nil {
panic(err)
}
kvp := cadence.KeyValuePair{
Key: cdcNodeID,
Value: cadence.NewUInt64(1),
}
weightsByNodeID = append(weightsByNodeID, kvp)
}
weightMappingPerCluster = append(weightMappingPerCluster, cadence.NewDictionary(weightsByNodeID))
}
asArray := cadence.NewArray(weightMappingPerCluster)
return jsoncdc.MustEncode(asArray)
}