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}