blockchain-web3-expert

blockchain-web3-expert is a skill for Claude Code, Codex from roedyrustam/vibes-plug. It costs 54 tokens per session (1,089 once invoked), scanned A, original, MIT.

A guide for building decentralized applications that connect to EVM-compatible blockchains such as Ethereum and Polygon. It covers wallet connections, smart-contract transactions, token and NFT standards, sign-in with Ethereum, and decentralized storage.

In plain words
What is it for?
Use it to connect wallets, call smart contracts, implement Sign-In with Ethereum, mint or transfer ERC-20 tokens and NFTs, and work with IPFS or Arweave storage.
Why use it?
It helps handle the application-side details of blockchain work, including reading and writing contract data, estimating transaction costs, tracking transaction states, and responding to wallet or network changes.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to connect wallets, call smart contracts, implement Sign-In with Ethereum, mint or transfer ERC-20 tokens and NFTs, and work with IPFS or Arweave storage.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/roedyrustam/vibes-plug/blockchain-web3-expert
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add roedyrustam/vibes-plug --skill blockchain-web3-expert
Clone the repo
git clone --depth 1 https://github.com/roedyrustam/vibes-plug

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for blockchain-web3-expert

README.md
[![agentmods](https://agentmods.dev/badge/skills/roedyrustam/vibes-plug/blockchain-web3-expert/github.svg)](https://agentmods.dev/skills/roedyrustam/vibes-plug/blockchain-web3-expert)
Your own site
<a href="https://agentmods.dev/skills/roedyrustam/vibes-plug/blockchain-web3-expert"><img src="https://agentmods.dev/badge/skills/roedyrustam/vibes-plug/blockchain-web3-expert/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for blockchain-web3-expert

Your own site · 80×15
<a href="https://agentmods.dev/skills/roedyrustam/vibes-plug/blockchain-web3-expert"><img src="https://agentmods.dev/badge/skills/roedyrustam/vibes-plug/blockchain-web3-expert.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 54 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,089 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00054 $0.01089
Opus 5 $0.00027 $0.00544
Sonnet 5 $0.00011 $0.00218
Haiku 4.5 $0.00005 $0.00109

Measured 10d ago against content hash 1aec4fa0739c, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-09, from the pricing page.

Security

Grade A, and why

blockchain-web3-expert scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 10d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/blockchain-web3-expert/SKILL.md · 116 lines

How it starts

The opening of the file, as written. The whole thing — 116 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Blockchain & Web3 Expert (2026 Edition)

English | Bahasa Indonesia


English

Orchestration & Integration

  • senior-frontend: React and Next.js frontend state for Web3 wallets.
  • authentication-identity-expert: Sign-In with Ethereum (SIWE / ERC-4361).
  • error-resilience-expert: Handling RPC node timeouts, network switches, and user transaction rejections.
  • post-quantum-crypto-migrator: Future-proofing cryptographic signatures and hash functions.

Description

Production-ready guide for building decentralized applications (dApps) on EVM-compatible blockchains. Covers typed smart contract interactions with viem and wagmi v2, wallet connectivity with RainbowKit / AppKit, gas estimation, transaction lifecycle management, ERC-20 / ERC-721 / ERC-1155 standards, and decentralized storage (IPFS/Arweave).

Trigger Conditions

  • Integrating crypto wallet connections (MetaMask, Coinbase Wallet, WalletConnect).
  • Reading from and writing to Ethereum / Polygon / Arbitrum / Base smart contracts.
  • Implementing Sign-In With Ethereum (SIWE) authentication.
  • Minting, transferring, or querying ERC-20 tokens or NFTs.

Core Architecture & Modern Patterns

1. Wallet Connection & Config (wagmi.config.ts)
import { http, createConfig } from 'wagmi';
import { mainnet, base, arbitrum } from 'wagmi/chains';
import { injected, walletConnect } from 'wagmi/connectors';

export const config = createConfig({
  chains: [mainnet, base, arbitrum],
  connectors: [
    injected(),
    walletConnect({ projectId: process.env.NEXT_PUBLIC_WALLETCONNECT_PROJECT_ID! }),
  ],
  transports: {
    [mainnet.id]: http(),
    [base.id]: http(),
    [arbitrum.id]: http(),
  },
});
2. Contract Interaction Hook (Wagmi v2 + Viem)
import { useAccount, useReadContract, useWriteContract, useWaitForTransactionReceipt } from 'wagmi';
import { parseAbi } from 'viem';

const ERC20_ABI = parseAbi([
  'function balanceOf(address owner) view returns (uint256)',
  'function transfer(address to, uint256 amount) returns (bool)',
]);

export function TokenTransferCard({ tokenAddress }: { tokenAddress: `0x${string}` }) {
  const { address, isConnected } = useAccount();
  const { data: balance, refetch } = useReadContract({
    address: tokenAddress,
    abi: ERC20_ABI,
    functionName: 'balanceOf',
    args: address ? [address] : undefined,
  });

  const { data: hash, writeContract, isPending } = useWriteContract();
  const { isLoading: isConfirming, isSuccess } = useWaitForTransactionReceipt({ hash });

  const handleSend = (recipient: `0x${string}`, amount: bigint) => {
    writeContract({
      address: tokenAddress,
      abi: ERC20_ABI,
      functionName: 'transfer',
      args: [recipient, amount],
    });
  };

  if (!isConnected) return <p>Please connect your wallet.</p>;

  return (
    <div>
      <p>Balance: {balance?.toString()}</p>
      {isPending && <p>Waiting for signature...</p>}
      {isConfirming && <p>Confirming transaction on-chain...</p>}
      {isSuccess && <p>Transfer completed successfully!</p>}
    </div>
  );
}

Read the full file on GitHub · 116 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 10d ago First seen · 116 lines · 54 tokens per session scan A 1aec4fa0739c

Subscribe to this mod's changes

blockchain-web3-expert is a skill published in the GitHub repository roedyrustam/vibes-plug (50 stars, last pushed 2d ago), licensed MIT. It adds 54 tokens to every session and 1,089 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

nodejs-keccak256

Prevent Ethereum hashing bugs in JavaScript and TypeScript. Node's sha3-256 is NIST SHA3, not Ethereum Keccak-256, and silently breaks selectors, signatures, storage slots, and address derivation.

Jamkris/everything-gemini-code · 51 tokens

sdlc-nfr-spec

Use to define measurable NFRs for performance, reliability, security, privacy, accessibility, observability, and operations.

BlueSkyXN/Codex-is-all-you-need · 31 tokens

data-sql-analysis

Use when reviewing or creating SQL for analysis, metric definitions, joins, filters, aggregation, and validation queries.

BlueSkyXN/Codex-is-all-you-need · 27 tokens

blockchain-privacy

Expert in on-chain privacy technologies - ZK-SNARKs, ZK-STARKs, mixers, stealth addresses, ring signatures, and confidential transactions for building privacy-preserving blockchain applicationsUse when "privacy, zero knowledge, zk-snark, zk-stark, mixer, stealth address, ring signature, confidential transaction…

omer-metin/skills-for-antigravity · 111 tokens

evm-deep-dive

Expert in Ethereum Virtual Machine internals - gas optimization, assembly/Yul, opcode-level optimization, and low-level EVM patternsUse when "evm, gas optimization, yul, inline assembly, opcodes, solidity optimization, evm bytecode, storage layout, evm, ethereum, solidity, yul, assembly, gas-optimization, opcodes…

omer-metin/skills-for-antigravity · 86 tokens

defi-architect

DeFi protocol specialist for AMMs, lending protocols, yield strategies, and economic securityUse when "defi, amm, liquidity pool, lending protocol, yield farming, oracle, liquidation, tokenomics, tvl, impermanent loss, defi, amm, lending, yield, liquidity, oracle, tokenomics, protocol, ethereum, web3" mentioned.

omer-metin/skills-for-antigravity · 77 tokens