const Token = await ethers.getContractFactory("token");
console.log("Deploying Token...");
const t = await upgrades.deployProxy(Token, { initializer: '__Token_init' });
await t.deployed();
There is no problem with deployment on other links, error is reported when using mumbai test chain:
0xxxxx The deployment did not return the correct contract address:
InvalidDeployment [Error]: No contract at address 0xxxxx (Removed from manifest) at waitAndValidateDeployment (./node_modules/@openzeppelin/upgrades-core/src/deployment.ts:92:13) at processTicksAndRejections (internal/process/task_queues.js:93:5) at fetchOrDeployGeneric (.//node_modules/@openzeppelin/upgrades-core/src/impl-store.ts:43:5) at deployImpl (.//node_modules/@openzeppelin/hardhat-upgrades/src/utils/deploy-impl.ts:60:16) at Proxy.deployProxy (.//node_modules/@openzeppelin/hardhat-upgrades/src/deploy-proxy.ts:35:28) at main (.//scripts/deploy_upgradeable_token.js:6:19)
const Token = await ethers.getContractFactory("token"); console.log("Deploying Token..."); const t = await upgrades.deployProxy(Token, { initializer: '__Token_init' }); await t.deployed(); There is no problem with deployment on other links, error is reported when using mumbai test chain: 0xxxxx The deployment did not return the correct contract address: InvalidDeployment [Error]: No contract at address 0xxxxx (Removed from manifest) at waitAndValidateDeployment (./node_modules/@openzeppelin/upgrades-core/src/deployment.ts:92:13) at processTicksAndRejections (internal/process/task_queues.js:93:5) at fetchOrDeployGeneric (.//node_modules/@openzeppelin/upgrades-core/src/impl-store.ts:43:5) at deployImpl (.//node_modules/@openzeppelin/hardhat-upgrades/src/utils/deploy-impl.ts:60:16) at Proxy.deployProxy (.//node_modules/@openzeppelin/hardhat-upgrades/src/deploy-proxy.ts:35:28) at main (.//scripts/deploy_upgradeable_token.js:6:19)