81 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			81 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
| // +build !debug
 | |
| // +build !2k
 | |
| // +build !testground
 | |
| // +build !calibnet
 | |
| // +build !nerpanet
 | |
| // +build !butterflynet
 | |
| 
 | |
| package build
 | |
| 
 | |
| import (
 | |
| 	"math"
 | |
| 	"os"
 | |
| 
 | |
| 	"github.com/filecoin-project/go-address"
 | |
| 	"github.com/filecoin-project/go-state-types/abi"
 | |
| 	"github.com/filecoin-project/lotus/chain/actors/policy"
 | |
| 	builtin2 "github.com/filecoin-project/specs-actors/v2/actors/builtin"
 | |
| )
 | |
| 
 | |
| var DrandSchedule = map[abi.ChainEpoch]DrandEnum{
 | |
| 	0:                  DrandIncentinet,
 | |
| 	UpgradeSmokeHeight: DrandMainnet,
 | |
| }
 | |
| 
 | |
| const BootstrappersFile = "mainnet.pi"
 | |
| const GenesisFile = "mainnet.car"
 | |
| 
 | |
| const UpgradeBreezeHeight = 41280
 | |
| 
 | |
| const BreezeGasTampingDuration = 120
 | |
| 
 | |
| const UpgradeSmokeHeight = 51000
 | |
| 
 | |
| const UpgradeIgnitionHeight = 94000
 | |
| const UpgradeRefuelHeight = 130800
 | |
| 
 | |
| const UpgradeActorsV2Height = 138720
 | |
| 
 | |
| const UpgradeTapeHeight = 140760
 | |
| 
 | |
| // This signals our tentative epoch for mainnet launch. Can make it later, but not earlier.
 | |
| // Miners, clients, developers, custodians all need time to prepare.
 | |
| // We still have upgrades and state changes to do, but can happen after signaling timing here.
 | |
| const UpgradeLiftoffHeight = 148888
 | |
| 
 | |
| const UpgradeKumquatHeight = 170000
 | |
| 
 | |
| const UpgradeCalicoHeight = 265200
 | |
| const UpgradePersianHeight = UpgradeCalicoHeight + (builtin2.EpochsInHour * 60)
 | |
| 
 | |
| const UpgradeOrangeHeight = 336458
 | |
| 
 | |
| // 2020-12-22T02:00:00Z
 | |
| const UpgradeClausHeight = 343200
 | |
| 
 | |
| // 2021-03-04T00:00:30Z
 | |
| var UpgradeActorsV3Height = abi.ChainEpoch(550321)
 | |
| 
 | |
| func init() {
 | |
| 	policy.SetConsensusMinerMinPower(abi.NewStoragePower(10 << 40))
 | |
| 
 | |
| 	if os.Getenv("LOTUS_USE_TEST_ADDRESSES") != "1" {
 | |
| 		SetAddressNetwork(address.Mainnet)
 | |
| 	}
 | |
| 
 | |
| 	if os.Getenv("LOTUS_DISABLE_V3_ACTOR_MIGRATION") == "1" {
 | |
| 		UpgradeActorsV3Height = math.MaxInt64
 | |
| 	}
 | |
| 
 | |
| 	Devnet = false
 | |
| 
 | |
| 	BuildType = BuildMainnet
 | |
| }
 | |
| 
 | |
| const BlockDelaySecs = uint64(builtin2.EpochDurationSeconds)
 | |
| 
 | |
| const PropagationDelaySecs = uint64(6)
 | |
| 
 | |
| // BootstrapPeerThreshold is the minimum number peers we need to track for a sync worker to start
 | |
| const BootstrapPeerThreshold = 4
 |