Skip to content

Instantly share code, notes, and snippets.

@alexroan
Created March 22, 2020 21:54
Show Gist options
  • Save alexroan/3dcd9ac64b2ac94058e1a388478a2a6b to your computer and use it in GitHub Desktop.
Save alexroan/3dcd9ac64b2ac94058e1a388478a2a6b to your computer and use it in GitHub Desktop.
truffle-multiple-migrations-2.js
const MyERC20 = artifacts.require("MyERC20");
const SecondERC20 = artifacts.require("SecondERC20");
module.exports = function(deployer) {
deployer.deploy(MyERC20);
deployer.deploy(SecondERC20);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment