Merged
Conversation
rebased #283 ci: add npm trusted publisher workflow for @solana/pay chore: Update package.json feat: add buildTransaction helper to merchant plugin Adds `merchant.pay.buildTransaction(feePayer, instructions)` for the transaction request flow, where a server builds a serialized transaction for a remote wallet to sign. Returns a base64-encoded wire transaction. docs: update w/ kit
6c312e1 to
c855baf
Compare
- Add typescript/package.json as workspace root with packageManager field - Add typescript/pnpm-workspace.yaml for monorepo resolution - Remove stale root pnpm-lock.yaml, commit typescript/pnpm-lock.yaml - Declare missing peer/dev deps (@solana/keys, kit-plugin-*, rpc-subscriptions-*) - Update CI workflows to install from typescript/ workspace root
c855baf to
26067e3
Compare
lgalabru
approved these changes
Mar 26, 2026
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.
Summary
@solana/web3.jsto@solana/kit— all RPC calls, transaction building, and type signatures updated accordinglycreateSolanaPayClientconvenience factory withmerchantandwalletrole plugins for a composable APINote: I moved/removed some sample code, so lots of files changed but bulk of PR is ~10 files in
core/srcand relevant tests incore/test.Sample
Breaking Changes
@solana/web3.jspeer dependency is replaced by@solana/kit. Public API types (addresses, transactions, signers) now use Kit primitives. Consumers must migrate to@solana/kittypes.See
core/README.mdfor updated usage.Test Plan
make install make testReplaces #272 and #283
Ref #286