Skip to content

Commit

Permalink
fix impl version naming
Browse files Browse the repository at this point in the history
  • Loading branch information
iainnash committed Sep 11, 2023
1 parent 8cea2bf commit 3463127
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/deployment/DeploymentConfig.sol
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ abstract contract DeploymentConfig is CommonBase {
string constant MERKLE_MINT_SALE_STRATEGY = "MERKLE_MINT_SALE_STRATEGY";
string constant REDEEM_MINTER_FACTORY = "REDEEM_MINTER_FACTORY";
string constant CONTRACT_1155_IMPL = "CONTRACT_1155_IMPL";
string constant CONTRACT_1155_IMPl_VERSION = "CONTRACT_1155_IMPl_VERSION";
string constant CONTRACT_1155_IMPL_VERSION = "CONTRACT_1155_IMPL_VERSION";
string constant FACTORY_IMPL = "FACTORY_IMPL";
string constant FACTORY_PROXY = "FACTORY_PROXY";

Expand Down Expand Up @@ -84,7 +84,7 @@ abstract contract DeploymentConfig is CommonBase {
deployment.merkleMintSaleStrategy = json.readAddress(getKeyPrefix(MERKLE_MINT_SALE_STRATEGY));
deployment.redeemMinterFactory = json.readAddress(getKeyPrefix(REDEEM_MINTER_FACTORY));
deployment.contract1155Impl = json.readAddress(getKeyPrefix(CONTRACT_1155_IMPL));
deployment.contract1155ImplVersion = json.readAddress(getKeyPrefix(CONTRACT_1155_IMPl_VERSION));
deployment.contract1155ImplVersion = json.readAddress(getKeyPrefix(CONTRACT_1155_IMPL_VERSION));
deployment.factoryImpl = json.readAddress(getKeyPrefix(FACTORY_IMPL));
deployment.factoryProxy = json.readAddress(getKeyPrefix(FACTORY_PROXY));
}
Expand Down

0 comments on commit 3463127

Please sign in to comment.