Expand description
ABI related helper functions.
Functions§
- abi_
decode_ calldata - Decodes the calldata of the function
- coerce_
value - Helper function to coerce a value to a [DynSolValue] given a type string
- encode_
args - encode_
function_ args - Given a function and a vector of string arguments, it proceeds to convert the args to alloy [DynSolValue]s and then ABI encode them.
- encode_
function_ args_ packed - Given a function and a vector of string arguments, it proceeds to convert the args to alloy [DynSolValue]s and encode them using the packed encoding.
- find_
source - If the code at
address
is a proxy, recurse until we find the implementation. - get_
error - Given an error signature string, it tries to parse it as a
Error
- get_
event - Given an event signature string, it tries to parse it as a
Event
- get_
func - Given a function signature string, it tries to parse it as a
Function
- get_
func_ etherscan - Given a function name, address, and args, tries to parse it as a
Function
by fetching the abi from etherscan. If the address is a proxy, fetches the ABI of the implementation contract. - get_
indexed_ event - Given an event without indexed parameters and a rawlog, it tries to return the event with the proper indexed parameters. Otherwise, it returns the original event.