truffle 框架

This commit is contained in:
myh
2024-06-05 16:07:01 +08:00
parent c914473c5c
commit a1c481cef4
7 changed files with 13676 additions and 0 deletions

View File

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

View File

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