The Global Live Feed is a real-time activity stream on the ACTFUN homepage. It shows every on-chain event — mines, buys, sells, and graduations — across every token on the platform, as they happen.Documentation Index
Fetch the complete documentation index at: https://actfudoc.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
The feed is powered by a Goldsky Turbo pipeline that streams Arc Testnet raw logs into a Neon Postgres database. The ACTFUN API server queries that database and serves events to the browser. A “Powered by Goldsky” badge appears in the feed footer.
What the feed shows
Each row in the feed represents a single on-chain event and displays:| Field | Description |
|---|---|
| Token image | The token’s image or emoji |
| Wallet | Shortened address of the user who triggered the event |
| Event type | Mine ⛏️ / Buy 🟢 / Sell 🔴 / Graduation 🎓 |
| Amount | Tokens mined or USDC traded |
| Post text | The funny post text (for mine events) |
| Timestamp | How long ago the event occurred |
Filtering events
Use the filter tabs above the feed to narrow activity:| Filter | Shows |
|---|---|
| All | Every event across all tokens |
| Mines | Only mine transactions |
| Buys | Only token purchases |
| Sells | Only token sales |
| Grads | Only graduation events |
Live pulse indicator
A green pulsing dot appears next to the feed title when new events have arrived since you last looked. This indicates live activity — the platform is seeing real on-chain transactions right now.Pause and resume
Click the Pause button to freeze the feed. New events keep arriving in the background but the display stops scrolling. This is useful when you want to read a specific event without the feed moving. Click Resume (or Pause again) to unfreeze the feed and catch up to the latest activity.Technical details
The feed’s data path:- Arc Testnet produces a block containing an ACTFUN transaction.
- The Goldsky Turbo pipeline picks up the raw log within ~1 second.
- The log is decoded and written to the Neon Postgres
actfun_eventstable. - The ACTFUN API server (
GET /api/onchain-events) queries the table and decodes events usingviem. - The browser polls for new events and renders them in the feed.
Historical events before the Goldsky pipeline was activated are seeded into the same Neon table via a one-time RPC backfill script. The feed shows the full on-chain history, not just live events.