2020-02-17 14:42:57 +03:00
|
|
|
package request
|
2020-01-14 15:02:38 +03:00
|
|
|
|
2020-03-03 17:21:42 +03:00
|
|
|
import "github.com/nspcc-dev/neo-go/pkg/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-02-21 17:34:18 +03:00
|
|
|
ReturnType smartcontract.ParamType
|
|
|
|
Parameters []smartcontract.ParamType
|
2019-11-20 16:07:43 +03:00
|
|
|
}
|