Developer ToolsInfrastructure
$ npm install @miraculous65/sentinel-risk-sdk import { Client, networks } from "@miraculous65/sentinel-risk-sdk";
// 1. Connect
const sentinel = new Client({
...networks.testnet,
rpcUrl: "https://soroban-testnet.stellar.org",
});
// 2. Check
const { result } = await sentinel.check_permission({
wallet: "GBGN..."
});
if (result.tag === "Freeze") {
alert("❌ Wallet is blocked by AI Risk Engine");
}