tests: add opcode contract tests (#273)

Co-authored-by: Federico Kunze Küllmer <31522760+fedekunze@users.noreply.github.com>
This commit is contained in:
Yijia Su
2021-07-20 13:01:01 +00:00
committed by GitHub
co-authored by Federico Kunze Küllmer
parent 282eb13a6f
commit bb6622b7fb
9 changed files with 783 additions and 19 deletions
@@ -0,0 +1,5 @@
const Migrations = artifacts.require("Migrations");
module.exports = function(deployer) {
deployer.deploy(Migrations);
};
@@ -0,0 +1,5 @@
var OpCodes = artifacts.require("./OpCodes.sol");
module.exports = function(deployer) {
deployer.deploy(OpCodes);
};