Expand description
Module containing a contract’s types and functions.
interface ISafeProxyFactory {
event ProxyCreation(address indexed proxy, address singleton);
function createProxyWithNonce(address singleton, bytes memory initializer, uint256 saltNonce) public returns (address proxy);
}Structs§
- ISafe
Proxy Factory Instance - A
ISafeProxyFactoryinstance. - Proxy
Creation - Event with signature
ProxyCreation(address,address)and selector0x4f51faf6c4561ff95f067657e43439f0f856d97c04d9ec9070a6199ad418e235. - create
Proxy With Nonce Call - Function with signature
createProxyWithNonce(address,bytes,uint256)and selector0x1688f0b9. - create
Proxy With Nonce Return - Container type for the return parameters of the
createProxyWithNonce(address,bytes,uint256)function.
Enums§
- ISafe
Proxy Factory Calls - Container for all the
ISafeProxyFactoryfunction calls. - ISafe
Proxy Factory Events - Container for all the
ISafeProxyFactoryevents.
Functions§
- new
- Creates a new wrapper around an on-chain
ISafeProxyFactorycontract instance.