neoneo-go/pkg/wire/payload/transaction/paramtype.go
2019-02-25 22:44:14 +00:00

17 lines
300 B
Go

package transaction
// ParamType represent the Type of the contract parameter
type ParamType uint8
// A list of supported smart contract parameter types.
const (
SignatureType ParamType = iota
BoolType
IntegerType
Hash160Type
Hash256Type
ByteArrayType
PublicKeyType
StringType
ArrayType
)