blockchain-developer

404kidwiz/claude-supercode-skills · updated Apr 8, 2026

MDX-style export adds YAML metadata + attribution linking explainx.ai and this canonical listing URL.

$npx skills add https://github.com/404kidwiz/claude-supercode-skills --skill blockchain-developer
0 commentsdiscussion
summary

Provides Web3 development expertise specializing in smart contracts (Solidity/Rust), decentralized application (dApp) architecture, and blockchain security. Builds secure smart contracts, optimizes gas usage, and integrates with Layer 2 scaling solutions (Arbitrum, Optimism, Base).

skill.md

Blockchain Developer

Purpose

Provides Web3 development expertise specializing in smart contracts (Solidity/Rust), decentralized application (dApp) architecture, and blockchain security. Builds secure smart contracts, optimizes gas usage, and integrates with Layer 2 scaling solutions (Arbitrum, Optimism, Base).

When to Use

  • Writing and deploying Smart Contracts (ERC-20, ERC-721, ERC-1155)
  • Auditing contracts for security vulnerabilities (Reentrancy, Overflow)
  • Integrating dApp frontends with wallets (MetaMask, WalletConnect, RainbowKit)
  • Building DeFi protocols (AMMs, Lending, Staking)
  • Implementing Account Abstraction (ERC-4337)
  • Indexing blockchain data (The Graph, Ponder)


2. Decision Framework

Blockchain Network Selection

Which chain fits the use case?
├─ **Ethereum L1**
│  ├─ High value transactions? → **Yes** (Max security)
│  └─ Cost sensitive? → **No** (High gas fees)
├─ **Layer 2 (Arbitrum / Optimism / Base)**
│  ├─ General purpose? → **Yes** (EVM equivalent)
│  ├─ Low fees? → **Yes** ($0.01 - $0.10)
│  └─ Security? → **High** (Inherits from Eth L1)
├─ **Sidechains / Alt L1 (Polygon / Solana / Avalanche)**
│  ├─ Massive throughput? → **Solana** (Rust based)
│  └─ EVM compatibility? → **Polygon/Avalanche**
└─ **App Chains (Cosmos / Polkadot / Supernets)**
   └─ Need custom consensus/gas token? → **Yes** (Sovereignty)

Development Stack (2026 Standards)

Component Recommendation Why?
Framework Foundry Rust-based, blazing fast tests, Solidity scripting. (Hardhat is legacy).
Frontend Wagmi + Viem Type-safe, lightweight replacement for Ethers.js.
Indexing Ponder / The Graph Efficient event indexing.
Wallets RainbowKit / Web3Modal Best UX, easy integration.

Red Flags → Escalate to security-auditor:

  • Contract holds > $100k value without an audit
  • Using delegatecall with untrusted inputs
  • Implementing custom cryptography (Rolling your own crypto)
  • Upgradable contracts without a Timelock or Multi-sig governance


4. Core Workflows

Workflow 1: Smart Contract Development (Foundry)

Goal: Create a secure ERC-721 NFT contract with whitelist.

Steps:

  1. Setup

    forge init my-nft
    forge install OpenZeppelin/openzeppelin-contracts
    
  2. Contract (src/MyNFT.sol)

    // SPDX-License-Identifier: MIT
    pragma solidity ^0.8.20;
    
    import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
    import "@openzeppelin/contracts/access/Ownable.sol";
    import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
    
    contract MyNFT is ERC721, Ownable {
        bytes32 public merkleRoot;
        uint256 public nextTokenId;
    
        constructor(bytes32 _merkleRoot) ERC721("MyNFT", "MNFT") Ownable(msg.sender) {
            merkleRoot = _merkleRoot;
        }
    
        function mint(bytes32[] calldata proof) external {
            bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
            require(MerkleProof.verify(proof, merkleRoot, leaf), "Not whitelisted");
            
            _safeMint(msg.sender, nextTokenId);
            nextTokenId++;
        }
    }
    
  3. Test (test/MyNFT.t.sol)

    function testMintWhitelist() public {
        // Generate Merkle Tree in helper...
        bytes32[] memory proof = tree.getProof(user1);
        
        vm.prank(user1);
        nft.mint(proof);
        
        assertEq(nft.ownerOf(0), user1);
    }
    


Workflow 3: Gas Optimization Audit

