stacksense-intel-divine
v1.0.1
Published
Real-time on-chain intelligence and signal detection for the Stacks ecosystem.
Maintainers
Readme
StackSense SDK 🧠
The StackSense SDK provides the core logic and rule definitions used by the StackSense Intelligence Platform. Developers can use this package to identify significant on-chain events (Whale movements, DeFi interactions, and Anomaly detection) within the Stacks ecosystem.
Installation
npm install @theweirddee/stacksense-sdkFeatures
- Protocol Matching: Identify interactions with ALEX, Arkadiko, Velar, and sBTC.
- Anomaly Detection: Pre-defined heuristics for spotting unusual network activity.
- Archetype Classification: Logic for classifying wallets based on behavioral patterns.
Usage
import { matchTransaction } from '@theweirddee/stacksense-sdk';
const tx = { /* Stacks Transaction Object */ };
const signal = matchTransaction(tx);
if (signal) {
console.log(`Detected ${signal.protocol} ${signal.archetype}: ${signal.title}`);
}License
MIT
