Documentation
¶
Index ¶
Constants ¶
View Source
const ( NATIVE_PARAM_TYPE_BOOL = "bool" NATIVE_PARAM_TYPE_BYTE = "byte" NATIVE_PARAM_TYPE_INTEGER = "int" NATIVE_PARAM_TYPE_STRING = "string" NATIVE_PARAM_TYPE_BYTEARRAY = "bytearray" NATIVE_PARAM_TYPE_ARRAY = "array" NATIVE_PARAM_TYPE_ADDRESS = "address" NATIVE_PARAM_TYPE_UINT256 = "uint256" NATIVE_PARAM_TYPE_STRUCT = "struct" )
View Source
const DefAbiPath = "./cmd/abi"
Variables ¶
View Source
var DefAbiMgr = NewAbiMgr(DefAbiPath)
Functions ¶
This section is empty.
Types ¶
type AbiMgr ¶
type AbiMgr struct {
Path string
// contains filtered or unexported fields
}
func (*AbiMgr) GetNativeAbi ¶
func (this *AbiMgr) GetNativeAbi(address string) *NativeContractAbi
type NativeContractAbi ¶
type NativeContractAbi struct {
Address string `json:"hash"`
Functions []*NativeContractFunctionAbi `json:"functions"`
Events []*NativeContractEventAbi `json:"events"`
}
func (*NativeContractAbi) GetEvent ¶
func (this *NativeContractAbi) GetEvent(name string) *NativeContractEventAbi
func (*NativeContractAbi) GetFunc ¶
func (this *NativeContractAbi) GetFunc(name string) *NativeContractFunctionAbi
type NativeContractEventAbi ¶
type NativeContractEventAbi struct {
Name string `json:"name"`
Parameters []*NativeContractParamAbi `json:"parameters"`
}
type NativeContractFunctionAbi ¶
type NativeContractFunctionAbi struct {
Name string `json:"name"`
Parameters []*NativeContractParamAbi `json:"parameters"`
ReturnType string `json:"returnType"`
}
type NativeContractParamAbi ¶
type NativeContractParamAbi struct {
Name string `json:"name"`
Type string `json:"type"`
SubType []*NativeContractParamAbi `json:"subType"`
}
Click to show internal directories.
Click to hide internal directories.