prysm-pulse/sharding/config.go

25 lines
703 B
Go
Raw Normal View History

package sharding
import (
"math/big"
"github.com/ethereum/go-ethereum/common"
)
var (
// Number of network shards
ShardCount = int64(1)
// Address of the sharding manager contract
ShardingManagerAddress = common.HexToAddress("0x0") // TODO
// Gas limit for verifying signatures
SigGasLimit = 40000
// Number of blocks in a period
PeriodLength = int64(5)
// Number of periods ahead of current period which the contract is able to return the collator of that period.
LookaheadPeriods = 4
// Required deposit size in wei
DepositSize = new(big.Int).Exp(big.NewInt(10), big.NewInt(20), nil) // 100 ETH
// Gas limit to create contract
ContractGasLimit = uint64(4700000) // Max is 4712388
)