Migration for Deploying Contracts Locally

 avatar
unknown
javascript
10 months ago
224 B
4
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