-
Notifications
You must be signed in to change notification settings - Fork 103
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Premint - include erc1155 errors in premint executor abi, by extracting its errors into interface and importing it #170
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
c122146
to
647fa9b
Compare
f145731
to
18a3b68
Compare
647fa9b
to
0f3c668
Compare
18a3b68
to
914fc53
Compare
914fc53
to
865a22c
Compare
@@ -5,7 +5,7 @@ import "forge-std/Test.sol"; | |||
import {ProtocolRewards} from "@zoralabs/protocol-rewards/src/ProtocolRewards.sol"; | |||
import {ZoraCreator1155Impl} from "../../src/nft/ZoraCreator1155Impl.sol"; | |||
import {Zora1155} from "../../src/proxies/Zora1155.sol"; | |||
import {IZoraCreator1155} from "../../src/interfaces/IZoraCreator1155.sol"; | |||
import {IZoraCreator1155Errors} from "../../src/interfaces/IZoraCreator1155Errors.sol"; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
we actually don't need this import
@@ -6,6 +6,7 @@ import {Ownable2StepUpgradeable} from "../../src/utils/ownable/Ownable2StepUpgra | |||
import {IOwnable2StepUpgradeable} from "../../src/utils/ownable/IOwnable2StepUpgradeable.sol"; | |||
import {ZoraCreator1155FactoryImpl} from "../../src/factory/ZoraCreator1155FactoryImpl.sol"; | |||
import {Zora1155Factory} from "../../src/proxies/Zora1155Factory.sol"; | |||
import {IZoraCreator1155Errors} from "../../src/interfaces/IZoraCreator1155Errors.sol"; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
we don't need this import
Alternate and cleaner approach to #169