Search Apps Documentation Source Content File Folder Download Copy Actions Download

init.gno

0.22 Kb · 14 lines
 1package namereg
 2
 3import (
 4	"chain"
 5	"chain/runtime"
 6
 7	susers "gno.land/r/sys/users"
 8)
 9
10func init() {
11	if runtime.ChainHeight() == 0 {
12		susers.AddControllerAtGenesis(cross, chain.PackageAddress("gno.land/r/sys/namereg/v1"))
13	}
14}