Agora Next Daily: Embedded Wallets Come to Civic
A single broad pull request adds Privy-based embedded wallet login for the civic tenant, letting members without a self-custodial wallet sign in and vote gaslessly through the existing relayer, all behind a per-tenant toggle.
Duration: PT2M1S
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-03T21:00:04Z
- Audio duration: PT2M1S
Transcript excerpt
This excerpt keeps the crawler page concise. Listen to the episode or use the RSS feed for the full update.
Good morning. It's July 3rd, 2026, and this is Agora Next Daily.
Today's codebase activity centers on one significant change: bringing wallet-less login to governance participation.
Pull request 1567, from galo13eth, introduces Privy embedded-wallet login, but scopes it tightly to the civic tenant. The core idea: members who don't already hold a self-custodial wallet can now sign in using email or social login, get an embedded wallet under the hood, authenticate with sign-in-with-Ethereum, and…
The key architectural detail here is the gating. This feature sits behind a per-tenant toggle called "privy login," meaning it only activates for civic. Every other tenant on the platform keeps its current behavior untouched, and the relayer path itself is unchanged. That's a deliberate risk-containment move — new…
Technically, the embedded wallet is exposed as a wagmi connector, which means it plugs into the existing Web3 provider setup rather than requiring a parallel wallet-connection stack. That's good for maintainability — the team isn't building a second system, just extending the current one.
Given this touches the web3 provider, notification preferences, and the grant intake flow, it's…