π Strap in, because weβre about to launch into the decentralized stratosphere! π
π¨βπ» Iβm a blockchain wizard by day, and a mad scientist by night. My quest? To push the boundaries of cryptography, decentralization, and maybe a few digital dragons along the way. π
pragma solidity ^0.8.19;
contract Profile {
// Developer Info
string public developerName = "Codebestia";
string public role = "Blockchain Wizard π¨βπ» ";
string public currentQuest = "Exploring the decentralized multiverse π";
string public slogan = "Decentralized everything. Centralized nothing. πΈ";
// Skills & Tech Stack
string[] public techStack = [
"Solidity π οΈ",
"Rust π¦",
"Web3.js π",
"Ethers.js β‘",
"Brownie π²",
"NFTs & DeFi π",
];
// Contact Details (like a smart contract, but for your social life)
string public email = "codebestia@gmail.com";
// Constructor to initialize the Profile
constructor() {
developerName = "Codebestia"; // You're awesome, no need to change this!
role = "Blockchain Developer β‘ | Meme King π | Crypto Adventurer ποΈ";
currentQuest = "Building the future of decentralized applications π";
slogan = "In crypto, we trust... and maybe in a little bit of code too. π₯οΈ";
}
// Function to get my skills (like a public getter function but cooler)
function getTechStack() public view returns (string[] memory) {
return techStack;
}
// Function to get my social links (contact me if you dare π)
function getContact() public view returns (string memory, string memory, string memory, string memory) {
return (email);
}
// Function to describe my current quest
function getCurrentQuest() public view returns (string memory) {
return currentQuest;
}
// Function to display the blockchain future we're building (spoiler alert: it's decentralized)
function getSlogan() public view returns (string memory) {
return slogan;
}
// Fallback function for fun
fallback() external payable {
revert("You've interacted with my profile. Your fund security is my priority π?");
}
}