becrypto/migrations/11_deploy_proxy.js

9 lines
298 B
JavaScript

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