1. Abstract
Narrative-driven markets reward the fastest informed actor. SynthoCore is an autonomous agent and API that compresses the entire token-launch workflow — ingestion, narrative analysis, art generation, deduplication and onchain deployment — into a single call that completes in roughly six seconds on Base.
Crucially, SynthoCore is non-custodial: the server constructs an unsigned transaction and never holds or sees a private key. Signing and submission happen client-side over Coinbase Developer Platform (CDP) rails.
2. Background
When a high-signal account posts, the resulting token narrative can play out in seconds. Manual launching is too slow and existing tools are built for humans, not autonomous agents. SynthoCore is agent-first: an open-source skill, an SDK and a CLI all wrap the same engine.
3. Architecture
The system is a thin orchestration layer over best-in-class services. Heavy steps run in parallel; the only sequential dependency is unsigned-tx construction, which waits on analysis and metadata.
┌──────────────┐ ┌───────────────┐ ┌──────────────┐
│ AGENT / CLI │ ──▶ │ SYNTHOCORE API│ ──▶ │ X API v2 │
└──────────────┘ └──────┬────────┘ └──────────────┘
│
┌───────────────┼────────────────┐
▼ ▼ ▼
┌────────────┐ ┌────────────┐ ┌────────────┐
│ LLM │ │ IMAGE GEN │ │ DEDUP/INDEX│
│ gpt-5.4 │ │ z-image │ │ DexScreener│
└────────────┘ └────────────┘ └────────────┘
│
▼
┌──────────────────┐
│ UNSIGNED TX │ (returned to client)
└────────┬─────────┘
▼
┌──────────────────────────────────┐
│ CLIENT SIGNS · COINBASE CDP RPC │
└────────┬──────────────┬──────────┘
▼ ▼
┌────────────┐ ┌────────────┐
│ BANKR.BOT │ │ DOPPLER │ → live token on BASE
└────────────┘ └────────────┘4. Launch Pipeline
The pipeline has eight stages with a ~5.9s median:
- Input — tweet URL or watchdog trigger.
- Fetch — X API v2 with full expansions.
- Analyze — GPT-5.4 / Opus 4.6 → 1–5 interpretations.
- Dedup — DexScreener + Base indexer.
- Generate — z-image-turbo token art.
- Pin — image + metadata to IPFS.
- Build — CDP constructs the unsigned Base tx.
- Submit — client signs; Bankr/Doppler deploy.
5. Non-Custodial Model
SynthoCore never receives private keys. The API returns an unsigned transaction payload; the client signs locally (viem/wagmi or any wallet) and broadcasts via CDP RPC. This eliminates server-side key custody as an attack surface entirely.
6. Launch Providers
Bankr.bot handles fast, standardized deployment today. Doppler (Phase 2) adds dynamic bonding curves, configurable fees, non-ETH quote tokens and anti-snipe protection. The provider is selectable per launch.
7. $SYNCO Token
$SYNCO governs premium model access, priority launch lanes, operator revenue share and (Phase 3) DAO control of the protocol treasury. It is the coordination layer for the SynthoCore agent network.
8. Security
- No server-side key custody — unsigned-tx model.
- Parameterized, rate-limited API endpoints.
- CDP-managed RPC with request signing.
- Dedup gate prevents collisions and copy-launches.
- Open-source skill auditable under Apache-2.0.