Search Apps Documentation Source Content File Folder Download Copy Actions Download State String Boolean Number Struct Map Slice Pointer Function Closure Reference Nil Package Type Interface Unknown

genesis.gno

0.67 Kb · 19 lines
 1package commondao
 2
 3func init() {
 4	// Fail closed if deployed off the package path treasury addresses
 5	// derive from (see assertRunningPath).
 6	assertRunningPath()
 7
 8	// Create the realm's own DAO, governed by its maintainers. There is no
 9	// owner: the realm administers nothing about a DAO except its home-index
10	// listing, which the realm DAO sets for itself here.
11	dao := createDAO(
12		"Common DAO",
13		"Govern and maintain the commondao reference realm.",
14		"This DAO is responsible for managing `commondao` realm functionalities.",
15		"g1skl80cuz8zq3lul9pgz5pc35l2pfzgxgfpsqkx", // govdao t1 multisig
16		"g1manfred47kzduec920z88wfr64ylksmdcedlf5", // @moul
17	)
18	setListed(dao.ID(), true)
19}