[DO NOT MERGE] sol sdk examples#2476
Draft
jakehobbs wants to merge 7 commits intojake/v5/solfrom
Draft
Conversation
- Add SOLANA_DOGFOODING.md with setup instructions for all 3 test paths (SDK client e2e, raw JSON-RPC e2e, Privy + Next.js example) - Include full JSON-RPC request/response examples for each wallet method - Add verbose req/res console.log to solana-raw-rpc-e2e.ts - Update privy example to use published @alchemy/wallet-apis@0.1.0-alpha.28 Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
…mple Resolve delete-vs-modify conflicts by keeping test scripts and example app. Update solana-e2e.ts to use fromKeypair/fromKitSigner adapters instead of removed SolanaMessageSigner/SolanaTransactionPartialSigner types. Update privy example to use workspace dependency. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Wiz Scan Summary
To detect these findings earlier in the dev lifecycle, try using Wiz Code VS Code Extension. |
Co-Authored-By: Claude <noreply@anthropic.com>
# Conflicts: # pnpm-lock.yaml
…s, and fromWalletAdapter usage Move the full API shape (types, request/response schemas, real devnet payloads) to the top of the doc, followed by the signer interface and adapter table, then the five runnable examples. Also pick up fromWalletAdapter refactor in phantom-raw and SolanaSigner rename in wallet-standard page. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
…, and zero-dep signing example Restructure for Notion readability: use ? for optionals, strip wide comments, add real wallet_prepareCalls example, inline signer adapter snippets showing where each signer comes from, and a zero-dependency Ed25519 signing section for non-JS consumers. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
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.
Pull Request Checklist
yarn test)sitefolder, and guidelines for updating/adding docs can be found in the contribution guide)feat!: breaking change)yarn lint:check) and fix any issues? (yarn lint:write)PR-Codex overview
This PR introduces a new example project for integrating Solana wallets using Privy and Alchemy, featuring a complete setup with Next.js, environment variables, and various wallet interactions.
Detailed summary
.env.examplefor environment variable setup.next.config.tsfor Next.js configuration.package.jsonwith dependencies and scripts.tsconfig.jsonfor TypeScript configuration.src/app/.page.tsx.SOLANA_DOGFOODING.mdguide for using the example.