thenavisapp
Version:
This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app).
14 lines (12 loc) • 414 B
JavaScript
const NAVIS = artifacts.require("NAVIS");
const NArbitrage = artifacts.require("NArbitrage");
const NFarming = artifacts.require("NFarming");
const NSwap = artifacts.require("NSwap");
const MSW = artifacts.require("MSW");
module.exports = function (deployer) {
deployer.deploy(NAVIS);
deployer.deploy(NArbitrage);
deployer.deploy(NFarming);
deployer.deploy(NSwap);
deployer.deploy(MSW);
};