Goal: Reduce transaction costs for users.

Steps:

  1. Analyze Storage

    • Pack variables: uint128 a; uint128 b; fits in one slot (32 bytes).
    • Use constant and immutable for fixed values.
  2. Code Refactoring

    • Use custom errors instead of string require messages (saves ~gas).
    • Cache array length in loops (unchecked { ++i }).
    • Use calldata instead of memory for function arguments where possible.
  3. Verification

    • Run forge test --gas-report.


4. Patterns & Templates

Pattern 1: Checks-Effects-Interactions (Security)

Use case: Preventing Reentrancy attacks.

function withdraw() external {
    // 1. Checks
    uint256 balance = userBalances[msg.sender];
    require(balance > 0, "No balance");

    // 2. Effects (Update state BEFORE sending ETH)
    userBalances[msg.sender] = 0;

    // 3. Interactions (External call)
    (bool success, ) = msg.sender.call{value: balance}("");
    require(success, "Transfer failed");
}

Pattern 2: Transparent Proxy (Upgradability)

Use case: Upgrading contract logic while keeping state/address.

// Implementation V1
contract LogicV1 {
    uint256 public value;
    function setValue(uint256 _value) external { value = _value; }
}

// Proxy Contract (Generic)
contract Proxy {
    address public implementation;
    function upgradeTo(address _newImpl) external { implementation = _newImpl; }
    
    fallback() external payable {
        address _impl = implementation;
        assembly {
            calldatacopy(0, 0, calldatasize())
            let result := delegatecall(gas(), _impl, 0, calldatasize(), 0, 0)
            returndatacopy(0, 0, returndatasize())
            switch result
            case 0 { revert(0, returndatasize()) }
            default { return(0, returndatasize()) }
        }
    }
}

Pattern 3: Merkle Tree Whitelist (Gas Efficient)

Use case: Whitelisting 10,000 users without storing them on-chain.

  • Off-chain: Hash all addresses -> Root Hash.
  • On-chain: Store only Root Hash (32 bytes).
  • Verification: User provides Proof (path to root). Cost is O(log n), very cheap.


6. Integration Patterns

backend-developer:

  • Handoff: Blockchain dev provides ABI and Contract Address → Backend uses Alchemy/Infura to listen for events.
  • Collaboration: Indexing strategy (The Graph vs Custom SQL indexer).
  • Tools: Alchemy Webhooks, Tenderly.

frontend-ui-ux-engineer:

  • Handoff: Blockchain dev provides wagmi hooks → Frontend builds UI.
  • Collaboration: Handling loading states, transaction confirmations, and error toasts ("User rejected request").
  • Tools: RainbowKit.

security-auditor:

  • Handoff: Blockchain dev freezes code → Auditor reviews.
  • Collaboration: Fixing findings (Critical/High/Medium).
  • Tools: Slither, Mythril.

how to use blockchain-developer

How to use blockchain-developer on Cursor

AI-first code editor with Composer

1

Prerequisites

Before installing skills in Cursor, ensure your development environment meets these requirements:

  • Cursor installed and configured on your development machine
  • Node.js version 16.0+ with npm package manager (verify with node --version)
  • Active project directory or workspace where you want to add blockchain-developer
2

Execute installation command

Execute the skills CLI command in your project's root directory to begin installation:

$npx skills add https://github.com/404kidwiz/claude-supercode-skills --skill blockchain-developer

The skills CLI fetches blockchain-developer from GitHub repository 404kidwiz/claude-supercode-skills and configures it for Cursor.

3

Select Cursor when prompted

The CLI will show a list of available agents. Use arrow keys to navigate and space to select Cursor:

◆ Which agents do you want to install to?
│ ── Universal (.agents/skills) ── always included ────
│ • Amp
│ • Antigravity
│ • Cline
│ • Codex
│ ●Cursor(selected)
│ • Cursor
│ • Windsurf
4

Verify installation

Confirm successful installation by checking the skill directory location:

.cursor/skills/blockchain-developer

Reload or restart Cursor to activate blockchain-developer. Access the skill through slash commands (e.g., /blockchain-developer) or your agent's skill management interface.

Security & Verification Notice

We perform automated surface-level scans (Gen AI Scanner, Socket, Snyk) during installation. These checks detect common vulnerabilities but do not guarantee complete security. Always review skill source code and verify the publisher's reputation before production use.

