This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// SPDX-License-Identifier: MIT | |
pragma solidity 0.8.0; | |
contract simpleDepositContract { | |
// emit an event when an end users deposits | |
event depositEvent(address user, uint amount); | |
// track individual balances |