2020-08-28 07:47:15 +00:00
|
|
|
package interop
|
|
|
|
|
|
|
|
// Signature represents 64-byte signature.
|
|
|
|
type Signature []byte
|
|
|
|
|
|
|
|
// Hash160 represents 20-byte hash.
|
|
|
|
type Hash160 []byte
|
|
|
|
|
|
|
|
// Hash256 represents 32-byte hash.
|
|
|
|
type Hash256 []byte
|
|
|
|
|
|
|
|
// PublicKey represents marshalled ecdsa public key.
|
|
|
|
type PublicKey []byte
|
|
|
|
|
|
|
|
// Interface represents interop interface type which is needed for
|
2021-05-12 20:17:03 +00:00
|
|
|
// transparent handling of VM-internal types (e.g. storage.Context).
|
2020-08-28 07:47:15 +00:00
|
|
|
type Interface interface{}
|