thenavisapp
Version:
This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app).
16 lines (14 loc) • 559 B
JavaScript
const Nsurance = artifacts.require("Nsurance");
const NAVISVAULT = artifacts.require("NAVISVAULT");
const Reputation = artifacts.require("Reputation");
const NLiquidity = artifacts.require("NLiquidity");
const NGovernance = artifacts.require("NGovernance");
const Integrations = artifacts.require("Integrations");
module.exports = function (deployer) {
deployer.deploy(Nsurance);
deployer.deploy(NAVISVAULT);
deployer.deploy(Reputation);
deployer.deploy(NLiquidity);
deployer.deploy(NGovernance);
deployer.deploy(Integrations);
};