TestTruffle/migrations/1678978436_deploy_faucet.js
2023-03-17 00:18:52 +08:00

7 lines
159 B
JavaScript

const Faucet = artifacts.require("Faucet");
module.exports = function(_deployer) {
// Use deployer to state migration tasks.
_deployer.deploy(Faucet);
};