yield-contract/migrations/2_registry.js

4 lines
195 B
JavaScript
Raw Normal View History

2020-08-30 18:03:16 +00:00
const Registry = artifacts.require("Registry");
module.exports = async function(deployer, networks, accounts) {
await deployer.deploy(Registry, accounts[0]); //deploy registry.sol contract
};