
Company News
Jerod Santo Joins Socket as Head of Media
Allow myself to introduce... myself.
@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 120 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.

Company News
Allow myself to introduce... myself.

Research
/Security News
A Twitch browser extension on Chrome and Firefox forwards users’ live OAuth session tokens through proxies controlled by a Russian bot service.

Security News
Anthropic found biased reasoning and recklessness drove Claude Mythos 5 to publish malware on PyPI and compromise a security vendor.