Deployer
Title: Deployer
Interface for deployer contracts that deploy a proxy and emit on deployment
Functions
deploy
Deploys a proxy (and implementation if applicable), initializing in one transaction
function deploy() external returns (address proxy);
Returns
| Name | Type | Description |
|---|---|---|
proxy | address | The address of the deployed proxy |
Events
Deployed
Emitted when a new proxy is deployed
event Deployed(address indexed proxy, address indexed implementation);
Parameters
| Name | Type | Description |
|---|---|---|
proxy | address | The address of the deployed proxy |
implementation | address | The address of the implementation contract |