@@ -13,7 +13,7 @@ import {ERC721A, IERC721A} from "erc721a/contracts/ERC721A.sol";
1313import {ERC721ACloneable } from "contracts/nft/erc721m/clones/ERC721ACloneable.sol " ;
1414import {ERC721ACQueryableInitializable } from "contracts/nft/creator-token-standards/ERC721ACQueryableInitializable.sol " ;
1515import {ERC721MStorage } from "contracts/nft/erc721m/ERC721MStorage.sol " ;
16- import {MINT_FEE_RECEIVER } from "contracts/utils/Constants.sol " ;
16+ import {LAUNCHPAD_MINT_FEE_RECEIVER } from "contracts/utils/Constants.sol " ;
1717import {MintStageInfo, SetupConfig} from "contracts/common/Structs.sol " ;
1818import {IERC721MInitializable } from "contracts/nft/erc721m/interfaces/IERC721MInitializable.sol " ;
1919import {Cosignable} from "contracts/common/Cosignable.sol " ;
@@ -404,7 +404,7 @@ contract ERC721CMInitializableV1_0_2 is
404404 /// @notice Withdraws the total mint fee and remaining balance from the contract
405405 /// @dev Can only be called by the owner
406406 function withdraw () external onlyOwner {
407- (bool success ,) = MINT_FEE_RECEIVER .call {value: _totalMintFee}("" );
407+ (bool success ,) = LAUNCHPAD_MINT_FEE_RECEIVER .call {value: _totalMintFee}("" );
408408 if (! success) revert TransferFailed ();
409409 _totalMintFee = 0 ;
410410
@@ -428,7 +428,7 @@ contract ERC721CMInitializableV1_0_2 is
428428 _totalMintFee = 0 ;
429429 uint256 totalAmount = totalFee + remaining;
430430
431- SafeTransferLib.safeTransfer (_mintCurrency, MINT_FEE_RECEIVER , totalFee);
431+ SafeTransferLib.safeTransfer (_mintCurrency, LAUNCHPAD_MINT_FEE_RECEIVER , totalFee);
432432 SafeTransferLib.safeTransfer (_mintCurrency, _fundReceiver, remaining);
433433
434434 emit WithdrawERC20 (_mintCurrency, totalAmount);
0 commit comments