Add very initial version of smart contracts with tests

This commit is contained in:
arnaucube
2020-05-09 19:01:41 +02:00
parent 7f7ba4f7cb
commit e0dfc2ab6c
16 changed files with 537 additions and 27 deletions

View File

@@ -0,0 +1,5 @@
var Migrations = artifacts.require("./contracts/helpers/Migrations.sol");
module.exports = function(deployer) {
deployer.deploy(Migrations);
};

View File

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