Export & Integration
1. One-Click manifest.json Export
manifest.json Export// manifest.json (excerpt)
{
"manifestName": "My Solscan Connector",
"version": "1.0.0",
"author": "Acme Corp",
"tags": ["solana", "blockchain", "explorer"],
"nodes": [
{ "id": "resource-1", "type": "Resource", "uriTemplate": "https://api.solscan.io/account/{address}" },
{ "id": "prompt-1", "type": "Prompt", "name": "AnalyzeAccount", "arguments": ["address"] },
{ "id": "tool-1", "type": "Tool", "name": "FetchBalance", "inputSchema": { "address": "string" } }
],
"connectors": [
{ "from": "resource-1", "to": "prompt-1", "mapping": { "address": "address" } },
{ "from": "prompt-1", "to": "tool-1", "mapping": { "address": "address" } }
]
}2. SDK Generation (React, Python, Node.js)
3. Shareable Links & Embeds
Last updated