Skip to content
View Kay-79's full-sized avatar
๐ŸŽฏ
Focusing
๐ŸŽฏ
Focusing

Highlights

  • Pro

Block or report Kay-79

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this userโ€™s behavior. Learn more about reporting abuse.

Report abuse
Kay-79/README.md

Hi ๐Ÿ‘‹, I'm Kay

I'm a Blockchain Developer. Every day is a learning day for me.

  • ๐Ÿ”ญ Iโ€™m currently working as a freelance blockchain developer.

  • ๐ŸŒฑ Iโ€™m currently learning Smart Contracts development.

  • ๐Ÿ‘€ Fun fact If i don't know about something, I don't know it today. But i'll learn it and implement in my code.

About me

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.24;

contract Profile {
    string public name = "Kay";
    string public pronouns = "He | Him";
    string public currentFocus = "Web3 / Smart Contract / Dapp";

    string[] internal skills;
    string[] internal langs;

    function getSkills() public returns (string[] memory) {
        skills = ["git", "Web3", "Smart contract", "Hardhat"];
        return skills;
    }

    function getLangs() public returns (string[] memory) {
        langs = ["JavaScript", "TypeScript", "Solidity", "Rust", "Python", "AutoIt"];
        return langs;
    }

    function fun() public pure returns (string memory) {
        return
            "If i don't know about something, I don't know it today. But i'll learn it and implement in my code.";
    }
}

Popular repositories Loading

  1. Kay-79 Kay-79 Public

    Config files for my GitHub profile.

  2. Create2Deployer Create2Deployer Public

    Solidity

  3. erc6551crunch erc6551crunch Public

    A Rust program for finding salts that create gas-efficient Ethereum tokenbound addresses via CREATE2.

    Rust

  4. hardhat-deploy hardhat-deploy Public

    JavaScript

  5. v3-deployer v3-deployer Public

    Forked from tokenbound/v3-deployer

    Tool for deploying v3 contracts onto any chain

    TypeScript