Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/CampaignInfoFactory.sol
Original file line number Diff line number Diff line change
Expand Up @@ -195,6 +195,7 @@ contract CampaignInfoFactory is Initializable, ICampaignInfoFactory, OwnableUpgr
}
CampaignInfoFactoryStorage.Storage storage $ = CampaignInfoFactoryStorage._getCampaignInfoFactoryStorage();
$.implementation = newImplementation;
emit CampaignInfoFactoryImplementationUpdated(newImplementation);
}

/**
Expand Down
6 changes: 6 additions & 0 deletions src/interfaces/ICampaignInfoFactory.sol
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,12 @@ interface ICampaignInfoFactory is ICampaignData {
*/
event CampaignInfoFactoryCampaignInitialized();

/**
* @notice Emitted when the campaign implementation address is updated.
* @param newImplementation The new implementation address.
*/
event CampaignInfoFactoryImplementationUpdated(address indexed newImplementation);

/**
* @notice Creates a new campaign information contract with NFT.
* @dev IMPORTANT: Protocol and platform fees are retrieved at execution time and locked
Expand Down