
Research
Security News
Lazarus Strikes npm Again with New Wave of Malicious Packages
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
@harmoniclabs/blockfrost-pluts
Advanced tools
@blockfrost/blockfrost-js extension based on plu-ts types
wrapper over the @blockfrost/blockfrost-js
SDK based on the @harmoniclabs/cardano-ledger-ts
types.
npm install @harmoniclabs/blockfrost-pluts
Build you blockfrost provider and wrap it in a BlockfrostPluts
instance
import { BlockFrostAPI } from "@blockfrost/blockfrost-js";
import { BlockfrostPluts } from "@harmoniclabs/blockfrost-pluts";
const api = new BlockFrostAPI({
projectId: "YOUR API KEY HERE", // see: https://blockfrost.io
});
const provider = new BlockfrostPluts( api );
or directly pass the arguments to the wrapper class
import { BlockfrostPluts } from "@harmoniclabs/blockfrost-pluts";
const provider = new BlockfrostPluts({
projectId: "YOUR API KEY HERE", // see: https://blockfrost.io
});
@harmoniclabs/plu-ts
the provider can be used with the transaction builder to get a TxBuilderRunner
instance:
import { TxBuilder, defaultProtocolParameters } from "@harmoniclabs/plu-ts";
import { BlockfrostPluts } from "@harmoniclabs/blockfrost-pluts";
const txBuilder = new TxBuilder( defaultProtocolParameters );
const provider = new BlockfrostPluts({
projectId: "YOUR API KEY HERE", // see: https://blockfrost.io
});
const txRunner = txBuilder.runWithProvider( provider );
which you can use to easly build transacitons
const tx = await txRunner
.addInput(
contractUtxo,
"40" // redeemer ( CBOR for empty bytestring )
)
.attachValidator( contractSource ) // `Script` instance
.payTo( myAddress, 5_000_000 ) // send 5 ADA
.build()
FAQs
@blockfrost/blockfrost-js extension based on plu-ts types
The npm package @harmoniclabs/blockfrost-pluts receives a total of 249 weekly downloads. As such, @harmoniclabs/blockfrost-pluts popularity was classified as not popular.
We found that @harmoniclabs/blockfrost-pluts demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 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
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
Security News
Socket CEO Feross Aboukhadijeh discusses the open web, open source security, and how Socket tackles software supply chain attacks on The Pair Program podcast.
Security News
Opengrep continues building momentum with the alpha release of its Playground tool, demonstrating the project's rapid evolution just two months after its initial launch.