Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
pluginagentmarketplace avatar

Ethereum Development

  • 47 installs
  • 1 repo stars
  • Updated January 5, 2026
  • pluginagentmarketplace/custom-plugin-blockchain

ethereum-development is a Claude Code skill for ai & agent building.

About

ethereum-development is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted development.

  • ethereum-development
  • AI & Agent Building
  • AI-coding skill

Ethereum Development by the numbers

  • 47 all-time installs (skills.sh)
  • +1 installs in the week ending Aug 4, 2026 (Skillselion tracking)
  • Ranked #7,551 of 16,546 AI & Agent Building skills by installs in the Skillselion catalog
  • Data as of Aug 4, 2026 (Skillselion catalog sync)
npx skills add https://github.com/pluginagentmarketplace/custom-plugin-blockchain --skill ethereum-development

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs47
repo stars1
Last updatedJanuary 5, 2026
Repositorypluginagentmarketplace/custom-plugin-blockchain

How do I helps with ai & agent building tasks.?

Helps with ai & agent building tasks.

Who is it for?

Best when you're working on ai & agent building and need structured help with ethereum development.

Skip if: Teams with no ai & agent building needs, or anyone wanting a generic chat assistant without this specific workflow.

When should I use this skill?

When you need to helps with ai & agent building tasks., or when ethereum-development is a claude code skill for ai & agent building.

What you get

Structured output aligned to ethereum-development: ethereum-development, AI & Agent Building.

Files

SKILL.mdMarkdownGitHub ↗

Ethereum Development Skill

Master Ethereum development including EVM internals, gas optimization, transaction mechanics, and client interactions.

Quick Start

# Invoke this skill for Ethereum development
Skill("ethereum-development", topic="gas", network="mainnet")

Topics Covered

1. EVM (Ethereum Virtual Machine)

Understand the execution environment:

  • Stack Machine: 256-bit words, 1024 depth
  • Memory: Linear byte array, expansion costs
  • Storage: Persistent key-value, 32-byte slots
  • Opcodes: Costs, effects, gas consumption

2. Gas Optimization

Reduce transaction costs:

  • Storage Packing: Fit multiple values in one slot
  • Calldata vs Memory: Choose efficiently
  • Loop Optimization: Cache storage reads
  • Custom Errors: Save gas on reverts

3. Transaction Mechanics

Master transaction lifecycle:

  • Types: Legacy (0), Access List (1), EIP-1559 (2)
  • Fee Estimation: Base fee, priority fee, max fee
  • Nonce Management: Sequential ordering
  • Receipts: Status, logs, gas used

4. Client Interactions

Work with Ethereum nodes:

  • RPC Methods: eth_, debug_, trace_
  • State Queries: Storage slots, code, balance
  • Event Subscriptions: Filter logs, topics

Code Examples

Gas-Efficient Storage

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.24;

contract Optimized {
    // Pack into single slot (32 bytes)
    struct User {
        uint128 balance;    // 16 bytes
        uint64 lastUpdate;  // 8 bytes
        uint32 nonce;       // 4 bytes
        bool active;        // 1 byte
        // 3 bytes padding
    }

    mapping(address => User) public users;
}

Read Storage Slot

import { createPublicClient, http, keccak256, encodePacked, pad } from 'viem';
import { mainnet } from 'viem/chains';

const client = createPublicClient({ chain: mainnet, transport: http() });

// Read mapping value: balances[address]
async function getBalance(contract: `0x${string}`, user: `0x${string}`) {
  const slot = keccak256(encodePacked(['address', 'uint256'], [user, 0n]));
  return await client.getStorageAt({ address: contract, slot });
}

EIP-1559 Transaction

import { createWalletClient, http, parseEther } from 'viem';

const client = createWalletClient({ transport: http() });

const hash = await client.sendTransaction({
  to: '0x...',
  value: parseEther('0.1'),
  type: 'eip1559',
  maxFeePerGas: parseGwei('30'),
  maxPriorityFeePerGas: parseGwei('2'),
});

Gas Optimization Cheatsheet

TechniqueSavingsExample
Storage packing~20k/slotuint128 + uint128 in one slot
Calldata vs memory~3/byteUse calldata for read-only
Unchecked math~80/opunchecked { i++; }
Custom errors~200+error Unauthorized()
Short-circuitVariableCheap checks first

Common Pitfalls

PitfallIssueSolution
Storage in loopsExpensive readsCache in memory first
String storageUses multiple slotsUse bytes32 when possible
Zero value storageFull refund goneDon't rely on SSTORE refunds

Troubleshooting

"Transaction underpriced"

# Check current gas prices
cast gas-price --rpc-url $RPC
cast basefee --rpc-url $RPC

Set maxFeePerGas to at least 2x current base fee.

"Out of gas"

# Trace transaction to find issue
cast run --trace $TX_HASH --rpc-url $RPC

"Nonce too low"

# Get current nonce
cast nonce $ADDRESS --rpc-url $RPC

CLI Commands

# Foundry essentials
forge build --sizes          # Contract sizes
forge test --gas-report      # Gas consumption
forge snapshot               # Gas snapshots
cast storage $ADDR $SLOT     # Read storage
cast call $ADDR "fn()"       # Simulate call

Test Template

contract GasTest is Test {
    function test_GasOptimization() public {
        uint256 gasBefore = gasleft();
        target.optimizedFunction();
        uint256 gasUsed = gasBefore - gasleft();

        assertLt(gasUsed, 50000, "Too much gas used");
    }
}

Cross-References

  • Bonded Agent: 02-ethereum-development
  • Related Skills: solidity-development, web3-frontend

Version History

VersionDateChanges
2.0.02025-01Production-grade with viem, gas optimization
1.0.02024-12Initial release

Related skills

FAQ

What does ethereum-development do?

ethereum-development is a Claude Code skill for ai & agent building.

When should I use ethereum-development?

When you need to helps with ai & agent building tasks., or when ethereum-development is a claude code skill for ai & agent building.

What are the main capabilities?

ethereum-development; AI & Agent Building; AI-coding skill.

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.