Search Apps Documentation Source Content File Folder Download Copy Actions Download

grc721_util.gno

0.18 Kb · 10 lines
 1package gingernft
 2var zeroAddress = address("")
 3func isValidAddress(addr address) error {
 4	if !addr.IsValid() {
 5		return ErrInvalidAddress
 6	}
 7	return nil
 8}
 9func emit(event any) {
10}