diff --git a/deployments/84532.json b/deployments/84532.json index 2553a22..6f78d54 100644 --- a/deployments/84532.json +++ b/deployments/84532.json @@ -2,11 +2,6 @@ "contracts": { "NFTMint": { "deploys": [ - { - "deployedArgs": "0x0000000000000000000000000e63d6f414b40bafca676810ef1abf05ecc8e459", - "version": "1.0.0", - "address": "0x92E8B82a51cc266E39B5075436CB74FA2FCf280e" - }, { "deployedArgs": "0x0000000000000000000000000e63d6f414b40bafca676810ef1abf05ecc8e459", "version": "0.1.0", diff --git a/src/NFTMint.sol b/src/NFTMint.sol index 7d4ba4a..7d52d5c 100644 --- a/src/NFTMint.sol +++ b/src/NFTMint.sol @@ -73,7 +73,7 @@ contract NFTMint is Ownable { */ function createMint(MintArgs memory args) external returns (MintERC1155) { MintERC1155 newMint = MintERC1155(Clones.clone(MINT_NFT_LOGIC)); - newMint.initialize(address(this), args.name, args.imageURI, args.description, args.editions); + newMint.initialize(args.owner, args.name, args.imageURI, args.description, args.editions); MintInfo storage mintInfo = mints[newMint]; mintInfo.owner = args.owner;