Skip to content

Instantly share code, notes, and snippets.

@yrong
Created July 7, 2022 08:53
Show Gist options
  • Save yrong/5d2319e62a0650178fec4f93ba722f16 to your computer and use it in GitHub Desktop.
Save yrong/5d2319e62a0650178fec4f93ba722f16 to your computer and use it in GitHub Desktop.
var InterfacePayroll = = artifacts.require("./InterfacePayroll");
var EmployeeStorage= = artifacts.require("./EmployeeStorage");
var Token= = artifacts.require("./Token");
var Payroll = = artifacts.require("./Payroll");
module.exports = function(deployer) {
deployer.deploy(InterfacePayroll );
deployer.deploy(EmployeeStorage);
deployer.deploy(Token);
deployer.link(InterfacePayroll ,Payroll );
deployer.link(EmployeeStorage,Payroll );
deployer.link(Token,Payroll );
deployer.deploy(Payroll );
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment