
Research
/Security News
jscrambler npm Package Compromised in Supply Chain Attack
A compromised jscrambler npm release added a malicious preinstall hook that runs hidden native binaries on Linux, macOS, and Windows.
@ixo/oracles-chain-client
Advanced tools
TypeScript client library for IXO blockchain operations, specifically designed for oracle builders and blockchain workflows.
Provides high-level abstractions for IXO blockchain interactions:
npm install @ixo/oracles-chain-client
# or
pnpm add @ixo/oracles-chain-client
Create a .env file with the required configuration:
RPC_URL=https://devnet.ixo.earth/rpc/
SECP_MNEMONIC=your-wallet-mnemonic-phrase-here
import {
walletClient,
claimsClient,
gqlClient,
} from '@ixo/oracles-chain-client';
// Initialize wallet client
await walletClient.checkInitiated();
// Submit a claim
await claimsClient.submitClaim({
granteeAddress: 'ixo1oracle...',
claimId: 'claim-123',
collectionId: 'collection-456',
});
// Query blockchain data
const entities = await gqlClient.GetEntitiesByOwnerAddress({
ownerAddress: 'ixo1...',
});
import { Payments, Authz } from '@ixo/oracles-chain-client/react';
// Use in React components with full TypeScript support
const MyOracleComponent = () => {
const handlePayment = async () => {
const payments = new Payments();
await payments.payClaim(params);
};
return <button onClick={handlePayment}>Pay Oracle</button>;
};
Complete documentation for all modules:
# Build package
pnpm build
# Run tests
pnpm test
# Generate GraphQL types
pnpm generate
Contributions welcome! Ensure tests pass and follow existing patterns.
Licensed under terms in package.json.
FAQs
Unknown package
The npm package @ixo/oracles-chain-client receives a total of 229 weekly downloads. As such, @ixo/oracles-chain-client popularity was classified as not popular.
We found that @ixo/oracles-chain-client demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 2 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
A compromised jscrambler npm release added a malicious preinstall hook that runs hidden native binaries on Linux, macOS, and Windows.

Research
/Security News
A malicious .NET package is typosquatting the Braintree SDK to steal live payment card data, merchant API keys, and host secrets from production apps.

Security News
/Research
Compromised Injective SDK npm version 1.20.21 exfiltrates wallet private keys and mnemonics through fake telemetry functionality.