By 2026, regulated stablecoins under MiCA (EUR-denominated and USD-denominated) sit at the centre of the European crypto economy. Their security posture matters far beyond their issuers: every DeFi protocol, every CASP, every treasury holding stables inherits a slice of the issuer's risk. This piece walks through the three layers of stablecoin security and what each side of an integration should be looking at.
Layer 1: reserve management
A fiat-referenced stablecoin under MiCA must maintain reserves at least equal to the outstanding token supply, segregated from the issuer's own assets, and audited periodically. Reserve quality matters more than reserve quantity:
- Cash and high-quality liquid assets (HQLA) are credit-equivalent risk to the underlying instruments. Treasury bills and overnight repos with sound counterparties are the floor.
- Bank deposits carry deposit-insurance limits and bank credit risk. Spreading deposits across multiple institutions (and jurisdictions) is a structural requirement, not a nice-to-have.
- Counterparty risk on the custody side is real: even fully-reserved stablecoins have failed when the custodian was compromised or went insolvent.
For integrators (DeFi protocols, treasuries) holding regulated stables, the relevant questions are:
- Where is the reserve attestation published, and how often?
- Who is the auditor? Is the methodology Big-4-grade or self-attested?
- What is the redemption mechanism in stress conditions: direct issuer redemption, or only through market makers?
Layer 2: MiCA compliance
MiCA's stablecoin regime distinguishes between:
- EMTs (e-money tokens): pegged to a single fiat currency (EUR, USD). Must be issued by an authorised electronic money institution or credit institution. Reserve and redemption requirements are the strictest.
- ARTs (asset-referenced tokens): pegged to a basket of currencies, commodities, or other assets. Subject to additional governance, reserve, and disclosure requirements.
For both, MiCA imposes:
- Authorisation by a competent authority (in France: ACPR for EMTs, AMF for crypto activities adjacent).
- White paper publication with the precise composition of reserves and redemption rights.
- Significant token thresholds: above certain transaction volumes or holder counts, the issuer is classified as significant and falls under direct ECB supervision. The threshold also locks issuance growth.
- Reserve quality and segregation: the white paper must specify reserve composition; the reserve must be ring-fenced from issuer creditors.
- Redemption rights: at par, at any time, by the holder. No fees beyond actual costs.
The compliance layer overlaps with DORA for ICT risk and pentest expectations: see our piece on MiCA pentest requirements.
Layer 3: the smart contract
The token contract itself is where the rubber meets the road. The patterns to audit:
Mint / burn authority
Who can mint? Who can burn? Production stablecoin contracts almost always have:
- A small set of
MINTER_ROLEandBURNER_ROLEaddresses. - Multi-sig or MPC behind those roles.
- Often a timelock on role grants (so adding a new minter is not a fast-path attack).
Audit questions:
- Are minter / burner roles transferable? On what timelock?
- Is there a
pause()function, and is it gated correctly? - Are roles separable (can the same key both mint and burn)?
Blacklist and freeze
Most regulated stablecoins implement a blacklist(address) function for AML / sanctions compliance. A blacklisted address cannot send or receive the token.
This function is necessary but dangerous:
- Compromise of the role that controls it lets an attacker freeze any address.
- Bugs in the role's access control are catastrophic.
- The function must be auditable and the criteria for blacklisting transparent.
Audit questions:
- Who can blacklist? Multi-sig with a documented compliance process?
- Are there off-chain controls (legal review, AML team approval) before on-chain action?
- Is there a remediation path if a wallet is mistakenly blacklisted?
Cross-chain and bridge interactions
Most stablecoins exist on multiple chains. The native vs bridged distinction matters:
- Canonical issuer-issued on each chain (Circle's CCTP for USDC) preserves redemption rights across chains.
- Lock-and-mint via third-party bridges introduces bridge counterparty risk between the user and the issuer.
For an integrator: prefer native versions where the issuer has a presence. Audit bridges that hold non-trivial supply.
Upgradeability
Most regulated stablecoins are upgradeable proxies. The proxy admin path is the entire trust assumption:
- Who controls the proxy admin?
- Is the upgrade path timelocked?
- Are upgrade events publicly tracked and reviewable?
A proxy admin controlled by a single EOA, regardless of the issuer's reputation, is a single point of failure. Multi-sig with a multi-day timelock is the floor.
Stablecoin depeg as a security event
A depeg event (even a transient one) can cascade through DeFi protocols that hold the stablecoin as collateral, in liquidity pools, or as an oracle reference. Security teams holding stables should:
- Maintain monitoring on the on-chain price (DEX TWAPs) and off-chain price (CEX feeds).
- Pre-define depeg playbooks: at -X bps, do Y. At -Y bps, do Z.
- Know the redemption mechanics for the stable: can your treasury redeem directly with the issuer, or only via market makers?
- Diversify across stables: a treasury holding only one stablecoin is concentrating issuer risk regardless of the issuer's reputation.
Audit scope for an integrator
For a DeFi protocol integrating a stablecoin, the audit should cover:
- How does the protocol handle the stable's blacklist function being invoked on a protocol address?
- How does the protocol handle a temporary depeg (oracle returning stale or off-peg price)?
- How does the protocol handle the stable's pause function?
- What is the protocol's liquidation behaviour if the stable depegs while it's the collateral?
- Are there any assumptions of 1:1 redemption baked into invariants that break under stress?
The stables of 2026 are far better-regulated than those of 2022. The integration risk is still there. The audit that doesn't model it is incomplete.