github.com/nspcc-dev/neo-go@v0.105.2-0.20240517133400-6be757af3eba/pkg/neorpc/result/validate_address.go (about)

     1  package result
     2  
     3  // ValidateAddress represents a result of the `validateaddress` call. Notice that
     4  // Address is an interface{} here because the server echoes back whatever address
     5  // value a user has sent to it, even if it's not a string.
     6  type ValidateAddress struct {
     7  	Address any  `json:"address"`
     8  	IsValid bool `json:"isvalid"`
     9  }