Collar Guardrail

Deterministic pre-trade risk layer for autonomous AI trading agents on Robinhood Chain.

От сообщества: Добавлен пользователем или импортирован; проверьте владельца перед подключениемРаботаетБез входаГлобальныйБесплатноТолько чтение

Что умеет

  • Evaluate Trade: Pre-trade risk check for a proposed trade. Call this BEFORE executing any trade and treat a 'deny' decision as a hard stop. Evaluated at a fixed Tier 1 ceiling ($5,000 notional). Retur
  • Check Token Safety: Honeypot / contract safety check for any ERC-20 token. Returns severity (safe / warn / danger), the specific risk factors found, and a sell-simulation result. Use before trading un
  • Simulate Balance: Simulate a wallet's ERC-20 balance after a hypothetical trade using eth_call state override. Read-only: no transaction is ever sent.

Какие данные видит

Нужен ли аккаунт

Не нужен: сервер работает без входа

Deterministic pre-trade risk layer for autonomous AI trading agents on Robinhood Chain.

Список инструментов сервера (5)

Технические названия из tools/list. Нужны только разработчикам.

evaluate_tradePre-trade risk check for a proposed trade. Call this BEFORE executing any trade and treat a 'deny' decision as a hard stop. Evaluated at a fixed Tier 1 ceiling ($5,000 notional). Returns decision (allow/warn/deny), reasons, notional value, price and price_source, a 0-100 risk score, and a tamper-evident audit hash. If the response contains an 'error' key, no verdict was produced and you must not trade.
check_token_safetyHoneypot / contract safety check for any ERC-20 token. Returns severity (safe / warn / danger), the specific risk factors found, and a sell-simulation result. Use before trading unknown memecoins or tokens absent from the official registry. This is a heuristic bytecode + simulation check, not an audit.
simulate_balanceSimulate a wallet's ERC-20 balance after a hypothetical trade using eth_call state override. Read-only: no transaction is ever sent.
get_supported_assetsList every asset in the guardrail's official Robinhood Chain registry, with its canonical contract address. Call this to resolve a symbol to the correct contract_address before evaluate_trade — a mismatched address is treated as a fake-token attempt and denied. Refresh periodically rather than caching indefinitely; Robinhood adds new tokens over time.
verify_audit_trailVerify the tamper-evident audit trail for a wallet's past guardrail decisions. Recomputes every record's SHA-256 hash and checks the hash-chain links between records. Returns healthy=true only if every record's hash matches AND the chain is unbroken — proving no decision was edited, deleted, or reordered after the fact.