
Research
/Security News
PolinRider Spreads Through Compromised GitHub Accounts and Packagist
Operators behind PolinRider used a compromised GitHub account to plant malware in four development versions of a Packagist package with 700,000+ downloads.
@chainsafe/sprinter-sdk
Advanced tools
The Sprinter SDK is a JavaScript/TypeScript library that simplifies cross-chain operations such as fetching balances and providing solutions for asset transfers across multiple blockchains.
To install the Sprinter SDK in your project, you can use either npm or yarn.
npm install @chainsafe/sprinter-sdk
yarn add @chainsafe/sprinter-sdk
Once installed, you can initialize and use the SDK to interact with blockchain data.
Sprinter ClassThe Sprinter class provides an interface to interact with balances and chains.
import { Sprinter } from "@chainsafe/sprinter-sdk";
const sprinter = new Sprinter({
baseUrl: "https://api.sprinter.buildwithsygma.com",
});
const ownerAddress = "0xYourAddressHere";
sprinter.getUserBalances(ownerAddress).then(console.log);
sprinter.getAvailableTokens().then((tokens) => {
console.log(tokens);
});
sprinter.getAvailableChains().then((chains) => {
console.log(chains);
});
You can configure the SDK using environment variables to set the base URL for API requests:
import { setBaseUrl } from "@chainsafe/sprinter-sdk";
setBaseUrl("https://api.sprinter.buildwithsygma.com");
For more detailed docs you can check out SDK docs page.
For more detailed documentation on how to use the SDK, please visit the API documentation.
FAQs
Unknown package
The npm package @chainsafe/sprinter-sdk receives a total of 90 weekly downloads. As such, @chainsafe/sprinter-sdk popularity was classified as not popular.
We found that @chainsafe/sprinter-sdk demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 8 open source maintainers collaborating on the project.

Research
/Security News
Operators behind PolinRider used a compromised GitHub account to plant malware in four development versions of a Packagist package with 700,000+ downloads.

Security News
GitHub Actions now supports cache-mode, a least-privilege control on the Actions cache aimed at the cache poisoning technique behind recent compromises.

Company News
Allow myself to introduce... myself.