mirror of
https://github.com/nspcc-dev/neo-go.git
synced 2024-11-27 03:58:06 +00:00
f330f2f40b
Mostly as is, no real effort done yet to optimize them, so there are still a lot of duplicates there, but at least we sort them out into different smaller packages.
17 lines
479 B
Go
17 lines
479 B
Go
package rpc
|
|
|
|
import "github.com/CityOfZion/neo-go/pkg/rpc/request"
|
|
|
|
// ContractDetails contains contract metadata.
|
|
type ContractDetails struct {
|
|
Author string
|
|
Email string
|
|
Version string
|
|
ProjectName string `yaml:"name"`
|
|
Description string
|
|
HasStorage bool
|
|
HasDynamicInvocation bool
|
|
IsPayable bool
|
|
ReturnType request.StackParamType
|
|
Parameters []request.StackParamType
|
|
}
|