2d57bfe273
* Use local GST Use local GST * Import actors and define upgrade heights Creatin a mock actor-bundle and define upgrade heights * Generate adapters Updates gen/inlinegen-data.json, and runs make actors-gen * Add schedule and migration Add schedule and migration * Add upgrade and network version fields/params Add upgrade and network version fields/params * Run make gen / make docsgen-cli Run make gen / make docsgen-cli * Update filecoin-ffi Update filecoin-ffi to the v1.28.0-dev tag, which supports the nv23 skeleton. * Update GST to v0.14.0-dev Update GST to v0.14.0-dev, which includes the nv23 skeleton * Add support for actor version 14 in actor registry Add support for actor version 14 in actor registry
39 lines
717 B
Go
39 lines
717 B
Go
package actors
|
|
|
|
type Version int
|
|
|
|
/* inline-gen template
|
|
|
|
var LatestVersion = {{.latestActorsVersion}}
|
|
|
|
var Versions = []int{ {{range .actorVersions}} {{.}}, {{end}} }
|
|
|
|
const ({{range .actorVersions}}
|
|
Version{{.}} Version = {{.}}{{end}}
|
|
)
|
|
|
|
/* inline-gen start */
|
|
|
|
var LatestVersion = 14
|
|
|
|
var Versions = []int{0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14}
|
|
|
|
const (
|
|
Version0 Version = 0
|
|
Version2 Version = 2
|
|
Version3 Version = 3
|
|
Version4 Version = 4
|
|
Version5 Version = 5
|
|
Version6 Version = 6
|
|
Version7 Version = 7
|
|
Version8 Version = 8
|
|
Version9 Version = 9
|
|
Version10 Version = 10
|
|
Version11 Version = 11
|
|
Version12 Version = 12
|
|
Version13 Version = 13
|
|
Version14 Version = 14
|
|
)
|
|
|
|
/* inline-gen end */
|