contracts/migrations/2_deploy_contracts.js

6 lines
123 B
JavaScript
Raw Normal View History

let Identity = artifacts.require("./Identity.sol");
module.exports = function(deployer) {
deployer.deploy(Identity);
};