Skip to content

v11 test#1462

Open
yashovardhan wants to merge 1 commit intomainfrom
test
Open

v11 test#1462
yashovardhan wants to merge 1 commit intomainfrom
test

Conversation

@yashovardhan
Copy link
Copy Markdown
Member

@yashovardhan yashovardhan commented May 8, 2026

testing branch


Note

Low Risk
Low risk: this PR only adds documentation and does not change runtime code or dependencies.

Overview
Adds MIGRATION_v10_to_v11.md, a comprehensive guide for updating the repo’s example apps from Web3Auth v10 to v11.

It documents the new connection-based API replacing direct provider access, outlines recommended patterns for EVM (Wagmi hooks) vs non-EVM (extract and pass privateKey), and details the Solana migration from @solana/web3.js to @solana/kit including updated hooks imports, RPC usage, and transaction building/signing. It also calls out required polyfill removals and notes known v11 beta SDK packaging issues.

Reviewed by Cursor Bugbot for commit e164c6f. Bugbot is set up for automated code reviews on this repo. Configure here.

@vercel
Copy link
Copy Markdown
Contributor

vercel Bot commented May 8, 2026

The latest updates on your projects. Learn more about Vercel for GitHub.

Project Deployment Actions Updated (UTC)
web3auth-angular-quick-start Ready Ready Preview, Comment May 8, 2026 7:53am
web3auth-firebase-example Ready Ready Preview, Comment May 8, 2026 7:53am
web3auth-nextjs-quick-start Error Error May 8, 2026 7:53am
web3auth-playground Error Error May 8, 2026 7:53am
web3auth-react-quick-start Ready Ready Preview, Comment May 8, 2026 7:53am
web3auth-react-solana-quick-start Error Error May 8, 2026 7:53am
web3auth-vanillajs-quick-start Ready Ready Preview, Comment May 8, 2026 7:53am
web3auth-vue-quick-start Error Error May 8, 2026 7:53am
web3auth-vue-solana-quick-start Error Error May 8, 2026 7:53am

Request Review

lines.push("| Example | status | notes |");
lines.push("|---------|--------|-------|");
for (const row of smokeActive) {
lines.push(`| \`${row.example}\` | ${row.status} | ${(row.reason || "").replace(/\|/g, "\\|").slice(0, 120)} |`);
for (const row of e2e) {
const addr = row.probe?.address ? `\`${row.probe.address.slice(0, 10)}…\`` : "–";
const sig = row.probe?.signature ? "✅ present" : row.probe?.error ? `❌ ${row.probe.error.slice(0, 40)}` : "–";
const err = (row.error || "").replace(/\|/g, "\\|").slice(0, 80);
Comment on lines +31 to +35
const r = await fetch(`${base}/api/token`, {
method: "POST",
headers: { "Content-Type": "application/json" },
body: JSON.stringify({}),
});
Comment on lines +30 to +34
const r = await fetch(`${base}/api/token`, {
method: "POST",
headers: { "Content-Type": "application/json" },
body: JSON.stringify({}),
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants