becrypto/migrations/11_deploy_proxy.js
2022-08-16 11:49:28 +08:00

10 lines
309 B
JavaScript

const EvolveFactory = artifacts.require('logic/EvolveFactory');
module.exports = async function (deployer, network, accounts) {
await deployer.deploy(EvolveFactory);
const proxyInstance = await EvolveFactory.deployed();
if(proxyInstance) {
console.log("EvolveFactory successfully deployed.")
}
}