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

Commit

Permalink
Updated migration script for ERC20
Browse files Browse the repository at this point in the history
Changed token from EIP20 to ERC20 => adapted script accordingly
  • Loading branch information
rcoscali committed May 9, 2021
1 parent 82a74f5 commit 6eb0600
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions truffle/migrations/3_deploy_tokens.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
const EIP20 = artifacts.require('./EIP20.sol');
const ERC20 = artifacts.require('./tokens/ERC20.sol');

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

0 comments on commit 6eb0600

Please sign in to comment.