forked from TrueCloudLab/neoneo-go
16 lines
408 B
Go
16 lines
408 B
Go
|
package rpc
|
||
|
|
||
|
// 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
|
||
|
}
|