This commit is contained in:
elegant651
2020-03-24 14:39:38 +09:00
commit 6e0388b653
83 changed files with 92480 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
const MyNFT = artifacts.require("./MyNFT.sol");
const Auctions = artifacts.require("./Auctions.sol");
module.exports = async function(deployer) {
deployer.deploy(MyNFT, "AvarCat", "ACat")
deployer.deploy(Auctions)
};