Latest Profile Information

View the most recent data about Gajendra Pal

Profile Overview

BLK-2025 Loading timestamp...
0xGajendra_Pal Avatar
ONLINE
Name
0xGajendra_Pal
Role
Senior Fullstack Blockchain Engineer VERIFIED
Specialization
Smart Contracts, Cross-Chain DeFi, Web3 Backend, AWS, Node.js, Cloud Architecture
Optimizing for gas efficiency and security
Current Project
Eigenpie(Liquid Restaking Platform) & Hyperpie (Liquid Staking Platform, DEX & first ever MEME launchpad on Hyperliquid
Leading Eigenpie ($1B+ TVL) & Hyperpie development on Hyperliquid chain ACTIVE
$1B+ TVL managed, built on EigenLayer, Hyperliquid
Education
Bachelor of Engineering in Computer Science
Punjab University, Chandigarh, India GRADUATED
GPA: 8.36

Profile Contract

VERIFIED
/**
 * @title GajendraPalProfile
 * @dev Contract containing profile information
 * @custom:security-contact gajendrahitz@gmail.com
 */
contract GajendraPalProfile {
    address public owner = 0xGajendra_Pal;
    
    /** 
     * @notice Professional summary
     */
    function getAboutMe() public pure returns (string memory) {
        return "Senior Fullstack Blockchain Engineer with 3.5+ years of experience specializing in scalable backend services (Web2) and advanced decentralized applications (Web3). Extensive experience developing robust smart contracts, full-stack dApps, SubDAOs, and cloud-native solutions across multiple companies including Magpie XYZ, Emoha, and Fluid AI. Successfully managed projects exceeding $1B TVL, delivered cross-chain solutions across Ethereum and Layer 2 ecosystems, and led development teams to achieve 30%+ performance improvements.";
    }
    
    /**
     * @notice Current position details
     */
    function getCurrentRole() public pure returns (string memory, string memory) {
        return ("Senior Blockchain Engineer", "Magpie - Managing Eigenpie & Hyperpie, a Liquid Restaking Platform with over $1B TVL");
    }
    
    /**
     * @notice Areas of expertise
     */
    function getExpertiseAreas() public pure returns (string[] memory) {
        string[] memory areas = new string[](5);
        areas[0] = "Smart Contract Development (Solidity, Foundry, Hardhat)";
        areas[1] = "Cross-Chain Solutions (LayerZero, CCIP)";
        areas[2] = "Security Auditing & Best Practices";
        areas[3] = "Full-Stack Web3 Development";
        areas[4] = "The Graph Protocol & GraphQL Subgraphs";
        return areas;
    }
    
                        /**
                     * @notice Education credentials
                     */
                    function getEducation() public pure returns (string memory, string memory, string memory) {
                        return (
                            "Bachelor of Engineering in Computer Science",
                            "Punjab University, Chandigarh, India", 
                            "GPA: 8.36"
                        );
                    }
    
    /**
     * @notice Previous work experience
     */
    function getPreviousExperience() public pure returns (Experience[] memory) {
        Experience[] memory experience = new Experience[](5);
        
        experience[0] = Experience({
            company: "Magpie XYZ",
            role: "Senior Fullstack Blockchain Engineer",
            period: "Jan 2025 - Present",
            description: "Developing critical infrastructure contracts including EGP, vlEGP, and MasterEigenpie, supporting a protocol with $1B+ TVL. Implementing cross-chain MLRT bridging via LayerZero. Architecting Hyperpie liquid staking protocol on Hyperliquid chain with validator operations and secure on-chain governance. Built automation system using master-slave architecture with Python AWS Lambda functions for signature exchanges."
        });
        
        experience[1] = Experience({
            company: "Magpie XYZ",
            role: "Blockchain Engineer", 
            period: "Nov 2023 - Dec 2024",
            description: "Led deployment of Cakepie across Ethereum and Arbitrum. Spearheaded smart contract development for major IDO events across Radpie, Cakepie, and Eigenpie. Built Smart Converter contract for PancakeSwap's Smart Router. Led EGP token ecosystem development driving $4M+ IDO. Engineered high-performance subgraphs for EigenPie protocol using GraphQL, supporting $1B+ TVL analytics."
        });
        
        experience[2] = Experience({
            company: "Emoha",
            role: "Senior Software Engineer",
            period: "Jul 2023 - Jun 2024",
            description: "Led backend development team, conducting code reviews and ensuring scalable code delivery. Improved backend performance by 30% through SQL optimization and Redis caching. Migrated Excel report generation to AWS Lambda. Implemented real-time QR payment confirmation using Socket.IO. Automated invoice workflows with Zoho Books APIs integration."
        });
        
        experience[3] = Experience({
            company: "Emoha", 
            role: "Software Engineer",
            period: "Jun 2022 - Jun 2023",
            description: "Implemented backend integrations with WhatsApp and Email platforms. Automated personalized email workflows using dynamic templates. Developed advanced analytics dashboard for Sales and Operations teams. Built scalable B2B onboarding infrastructure for clients like American Express and Aditya Birla Health Insurance, reducing onboarding time by 40%."
        });
        
        experience[4] = Experience({
            company: "Fluid AI",
            role: "Software Developer",
            period: "Jan 2022 - Jun 2022",
            description: "Contributed to developing a multitenant Conversational ChatBot Application for National and International Clients. Built chatbot flows and generated analytical reports. Implemented recursive logic for exporting/importing flows with n-level depth. Integrated cubejs Analytics and created Docker image for microservice deployment."
        });
        
        return experience;
    }
    
    /**
     * @notice Project details
     */
    function getProjectHashTable() public pure returns (bytes32[] memory) {
        bytes32[] memory projectHashes = new bytes32[](5);
        projectHashes[0] = 0x8e7a4f1b95d515d78eb845d9c5d1a880f0e6f42ef5b55bd15558c6c56aecf0db; // Eigenpie
        projectHashes[1] = 0x1b5d4e8f0afedc3e4ef9c7856fb825d5c1a8e093aa9e7b68f1b91f6d77b09aca; // Hyperpie SubDAO
        projectHashes[2] = 0x3f2e9a82b4c7ef4ac96c7de36c1bc7deb9cd7c7be5d6ab5e5e08618d2c4e31ea; // Blockchain Bidding War
        projectHashes[3] = 0x5dbf8c7de36c1bc7deb9cd7c7be5d6ab5e5e08618d2c4e31ea3f2e9a82b4c7ef; // AI Interview Prep
        projectHashes[4] = 0x7fa9e8b9c0d1e2f3a4b5c6d7e8f9a0b1c2d3e4f5a6b7c8d9e0f1a2b3c4d5e6f7; // FlappyPy Game
        return projectHashes;
    }
    
    /**
     * @notice Achievements
     */
    function getAchievements() public pure returns (string[] memory) {
        string[] memory achievements = new string[](3);
        achievements[0] = "LeetCode: Knight Badge, Top 5% globally";
        achievements[1] = "Codeforces: Specialist (Rating: 1486)";
        achievements[2] = "Open Source Contribution (Matplotlib): Fixed a critical triplot issue, incorporated from version 3.6.0+, benefiting 460k+ global users";
        return achievements;
    }
    
                        // Struct definitions
                    struct Experience {
                        string company;
                        string role;
                        string period;
                        string description;
                    }
}

Work Experience Blocks

Professional journey and career milestones in chronological order

Employment History

0xa1f2e3d4c5b6a7e8f9c0d1e2f3a4b5c6d7e8f9a0b1c2d3e4f5a6b7c8d9e0f1a2
Senior Fullstack Blockchain Engineer CURRENT
Company: Magpie XYZ
Duration: Jan 2025 - Present
6 months
$1B+ TVL Managed
Developing critical infrastructure contracts including EGP, vlEGP, and MasterEigenpie, supporting a protocol with $1B+ TVL. Implementing cross-chain MLRT bridging via LayerZero. Architecting Hyperpie liquid staking protocol on Hyperliquid chain with validator operations and secure on-chain governance. Built automation system using master-slave architecture with Python AWS Lambda functions for signature exchanges.
0xb2a3f4e5d6c7b8a9e0f1c2d3e4f5a6b7c8d9e0f1a2b3c4d5e6f7a8b9c0d1e2f3
Blockchain Engineer COMPLETED
Company: Magpie XYZ
Duration: Nov 2023 - Dec 2024
1 year 2 months
$4M+ IDO Led
Led deployment of Cakepie across Ethereum and Arbitrum. Spearheaded smart contract development for major IDO events across Radpie, Cakepie, and Eigenpie. Built Smart Converter contract for PancakeSwap's Smart Router. Led EGP token ecosystem development driving $4M+ IDO. Engineered high-performance subgraphs for EigenPie protocol using GraphQL, supporting $1B+ TVL analytics.
0xc3b4a5f6e7d8c9b0a1f2e3d4f5a6b7c8d9e0f1a2b3c4d5e6f7a8b9c0d1e2f3a4
Senior Software Engineer COMPLETED
Company: Emoha
Duration: Jun 2023 - Nov 2023
6 months
30% Performance Boost
Led backend development team, conducting code reviews and ensuring scalable code delivery. Improved backend performance by 30% through SQL optimization and Redis caching. Migrated Excel report generation to AWS Lambda. Implemented real-time QR payment confirmation using Socket.IO. Automated invoice workflows with Zoho Books APIs integration.
0xd4c5b6a7f8e9d0c1b2a3f4e5f6a7b8c9d0e1f2a3b4c5d6e7f8a9b0c1d2e3f4a5
Software Engineer COMPLETED
Company: Emoha
Duration: Jun 2022 - Jun 2023
1 year 1 month
40% Faster Onboarding
Implemented backend integrations with WhatsApp and Email platforms. Automated personalized email workflows using dynamic templates. Developed advanced analytics dashboard for Sales and Operations teams. Built scalable B2B onboarding infrastructure for clients like American Express and Aditya Birla Health Insurance, reducing onboarding time by 40%.
0xe5d6c7b8a9f0e1d2c3b4a5f6a7b8c9d0e1f2a3b4c5d6e7f8a9b0c1d2e3f4a5b6
Software Developer COMPLETED
Company: Fluid AI
Duration: Jan 2022 - Jun 2022
6 months
AI/ML Integration
Contributed to developing a multitenant Conversational ChatBot Application for National and International Clients. Built chatbot flows and generated analytical reports. Implemented recursive logic for exporting/importing flows with n-level depth. Integrated cubejs Analytics and created Docker image for microservice deployment.

Skills & Technologies

Developer's skill tokens and technology assets

Skill Token Holdings

Blockchain Development

Solidity
Expert
Foundry/Hardhat
Expert
LayerZero/CCIP
Advanced
Smart Contract Security
Expert
The Graph Protocol
Advanced
EigenLayer & Restaking
Expert
SubDAOs & Governance
Expert

Frontend Development

React
Advanced
TypeScript
Advanced
HTML5/CSS3
Expert
Next.js
Advanced

Backend & Infrastructure

Node.js
Expert
AWS
Advanced
Databases
Advanced
Docker/Kubernetes
Advanced
Microservices
Advanced

Programming Languages

JavaScript
Expert
Python
Advanced
Rust
Intermediate
Go
Intermediate

Project Transactions

View projects and contributions in chronological order

Latest Transactions

0x8e7a4f1b95d515d78eb845d9c5d1a880f0e6f42ef5b55bd15558c6c56aecf0db
Eigenpie (Liquid Restaking Platform) ACTIVE
Role: Lead Developer
Project: Magpie
2023 Q4 - Present
$1B+ TVL Secured
Lead developer for Eigenpie (Liquid Restaking Platform), managing $1B+ TVL, built on EigenLayer with cross-chain asset bridging using LayerZero. Developed core protocol smart contracts (vlEGP, vlStreamRewarders), governance modules, and reward distribution systems.
0x1b5d4e8f0afedc3e4ef9c7856fb825d5c1a8e093aa9e7b68f1b91f6d77b09aca
Hyperpie SubDAO Ecosystem ACTIVE
Role: Architect & Lead Developer
Project: Magpie/Hyperliquid Chain
2024 Q3 - Present
$3M+ Raised in First Week
Architected the Hyperpie SubDAO ecosystem on Hyperliquid Chain, comprising a Liquid Staking Platform, MEME Launchpad, and MEME DEX. Successfully launched with $2M+ raised within a week of launch. Engineered GraphQL subgraphs for data analytics.
0x3f2e9a82b4c7ef4ac96c7de36c1bc7deb9cd7c7be5d6ab5e5e08618d2c4e31ea
Blockchain Bidding War Game COMPLETED
Role: Developer
Technology: Solidity, Node.js
2023
Energi Testnet
Solidity-based decentralized competitive bidding game deployed on Energi Testnet, featuring automated Node.js backend integrations. Implemented smart contract-based auction mechanics with secure token handling.
0x5dbf8c7de36c1bc7deb9cd7c7be5d6ab5e5e08618d2c4e31ea3f2e9a82b4c7ef
AI Interview Prep COMPLETED
Role: Developer
Technology: Next.js, Node.js, MongoDB, GPT, OpenAI, NodeMailer
2023
AI Integration
A Next.js application designed to help users prepare for interviews, offering features like user authentication, email verification, and customized interview experiences. This application supports a variety of interview preferences, including experience levels, focus areas, and programming languages, offering a smooth and interactive preparation process.
0x7fa9e8b9c0d1e2f3a4b5c6d7e8f9a0b1c2d3e4f5a6b7c8d9e0f1a2b3c4d5e6f7
FlappyPy Game COMPLETED
Role: Developer
Technology: Python, Pygame
2021
Game Development
Developed a fully functional arcade-style Flappy Bird game demonstrating effective collision detection, interactive gameplay, and simplified local environment setup using Python and Pygame.

Contact Interface

Interact with this smart contract to get in touch

Contract Interaction

Ready to Execute
sendMessage(string name, string email, string subject, string message)
Send a message to contact Gajendra Pal

To use this function, simply fill out the form below with your name, email, subject, and message. Once you click "Execute Transaction", your message will be securely sent to Gajendra's inbox. You will receive a confirmation notification upon successful delivery.

Estimated Gas: 21,000

Contact Addresses

Email
gajendrahitz@gmail.com

Achievements

Notable accomplishments and recognitions

Achievement Records

0xa1b3c4d5e6f7a8b9c0d1e2f3a4b5c6d7e8f9a0b1c2d3e4f5a6b7c8d9e0f1a2b3
LeetCode VERIFIED
Knight Badge, Top 5% globally. Consistently solved complex algorithmic challenges and data structure problems.
0xb2c3d4e5f6a7b8c9d0e1f2a3b4c5d6e7f8a9b0c1d2e3f4a5b6c7d8e9f0a1b2c3
Codeforces VERIFIED
Specialist (Rating: 1486). Regular participant in competitive programming contests with consistent performance.
0xc3d4e5f6a7b8c9d0e1f2a3b4c5d6e7f8a9b0c1d2e3f4a5b6c7d8e9f0a1b2c3d4
Open Source Contribution (Matplotlib) MERGED
Fixed a critical triplot issue, incorporated from version 3.6.0+, benefiting 460k+ global users.