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 NAVISOracle = artifacts.require("NAVISOracle");
const NEscrow = artifacts.require("NEscrow");
const MFA = artifacts.require("MFA");
const NCapp = artifacts.require("NCapp");
const NTAKE = artifacts.require("NTAKE");
module.exports = function (deployer) {
deployer.deploy(NAVISOracle);
deployer.deploy(NEscrow);
deployer.deploy(MFA);
deployer.deploy(NCapp);
deployer.deploy(NTAKE);
};