2020-04-29 10:45:01 +00:00
|
|
|
package smartcontract
|
2020-02-21 14:34:18 +00:00
|
|
|
|
2019-11-20 13:07:43 +00:00
|
|
|
// 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
|
2020-04-29 10:45:01 +00:00
|
|
|
ReturnType ParamType
|
|
|
|
Parameters []ParamType
|
2019-11-20 13:07:43 +00:00
|
|
|
}
|