
Security News
RubyGems Adds Cooldown Feature to Bundler for Newly Published Gems
RubyGems and Bundler 4.0.13 introduced an opt-in cooldown feature that delays newly published gems during dependency resolution.
@sqd-pipes/pipes
Advanced tools
> ⚠️ **Warning**: This SDK is currently in the experimental stage. > APIs may change without notice. > Use with caution in production environments.
⚠️ Warning: This SDK is currently in the experimental stage. APIs may change without notice. Use with caution in production environments.
Core package of the SQD Pipes ecosystem. It provides specialized, composable streams for blockchain data ingestion, transformation, and storage.
@sqd-pipes/pipes is a TypeScript library designed for efficient blockchain data processing.
It implements a pipeline-based architecture that makes it easy to consume, decode, and persist blockchain data, while remaining flexible and extensible.
npm install @sqd-pipes/pipes
Example: consume events from an EVM chain and write them into ClickHouse.
import { commonAbis, createEvmDecoder, createEvmPortalSource } from '@sqd-pipes/pipes/evm'
async function cli() {
const stream = createEvmPortalSource({
portal: 'https://portal.sqd.dev/datasets/ethereum-mainnet',
}).pipe(
createEvmDecoder({
profiler: { id: 'ERC20 transfers' },
range: { from: '12,000,000' },
events: {
transfers: commonAbis.erc20.events.Transfer,
},
}),
)
for await (const { data } of stream) {
console.log(`parsed ${data.transfers.length} transfers`)
}
}
void cli()
Pipelines are fully composable:
You can easily extend the system by implementing custom components that conform to the Transformer / Target interfaces.
Full documentation is available in the project wiki (WIP).
Contributions are welcome! Please open an issue or submit a PR with improvements.
MIT © SQD
FAQs
> ⚠️ **Warning**: This SDK is currently in the experimental stage. > APIs may change without notice. > Use with caution in production environments.
We found that @sqd-pipes/pipes 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.

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.

Security News
Federal audit finds NIST lacked a plan to clear the NVD backlog, wasted funds on duplicate work, and delayed use of CISA data.