becrypto/migrations/9_deploy_proxy.js
2022-04-16 08:23:15 +08:00

9 lines
292 B
JavaScript

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