Documentation ¶
Overview ¶
* Copyright (C) 2018 The ontology Authors * This file is part of The ontology library. * * The ontology is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * The ontology is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with The ontology. If not, see <http://www.gnu.org/licenses/>.
Index ¶
Constants ¶
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" )
const ( NEOVM_PARAM_TYPE_BOOL = "boolean" NEOVM_PARAM_TYPE_STRING = "string" NEOVM_PARAM_TYPE_INTEGER = "integer" NEOVM_PARAM_TYPE_ARRAY = "array" NEOVM_PARAM_TYPE_BYTE_ARRAY = "bytearray" NEOVM_PARAM_TYPE_VOID = "void" NEOVM_PARAM_TYPE_ANY = "any" )
Variables ¶
var DefAbiMgr = NewAbiMgr()
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"` }
type NeovmContractAbi ¶ added in v0.9.2
type NeovmContractAbi struct { Address string `json:"hash"` EntryPoint string `json:"entrypoint"` Functions []*NeovmContractFunctionAbi `json:"functions"` Events []*NeovmContractEventAbi `json:"events"` }
func (*NeovmContractAbi) GetEvent ¶ added in v0.9.2
func (this *NeovmContractAbi) GetEvent(evt string) *NeovmContractEventAbi
func (*NeovmContractAbi) GetFunc ¶ added in v0.9.2
func (this *NeovmContractAbi) GetFunc(method string) *NeovmContractFunctionAbi
type NeovmContractEventAbi ¶ added in v0.9.2
type NeovmContractEventAbi struct { Name string `json:"name"` Parameters []*NeovmContractParamsAbi `json:"parameters"` ReturnType string `json:"returntype"` }
type NeovmContractFunctionAbi ¶ added in v0.9.2
type NeovmContractFunctionAbi struct { Name string `json:"name"` Parameters []*NeovmContractParamsAbi `json:"parameters"` ReturnType string `json:"returntype"` }