mirror of
https://github.com/arnaucube/miksi-core.git
synced 2026-02-07 03:26:41 +01:00
Add very initial version of smart contracts with tests
This commit is contained in:
5
migrations/1_initial_migration.js
Normal file
5
migrations/1_initial_migration.js
Normal file
@@ -0,0 +1,5 @@
|
||||
var Migrations = artifacts.require("./contracts/helpers/Migrations.sol");
|
||||
|
||||
module.exports = function(deployer) {
|
||||
deployer.deploy(Migrations);
|
||||
};
|
||||
5
migrations/2_deploy_contracts.js
Normal file
5
migrations/2_deploy_contracts.js
Normal file
@@ -0,0 +1,5 @@
|
||||
const Verifier = artifacts.require("../contracts/Verifier");
|
||||
|
||||
module.exports = function(deployer) {
|
||||
deployer.deploy(Verifier);
|
||||
};
|
||||
Reference in New Issue
Block a user