
Research
Supply Chain Attack on Axios Pulls Malicious Dependency from npm
A supply chain attack on Axios introduced a malicious dependency, plain-crypto-js@4.2.1, published minutes earlier and absent from the project’s GitHub releases.
@shelby-protocol/sdk
Advanced tools
A TypeScript SDK providing core encoding and decoding utilities for both Node.js and browser environments.
A TypeScript SDK providing core encoding and decoding utilities for both Node.js and browser environments.
# Installing the shelby sdk
pnpm install @shelby-protocol/sdk @aptos-labs/ts-sdk
Depending on your runtime environment, import from one of the following entrypoints:
import { ShelbyNodeClient } from '@shelby-protocol/sdk/node';
// Your code here...
import { ShelbyBlob } from '@shelby-protocol/sdk/browser';
// Your code here...
The SDK supports two patterns for managing erasure coding providers:
import { ShelbyClient } from '@shelby-protocol/sdk';
// Provider is created internally on first use
const client = new ShelbyClient(config);
// The client will automatically create and manage the provider
await client.upload({
blobData: data,
signer: account,
blobName: "example.txt",
expirationMicros: Date.now() * 1000 + 3600_000_000,
});
When working with multiple clients (e.g., different networks), you can share a single provider instance:
import { ShelbyClient, ClayErasureCodingProvider } from '@shelby-protocol/sdk';
// Create a single provider instance
const provider = await ClayErasureCodingProvider.create();
// Share it across multiple clients
const mainnetClient = new ShelbyClient(mainnetConfig, provider);
const devnetClient = new ShelbyClient(devnetConfig, provider);
const testnetClient = new ShelbyClient(testnetConfig, provider);
// All clients use the same provider instance
await mainnetClient.upload({ /* ... */ });
await devnetClient.upload({ /* ... */ });
@aptos-labs/ts-sdknpm run build # compile TypeScript to dist/
npm run test # watch mode with Vitest
npm run test:once # single-run tests
npm run lint # run biome diagnostics
npm run fmt # auto-format with biome
Please import the entrypoint that matches your environment (
/node,/browser, or the root) to ensure you get the correct implementation and avoid missing-module errors.
FAQs
A TypeScript SDK providing core encoding and decoding utilities for both Node.js and browser environments.
The npm package @shelby-protocol/sdk receives a total of 727 weekly downloads. As such, @shelby-protocol/sdk popularity was classified as not popular.
We found that @shelby-protocol/sdk demonstrated a healthy version release cadence and project activity because the last version was released less than 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
A supply chain attack on Axios introduced a malicious dependency, plain-crypto-js@4.2.1, published minutes earlier and absent from the project’s GitHub releases.

Research
Malicious versions of the Telnyx Python SDK on PyPI delivered credential-stealing malware via a multi-stage supply chain attack.

Security News
TeamPCP is partnering with ransomware group Vect to turn open source supply chain attacks on tools like Trivy and LiteLLM into large-scale ransomware operations.