Documentation
¶
Overview ¶
Package abi provides utilities for interacting with contracts. There are 2 primary functionalities: - encoding - decoding All specifications of encoding and decoding adhere to Solidity's ABI specs: https://docs.soliditylang.org/en/latest/abi-spec.html
Index ¶
- Constants
- Variables
- func AbiEncode(functionSig string, functionInputs []string) (string, error)
- func ConvertAddress(value string) (string, error)
- func ConvertBool(value string) (string, error)
- func ConvertByteSize(value string, byteType string) (string, error)
- func ConvertBytes(value string) (string, error)
- func ConvertInt(value string) (string, error)
- func ConvertString(value string) (string, error)
- func ConvertUint(value string) (string, error)