Search Apps Documentation Source Content File Folder Download Copy Actions Download

utils.gno

0.20 Kb ยท 13 lines
 1package user
 2
 3import "gno.land/r/akkadia/admin"
 4
 5func getAdmin() address {
 6	return admin.GetAdmin()
 7}
 8
 9func assertIsAdmin(addr address) {
10	if addr != getAdmin() {
11		panic("admin access required")
12	}
13}