You’ve probably seen the word “stablecoin” everywhere. But let’s be honest — could you explain what keeps it pegged to a dollar? Short answer: it’s a digital token built to stick around $1, and the lion’s share of them run on Ethereum. Total stablecoin supply across every chain is roughly $321 billion as of mid-2026, and Ethereum holds about $157 billion of that — just shy of half the global pie. Talk about the stablecoin economy is mostly talk about Ethereum.
This guide covers what stablecoins are, why they don’t lurch around like Bitcoin, the three ways a token defends its peg, and a ranked rundown of the seven biggest stablecoins on Ethereum, with current figures and a frank look at the risks.
What Is a Stablecoin?
At its core, a stablecoin is a cryptocurrency that tracks a stable asset — almost always the US dollar, but sometimes the euro or gold. Crypto’s famous volatility is great for traders, but it’s an absolute headache for everyday payments. Imagine invoicing someone for $10,000 only to watch that token drop 15% before the transfer even clears. That’s the exact problem stablecoins were built to solve.
The mechanism is simpler than it sounds. Each token is meant to be backed by, or redeemable for, a stable reserve asset, typically pegged at a one-to-one ratio to something like the US dollar or gold held in reserve as collateral. The whole system rests on one promise: that you can always swap a token for a dollar of value. That promise is the base layer everything else in decentralized finance sits on, from lending and trading to payments and treasury management, which is why stablecoins quietly became crypto’s most-used product.
Stablecoin: a digital token engineered to hold a fixed value relative to a reference asset (most often the US dollar), typically through reserve backing, over-collateralization with other crypto, or algorithmic supply management. For the US regulatory definition, see the GENIUS Act text on Congress.gov.
Why Ethereum?

