Initial commit with 🏗️ create-eth @ 2.0.4
This commit is contained in:
10
packages/hardhat/contracts/FundingRecipient.sol
Normal file
10
packages/hardhat/contracts/FundingRecipient.sol
Normal file
@@ -0,0 +1,10 @@
|
||||
// SPDX-License-Identifier: MIT
|
||||
pragma solidity 0.8.20; // Do not change the solidity version as it negatively impacts submission grading
|
||||
|
||||
contract FundingRecipient {
|
||||
bool public completed;
|
||||
|
||||
function complete() public payable {
|
||||
completed = true;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user