Skills execute code in your development environment. Always verify the publisher's identity, review recent commits, and test in isolated environments before production deployment.

List & Monetize Your Skill

Submit your Claude Code skill and start earning

GET_STARTED →

Use Cases

Task Automation & Efficiency

Automate repetitive workflows and reduce manual effort

Example

Generate reports, summarize documents, draft communications

Save 3-5 hours per week on routine tasks

Knowledge Enhancement

Learn new skills, understand complex topics, get expert guidance

Example

Explain concepts, provide examples, suggest learning resources

Accelerate learning and skill development by 2x

Quality Improvement

Enhance output quality through reviews, suggestions, and refinements

Example

Review drafts, suggest improvements, catch errors

Improve work quality by 30-40% with less effort

Implementation Guide

Prerequisites

  • Claude Desktop or compatible AI client with skill support
  • Clear understanding of task or problem to solve
  • Willingness to iterate and refine outputs

Time Estimate

15-45 minutes depending on use case complexity

Installation Steps

  1. 1.Install skill using provided installation command
  2. 2.Test with simple use case relevant to your work
  3. 3.Evaluate output quality and relevance
  4. 4.Iterate on prompts to improve results
  5. 5.Integrate into regular workflow if valuable

Common Pitfalls

  • Expecting perfect results without iteration
  • Not providing enough context in prompts
  • Using skill for tasks outside its intended scope
  • Accepting outputs without review and validation

Best Practices

✓ Do

  • +Start with clear, specific prompts
  • +Provide relevant context and constraints
  • +Review and refine all outputs before using
  • +Iterate to improve output quality
  • +Document successful prompt patterns

✗ Don't

  • Don't use without understanding skill limitations
  • Don't skip validation of outputs
  • Don't share sensitive information in prompts
  • Don't expect skill to replace human judgment

💡 Pro Tips

  • Be specific about desired format and style
  • Ask for multiple options to choose from
  • Request explanations to understand reasoning
  • Combine AI efficiency with human expertise

When to Use This

✓ Use When

Use when skill capabilities match your task, clear ROI on time saved, and you can validate outputs. Best for repetitive tasks, learning, and quality improvement.

✗ Avoid When

Avoid when task requires deep expertise you can't validate, involves sensitive decisions, or when learning process is more valuable than speed of completion.

Learning Path

  1. 1Familiarize yourself with skill capabilities and limitations
  2. 2Start with low-risk, non-critical tasks
  3. 3Progress to more complex and valuable use cases
  4. 4Build expertise through regular use and experimentation

Discussion

Product Hunt–style comments (not star reviews)
  • No comments yet — start the thread.
general reviews

Ratings

4.665 reviews
  • Meera Mehta· Dec 20, 2024

    We added blockchain-developer from the explainx registry; install was straightforward and the SKILL.md answered most questions upfront.

  • Benjamin Robinson· Dec 16, 2024

    Keeps context tight: blockchain-developer is the kind of skill you can hand to a new teammate without a long onboarding doc.

  • Rahul Santra· Dec 4, 2024

    Registry listing for blockchain-developer matched our evaluation — installs cleanly and behaves as described in the markdown.

  • Mia Khanna· Dec 4, 2024

    Keeps context tight: blockchain-developer is the kind of skill you can hand to a new teammate without a long onboarding doc.

  • Shikha Mishra· Nov 23, 2024

    Solid pick for teams standardizing on skills: blockchain-developer is focused, and the summary matches what you get after install.

  • Henry Gupta· Nov 23, 2024

    blockchain-developer has been reliable in day-to-day use. Documentation quality is above average for community skills.

  • Benjamin Martinez· Nov 11, 2024

    blockchain-developer fits our agent workflows well — practical, well scoped, and easy to wire into existing repos.

  • Evelyn Singh· Nov 7, 2024

    blockchain-developer has been reliable in day-to-day use. Documentation quality is above average for community skills.

  • Pratham Ware· Nov 3, 2024

    blockchain-developer reduced setup friction for our internal harness; good balance of opinion and flexibility.

  • Evelyn Mehta· Oct 26, 2024

    blockchain-developer fits our agent workflows well — practical, well scoped, and easy to wire into existing repos.

showing 1-10 of 65

1 / 7