abi

package
v0.0.0-...-e58dc6b Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Aug 5, 2018 License: LGPL-3.0 Imports: 5 Imported by: 0

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 (
	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

View Source
var DefAbiMgr = NewAbiMgr()

Functions

This section is empty.

Types

type AbiMgr

type AbiMgr struct {
	Path string
	// contains filtered or unexported fields
}

func NewAbiMgr

func NewAbiMgr() *AbiMgr

func (*AbiMgr) GetNativeAbi

func (this *AbiMgr) GetNativeAbi(address string) *NativeContractAbi

func (*AbiMgr) Init

func (this *AbiMgr) Init(path string)

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

type NeovmContractAbi struct {
	Address    string                      `json:"hash"`
	EntryPoint string                      `json:"entrypoint"`
	Functions  []*NeovmContractFunctionAbi `json:"functions"`
	Events     []*NeovmContractEventAbi    `json:"events"`
}

func (*NeovmContractAbi) GetEvent

func (this *NeovmContractAbi) GetEvent(evt string) *NeovmContractEventAbi

func (*NeovmContractAbi) GetFunc

func (this *NeovmContractAbi) GetFunc(method string) *NeovmContractFunctionAbi

type NeovmContractEventAbi

type NeovmContractEventAbi struct {
	Name       string                    `json:"name"`
	Parameters []*NeovmContractParamsAbi `json:"parameters"`
	ReturnType string                    `json:"returntype"`
}

type NeovmContractFunctionAbi

type NeovmContractFunctionAbi struct {
	Name       string                    `json:"name"`
	Parameters []*NeovmContractParamsAbi `json:"parameters"`
	ReturnType string                    `json:"returntype"`
}

type NeovmContractParamsAbi

type NeovmContractParamsAbi struct {
	Name string `json:"name"`
	Type string `json:"type"`
}

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL