tornado-aggregator/migrations/1_deploy_aggregator.js

11 lines
273 B
JavaScript

/* global artifacts */
const Aggregator = artifacts.require('Aggregator')
module.exports = function (deployer) {
return deployer.then(async () => {
const aggregator = await deployer.deploy(Aggregator)
console.log('Aggregator :', aggregator.address)
})
}