diff --git a/src/deployment/DeploymentConfig.sol b/src/deployment/DeploymentConfig.sol index df5856c3e..77fdc52a1 100644 --- a/src/deployment/DeploymentConfig.sol +++ b/src/deployment/DeploymentConfig.sol @@ -2,7 +2,6 @@ pragma solidity 0.8.17; import "forge-std/Test.sol"; -import {MintFeeManager} from "../../src/fee/MintFeeManager.sol"; import {Strings} from "@openzeppelin/contracts/utils/Strings.sol"; /// @notice Chain configuration for constants set manually during deploy. Does not get written to after deploys. diff --git a/src/nft/ZoraCreator1155Impl.sol b/src/nft/ZoraCreator1155Impl.sol index db5791e61..63015176b 100644 --- a/src/nft/ZoraCreator1155Impl.sol +++ b/src/nft/ZoraCreator1155Impl.sol @@ -26,7 +26,6 @@ import {ITransferHookReceiver} from "../interfaces/ITransferHookReceiver.sol"; import {IFactoryManagedUpgradeGate} from "../interfaces/IFactoryManagedUpgradeGate.sol"; import {IZoraCreator1155} from "../interfaces/IZoraCreator1155.sol"; import {LegacyNamingControl} from "../legacy-naming/LegacyNamingControl.sol"; -import {MintFeeManager} from "../fee/MintFeeManager.sol"; import {PublicMulticall} from "../utils/PublicMulticall.sol"; import {SharedBaseConstants} from "../shared/SharedBaseConstants.sol"; import {TransferHelperUtils} from "../utils/TransferHelperUtils.sol"; diff --git a/test/factory/ZoraCreator1155Factory_Fork.t.sol b/test/factory/ZoraCreator1155Factory_Fork.t.sol index 3abe1eaa9..8f8b84157 100644 --- a/test/factory/ZoraCreator1155Factory_Fork.t.sol +++ b/test/factory/ZoraCreator1155Factory_Fork.t.sol @@ -10,7 +10,6 @@ import {ICreatorRoyaltiesControl} from "../../src/interfaces/ICreatorRoyaltiesCo import {MockContractMetadata} from "../mock/MockContractMetadata.sol"; import {Strings} from "@openzeppelin/contracts/utils/Strings.sol"; import {ZoraCreatorFixedPriceSaleStrategy} from "../../src/minters/fixed-price/ZoraCreatorFixedPriceSaleStrategy.sol"; -import {MintFeeManager} from "../../src/fee/MintFeeManager.sol"; import {ForkDeploymentConfig} from "../../src/deployment/DeploymentConfig.sol"; @@ -111,7 +110,7 @@ contract ZoraCreator1155FactoryForkTest is ForkDeploymentConfig, Test { // ** 3. Mint on that contract ** // get the mint fee from the contract - uint256 mintFee = MintFeeManager(address(target)).mintFee(); + uint256 mintFee = 0.000777 ether; // make sure the mint fee amount matches the configured mint fee amount assertEq(mintFee, getChainConfig().mintFeeAmount, chainName);