Question
Hey, I faced 2 weird behaviors in OpenZeppelin ERC1155 Upgradable Contract. I Have two ERC1155 uups upgradable contract in hardhat. The code in both the contract are same, only difference is the name of the two contracts. The byte code of the two contracts are exactly same.
Let's say the two smart contracts name are Contract-A and Contract-B. And i have two Externally owned Address (EOA) namely EOA-1 and EOA-2.
Weird Behavior 1:
I run the script to deploy Contract-A. the script deploys the implementation and proxy contract in the network successfully without any issues. then i try to verify the deployed contract in hardhat. it shows the error "Two contracts have same bytecode. please mention the contract name". then only I realized that the two contract with same code have same bytecode. but it's not the weird behaviors i faced. The actually weird behavior I faced was I run the script to deploy Contract-B. the script deploys only the proxy of Contract-B, the implementation not deployed but the proxy points the implementation of Contract-A.
[i think it happen because the both contract have same bytecode in the hardhat]
Weird Behavior 2:
I run the script to deploy Contract-A with my EOA-1. the script deploys the implementation and proxy contract in the network successfully without any issues.
then i run i run the script to deploy Contract-A with EOA-2. the script deploys only the proxy of Contract-A and the proxy points to the implementation of Contract-A deployed by EOA-1.
[i think it happen because the both contract have same bytecode in the hardhat]
Please, Explain me the reason behind the two weird behaviors and also tell me the solution to overcome this issue.
Environment
Hardhat
Goerli and Mumbai Testnets
OpenZeppelin UUPS Upgradable contracts
Folder and File structure of the projrcts are below:
"mau-rewards" and "referral-rewards" are the two contracts with same bytecode.