Skip to content
View codebestia's full-sized avatar

Block or report codebestia

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
codebestia/README.md

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 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 😎?");
    }
}

Pinned Loading

  1. CrowdFundUs CrowdFundUs Public

    An application for displaying projects and receiving funding in ethereum from investors. built with solidity and react

    JavaScript

  2. BestiaLottery BestiaLottery Public

    A simple lottery application built with solidity, brownie and react

    JavaScript

  3. TokenFarm TokenFarm Public

    A dapp application for staking token in order to mine farm token

    JavaScript

  4. BestiaToken BestiaToken Public

    A ERC20 token contract with brownie

    Python

  5. smart-contract-proxy smart-contract-proxy Public

    A program showing how to use a proxy for creating upgradeable smart contracts

    Solidity

  6. solana-nft-anchor solana-nft-anchor Public

    Forked from Calyptus-Learn/solana-nft-anchor

    Code for minting nfts on Solana using anchor and metaplex

    Rust