بنقرة واحدة
morph-explorer
On-chain data queries on Morph L2 — address info, transactions, tokens, contracts via Blockscout API
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
On-chain data queries on Morph L2 — address info, transactions, tokens, contracts via Blockscout API
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
AI Agent skill for Morph L2 — wallet, explorer, DEX swap, cross-chain bridge with order management, EIP-8004 agent identity & reputation, alt-fee gas payment, EIP-7702 delegation, and x402 payment protocol
EIP-7702 EOA delegation on Morph L2 — batch calls and delegation management via tx type 0x04
EIP-8004 agent identity and reputation commands for Morph — register agents, query metadata, submit and read feedback
Alt-fee gas payment on Morph L2 — pay gas with alternative ERC20 tokens via tx type 0x7f
Cross-chain swap with JWT auth — quote prices, create orders, submit transactions, track order status across 6 chains
DEX swap execution on Morph L2 — quote and send swaps via Bulbaswap aggregator
| name | morph-explorer |
| version | 1.0.0 |
| description | On-chain data queries on Morph L2 — address info, transactions, tokens, contracts via Blockscout API |
On-chain data queries via Blockscout Explorer API on Morph Mainnet (Chain ID: 2818). All commands output JSON.
Use this skill when the user wants to: look up an address, view transaction history, check token holdings, search tokens, get token details (holders, supply, transfers), or investigate a transaction on Morph.
Decide the mode once via the root SKILL.md and docs/social-wallet-integration.md.
pip install requests
# Run from repository root
python3 scripts/morph_api.py <command> [options]
No API keys required. Explorer API: https://explorer-api.morph.network/api/v2
address-infoAddress summary: balance, tx count, type.
python3 scripts/morph_api.py address-info --address 0xAddr
address-txsList transactions for an address. Optional --limit.
python3 scripts/morph_api.py address-txs --address 0xAddr --limit 5
address-tokensList all token holdings.
python3 scripts/morph_api.py address-tokens --address 0xAddr
tx-detailFull transaction details from explorer (decoded input, token transfers, etc.).
python3 scripts/morph_api.py tx-detail --hash 0xTxHash
token-searchSearch tokens by name or symbol.
python3 scripts/morph_api.py token-search --query "USDC"
contract-infoGet smart contract info: source code, ABI, verification status, compiler version, proxy type. Only works for verified contracts.
python3 scripts/morph_api.py contract-info --address 0xe7cd86e13AC4309349F30B3435a9d337750fC82D
token-transfersGet recent token transfers. Query by token (all transfers of that token) or by address (all token transfers involving that address).
# Transfers of a specific token
python3 scripts/morph_api.py token-transfers --token USDT
# Token transfers involving a specific address
python3 scripts/morph_api.py token-transfers --address 0xYourAddress
token-infoGet token details: name, symbol, total supply, holders count, transfer count, market data. ERC20 tokens only (not ETH — use address-info for ETH).
python3 scripts/morph_api.py token-info --token USDT
python3 scripts/morph_api.py token-info --token 0xe7cd86e13AC4309349F30B3435a9d337750fC82D
token-listList top tracked tokens from the explorer (single page response).
python3 scripts/morph_api.py token-list
Investigate a transaction:
tx-detail (explorer view) → tx-receipt (morph-wallet skill, RPC receipt with logs)
Research an address:
address-info → address-txs → address-tokens
If the address belongs to a BGW Social Login Wallet, obtain the address in BGW first and then run the same workflow here.
Token dashboard:
token-search (find token) → token-info (holders, supply) → token-transfers (recent activity)
Analyze a contract:
contract-info (source, ABI, proxy type) → address-txs (recent interactions)
balance / token-balance (morph-wallet) for precise balance queries alongside address-tokens (broader portfolio view).token-search to find token addresses before dex-quote (morph-dex) or bridge-quote (morph-bridge).tx-receipt (morph-wallet) for RPC-level receipt data alongside tx-detail (explorer view).7702-delegate (morph-7702) to check if an address has EIP-7702 delegation.