
Security News
Risky Biz Podcast: Making Reachability Analysis Work in Real-World Codebases
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.
@predicate/core
Advanced tools
The core package is a TypeScript client for directly interacting with the Predicate API. It handles:
Use this package when you need to integrate Predicate's policy evaluation capabilities into your backend services or when building custom frontend integrations without React.
npm install @predicate/core
import {PredicateClient, PredicateRequest} from '@predicate/core';
const predicateClient = new PredicateClient({
apiUrl: 'https://api.predicate.io/',
apiKey: process.env.PREDICATE_API_KEY!
});
if (!process.env.PREDICATE_API_KEY) {
console.error("Error: PREDICATE_API_KEY is not set.");
process.exit(1);
}
const request: PredicateRequest = {
from: '0xSenderAddress',
to: '0xPredicatedContractAddress',
data: '0xEncodedArguments',
msg_value: '0'
}
async function main() {
const evaluationResult = await predicateClient.evaluatePolicy(request);
console.log("Policy evaluation result:", evaluationResult);
}
main().catch((error) => {
console.error("Error evaluating policy:", error);
process.exit(1);
});
For detailed documentation, visit docs.predicate.io.
This project is licensed under the MIT License - see the LICENSE file for details.
FAQs
Core utilities for interacting with Predicate API
We found that @predicate/core demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 5 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
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.
Security News
/Research
Malicious Nx npm versions stole secrets and wallet info using AI CLI tools; Socket’s AI scanner detected the supply chain attack and flagged the malware.
Security News
CISA’s 2025 draft SBOM guidance adds new fields like hashes, licenses, and tool metadata to make software inventories more actionable.