Sure, you can launch a stablecoin on pretty much any chain. So why does Ethereum run the show? The answer is ERC-20. In November 2015, Fabian Vogelsteller and Vitalik Buterin introduced a common rulebook for tokens on Ethereum — a shared interface that every contract has to follow. Before that, tokens were a free-for-all. Wallets and exchanges had to build bespoke integrations for each new project, which was a huge drag. ERC-20 wiped that out with a handful of required functions.
The payoff? Universal interoperability. If a wallet or DeFi protocol speaks ERC-20, it automatically recognizes every token built on it — stablecoins included. That plug-and-play compatibility, combined with deeper liquidity and better institutional custody tools, cemented Ethereum as the default launchpad for any serious issuer. (One term worth pinning down: fungible means interchangeable — one USDC is worth exactly the same as any other, the way one dollar bill equals any other. That’s what lets stablecoins work as money rather than collectibles.)
ERC-20: the technical standard defining how fungible tokens behave on Ethereum, specifying six required functions and two events every compliant contract must expose. Spec at EIP-20 on eips.ethereum.org.
The Three Types of Stablecoins (and How Each Defends Its Peg)
Stablecoins don’t all hold their dollar the same way, and those differences are where the real risk lives. Three designs dominate, and figuring out which group a coin belongs to tells you more about its safety than any marketing page will.
Fiat-collateralized is the most common type. For every token in circulation, the issuer holds one dollar in reserve, or an equivalent liquid asset like a US Treasury bill. USDT and USDC are the giants here. The catch is centralization — you’re trusting a company to actually hold the reserves it claims, which is precisely what the new regulation goes after.
Crypto-collateralized coins back the token with other cryptocurrencies locked in a smart contract. Because crypto prices move, the system deliberately holds more collateral than the stablecoins it issues. DAI has historically kept roughly 150% or more in collateral to absorb shocks. You get decentralization, but you pay for it: locking up $150 to mint $100, with liquidation risk if the collateral’s price drops sharply.
Algorithmic and synthetic designs skip direct fiat reserves and lean on mechanisms instead. This is the most dangerous category historically — pure algorithmic coins have collapsed in spectacular fashion. The survivors, like Ethena’s USDe, run a sturdier synthetic model: hedging crypto holdings with offsetting derivatives positions instead of supply tricks.
| Type | Backed By | Example | Main Risk |
| Fiat-collateralized | Cash + Treasuries | USDT, USDC | Issuer trust, transparency |
| Crypto-collateralized | Over-collateralized crypto | DAI | Volatility, liquidation |
| Algorithmic / synthetic | Code, hedging, derivatives | USDe, crvUSD | Mechanism failure, depeg |
USDS, which appears in the rankings below, is a Sky-brand token convertible 1:1 with DAI and built on the same collateral system, so it sits in the crypto-collateralized family.
Where Stablecoins Get Used
Stablecoins aren’t just a trader’s tool. They underpin DeFi as the preferred collateral in lending markets like Aave and the default quote asset on exchanges like Curve and Uniswap. Beyond DeFi, they offer a faster, cheaper alternative to traditional wires for remittances, payroll, and merchant settlement — most powerful in countries with weak local currencies, where a dollar-pegged token preserves purchasing power a domestic savings account can’t.
There’s also a compliance angle. Because stablecoins settle on a public ledger, every transfer is programmatically auditable in ways traditional banking flows are not. Under the US GENIUS Act, permitted issuers must be able to seize, freeze, or burn tokens when legally required by a court or regulator — programmable enforcement that traditional money can’t easily replicate.
A Look Under the Hood: What a Stablecoin Contract Looks Like
A stablecoin is a smart contract — specifically an ERC-20 contract with extra functions for minting, burning, freezing, and access control. The base interface requires six functions and two events, and most production tokens build on the audited OpenZeppelin library. A minimal token looks like this:
solidity
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.20;
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
contract MyToken is ERC20 {
constructor(uint256 initialSupply) ERC20("MyToken", "MTK") {
_mint(msg.sender, initialSupply); // mints to deployer
}
}
But that’s a token, not a stablecoin — nothing about it holds a peg. A real stablecoin adds issuer-only mint/burn tied to reserves and a compliance freeze, usually via OpenZeppelin’s AccessControl:
solidity
function mint(address to, uint256 amount) external onlyIssuer {
_mint(to, amount); // matched to off-chain reserve deposits
}
function freeze(address account) external onlyCompliance {
_frozen[account] = true; // required of US issuers under GENIUS
}
The ERC-20 interface was never the hard part. The real work is managing reserves, setting up the legal entity, paying for independent attestations, and earning regulators’ trust. A developer can deploy the skeleton above in an afternoon; running a compliant, fully-reserved issuer takes a licensed company, banking relationships, and ongoing audits. That’s why only a handful of serious players sit at the top of the rankings. If you’re building tooling that needs to read contract state reliably, NOWNodes’ Ethereum access is one way to query the chain without running your own infrastructure.
The Game-Changer of 2026: New Rules Reshaped the Leaderboard
On July 18, 2025, the US signed its first federal stablecoin law — the GENIUS Act. As of mid-2026 it’s the framework governing US payment stablecoins, requiring 100% reserve backing in liquid assets like dollars or short-term Treasuries, plus monthly public disclosure of reserve composition. For years, issuers operated on “trust us, the reserves are there.” The Act ended that, with mandatory attestations and real oversight. It also barred issuers from paying interest directly to holders, pushing yield into separate, opt-in products.
Not everyone thinks the design is risk-free. As Professor Barry Eichengreen of UC Berkeley has warned, in a worst case “if panicked customers force [stablecoin issuers] to sell [treasuries backing stablecoins], Treasury prices could collapse, sharply increasing interest rates.” It’s a theoretical risk that hasn’t played out with major stablecoins, but it frames the debate: safer for the individual, potentially systemic in aggregate. The EU’s MiCA framework, live since June 2024, pushes the same way with its own reserve and authorization rules. The upshot: regulation now rewards transparent, fiat-backed issuers and pressures opaque ones.
Top 7 Stablecoins on Ethereum in 2026
Ranked by approximate Ethereum circulating supply, the figures below come from DefiLlama and on-chain trackers as of mid-June 2026. Supply shifts week to week, so check a live source before relying on any number. The concentration is stark: the top two tokens hold most of the supply on the network by themselves.
| Rank | Stablecoin | Issuer | Type | Approx. Ethereum Supply |
| 1 | USDT | Tether Limited | Fiat-backed | ~$80B |
| 2 | USDC | Circle | Fiat-backed | ~$48B |
| 3 | USDS | Sky | Crypto-collateralized | ~$5–8B |
| 4 | DAI | Sky (ex-MakerDAO) | Crypto-collateralized | ~$4–5B |
| 5 | USDe | Ethena Labs | Synthetic | ~$4B |
| 6 | PYUSD | Paxos / PayPal | Fiat-backed | ~$1B |
| 7 | FDUSD | First Digital Trust | Fiat-backed | ~$600M |

1. USDT (Tether). The largest stablecoin in the world — around $187–190 billion across all chains. Tron carries its biggest single-chain float (roughly $80 billion), with Ethereum the second-largest home and the deepest venue for DeFi and exchange liquidity. One myth worth correcting: Tether wasn’t the first stablecoin (that was BitUSD in July 2014), but it was the first fiat-backed one to reach scale, and that model won. Its reserves are now dominated by short-dated US Treasuries (roughly three-quarters), with smaller Bitcoin and gold allocations; the long-standing knock is transparency, which regulation is slowly forcing to improve.

2. USDC (Circle). The choice for anyone answering to a US auditor — roughly $75–78 billion across all chains, with about $48 billion on Ethereum, its largest single deployment. Circle holds reserves in a BlackRock-managed fund with daily disclosed composition, and runs CCTP for native cross-chain transfers across 30-plus networks. Both the GENIUS Act and MiCA play to its transparency-first strengths.

