
Research
Shai-Hulud Descends to Hades: Miasma Worm Campaign Spreads with New PyPI Wave
Socket found 37 malicious PyPI wheels that abuse Python startup hooks to launch a Bun-powered credential stealer tied to Mini Shai-Hulud/Miasma.
@solana/client
Advanced tools
Framework-agnostic Solana client orchestration layer powering higher-level experiences
Framework-agnostic building blocks for Solana RPC, subscriptions, wallets, and transactions. Works in any runtime (React, Svelte, API routes, workers, etc.).
Status: Experimental – expect rapid iteration.
pnpm add @solana/client
import { createClient } from "@solana/client";
const client = createClient({
endpoint: "https://api.devnet.solana.com",
});
// Fetch an account once.
const account = await client.actions.fetchAccount(address);
console.log(account.lamports?.toString());
// Watch lamports in real time.
const watcher = client.watchers.watchBalance({ address }, (lamports) => {
console.log("balance:", lamports.toString());
});
// Later…
watcher.abort();
fetchAccount, fetchBalance, sendTransaction, requestAirdrop, setCluster, etc.) that wrap the RPC and keep the store in sync.watchAccount, watchBalance, watchSignature) that stream
updates into the store and call your listeners.client.helpers.transaction handles blockhashes, fee payers, and signing for you.
const prepared = await client.helpers.transaction.prepare({
authority: walletSession,
instructions: [instruction],
});
const signature = await client.helpers.transaction.send(prepared);
console.log(signature.toString());
prepare builds a transaction message and refreshes the blockhash.sign / toWire let you collect signatures or emit Base64 manually.send submits the prepared transaction (or uses signAndSend if the wallet supports it).prepareAndSend runs everything plus an optional simulation/logging pass via prepareTransaction.0 automatically when any instruction references address lookup tables, otherwise legacy; pass version if you need to override.Need just the tuning step? Call client.prepareTransaction directly with your unsigned message.
Use createWalletStandardConnector to wrap Wallet Standard apps and register them with
createWalletRegistry. The registry powers client.actions.connectWallet and the React hooks
package, but you can also query it directly to build your own selectors.
pnpm build – run JS compilation and type definition emitpnpm test:typecheck – strict type-checking without emitpnpm lint / pnpm format – Biome-powered linting and formattingFAQs
Framework-agnostic Solana client orchestration layer powering higher-level experiences
The npm package @solana/client receives a total of 3,117 weekly downloads. As such, @solana/client popularity was classified as popular.
We found that @solana/client demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Research
Socket found 37 malicious PyPI wheels that abuse Python startup hooks to launch a Bun-powered credential stealer tied to Mini Shai-Hulud/Miasma.

Security News
RubyGems and Bundler 4.0.13 introduced an opt-in cooldown feature that delays newly published gems during dependency resolution.

Security News
pnpm 11.5 now recognizes npm staged publish approvals in release metadata, preventing those releases from being mistaken for lower-trust package publishes.