Skip to content

Instantly share code, notes, and snippets.

View gourav-d's full-sized avatar
🎯
Focusing

Gourav Dwivedi gourav-d

🎯
Focusing
View GitHub Profile
@rodgtr1
rodgtr1 / CryptoKids.sol
Created April 7, 2022 12:31
CryptoKids Solidity Smart Contract - Tutorial at https://youtu.be/s9MVkHKV2Vw
// SPDX-License-Identifier: Unlicensed
pragma solidity ^0.8.7;
contract CryptoKids {
// owner DAD
address owner;
event LogKidFundingReceived(address addr, uint amount, uint contractBalance);