mirror of
https://github.com/nspcc-dev/neo-go.git
synced 2024-11-23 13:38:35 +00:00
15 lines
412 B
Go
15 lines
412 B
Go
package 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 StackParamType
|
|
Parameters []StackParamType
|
|
}
|