Skip to main content

Module ProxyFactory

Module ProxyFactory 

Source
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§

ProxyCall
proxyCall
Function with signature proxy((uint8,address,uint256,bytes)[]) and selector 0x34ee9791.
proxyReturn
Container type for the return parameters of the proxy((uint8,address,uint256,bytes)[]) function.

Enums§

ProxyFactoryCalls
Container for all the ProxyFactory function calls.