Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
A JS client for interacting with Zerion API
npm install defi-sdk
import { client } from "defi-sdk";
client.configure({ url: endpoint, apiToken: API_TOKEN });
import { client } from "defi-sdk";
client.subscribe({
namespace: "assets",
body: {
scope: ["prices"],
payload: { asset_codes: ["eth"], currency: "usd" }
},
onMessage: (event: Event, data: Response) => {
/* handle data */
}
});
namespace
: a Namespace
stringevent
: one of received | changed | appended | removed
, see Zerion Docsbody
: a Request
objectdata
: a Response
objectInstead of calling client.subscribe
and passing type information manually, the SDK provides helpers for most of the existing request scopes
addressAssets
import { client } from "defi-sdk";
client.addressAssets({
payload: { asset_codes: ["eth"], currency: "usd" },
onData: data => {
/* handle data */
}
});
interface Request<T, ScopeName extends string> {
scope: ScopeName[];
payload: T;
}
interface Response<T> {
meta: any;
payload: T;
}
See Response
in Zerion Docs
MIT License, see the included LICENSE file.
FAQs
Zerion API Client for JS
The npm package defi-sdk receives a total of 237 weekly downloads. As such, defi-sdk popularity was classified as not popular.
We found that defi-sdk 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
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.