🚀 Strap in, because we’re about to launch into the decentralized stratosphere! 🌌
👨💻 I’m a blockchain wizard by day, and a Nyctophile by night. My quest? To push the boundaries of cryptography, decentralization, and take what belongs to caesar 🙃.
pragma solidity^0.8.19;
contractProfile {
// Developer Infostringpublic developerName ="Codebestia";
stringpublic role ="First Principle Engineer 👨💻 ";
stringpublic currentQuest ="Exploring the decentralized multiverse 🚀";
stringpublic slogan ="Decentralized everything. Centralized nothing. 🛸";
// Skills & Tech Stackstring[] public techStack = [
"Solidity 🛠️",
"Rust 🦀",
"Web3.js 🌐",
"Ethers.js ⚡",
"Brownie 🍲",
"NFTs & DeFi 👑",
];
// Contact Details (like a smart contract, but for your social life)stringpublic email ="codebestia@gmail.com";
// Constructor to initialize the Profileconstructor() {
developerName ="Codebestia"; // You're awesome, no need to change this!
role ="Blockchain Developer ⚡ | Researcher 👑 | Crypto Adventurer 🏞️";
currentQuest ="Building the future of decentralized applications 🌍";
slogan ="Just do it";
}
// Function to get my skills (like a public getter function but cooler)function getTechStack() publicviewreturns (string[] memory) {
return techStack;
}
// Function to get my social links (contact me, it would be an adventure )function getContact() publicviewreturns (stringmemory) {
return (email);
}
// Function to describe my current questfunction getCurrentQuest() publicviewreturns (stringmemory) {
return currentQuest;
}
// Function to display my drivefunction getSlogan() publicviewreturns (stringmemory) {
return slogan;
}
// Fallback function for funfallback() externalpayable {
revert("You've interacted with my profile. Your fund security is my priority 😎?");
}
}


