Skip to content

Instantly share code, notes, and snippets.

@devonwesley
Created March 27, 2018 23:02
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
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