Skip to content

Instantly share code, notes, and snippets.

@dickolsson
Created July 14, 2017 21:58
Show Gist options
  • Save dickolsson/4047384d4e8efa821d709a9236b57853 to your computer and use it in GitHub Desktop.
Save dickolsson/4047384d4e8efa821d709a9236b57853 to your computer and use it in GitHub Desktop.
Example contract migration
var IronDoers = artifacts.require(./IronDoers.sol”);
module.exports = function(deployer, network, accounts) {
deployer.deploy(IronDoers);
};
@pcambra
Copy link

pcambra commented Jan 7, 2018

Watch out for the double quotes: var IronDoers = artifacts.require("./IronDoers.sol");

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment