lotus/build/bundle.go

54 lines
1.2 KiB
Go
Raw Normal View History

package build
import (
_ "embed"
"github.com/filecoin-project/lotus/chain/actors"
)
var NetworkBundle string
func GetNetworkBundle() string {
switch NetworkBundle {
case "devnet":
return "devnet"
case "calibnet", "calibrationnet":
return "calibrationnet"
case "butterflynet":
return "butterflynet"
case "interopnet", "caterpillarnet":
return "caterpillarnet"
default:
return "mainnet"
}
}
2022-05-12 18:14:03 +00:00
//go:embed bundles.toml
var BuiltinActorBundles []byte
type BundleSpec struct {
Bundles []Bundle
}
type Bundle struct {
2022-05-16 18:48:12 +00:00
// Version is the actors version in this bundle
Version actors.Version
2022-05-16 18:48:12 +00:00
// Release is the release id
Release string
2022-05-17 17:38:32 +00:00
// Path is the (optional) bundle path; takes precedence over url
Path map[string]string
2022-05-17 17:38:32 +00:00
// URL is the (optional) bundle URL; takes precdence over github release
URL map[string]BundleURL
2022-05-16 18:48:12 +00:00
// Devlopment indicates whether this is a development version; when set, in conjunction with path,
2022-05-16 19:47:19 +00:00
// it will always load the bundle to the blockstore, without recording the manifest CID in the
// datastore.
Development bool
}
type BundleURL struct {
// URL is the url of the bundle
URL string
// Checksum is the sha256 checksum of the bundle
Checksum string
}