lotus/build/params_testground.go

112 lines
3.1 KiB
Go
Raw Normal View History

// +build testground
// This file makes hardcoded parameters (const) configurable as vars.
//
// Its purpose is to unlock various degrees of flexibility and parametrization
// when writing Testground plans for Lotus.
//
package build
import (
"math/big"
2020-09-07 03:49:10 +00:00
"github.com/filecoin-project/go-state-types/abi"
2020-09-10 19:15:49 +00:00
"github.com/filecoin-project/go-state-types/network"
2020-10-08 01:09:33 +00:00
builtin2 "github.com/filecoin-project/specs-actors/v2/actors/builtin"
2020-09-29 00:28:16 +00:00
"github.com/filecoin-project/lotus/chain/actors/policy"
)
var (
UnixfsChunkSize = uint64(1 << 20)
UnixfsLinksPerLevel = 1024
2020-10-08 01:09:33 +00:00
BlocksPerEpoch = uint64(builtin2.ExpectedLeadersPerEpoch)
2020-08-07 13:04:10 +00:00
BlockMessageLimit = 512
BlockGasLimit = int64(100_000_000_000)
BlockGasTarget = int64(BlockGasLimit / 2)
2020-08-07 13:03:55 +00:00
BaseFeeMaxChangeDenom = int64(8) // 12.5%
2020-08-07 13:04:10 +00:00
InitialBaseFee = int64(100e6)
MinimumBaseFee = int64(100)
2020-10-08 01:09:33 +00:00
BlockDelaySecs = uint64(builtin2.EpochDurationSeconds)
2020-08-07 13:04:10 +00:00
PropagationDelaySecs = uint64(6)
AllowableClockDriftSecs = uint64(1)
2020-09-29 00:28:16 +00:00
Finality = policy.ChainFinality
ForkLengthThreshold = Finality
2020-06-30 13:58:34 +00:00
SlashablePowerDelay = 20
InteractivePoRepConfidence = 6
MessageConfidence uint64 = 5
WRatioNum = int64(1)
WRatioDen = uint64(2)
BadBlockCacheSize = 1 << 15
BlsSignatureCacheSize = 40000
VerifSigCacheSize = 32000
2020-09-29 00:28:16 +00:00
SealRandomnessLookback = policy.SealRandomnessLookback
TicketRandomnessLookback = abi.ChainEpoch(1)
2020-07-28 21:36:59 +00:00
FilBase uint64 = 2_000_000_000
FilAllocStorageMining uint64 = 1_400_000_000
FilReserved uint64 = 300_000_000
FilecoinPrecision uint64 = 1_000_000_000_000_000_000
InitialRewardBalance = func() *big.Int {
2020-07-28 21:36:59 +00:00
v := big.NewInt(int64(FilAllocStorageMining))
v = v.Mul(v, big.NewInt(int64(FilecoinPrecision)))
return v
}()
InitialFilReserved = func() *big.Int {
v := big.NewInt(int64(FilReserved))
v = v.Mul(v, big.NewInt(int64(FilecoinPrecision)))
return v
}()
// Actor consts
// TODO: Pull from actors when its made not private
2020-10-08 01:09:33 +00:00
MinDealDuration = abi.ChainEpoch(180 * builtin2.EpochsInDay)
PackingEfficiencyNum int64 = 4
PackingEfficiencyDenom int64 = 5
UpgradeBreezeHeight abi.ChainEpoch = -1
BreezeGasTampingDuration abi.ChainEpoch = 0
UpgradeSmokeHeight abi.ChainEpoch = -1
UpgradeIgnitionHeight abi.ChainEpoch = -2
2020-10-06 21:47:03 +00:00
UpgradeRefuelHeight abi.ChainEpoch = -3
UpgradeTapeHeight abi.ChainEpoch = -4
2020-10-01 08:58:13 +00:00
UpgradeActorsV2Height abi.ChainEpoch = 10
UpgradeLiftoffHeight abi.ChainEpoch = -5
UpgradeKumquatHeight abi.ChainEpoch = -6
UpgradeCalicoHeight abi.ChainEpoch = -7
UpgradePersianHeight abi.ChainEpoch = -8
2021-01-19 03:42:23 +00:00
UpgradeOrangeHeight abi.ChainEpoch = -9
UpgradeClausHeight abi.ChainEpoch = -10
UpgradeActorsV3Height abi.ChainEpoch = -11
DrandSchedule = map[abi.ChainEpoch]DrandEnum{
0: DrandMainnet,
}
2020-09-10 19:15:49 +00:00
2020-12-31 10:43:14 +00:00
NewestNetworkVersion = network.Version9
2020-09-30 22:15:34 +00:00
ActorUpgradeNetworkVersion = network.Version4
Devnet = true
ZeroAddress = MustParseAddress("f3yaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaby2smx7a")
2021-01-05 05:32:15 +00:00
BootstrappersFile = ""
GenesisFile = ""
)
2020-11-11 05:20:59 +00:00
2020-11-11 06:44:35 +00:00
const BootstrapPeerThreshold = 1