add hyperspacenet
This commit is contained in:
parent
77b235df90
commit
f05d3d8836
3
Makefile
3
Makefile
@ -87,6 +87,9 @@ interopnet: build-devnets
|
|||||||
wallabynet: GOFLAGS+=-tags=wallabynet
|
wallabynet: GOFLAGS+=-tags=wallabynet
|
||||||
wallabynet: build-devnets
|
wallabynet: build-devnets
|
||||||
|
|
||||||
|
hyperspacenet: GOFLAGS+=-tags=hyperspacenet
|
||||||
|
hyperspacenet: build-devnets
|
||||||
|
|
||||||
lotus: $(BUILD_DEPS)
|
lotus: $(BUILD_DEPS)
|
||||||
rm -f lotus
|
rm -f lotus
|
||||||
$(GOCC) build $(GOFLAGS) -o lotus ./cmd/lotus
|
$(GOCC) build $(GOFLAGS) -o lotus ./cmd/lotus
|
||||||
|
94
build/params_hyperspace.go
Normal file
94
build/params_hyperspace.go
Normal file
@ -0,0 +1,94 @@
|
|||||||
|
//go:build hyperspace
|
||||||
|
// +build hyperspace
|
||||||
|
|
||||||
|
package build
|
||||||
|
|
||||||
|
import (
|
||||||
|
"github.com/ipfs/go-cid"
|
||||||
|
|
||||||
|
"github.com/filecoin-project/go-address"
|
||||||
|
"github.com/filecoin-project/go-state-types/abi"
|
||||||
|
actorstypes "github.com/filecoin-project/go-state-types/actors"
|
||||||
|
"github.com/filecoin-project/go-state-types/network"
|
||||||
|
builtin2 "github.com/filecoin-project/specs-actors/v2/actors/builtin"
|
||||||
|
|
||||||
|
"github.com/filecoin-project/lotus/chain/actors/policy"
|
||||||
|
)
|
||||||
|
|
||||||
|
var NetworkBundle = "hyperspace"
|
||||||
|
var BundleOverrides map[actorstypes.Version]string
|
||||||
|
var ActorDebugging = true
|
||||||
|
|
||||||
|
const BootstrappersFile = "hyperspace.pi"
|
||||||
|
const GenesisFile = "hyperspace.car"
|
||||||
|
|
||||||
|
const GenesisNetworkVersion = network.Version18
|
||||||
|
|
||||||
|
var UpgradeBreezeHeight = abi.ChainEpoch(-1)
|
||||||
|
|
||||||
|
const BreezeGasTampingDuration = 120
|
||||||
|
|
||||||
|
var UpgradeSmokeHeight = abi.ChainEpoch(-1)
|
||||||
|
var UpgradeIgnitionHeight = abi.ChainEpoch(-2)
|
||||||
|
var UpgradeRefuelHeight = abi.ChainEpoch(-3)
|
||||||
|
var UpgradeTapeHeight = abi.ChainEpoch(-4)
|
||||||
|
|
||||||
|
var UpgradeAssemblyHeight = abi.ChainEpoch(-5)
|
||||||
|
var UpgradeLiftoffHeight = abi.ChainEpoch(-6)
|
||||||
|
|
||||||
|
var UpgradeKumquatHeight = abi.ChainEpoch(-7)
|
||||||
|
var UpgradeCalicoHeight = abi.ChainEpoch(-9)
|
||||||
|
var UpgradePersianHeight = abi.ChainEpoch(-10)
|
||||||
|
var UpgradeOrangeHeight = abi.ChainEpoch(-11)
|
||||||
|
var UpgradeClausHeight = abi.ChainEpoch(-12)
|
||||||
|
|
||||||
|
var UpgradeTrustHeight = abi.ChainEpoch(-13)
|
||||||
|
|
||||||
|
var UpgradeNorwegianHeight = abi.ChainEpoch(-14)
|
||||||
|
|
||||||
|
var UpgradeTurboHeight = abi.ChainEpoch(-15)
|
||||||
|
|
||||||
|
var UpgradeHyperdriveHeight = abi.ChainEpoch(-16)
|
||||||
|
var UpgradeChocolateHeight = abi.ChainEpoch(-17)
|
||||||
|
var UpgradeOhSnapHeight = abi.ChainEpoch(-18)
|
||||||
|
var UpgradeSkyrHeight = abi.ChainEpoch(-19)
|
||||||
|
var UpgradeSharkHeight = abi.ChainEpoch(-20)
|
||||||
|
var UpgradeHyggeHeight = abi.ChainEpoch(-21)
|
||||||
|
|
||||||
|
var DrandSchedule = map[abi.ChainEpoch]DrandEnum{
|
||||||
|
0: DrandMainnet,
|
||||||
|
}
|
||||||
|
|
||||||
|
var SupportedProofTypes = []abi.RegisteredSealProof{
|
||||||
|
abi.RegisteredSealProof_StackedDrg512MiBV1,
|
||||||
|
abi.RegisteredSealProof_StackedDrg32GiBV1,
|
||||||
|
abi.RegisteredSealProof_StackedDrg64GiBV1,
|
||||||
|
}
|
||||||
|
var ConsensusMinerMinPower = abi.NewStoragePower(16 << 30)
|
||||||
|
var MinVerifiedDealSize = abi.NewStoragePower(1 << 20)
|
||||||
|
var PreCommitChallengeDelay = abi.ChainEpoch(10)
|
||||||
|
|
||||||
|
func init() {
|
||||||
|
policy.SetSupportedProofTypes(SupportedProofTypes...)
|
||||||
|
policy.SetConsensusMinerMinPower(ConsensusMinerMinPower)
|
||||||
|
policy.SetMinVerifiedDealSize(MinVerifiedDealSize)
|
||||||
|
policy.SetPreCommitChallengeDelay(PreCommitChallengeDelay)
|
||||||
|
|
||||||
|
BuildType = BuildHyperspacenet
|
||||||
|
SetAddressNetwork(address.Testnet)
|
||||||
|
Devnet = true
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
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 = 2
|
||||||
|
|
||||||
|
// ChainId defines the chain ID used in the Ethereum JSON-RPC endpoint.
|
||||||
|
// As per https://github.com/ethereum-lists/chains
|
||||||
|
const Eip155ChainId = 3141
|
||||||
|
|
||||||
|
var WhitelistedBlock = cid.Undef
|
@ -1,5 +1,5 @@
|
|||||||
//go:build !debug && !2k && !testground && !calibnet && !butterflynet && !interopnet && !wallabynet
|
//go:build !debug && !2k && !testground && !calibnet && !butterflynet && !interopnet && !wallabynet && !hyperspacenet
|
||||||
// +build !debug,!2k,!testground,!calibnet,!butterflynet,!interopnet,!wallabynet
|
// +build !debug,!2k,!testground,!calibnet,!butterflynet,!interopnet,!wallabynet,!hyperspacenet
|
||||||
|
|
||||||
package build
|
package build
|
||||||
|
|
||||||
|
@ -6,14 +6,15 @@ var CurrentCommit string
|
|||||||
var BuildType int
|
var BuildType int
|
||||||
|
|
||||||
const (
|
const (
|
||||||
BuildDefault = 0
|
BuildDefault = 0
|
||||||
BuildMainnet = 0x1
|
BuildMainnet = 0x1
|
||||||
Build2k = 0x2
|
Build2k = 0x2
|
||||||
BuildDebug = 0x3
|
BuildDebug = 0x3
|
||||||
BuildCalibnet = 0x4
|
BuildCalibnet = 0x4
|
||||||
BuildInteropnet = 0x5
|
BuildInteropnet = 0x5
|
||||||
BuildButterflynet = 0x7
|
BuildButterflynet = 0x7
|
||||||
BuildWallabynet = 0x8
|
BuildWallabynet = 0x8
|
||||||
|
BuildHyperspacenet = 0x9
|
||||||
)
|
)
|
||||||
|
|
||||||
func BuildTypeString() string {
|
func BuildTypeString() string {
|
||||||
@ -34,6 +35,8 @@ func BuildTypeString() string {
|
|||||||
return "+butterflynet"
|
return "+butterflynet"
|
||||||
case BuildWallabynet:
|
case BuildWallabynet:
|
||||||
return "+wallabynet"
|
return "+wallabynet"
|
||||||
|
case BuildHyperspacenet:
|
||||||
|
return "+hyperspacenet"
|
||||||
default:
|
default:
|
||||||
return "+huh?"
|
return "+huh?"
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user