-
๐ญ 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.
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.28;
contract Profile {
string public name = "Kay";
string public pronouns = "He | Him";
string public currentFocus = "Web3 / Smart Contract / Dapp / EVM";
string[] internal skills;
string[] internal langs;
function getSkills() public returns (string[] memory) {
skills = ["git", "Web3", "Smart contract", "Hardhat", "Front Running"];
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.";
}
}