Created
March 27, 2018 23:02
-
-
Save devonwesley/4ab19af11cbe55bc67b14ef17b70f8d4 to your computer and use it in GitHub Desktop.
This a deployment script for our BasicToken contract.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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