Files
dodo-contractV2/migrations/2_deploy.js
2020-06-26 17:05:22 +08:00

12 lines
243 B
JavaScript

const DODOZoo = artifacts.require("DODOZoo");
module.exports = async (deployer, network) => {
const deployDODOZoo = async () => {
await deployer.deploy(DODOZoo);
};
if (network == "development") {
await deployDODOZoo();
}
};