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