Search Apps Documentation Source Content File Folder Download Copy Actions Download

util.gno

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