yield-contract/migrations/2_registry.js
2020-08-30 23:33:16 +05:30

4 lines
195 B
JavaScript

const Registry = artifacts.require("Registry");
module.exports = async function(deployer, networks, accounts) {
await deployer.deploy(Registry, accounts[0]); //deploy registry.sol contract
};