News· Last updated April 11, 2026

GENIUS Act 2026: OFAC Extends Sanctions Screening Rules to Stablecoins

OFAC published proposed rulemaking in April 2026 to bring stablecoin issuers under full sanctions compliance obligations. What fintech teams need to know.

GENIUS Act 2026: OFAC Extends Sanctions Screening Rules to Stablecoins

The U.S. Treasury's Office of Foreign Assets Control (OFAC) published a proposed rule in April 2026 that would formally extend sanctions compliance obligations to stablecoin issuers under the framework of the GENIUS Act — the landmark stablecoin legislation signed into law earlier this year. According to the Federal Register notice published April 7, 2026, the rulemaking would require stablecoin issuers to screen all transactions, wallets, and counterparties against OFAC-maintained sanctions lists in real time.

This is one of the most consequential regulatory updates in crypto compliance history. For the first time, stablecoin issuers will be held to the same legal standard as traditional financial institutions when it comes to sanctions enforcement.

What the GENIUS Act Changes for Sanctions Compliance

The GENIUS Act (Guiding and Establishing National Innovation for US Stablecoins) created the first federal licensing regime for dollar-pegged stablecoin issuers. The new OFAC proposed rule layers on a specific requirement: any entity issuing, transferring, or redeeming stablecoins must implement continuous, automated sanctions screening.

Key obligations under the proposed rule include:

  • Wallet-level screening: Every wallet address interacting with a stablecoin contract must be checked against SDN (Specially Designated Nationals), consolidated sanctions lists, and country-level embargoes.
  • Transaction-level screening: Individual transfers above certain thresholds trigger enhanced due diligence.
  • Indirect exposure tracking: OFAC signals it expects issuers to screen up to 3–5 "hops" in the transaction chain — meaning if your user sends USDC to a wallet that later transacts with a sanctioned entity, the issuer carries liability.
  • Recordkeeping: Audit logs of all screening decisions must be retained for 5 years and made available to OFAC upon request.

According to Reuters coverage of the GENIUS Act, the legislation passed with bipartisan support and represents the U.S. government's most ambitious effort to regulate digital assets without stifling innovation — but compliance teams are already warning that implementation timelines are aggressive.

Why This Matters Beyond Stablecoin Issuers

Even if you don't issue stablecoins directly, this rule has cascading effects:

Crypto exchanges must now screen not just KYC/AML data but the wallet addresses of any stablecoin deposits and withdrawals. A user depositing USDT or USDC from a sanctioned wallet exposes the exchange.

DeFi protocols that interact with stablecoin liquidity pools face new grey zones around their legal exposure — particularly those without centralized control points.

Fintech apps with embedded crypto features (trading, savings, payments) need to add wallet screening to their compliance stack before they previously anticipated.

Corporate treasury teams using stablecoins for cross-border payments need to treat every recipient wallet as a potential sanctions risk — not just a KYC/bank account check.

The enforcement timeline is still subject to comment, but OFAC has historically moved from proposed rule to final rule within 6–9 months. Compliance teams should treat the April 2026 proposed rule as a 90-day warning.

The Real Cost of Non-Compliance

OFAC settlements are not small. In March 2026, OFAC reached a $3.77 million settlement with TradeStation Securities for sanctions violations. In prior years, major crypto platforms have paid tens of millions for OFAC violations. The GENIUS Act explicitly preserves OFAC's enforcement authority over stablecoin transactions, meaning penalties under the new rule could exceed anything the crypto industry has seen.

Worse, OFAC has begun applying "apparent violations" logic more aggressively — meaning even unintentional screening failures can result in civil penalties if the firm lacked adequate compliance controls at the time.

How to Build GENIUS Act-Compliant Screening

Meeting the proposed requirements demands real-time, automated screening at every transaction touchpoint. Manual checks or batch-processed lists are no longer sufficient when stablecoin transactions settle in seconds.

The recommended architecture:

  1. Pre-transaction screening: Before any stablecoin transfer is approved, query the sanctions screening API with the source and destination wallet addresses.
  2. Continuous monitoring: Periodically re-screen existing wallets against updated lists — OFAC updates the SDN list multiple times per week.
  3. Indirect exposure checks: Implement hop-level graph scanning for high-value transactions.
  4. Audit logging: Every screening call should log the timestamp, query payload, list version used, and result.

SanctionShield AI on RapidAPI provides all of this in a single endpoint. It screens against OFAC SDN, OFAC consolidated lists, EU sanctions, UN sanctions, and HM Treasury lists in under 200ms per call — well within the real-time window required by GENIUS Act compliance workflows.

import requests
 
def screen_wallet_for_stablecoin_transfer(wallet_address: str, amount_usd: float) -> dict:
    url = "https://sanctionshield-ai.p.rapidapi.com/screen"
    headers = {
        "x-rapidapi-host": "sanctionshield-ai.p.rapidapi.com",
        "x-rapidapi-key": "YOUR_API_KEY",
        "Content-Type": "application/json"
    }
    payload = {
        "query": wallet_address,
        "type": "wallet",
        "lists": ["ofac_sdn", "ofac_consolidated", "eu_sanctions", "un_sanctions"],
        "include_indirect": True if amount_usd >= 10000 else False
    }
    response = requests.post(url, json=payload, headers=headers)
    return response.json()
 
# Pre-transfer check
result = screen_wallet_for_stablecoin_transfer("0xAbCd...1234", 50000)
if result["risk_level"] in ["HIGH", "BLOCKED"]:
    raise ValueError(f"Transfer blocked: sanctions match {result['matches']}")

Next Steps for Compliance Teams

The OFAC comment period on the GENIUS Act stablecoin rule closes in late Spring 2026. Use this window to:

  1. Audit your current screening coverage — map every point where stablecoin wallet addresses enter your system.
  2. Evaluate your list freshness — are you screening against lists updated daily, or using a stale snapshot?
  3. Test indirect exposure logic — does your current solution track multi-hop wallet relationships?
  4. Document your compliance program — OFAC expects written policies and procedures, not just technical controls.

The regulatory direction is clear: stablecoin compliance is converging with traditional financial sanctions obligations. Teams that treat this as a 2027 problem will face enforcement actions long before then.

Sources