Skip to content

Commit

Permalink
Add implementation getter to premint executor (#372)
Browse files Browse the repository at this point in the history
This reverts commit 4d0c9dc37bbf5a7aec64ce04a87bac1ce2e9108a.
  • Loading branch information
oveddan authored Nov 17, 2023
1 parent de0b0b7 commit cacb543
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .changeset/wild-months-press.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@zoralabs/zora-1155-contracts": patch
---

Added impl getter to premint executor
Original file line number Diff line number Diff line change
Expand Up @@ -224,6 +224,11 @@ contract ZoraCreator1155PremintExecutorImpl is
}

// upgrade functionality
/// @notice Returns the current implementation address
function implementation() external view returns (address) {
return _getImplementation();
}

error UpgradeToMismatchedContractName(string expected, string actual);

/// @notice Ensures the caller is authorized to upgrade the contract
Expand Down

0 comments on commit cacb543

Please sign in to comment.