util.gno

0.23 Kb ยท 18 lines
 1package grc1155
 2
 3import (
 4	"std"
 5)
 6
 7const zeroAddress std.Address = ""
 8
 9func isValidAddress(addr std.Address) bool {
10	if !addr.IsValid() {
11		return false
12	}
13	return true
14}
15
16func emit(event any) {
17	// TODO: setup a pubsub system here?
18}