diff --git a/.changeset/wild-months-press.md b/.changeset/wild-months-press.md new file mode 100644 index 000000000..009fd9fc7 --- /dev/null +++ b/.changeset/wild-months-press.md @@ -0,0 +1,5 @@ +--- +"@zoralabs/zora-1155-contracts": patch +--- + +Added impl getter to premint executor diff --git a/packages/1155-contracts/src/delegation/ZoraCreator1155PremintExecutorImpl.sol b/packages/1155-contracts/src/delegation/ZoraCreator1155PremintExecutorImpl.sol index ec360e993..f2f635643 100644 --- a/packages/1155-contracts/src/delegation/ZoraCreator1155PremintExecutorImpl.sol +++ b/packages/1155-contracts/src/delegation/ZoraCreator1155PremintExecutorImpl.sol @@ -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