-
Notifications
You must be signed in to change notification settings - Fork 63
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hardhat: Upgradeable Proxy support for XDC #326
Comments
I reproduced this problem and will debug it later. |
There's same problem when I use hardhat-upgrades and ethers v6. But I can deploy upgradeable contract to apothem network without problem when I use hardhat-upgrades and ethers v5. So please try ethers v5, it seems that ethers v6 cause this problem. |
Please refer to my PR: GoPlugin/hardhat-proxy#1, main changes: package.json "@openzeppelin/hardhat-upgrades": "^1.28.0",
"ethers": "^5.7.2", scripts/deploy.js await v1contract.deployed();
console.log("Contract deployed to:", await v1contract.address); Below is my test result:
|
Working fine now, this issue can be closed. |
This issue is fixed on testnet now. The patch will be applied on mainnet later. |
Unable to setup upgradeable proxy contract using Hardhat features. Setup is working fine with other evm compatible blockchain.
Erroring out with "ProviderError: too many arguments, want at most 1"
please try this : github.com/GoPlugin/hardhat-proxy
please check the README
The text was updated successfully, but these errors were encountered: