package ethapi import "github.com/ethereum/go-ethereum/common/hexutil" // CallResult is the result of one call. type CallResult struct { Data hexutil.Bytes `json:"data,omitempty"` Msg string `json:"message"` Success bool `json:"state"` }