Skip to main content

wallet

Manage x402 wallet for paid API calls. Check balance, redeem invite codes, deposit USDC. USE FOR: - Checking wallet balance before API calls - Redeeming invite codes for free credits - Getting deposit address for USDC - Troubleshooting payment failures TRIGGERS: - "balance", "wallet", "funds", "credits" - "redeem", "invite code", "promo code" - "deposit", "add funds", "top up" - "insufficient balance", "payment failed"

설치로 이동

소스 정보

저장소
Merit-Systems/x402scan-skills
최근 소스 활동
2026년 2월 5일 18:09
감지된 SKILL.md 언어
영어
스타
3
포크
3

설치 방법

기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.

소스 파일 검토

설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.

SKILL.md 표시 중

SKILL.md
소스 지침 · 읽기 전용 미리보기
name
wallet
description
Manage x402 wallet for paid API calls. Check balance, redeem invite codes, deposit USDC. USE FOR: - Checking wallet balance before API calls - Redeeming invite codes for free credits - Getting deposit address for USDC - Troubleshooting payment failures TRIGGERS: - "balance", "wallet", "funds", "credits" - "redeem", "invite code", "promo code" - "deposit", "add funds", "top up" - "insufficient balance", "payment failed"
mcp
["x402"]
# x402 Wallet Management Your wallet is auto-created on first use and stored at `~/.x402scan-mcp/wallet.json`. ## Quick Reference | Task | Tool | Notes | |------|------|-------| | Check balance | `x402.get_wallet_info` | Shows address + USDC balance | | Redeem code | `x402.redeem_invite(code="...")` | One-time use per code | | Deposit | Send USDC to wallet address | Base network only | ## Check Balance ```mcp x402.get_wallet_info ``` Returns: - Wallet address (Base network) - USDC balance - Deposit link Always check balance before expensive operations. ## Redeem Invite Code ```mcp x402.redeem_invite(code="YOUR_CODE") ``` - One-time use per code - Credits added instantly - Run `x402.get_wallet_info` after to verify ## Deposit USDC 1. Get your wallet address: `x402.get_wallet_info` 2. Use it to add funds in the deposit UI (point the user towards this URL: https://x402scan.com/mcp/deposit/<their-wallet-address>) **Important**: Only Base network USDC. Other networks or tokens will be lost. ## Troubleshooting | Issue | Solution | |-------|----------| | "Insufficient balance" | Check balance, deposit or redeem code | | "Payment failed" | Transient error, retry the request | | "Invalid invite code" | Code already used or doesn't exist | | Balance not updating | Wait for Base network confirmation (~2 sec) |
GitHub에서 보기