
Research
/Security News
77 Firefox Extensions Linked to Crypto Wallet and Credential Theft
Socket uncovered 77 linked Firefox extensions, including 40 that steal wallet secrets or credentials and 37 deceptive sports-score shells.
@xyber-labs/xyber-points
Advanced tools
TypeScript SDK and CLI for onchain-xyber-points Solana program
TypeScript SDK and CLI for the onchain-xyber-points Solana program.
Program address: oxp5daG6BinG1AL2W83RQmmN8tcXJqrqy3bYprLMRV8
npm install @xyber-labs/xyber-points
npx @xyber-labs/xyber-points@latest --help
npx @xyber-labs/xyber-points@latest initialize --help
npx @xyber-labs/xyber-points@latest mint-points --help
Creates the program config and points mint accounts.
npx @xyber-labs/xyber-points@latest --rpc-url <RPC_URL> initialize \
--new-admin <ADMIN_PUBKEY> \
--new-minter <MINTER_PUBKEY> \
--signer-keypair <PATH_TO_KEYPAIR>
Mints points tokens to a recipient.
npx @xyber-labs/xyber-points@latest --rpc-url <RPC_URL> mint-points \
--recipient-keypair <PATH_TO_RECIPIENT_KEYPAIR> \
--amount <AMOUNT> \
--minter-keypair <PATH_TO_MINTER_KEYPAIR>
The --rpc-url flag can be replaced by the ANCHOR_PROVIDER_URL environment variable.
import { OnchainXyberPointsSDK } from "@xyber-labs/xyber-points";
import { AnchorProvider, Program, BN } from "@coral-xyz/anchor";
const sdk = OnchainXyberPointsSDK.create(provider, program);
// PDA helpers
const [configPda] = sdk.getConfigPda();
const [pointsMintPda] = sdk.getPointsMintPda();
const [noncePda] = sdk.getNoncePda(recipientPublicKey);
// Get current nonce for a recipient
const nonce = await sdk.getNonce(recipientPublicKey);
// Initialize (Ix / Tx / send)
const ix = await sdk.initializeIx({ authority, newAdmin, newMinter });
const tx = await sdk.initializeTx({ authority, newAdmin, newMinter });
const sig = await sdk.initialize({ authority, newAdmin, newMinter, signers: [keypair] });
// Mint points (Ix / Tx / send)
const ix = await sdk.mintPointsIx({ authority, recipient, amount, nonce });
const tx = await sdk.mintPointsTx({ authority, recipient, amount, nonce });
const sig = await sdk.mintPoints({ authority, recipient, amount, nonce, signers: [keypair] });
Each instruction follows the pattern:
<method>Ix() — returns TransactionInstruction<method>Tx() — returns Transaction<method>() — sends the transaction and returns the signatureFAQs
TypeScript SDK and CLI for onchain-xyber-points Solana program
We found that @xyber-labs/xyber-points demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 4 open source maintainers 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
/Security News
Socket uncovered 77 linked Firefox extensions, including 40 that steal wallet secrets or credentials and 37 deceptive sports-score shells.

Security News
NIST disclosed an unreleased AI tool called V-etalon and opened a broad inquiry into NVD modernization after years of automation plans produced no public enrichment system.

Security News
In his AI Council 2026 talk, Feross Aboukhadijeh covers recent package compromises, vulnerability discovery, and a more automated security model.