.claude/skills/wagmi-overview/SKILL.md
Vanilla JS Ethereum library built on viem. Use for wallet connections, contract interactions, and blockchain queries.
npx skillsauth add cyotee/crane wagmi-overviewInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Vanilla JS Ethereum library built on viem for wallet connections and contract interactions.
pnpm add @wagmi/core @wagmi/connectors [email protected]
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(),
},
})
wagmi-config - Configuration setupwagmi-read-contract - Read contract datawagmi-write-contract - Write to contractswagmi-connectors - Wallet connectionswagmi-transports - Network transportsdevelopment
Review UI code for Web Interface Guidelines compliance. Use when asked to "review my UI", "check accessibility", "audit design", "review UX", or "check my site against best practices".
documentation
Write to contracts and send transactions. Use when executing state-changing contract functions.
development
HTTP and WebSocket transports for blockchain connectivity. Use when configuring network connections.
data-ai
Read contract data with type-safe ABI. Use when querying smart contract view/pure functions.