Documentation ¶
Index ¶
- Constants
- func GetPackingTypes(args []Argument) []interface{}
- func Pack(argSpec []Argument, args ...interface{}) ([]byte, error)
- func PackEvent(eventSpec *EventSpec, args ...interface{}) ([]binary.Word256, []byte, error)
- func Signature(name string, args []Argument) string
- func Unpack(argSpec []Argument, data []byte, args ...interface{}) error
- func UnpackEvent(eventSpec *EventSpec, topics []binary.Word256, data []byte, ...) error
- func UnpackRevert(data []byte) (message *string, err error)
- type Argument
- type EVMAddress
- type EVMBool
- type EVMBytes
- type EVMFixed
- type EVMInt
- type EVMString
- type EVMType
- type EVMUint
- type EventID
- type EventSpec
- type FunctionID
- type FunctionSpec
- func EncodeFunctionCall(abiData, funcName string, logger *logging.Logger, args ...interface{}) ([]byte, *FunctionSpec, error)
- func EncodeFunctionCallFromFile(abiFileName, abiPath, funcName string, logger *logging.Logger, ...) ([]byte, *FunctionSpec, error)
- func NewFunctionSpec(name string, inputs, outputs []Argument) *FunctionSpec
- func SpecFromFunctionReflect(fname string, v reflect.Value, skipIn, skipOut int) *FunctionSpec
- func SpecFromStructReflect(fname string, args reflect.Type, rets reflect.Type) *FunctionSpec
- type Spec
- func (spec *Spec) GetEventAbi(id EventID, addresses crypto.Address) (*EventSpec, error)
- func (spec *Spec) Pack(fname string, args ...interface{}) ([]byte, *FunctionSpec, error)
- func (spec *Spec) Unpack(data []byte, fname string, args ...interface{}) error
- func (spec *Spec) UnpackWithID(data []byte, args ...interface{}) error
- type Variable
Constants ¶
const ElementSize = 32
EVM Solidity calls and return values are packed into pieces of 32 bytes, including a bool (wasting 255 out of 256 bits)
const EventIDSize = 32
EventIDSize is the length of the event selector
const FunctionIDSize = 4
FunctionIDSize is the length of the function selector
Variables ¶
This section is empty.
Functions ¶
func GetPackingTypes ¶ added in v0.20.1
func GetPackingTypes(args []Argument) []interface{}
func UnpackEvent ¶ added in v0.22.0
func UnpackRevert ¶ added in v0.22.0
UnpackRevert decodes the revert reason if a contract called revert. If no reason was given, message will be nil else it will point to the string
Types ¶
type Argument ¶ added in v0.20.1
type Argument struct { Name string EVM EVMType IsArray bool Indexed bool Hashed bool ArrayLength uint64 }
Argument is a decoded function parameter, return or event field
type EVMAddress ¶ added in v0.20.1
type EVMAddress struct { }
func (EVMAddress) Dynamic ¶ added in v0.24.0
func (e EVMAddress) Dynamic() bool
func (EVMAddress) GetSignature ¶ added in v0.20.1
func (e EVMAddress) GetSignature() string
func (EVMAddress) ImplicitCast ¶ added in v0.28.0
func (e EVMAddress) ImplicitCast(o EVMType) bool
func (EVMAddress) String ¶ added in v0.28.0
func (e EVMAddress) String() string
type EVMBool ¶ added in v0.20.1
type EVMBool struct { }
func (EVMBool) GetSignature ¶ added in v0.20.1
func (EVMBool) ImplicitCast ¶ added in v0.28.0
type EVMBytes ¶ added in v0.20.1
type EVMBytes struct {
M uint64
}
func (EVMBytes) GetSignature ¶ added in v0.20.1
func (EVMBytes) ImplicitCast ¶ added in v0.28.0
type EVMFixed ¶ added in v0.20.1
type EVMFixed struct {
N, M uint64
// contains filtered or unexported fields
}
func (EVMFixed) GetSignature ¶ added in v0.20.1
func (EVMFixed) ImplicitCast ¶ added in v0.28.0
type EVMInt ¶ added in v0.20.1
type EVMInt struct {
M uint64
}
func (EVMInt) GetSignature ¶ added in v0.20.1
func (EVMInt) ImplicitCast ¶ added in v0.28.0
type EVMString ¶ added in v0.20.1
type EVMString struct { }
func (EVMString) GetSignature ¶ added in v0.20.1
func (EVMString) ImplicitCast ¶ added in v0.28.0
type EVMUint ¶ added in v0.20.1
type EVMUint struct {
M uint64
}
func (EVMUint) GetSignature ¶ added in v0.20.1
func (EVMUint) ImplicitCast ¶ added in v0.28.0
type EventSpec ¶ added in v0.23.0
func (*EventSpec) UnmarshalJSON ¶ added in v0.28.0
type FunctionID ¶
type FunctionID [FunctionIDSize]byte
func GetFunctionID ¶ added in v0.20.1
func GetFunctionID(signature string) (id FunctionID)
func (FunctionID) Bytes ¶ added in v0.20.1
func (fs FunctionID) Bytes() []byte
type FunctionSpec ¶ added in v0.20.1
type FunctionSpec struct { Name string FunctionID FunctionID Constant bool Inputs []Argument Outputs []Argument }
func EncodeFunctionCall ¶ added in v0.24.0
func EncodeFunctionCall(abiData, funcName string, logger *logging.Logger, args ...interface{}) ([]byte, *FunctionSpec, error)
EncodeFunctionCall ABI encodes a function call based on ABI in string abiData and the arguments specified as strings. The fname specifies which function should called, if it doesn't exist exist the fallback function will be called. If fname is the empty string, the constructor is called. The arguments must be specified in args. The count must match the function being called. Returns the ABI encoded function call, whether the function is constant according to the ABI (which means it does not modified contract state)
func EncodeFunctionCallFromFile ¶ added in v0.24.0
func EncodeFunctionCallFromFile(abiFileName, abiPath, funcName string, logger *logging.Logger, args ...interface{}) ([]byte, *FunctionSpec, error)
EncodeFunctionCallFromFile ABI encodes a function call based on ABI in file, and the arguments specified as strings. The abiFileName specifies the name of the ABI file, and abiPath the path where it can be found. The fname specifies which function should called, if it doesn't exist exist the fallback function will be called. If fname is the empty string, the constructor is called. The arguments must be specified in args. The count must match the function being called. Returns the ABI encoded function call, whether the function is constant according to the ABI (which means it does not modified contract state)
func NewFunctionSpec ¶ added in v0.29.0
func NewFunctionSpec(name string, inputs, outputs []Argument) *FunctionSpec
func SpecFromFunctionReflect ¶ added in v0.20.1
func SpecFromFunctionReflect(fname string, v reflect.Value, skipIn, skipOut int) *FunctionSpec
func SpecFromStructReflect ¶ added in v0.20.1
SpecFromStructReflect generates a FunctionSpec where the arguments and return values are described a struct. Both args and rets should be set to the return value of reflect.TypeOf() with the respective struct as an argument.
func (*FunctionSpec) SetConstant ¶ added in v0.29.0
func (f *FunctionSpec) SetConstant() *FunctionSpec
Sets this function as constant
func (*FunctionSpec) String ¶ added in v0.28.0
func (f *FunctionSpec) String() string
type Spec ¶ added in v0.28.0
type Spec struct { Constructor *FunctionSpec Fallback *FunctionSpec Functions map[string]*FunctionSpec EventsByName map[string]*EventSpec EventsByID map[EventID]*EventSpec }
Spec is the ABI for contract decoded.
func MergeSpec ¶ added in v0.28.0
MergeSpec takes multiple Specs and merges them into once structure. Note that the same function name or event name can occur in different abis, so there might be some information loss.
func ReadSpecFile ¶ added in v0.28.0
ReadSpecFile reads an ABI file from a file
func (*Spec) GetEventAbi ¶ added in v0.28.0
func (*Spec) Pack ¶ added in v0.28.0
func (spec *Spec) Pack(fname string, args ...interface{}) ([]byte, *FunctionSpec, error)
Pack ABI encodes a function call. The fname specifies which function should called, if it doesn't exist exist the fallback function will be called. If fname is the empty string, the constructor is called. The arguments must be specified in args. The count must match the function being called. Returns the ABI encoded function call, whether the function is constant according to the ABI (which means it does not modified contract state)
func (*Spec) UnpackWithID ¶ added in v0.28.0
type Variable ¶ added in v0.20.1
Variable exist to unpack return values into, so have both the return value and its name