Created
July 7, 2022 08:53
-
-
Save yrong/5d2319e62a0650178fec4f93ba722f16 to your computer and use it in GitHub Desktop.
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 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