Skip to content

Instantly share code, notes, and snippets.

View gulerburak's full-sized avatar

Burak Guler gulerburak

  • İstanbul, Turkey
  • 08:21 (UTC +03:00)
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);