The core protocol of WoopChain
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.
 
 
 
woop/staking/effective/values.go

20 lines
462 B

package effective
import "github.com/harmony-one/harmony/numeric"
const (
// ValidatorsPerShard ..
ValidatorsPerShard = 400
// AllValidatorsCount ..
AllValidatorsCount = ValidatorsPerShard * 4
)
// StakeKeeper ..
type StakeKeeper interface {
// Activity
Inventory() struct {
BLSPublicKeys [][48]byte `json:"bls_pubkey"`
WithDelegationApplied []numeric.Dec `json:"with-delegation-applied,omitempty"`
// CurrentlyActive []bool
}
}