initial contracts

This commit is contained in:
Evgeny Marchenko
2019-06-22 17:03:38 +03:00
parent 401dbe8681
commit 917bb4247f
4 changed files with 207 additions and 0 deletions

View File

@ -0,0 +1,5 @@
const Migrations = artifacts.require("Migrations");
module.exports = function(deployer) {
deployer.deploy(Migrations);
};