QUVR Pulse
On-chain · Robinhood Chain

QUVR Risk Oracle

Every 30 minutes the QUVR Pulse server writes risk labels of liquid Robinhood Chain tokens to a public contract. Anyone can read and verify them, and the first-label and first-“High” timestamps can never change — proof that a warning existed before whatever happened next.

60
labels recorded
53
tokens
30 min
every 30 min, up to 100/day

Contracts

Latest records

TokenLabelWhenTransaction
$GOOSEElevated risk25m0xa4ff…0a4b ↗
$PRISMElevated risk25m0xa4ff…0a4b ↗
$ROBINHigh risk25m0xa4ff…0a4b ↗
$BOXYLow detected risk25m0xa4ff…0a4b ↗
$JOLLYElevated risk25m0xa4ff…0a4b ↗
$JOLLYInsufficient data25m0xa4ff…0a4b ↗
$SHROOMElevated risk25m0xa4ff…0a4b ↗
$JOLLYElevated risk25m0xa4ff…0a4b ↗
$AriaElevated risk25m0xa4ff…0a4b ↗
$MASKHigh risk25m0xa4ff…0a4b ↗
$XLElevated risk25m0xa4ff…0a4b ↗
$XGAS.DEVElevated risk25m0xa4ff…0a4b ↗
$UNIPCSElevated risk25m0xa4ff…0a4b ↗
$SWElevated risk25m0xa4ff…0a4b ↗
$DEBTElevated risk25m0xa4ff…0a4b ↗
$GRACEElevated risk25m0xa4ff…0a4b ↗
$JOLLYHigh risk25m0xa4ff…0a4b ↗
$DUESElevated risk25m0xa4ff…0a4b ↗
$DUESElevated risk25m0xa4ff…0a4b ↗
$TOOLSElevated risk25m0xa4ff…0a4b ↗

Uniswap v4 hook

A Uniswap v4 pool with this hook asks the oracle about the token being bought. If the token has a fresh “High risk” label, the buy goes through only with an “I understand the risk” acknowledgement — the wallet or site shows a warning and passes it. Selling is never restricted. No label or older than 3 days — the pool works normally. The hook has no owner.

For developers

interface IQuvrRiskOracle {
    function isHighRisk(address token, uint256 maxAge)
        external view returns (bool known, bool high);
}

(bool known, bool high) = oracle.isHighRisk(token, 1 days);
if (known && high) {
    // show a warning / require confirmation
}
// Buying a High-risk token through a pool with QuvrRiskHook:
bytes memory hookData = abi.encode(keccak256("QUVR_RISK_ACKNOWLEDGED"));

A label describes detected risk signs; it never means a token is “safe”. Not investment advice.