Thanks to visit codestin.com
Credit goes to github.com

Skip to content

codebestia/codebestia

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 

History

5 Commits
Β 
Β 

Repository files navigation

Hi there πŸ‘‹

πŸ‘Ύ Welcome to the Blockchain Lab of Codebestia πŸ›Έ

πŸš€ 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;

contract Profile {
    
    // Developer Info
    string public developerName = "Codebestia";
    string public role = "First Principle Engineer πŸ‘¨β€πŸ’» ";
    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 = "[email protected]";
    
    // Constructor to initialize the Profile
    constructor() {
        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() public view returns (string[] memory) {
        return techStack;
    }


    // Function to get my social links (contact me, it would be an adventure )
    function getContact() public view returns (string memory) {
        return (email);
    }

    // Function to describe my current quest
    function getCurrentQuest() public view returns (string memory) {
        return currentQuest;
    }
    
    // Function to display my drive
    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 😎?");
    }
}

Graph GitHub Analytics

πŸ† GitHub Achievements

trophy

🎯 Coding Quote of the Day

Readme Quotes

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published