Vanilla JS Ethereum library built on viem. Use for wallet connections, contract interactions, and blockchain queries.
Scanned 9/10/2026
Install to Claude Code
npx -y skills add cyotee/indexedex --skill wagmi-overview --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Wagmi Overview?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/cyotee-wagmi-overview)More formats (shields.io, HTML) on the badges page.
---
name: wagmi-overview
description: Vanilla JS Ethereum library built on viem. Use for wallet connections, contract interactions, and blockchain queries.
---
# Wagmi Overview
Vanilla JS Ethereum library built on viem for wallet connections and contract interactions.
## Install
```bash
pnpm add @wagmi/core @wagmi/connectors viem@2.x
```
## Quick Start
```typescript
import { createConfig, http } from '@wagmi/core'
import { mainnet, sepolia } from '@wagmi/core/chains'
export const config = createConfig({
chains: [mainnet, sepolia],
transports: {
[mainnet.id]: http(),
[sepolia.id]: http(),
},
})
```
## Skills
- **Config**: `wagmi-config` - Configuration setup
- **Read**: `wagmi-read-contract` - Read contract data
- **Write**: `wagmi-write-contract` - Write to contracts
- **Connectors**: `wagmi-connectors` - Wallet connections
- **Transports**: `wagmi-transports` - Network transports
## Core Concepts
- **Config** - Chain and transport setup
- **Connectors** - Wallet adapters (MetaMask, WalletConnect, etc.)
- **Actions** - Read/write blockchain data
- **Transports** - HTTP/WebSocket connections
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!
Implement NFT standards (ERC-721, ERC-1155) with proper metadata handling, minting strategies, and marketplace integration. Use when creating NFT contracts, building NFT marketplaces, or implementing digital asset systems.