3. USDS (Sky). Sky’s newer token, introduced in 2024 and convertible 1:1 with DAI on the same collateral. It’s climbed fast — around $8–11 billion across all chains by April 2026, making Sky the third-biggest issuer behind Tether and Circle. Its rise challenged the early-2025 idea that synthetic, yield-bearing coins would dominate; instead capital rotated toward established collateral-backed models.

4. DAI (Sky). The longest-running crypto-collateralized stablecoin, launched December 2017, backed by over-collateralized crypto and tokenized real-world assets. A clarification that confuses many: MakerDAO, the protocol, rebranded to Sky in 2024, but the DAI token still exists alongside USDS and converts freely. It has the deepest DeFi integration of any stablecoin. MakerDAO’s docs cover the mechanics.

5. USDe (Ethena). The largest non-fiat-backed stablecoin, holding no bank reserves at all. For every dollar of USDe, Ethena holds a long spot crypto position hedged with a short perpetual futures position, so the funding rate becomes yield. It surged past $14 billion at its September 2025 peak before contracting to around $4 billion after late-2025 volatility. Its yield product sUSDe carries real exchange counterparty and funding-rate risk — powerful for sophisticated users, cautionary for everyone else.

6. PYUSD (Paxos / PayPal). The one stablecoin with a mainstream distribution channel: PayPal. Paxos issues it under New York DFS regulation, backed by cash, repos, and Treasuries, redeemable inside PayPal and Venmo. Its Ethereum supply is around $1 billion — well behind the leaders, but its position in consumer payments matters more than its size.

7. FDUSD (First Digital). A Hong Kong-based dollar stablecoin backed by Treasuries, repos, and segregated deposits. Its moment came in 2024 replacing BUSD on Binance’s zero-fee pairs; most supply still sits on BNB Chain, with a growing Ethereum balance. For teams working outside the US regulatory orbit, it’s a genuine way to diversify away from US-issued tokens.
Also worth knowing: crvUSD (Curve) uses soft-liquidation to reduce cascading liquidations for leveraged positions; USD1 (World Liberty Financial) has grown quickly since 2025; and older names like GUSD and TUSD still circulate. BUSD, once top-three, has been wound down — proof that even giants fade when the winds shift.
How to Spot a Trustworthy Stablecoin
Knowing how to evaluate a stablecoin matters more than memorizing any ranking. Run any token through five checks. First, reserves — fiat-backed coins should publish independent attestations, and under the GENIUS Act, US-regulated issuers now have to. Second, collateralization: fully-backed coins are safer than algorithmic ones, but crypto-backed carry liquidation risk while fiat-backed carry custody risk. Third, regulatory standing — clarity in a major jurisdiction like the US, EU, or Hong Kong is now a genuine quality signal, not just paperwork. Fourth, liquidity: can you actually move size without moving the price? And fifth, track record — how long has it held its peg, and through how many real stress events?
The deepest risk to watch is a depeg — when a token’s market price drifts from its $1 target, usually during extreme stress or a mechanism failure. It’s rare for the top names, but when it hits, it’s devastating. To go deeper on how tokens behave on-chain before committing capital, NOWNodes’ developer infrastructure is a low-stakes way to read contract data and watch transactions.
Conclusion
A stablecoin is the quiet workhorse of crypto — a token built to hold its value so the rest of the ecosystem has something steady to stand on. Ethereum hosts just under half of all global supply through the ERC-20 standard. From the fiat-backed giants USDT and USDC to the decentralized DAI and synthetic USDe, each entry answers the same question differently: how do you build a dollar that lives on a blockchain?
The category is consolidating around transparency. The 2026 rules rewarded issuers who could prove their reserves and squeezed those who couldn’t, and money flowed toward established collateral-backed coins. Whether you’re building on stablecoins, holding them in treasury, or just getting your bearings, the same advice applies: look past the branding and check what backs the token, who regulates it, and how long it has held its peg.
FAQ
Which is the biggest stablecoin on Ethereum?
USDT (Tether) is the largest overall — around $187–190 billion globally, with Ethereum its second-biggest chain after Tron. On Ethereum specifically, USDT leads, followed by USDC. Across all chains the two together account for roughly 84% of the entire stablecoin market.
Are stablecoins regulated now?
Increasingly. The US GENIUS Act (July 2025) requires 100% liquid-asset reserves, monthly disclosures, and freeze/burn capability under lawful orders. The EU’s MiCA has had stablecoin rules live since June 2024. Hong Kong and others have their own frameworks.
Can a stablecoin lose its peg?
Yes. A depeg happens when a token drifts from $1, usually under extreme stress or mechanism failure. It’s rare for top fiat-backed names but catastrophic for poorly designed algorithmic coins — the 2022 collapse of TerraUSD (UST) erased roughly $40 billion in days.
Do stablecoins pay interest?
The coins themselves generally don’t, and US-regulated issuers are barred from paying it directly. You earn yield separately — lending on protocols like Aave, staking into variants like sUSDe, or using savings products like Sky’s — all opt-in and carrying more risk than simply holding the stablecoin.



