aae3e217a8
It's used like this: ./bin/neo-go contract deploy -i 1-print.avm -c neo-go.yml -e http://localhost:20331 -w KxDgvEKzgSBPPfuVfw67oPQBSjidEiqTHURKSDL1R7yGaGYAeYnr -g 100
15 lines
408 B
Go
15 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
|
|
}
|