DSProxyFactory
For the DSProxyFactory contract, you can create an event like the following to log when new users register proxy contract addresses:
event Created(
address indexed sender,
address indexed owner,
address proxy,
address cache
);
sender:User address
owner:Proxy owner address
proxy:User proxy contract address
cache:Cache contract address
Last updated