
Security News
New Website “Is It Really FOSS?” Tracks Transparency in Open Source Distribution Models
A new site reviews software projects to reveal if they’re truly FOSS, making complex licensing and distribution models easy to understand.
@solana/functional
Advanced tools
This package contains generalized functional helpers and functional helpers specific to Solana application components. It can be used standalone, but it is also exported as part of Kit @solana/kit
.
pipe()
A pipeline is a solution that allows you to perform successive transforms of a value using functions. This is useful when building up a transaction message.
Until the pipeline operator becomes part of JavaScript you can use this utility to create pipelines.
const add = (a, b) => a + b;
const add10 = x => add(x, 10);
const add100 = x => add(x, 100);
const sum = pipe(1, add10, add100);
sum === 111; // true
const transferTransactionMessage = pipe(
// The result of the first expression...
createTransactionMessage({ version: 0 }),
// ...gets passed as the sole argument to the next function in the pipeline.
tx => setTransactionMessageFeePayer(myAddress, tx),
// The return value of that function gets passed to the next...
tx => setTransactionMessageLifetimeUsingBlockhash(latestBlockhash, tx),
// ...and so on.
tx => appendTransactionMessageInstruction(getTransferSolInstruction({ source, destination, amount }), tx),
);
FAQs
Functional JavaScript helpers
The npm package @solana/functional receives a total of 186,171 weekly downloads. As such, @solana/functional popularity was classified as popular.
We found that @solana/functional 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
A new site reviews software projects to reveal if they’re truly FOSS, making complex licensing and distribution models easy to understand.
Security News
Astral unveils pyx, a Python-native package registry in beta, designed to speed installs, enhance security, and integrate deeply with uv.
Security News
The Latio podcast explores how static and runtime reachability help teams prioritize exploitable vulnerabilities and streamline AppSec workflows.