Skip to content
This repository has been archived by the owner on May 8, 2023. It is now read-only.

Commit

Permalink
Updated ERC20 deployer script
Browse files Browse the repository at this point in the history
Adapt deployer script to adapt to erc20 constructor params
  • Loading branch information
rcoscali committed May 9, 2021
1 parent 6eb0600 commit 8bf4a5f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion truffle/migrations/3_deploy_tokens.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
const ERC20 = artifacts.require('./tokens/ERC20.sol');

module.exports = (deployer) => {
deployer.deploy(ERC20, 10000, 'Simon Bucks', 1, 'SBX');
deployer.deploy(ERC20, 'Simon Bucks', 'SBX');
};

0 comments on commit 8bf4a5f

Please sign in to comment.