Open-Issues
1. Hardhat: Upgradeable Proxy support for XDC
const { ethers, upgrades } = require("hardhat");
async function main() {
// const gas = await ethers.provider.getGasPrice();
const CLCStakePool = await ethers.getContractFactory("CLCStakePool");
console.log("Deploying stakePool...");
const v1contract = await upgrades.deployProxy(CLCStakePool,[]);
await v1contract.waitForDeployment();
console.log("Contract deployed to:", await v1contract.getAddress());
}
main().catch((error) => {
console.error(error);
process.exitCode = 1;
});2. HeadTracker is not capturing a few blocks in Apothem / Mainnet
Last updated

