mirror of
https://github.com/nspcc-dev/neo-go.git
synced 2025-01-17 19:17:37 +00:00
11 lines
228 B
Go
11 lines
228 B
Go
package management
|
|
|
|
import "github.com/nspcc-dev/neo-go/pkg/interop"
|
|
|
|
// Contract represents deployed contract.
|
|
type Contract struct {
|
|
ID int
|
|
UpdateCounter int
|
|
Hash interop.Hash160
|
|
NEF []byte
|
|
}
|