Agora Next Daily: Account Deletion Gets Teeth

A single pull request reworks account deletion in the Agora Next codebase, adding server-side NFT burning before user data is removed and a Reddit-style placeholder for deleted users' forum posts.

Duration: PT2M8S

Episode overview

This episode is a short developer briefing from Agora Next Daily.

It explains recent repository work in plain language.

  • Show: Agora Next Daily
  • Published: 2026-07-08T21:00:40Z
  • Audio duration: PT2M8S

Transcript excerpt

This excerpt keeps the crawler page concise. Listen to the episode or use the RSS feed for the full update.

Good evening, and welcome to Agora Next Daily for July 8th, 2026.

Today's activity centers on one pull request, but it touches something every user-facing deletion flow needs to get right: what actually happens when someone deletes their account.

PR 1568, from galo13eth, changes the account deletion endpoint so that a user's civic membership NFT gets burned on the server before anything else is deleted. That ordering matters. If the burn fails, the entire request aborts with a server error and the user can retry — there's no scenario where the account is…

The second half of the same PR addresses what happens to a user's forum presence after deletion. Instead of leaving orphaned posts or broken references, deleted users now show up as "deleted user," Reddit-style, while their address is still recorded internally. That's a small UX touch, but it keeps forum threads…

Together, these two changes point to the same underlying discipline: treating account deletion as a real transactional process, not just a database delete. Burn-then-delete ordering, retryable failures, and graceful display fallbacks all reduce the chance of half-finished deletions or confusing forum states.

Scope here…

Nearby episodes from Agora Next Daily

  1. Login Without a Wallet
  2. Embedded Wallets Come to Civic
  3. Mirador Integration Overhaul