
Research
Malicious npm Packages Impersonate Flashbots SDKs, Targeting Ethereum Wallet Credentials
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
libraryd-data
Advanced tools
Easily search and access Artifact JSON from LibraryD inside Node.JS and Browsers.
libraryd-data
was created to allow users to easily access artifacts and hashes without having to call the LibraryD API endpoint. It exposes functions that allow quick; fast; and easy storage/recall of all OIP/Alexandria artifacts. It will store any new hashes that it requests from LibraryD to speed up future recalls of data.
Install using NPM
$ npm install libraryd-data
var LDD = require("libraryd-data");
LDD.getArtifact("artifactTXID");
LDD.search("searchTerm");
LDD.changeDataSource("127.0.0.1", false);
This method will return the artifact JSON using only the txid. If a callback function is not provided, then it will only search the local cache.
LDD.getArtifact('fb7560ad53d4299b55250583f2f5c7975cd6e0c3c5b587cb49d7eee1799b58cf', function(data){
console.log(JSON.stringify(data));
});
This method will return all matching artifacts that match the text provided. This will return up to 50 results.
LDD.search('test', function(data){
console.log(JSON.stringify(data));
});
FAQs
Easily search and access Artifact JSON from LibraryD inside Node.JS and Browsers.
The npm package libraryd-data receives a total of 4 weekly downloads. As such, libraryd-data popularity was classified as not popular.
We found that libraryd-data demonstrated a not healthy version release cadence and project activity because the last version was released 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.
Research
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
Security News
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
Security News
Following last week’s supply chain attack, Nx published findings on the GitHub Actions exploit and moved npm publishing to Trusted Publishers.