You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
96 lines
3.0 KiB
96 lines
3.0 KiB
// Package shardingconfig defines types and utilities that deal with Harmony
|
|
// sharding configuration schedule.
|
|
package shardingconfig
|
|
|
|
import (
|
|
"fmt"
|
|
"math/big"
|
|
|
|
"github.com/harmony-one/harmony/numeric"
|
|
|
|
"github.com/harmony-one/harmony/internal/genesis"
|
|
)
|
|
|
|
//go:generate mockgen -source=shardingconfig.go -destination=mock/shardingconfig.go
|
|
|
|
// Schedule returns the sharding configuration instance for the given
|
|
// epoch.
|
|
type Schedule interface {
|
|
InstanceForEpoch(epoch *big.Int) Instance
|
|
|
|
// BlocksPerEpoch returns the number of blocks per each Epoch
|
|
BlocksPerEpoch() uint64
|
|
|
|
// CalcEpochNumber returns the epoch number based on the block number
|
|
CalcEpochNumber(blockNum uint64) *big.Int
|
|
|
|
// IsLastBlock check if the block is the last block in the epoch
|
|
IsLastBlock(blockNum uint64) bool
|
|
|
|
// EpochLastBlock returns the last block number of an epoch
|
|
EpochLastBlock(epochNum uint64) uint64
|
|
|
|
// VDFDifficulty returns number of iterations for VDF calculation
|
|
VdfDifficulty() int
|
|
|
|
// ConsensusRatio ratio of new nodes vs consensus total nodes
|
|
ConsensusRatio() float64
|
|
|
|
// TODO: remove it after randomness feature turned on mainnet
|
|
//RandomnessStartingEpoch returns starting epoch of randonness generation
|
|
RandomnessStartingEpoch() uint64
|
|
|
|
// GetNetworkID() return networkID type.
|
|
GetNetworkID() NetworkID
|
|
|
|
// GetShardingStructure returns sharding structure.
|
|
GetShardingStructure(int, int) []map[string]interface{}
|
|
}
|
|
|
|
// Instance is one sharding configuration instance.
|
|
type Instance interface {
|
|
// NumShards returns the number of shards in the network.
|
|
NumShards() uint32
|
|
|
|
// NumNodesPerShard returns number of nodes in each shard.
|
|
NumNodesPerShard() int
|
|
|
|
// NumHarmonyOperatedNodesPerShard returns number of nodes in each shard
|
|
// that are operated by Harmony.
|
|
NumHarmonyOperatedNodesPerShard() int
|
|
|
|
// HarmonyVotePercent returns total percentage of voting power harmony nodes possess.
|
|
HarmonyVotePercent() numeric.Dec
|
|
|
|
// ExternalVotePercent returns total percentage of voting power external validators possess.
|
|
ExternalVotePercent() numeric.Dec
|
|
|
|
// HmyAccounts returns a list of Harmony accounts
|
|
HmyAccounts() []genesis.DeployAccount
|
|
|
|
// FnAccounts returns a list of Foundational node accounts
|
|
FnAccounts() []genesis.DeployAccount
|
|
|
|
// FindAccount returns the deploy account based on the blskey
|
|
FindAccount(blsPubKey string) (bool, *genesis.DeployAccount)
|
|
|
|
// ReshardingEpoch returns a list of Epoch while off-chain resharding happens
|
|
ReshardingEpoch() []*big.Int
|
|
|
|
// Count of blocks per epoch
|
|
BlocksPerEpoch() uint64
|
|
}
|
|
|
|
// genShardingStructure return sharding structure, given shard number and its patterns.
|
|
func genShardingStructure(shardNum, shardID int, httpPattern, wsPattern string) []map[string]interface{} {
|
|
res := []map[string]interface{}{}
|
|
for i := 0; i < shardNum; i++ {
|
|
res = append(res, map[string]interface{}{
|
|
"current": int(shardID) == i,
|
|
"shardID": i,
|
|
"http": fmt.Sprintf(httpPattern, i),
|
|
"ws": fmt.Sprintf(wsPattern, i),
|
|
})
|
|
}
|
|
return res
|
|
}
|
|
|