From 16491d8d212c54758ae4c8cd9fd0ef02bfbb3abb Mon Sep 17 00:00:00 2001 From: Moon Date: Sun, 17 Jan 2021 15:17:22 +0000 Subject: [PATCH] add migration, explicit chain id --- migrations/2_foolsgrans.js | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 migrations/2_foolsgrans.js diff --git a/migrations/2_foolsgrans.js b/migrations/2_foolsgrans.js new file mode 100644 index 0000000..de7f48a --- /dev/null +++ b/migrations/2_foolsgrans.js @@ -0,0 +1,5 @@ +var FoolsGrans = artifacts.require("./FoolsGrans.sol"); + +module.exports = function(deployer) { + deployer.deploy(FoolsGrans); +};