Migration for Deploying Contracts Locally

 avatar
unknown
javascript
a year ago
224 B
5
Indexable
const Migrations = artifacts.require("Migrations");
const ExampleContract = artifacts.require("ExampleContract");

module.exports = function(deployer) {
   deployer.deploy(Migrations);
   deployer.deploy(ExampleContract);
};
Editor is loading...
Leave a Comment