
Research
2025 Report: Destructive Malware in Open Source Packages
Destructive malware is rising across open source registries, using delays and kill switches to wipe code, break builds, and disrupt CI/CD.
@aztec/blob-client
Advanced tools
A client library for storing and retrieving blob data from various sources.
A client library for storing and retrieving blob data from various sources.
The blob client is used by nodes to store and retrieve blob data that accompanies propose transactions on L1.
Blob data is only available in the L1 consensus layer for a limited period (~3 weeks). The blob client provides a unified interface for:
The blob client supports multiple blob sources:
file://), S3 (s3://), or GCS (gs://)File Store URLs (BLOB_FILE_STORE_URLS):
Comma-separated list of URLs to read blobs from. Tried in order until blobs are found.
File Store Upload URL (BLOB_FILE_STORE_UPLOAD_URL):
URL for uploading blobs to a file store.
L1 Consensus Host URLs (L1_CONSENSUS_HOST_URLS):
Beacon node URLs for fetching recent blobs directly from L1.
Archive API URL (BLOB_SINK_ARCHIVE_API_URL):
Blobscan or similar archive API for historical blob data.
import { createBlobClient, createBlobClientWithFileStores } from '@aztec/blob-client/client';
// Simple client with L1 consensus and archive sources
const client = createBlobClient({
l1ConsensusHostUrls: ['https://beacon.example.com'],
archiveApiUrl: 'https://api.blobscan.com',
});
// Client with file store support
const clientWithFileStore = await createBlobClientWithFileStores({
l1ChainId: 1,
rollupVersion: 1,
l1Contracts: { rollupAddress: { toString: () => '0x...' } },
blobFileStoreUrls: ['s3://bucket/blobs', 'file:///local/blobs'],
blobFileStoreUploadUrl: 's3://bucket/blobs',
});
// Fetch blobs
const blobs = await client.getBlobSidecar(blockHash, blobHashes);
// Upload blobs to file store
await client.sendBlobsToFilestore(blobs);
FAQs
A client library for storing and retrieving blob data from various sources.
We found that @aztec/blob-client demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 6 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
Destructive malware is rising across open source registries, using delays and kill switches to wipe code, break builds, and disrupt CI/CD.

Security News
Socket CTO Ahmad Nassri shares practical AI coding techniques, tools, and team workflows, plus what still feels noisy and why shipping remains human-led.

Research
/Security News
A five-month operation turned 27 npm packages into durable hosting for browser-run lures that mimic document-sharing portals and Microsoft sign-in, targeting 25 organizations across manufacturing, industrial automation, plastics, and healthcare for credential theft.