forked from TrueCloudLab/neoneo-go
17 lines
486 B
Go
17 lines
486 B
Go
package request
|
|
|
|
import "github.com/nspcc-dev/neo-go/pkg/smartcontract"
|
|
|
|
// 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 smartcontract.ParamType
|
|
Parameters []smartcontract.ParamType
|
|
}
|