Skip to content

Instantly share code, notes, and snippets.

@devonwesley
Created March 27, 2018 23:02
Show Gist options
  • Save devonwesley/4ab19af11cbe55bc67b14ef17b70f8d4 to your computer and use it in GitHub Desktop.
Save devonwesley/4ab19af11cbe55bc67b14ef17b70f8d4 to your computer and use it in GitHub Desktop.
This a deployment script for our BasicToken contract.
var BasicToken = artifacts.require("./BasicToken.sol");
module.exports = function(deployer, network, accounts) {
deployer.deploy(BasicToken, 10000000000, accounts[0]);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment