Expand description
Module containing a contract’s types and functions.
contract ProxyFactory {
struct ProxyCall { uint8 typeCode; address to; uint256 value; bytes data; }
function proxy(ProxyCall[] calls) returns (bytes[] returnValues);
}Structs§
- Proxy
Call - proxy
Call - Function with signature
proxy((uint8,address,uint256,bytes)[])and selector0x34ee9791. - proxy
Return - Container type for the return parameters of the
proxy((uint8,address,uint256,bytes)[])function.
Enums§
- Proxy
Factory Calls - Container for all the
ProxyFactoryfunction calls.