π¦ ClawHub
Etherlink Skill
by @efekucuk
Etherlink blockchain interaction - EVM-compatible L2 on Tezos. Supports mainnet and shadownet testnet via MCP server. Use for balance checks, transactions, smart contracts, and token operations on Etherlink.
π‘ Examples
1. Configure MCP Server
Add to your Claude/MCP config:
{
"mcpServers": {
"etherlink": {
"command": "bun",
"args": ["run", "/path/to/etherlink-mcp-server/src/index.ts"],
"env": {
"EVM_PRIVATE_KEY": "your-private-key-here"
}
}
}
}
2. Select Network
Use network name or chain ID:
etherlink or 42793etherlink-shadownet or 127823π Tips & Best Practices
"Unsupported network": Use correct network name (etherlink, etherlink-shadownet) or chain ID.
Rate limited: Public RPC has 1000 req/min limit. For production, run your own node.
Transaction failing: No EIP-1559 - don't set maxFeePerGas/maxPriorityFeePerGas.
TERMINAL
clawhub install etherlink