
Security News
The Code You Didn't Write Is Still Yours to Defend
AI agents are pulling packages into environments no scanner is watching, creating exposure before security teams can see it.
@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 266 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.

Security News
AI agents are pulling packages into environments no scanner is watching, creating exposure before security teams can see it.

Security News
GitHub Actions checkout now blocks risky pull_request_target checkouts by default to help prevent pwn request supply chain attacks.

Product
Socket now supports Custom Roles and Repository Access Permissions so organizations can control who can access specific repositories and actions.