- π Iβm a Full Stack Blockchain Developer, Web3 Researcher & Enthusiast.
- π Author: "The Evolution of Blockchain"
- π¨βπ« Delivered 20+ enlightening sessions on Web3 & Mentored 1000+ Students on Blockchain and related topics.
- π Iβm looking to collaborate Development projects and Hackathons.
- ποΈ Love to collaborate on Defi, GameFi, SocialFi, Smart contracts and lots more.......
- π Connect with me on LinkedIn and ask away! π Happy to chat and share insights!
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.15;
contract Profile {
string public name = "Shahnawaz Khan";
string public pronouns = "He | Him";
string public currentFocus = "Web3 / dApps";
string[] internal skills;
function getSkills() public returns (string[] memory) {
skills = [
string("MERN Stack"),
"Solidity",
"C++",
"EVM Based Chains"
"Hardhat/ Truffle/ Foundry",
"ethers.js/ Web3.js",
"Hyperledger Fabric"
];
return skills;
}
function fun() public view returns (string memory) {
return
"Two bytes meet. The first byte asks, 'Are you ill?' The second byte replies, 'No, just feeling a bit off.'";
}
}
---