Add blockchain directory for working on related projects

+ Add sample Solidity project template, README instructions
This commit is contained in:
2021-05-03 14:46:36 -04:00
parent 8817a594be
commit e585f18359
9 changed files with 19029 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
// SPDX-License-Identifier: MIT
pragma solidity >=0.4.22 <0.9.0;
contract Migrations {
address public owner = msg.sender;
uint public last_completed_migration;
modifier restricted() {
require(
msg.sender == owner,
"This function is restricted to the contract's owner"
);
_;
}
function setCompleted(uint completed) public restricted {
last_completed_migration = completed;
}
}