mirror of
https://github.com/Instadapp/yield-contract.git
synced 2024-07-29 21:47:29 +00:00
8 lines
481 B
JavaScript
8 lines
481 B
JavaScript
const Registry = artifacts.require("Registry");
|
|
const FlusherLogic = artifacts.require("FlusherLogic");
|
|
const SettleLogic = artifacts.require("SettleLogic");
|
|
module.exports = async function(deployer, networks, accounts) {
|
|
await deployer.deploy(Registry, accounts[0]); //deploy registry.sol contract
|
|
await deployer.deploy(FlusherLogic, accounts[0]); //deploy flusherLogic.sol contract
|
|
await deployer.deploy(SettleLogic, accounts[0]); //deploy settleLogic.sol contract
|
|
}; |