Skip to content

Instantly share code, notes, and snippets.

View casweeney's full-sized avatar
👨‍💻
Building Platforms

Coding Cas casweeney

👨‍💻
Building Platforms
View GitHub Profile
@amarachiugwu
amarachiugwu / simpleDepositContract.sol
Last active August 5, 2022 00:02
a simple deposit contract
// 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