type Name struct { Instance string `json:"instance"` Chain string `json:"chain"` Node string `json:"node,omitempty"` }
type DeployResponse struct { CodeHash string `json:"codeHash"` Address string `json:"address"` ABI string `json:"abi"` }
type JSONRequest struct { Method string `json:"method"` Params []interface{} `json:"params"` ID uint64 `json:"id"` }By importing this package library into your Go project, you can use these definitions to interact with the Eris network and develop custom CLI functionality.