v11 test#1462
Open
yashovardhan wants to merge 1 commit into
Open
Conversation
Contributor
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
| 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({}), | ||
| }); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
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 directprovideraccess, outlines recommended patterns for EVM (Wagmi hooks) vs non-EVM (extract and passprivateKey), and details the Solana migration from@solana/web3.jsto@solana/kitincluding 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.