
Product
Socket MCP Adds Org Alerts, Threat Feed Review, and Package Inspection
Socket MCP now lets AI assistants review org alerts, investigate threats using the Socket threat feed, and inspect package files in addition to dependency scoring.
@rlajous/sdk-core
Advanced tools
Core utilities and shared internals for Webacy SDK packages. This package is automatically installed as a dependency of @rlajous/sdk-trading and @rlajous/sdk-threat.
This package is typically not installed directly. Instead, install one of the SDK packages:
npm install @rlajous/sdk # Full SDK
npm install @rlajous/sdk-trading # Trading analysis only
npm install @rlajous/sdk-threat # Threat analysis only
import { Chain, isEvmChain, CHAIN_IDS, CHAIN_NAMES } from '@rlajous/sdk-core';
// Check if a chain is EVM-compatible
if (isEvmChain(Chain.ETH)) {
console.log('Using EVM chain');
}
// Get chain metadata
console.log(CHAIN_NAMES[Chain.SOL]); // "Solana"
console.log(CHAIN_IDS[Chain.ETH]); // 1
import {
WebacyError,
AuthenticationError,
RateLimitError,
ValidationError,
NotFoundError,
NetworkError,
} from '@rlajous/sdk-core';
try {
await client.addresses.analyze('0x...');
} catch (error) {
if (error instanceof RateLimitError) {
console.log(`Retry after ${error.retryAfter} seconds`);
}
}
import type {
RiskTag,
RiskModule,
RiskCategory,
TokenMetadata,
OwnershipDistribution,
} from '@rlajous/sdk-core';
import {
isValidAddress,
isValidEvmAddress,
isValidSolanaAddress,
} from '@rlajous/sdk-core';
isValidAddress('0x742d35Cc...', Chain.ETH); // true
isValidSolanaAddress('EPjFWdd5Aufq...'); // true
| Chain | Code | EVM |
|---|---|---|
| Ethereum | eth | Yes |
| Base | base | Yes |
| BSC | bsc | Yes |
| Polygon | pol | Yes |
| Arbitrum | arb | Yes |
| Optimism | opt | Yes |
| Solana | sol | No |
| TON | ton | No |
| Sui | sui | No |
| Stellar | stellar | No |
| Bitcoin | btc | No |
MIT
FAQs
Core utilities for Webacy SDK packages
We found that @rlajous/sdk-core 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.

Product
Socket MCP now lets AI assistants review org alerts, investigate threats using the Socket threat feed, and inspect package files in addition to dependency scoring.

Product
Socket Firewall blocks malicious VS Code and Open VSX extensions before install, protecting developers from compromised editor marketplaces.

Research
More than 140 Mastra npm packages were compromised in a supply chain attack that used a typosquatted dependency to deliver a cross-platform infostealer during installation.