Cetus Token price
in USD$0.038
-- (--)
USD
Last updated on --.
Market cap
$32.75M
Circulating supply
859.06M / 1B
All-time high
$0.49896
24h volume
$12.35M


About Cetus Token
CETUS is a utility token powering the Cetus Protocol, a decentralized exchange (DEX) and liquidity platform built on the Sui blockchain. Designed to simplify trading and maximize efficiency, Cetus enables users to swap tokens seamlessly, provide liquidity, and earn rewards through its advanced automated market maker (AMM) technology. The platform supports multiple liquidity models, including concentrated and dynamic liquidity, offering traders better pricing and deeper market access. CETUS tokens are used for governance, fee discounts, and incentivizing participation in the ecosystem. As a core liquidity hub for Sui, Cetus plays a vital role in DeFi by ensuring fast, secure, and user-friendly trading experiences for both beginners and experienced users alike.
AI insights
Cetus Token issuer risk
Please take all and any precaution and be advised that this crypto-asset is classified as a high-risk crypto-asset. This crypto-asset lacks a clearly identifiable issuer or/and an established project team, which increases or may increase its susceptibility to significant market risks, including but not limited to extreme volatility, low liquidity, or/and the potential for market abuse or price manipulation. There is no absolute guarantee of the value, stability, or the ability to sell this crypto-asset at preferred or desired prices.
Disclaimer
The social content on this page ("Content"), including but not limited to tweets and statistics provided by LunarCrush, is sourced from third parties and provided "as is" for informational purposes only. OKX does not guarantee the quality or accuracy of the Content, and the Content does not represent the views of OKX. It is not intended to provide (i) investment advice or recommendation; (ii) an offer or solicitation to buy, sell or hold digital assets; or (iii) financial, accounting, legal or tax advice. Digital assets, including stablecoins and NFTs, involve a high degree of risk, can fluctuate greatly. The price and performance of the digital assets are not guaranteed and may change without notice.
OKX does not provide investment or asset recommendations. You should carefully consider whether trading or holding digital assets is suitable for you in light of your financial condition. Please consult your legal/tax/investment professional for questions about your specific circumstances. For further details, please refer to our Terms of Use and Risk Warning. By using the third-party website ("TPW"), you accept that any use of the TPW will be subject to and governed by the terms of the TPW. Unless expressly stated in writing, OKX and its affiliates (“OKX”) are not in any way associated with the owner or operator of the TPW. You agree that OKX is not responsible or liable for any loss, damage and any other consequences arising from your use of the TPW. Please be aware that using a TPW may result in a loss or diminution of your assets. Product may not be available in all jurisdictions.
OKX does not provide investment or asset recommendations. You should carefully consider whether trading or holding digital assets is suitable for you in light of your financial condition. Please consult your legal/tax/investment professional for questions about your specific circumstances. For further details, please refer to our Terms of Use and Risk Warning. By using the third-party website ("TPW"), you accept that any use of the TPW will be subject to and governed by the terms of the TPW. Unless expressly stated in writing, OKX and its affiliates (“OKX”) are not in any way associated with the owner or operator of the TPW. You agree that OKX is not responsible or liable for any loss, damage and any other consequences arising from your use of the TPW. Please be aware that using a TPW may result in a loss or diminution of your assets. Product may not be available in all jurisdictions.
Cetus Token’s price performance
Past year
-77.84%
$0.17
3 months
-62.39%
$0.10
30 days
-51.79%
$0.08
7 days
-24.89%
$0.05
Cetus Token on socials

I got a bunch of questions regarding this tweet asking about the Cetus hack and how the Balancer hack compares to it. Both hacks involved overflow-related issues; Balancer had rounding errors, while Cetus had a bitshift overflow. But you're probably thinking, "Isn't Move supposed to be safer? What's the point in using Move if similar issues still happen?" Totally valid questions.
The biggest difference between Move and Solidity is that Move helps prevent you from accidentally shooting yourself in the foot with built-in u128/u256 overflow aborts, but it doesn't guarantee protection if you intentionally write unsafe code. If you look at this one line in Cetus' math library, you might be thinking what on earth is this:
It was a bitshift operation (<< 192) in their "safe" math library, which unfortunately turned out to be anything but safe, leading to the infamous $223M drain. This was done likely a hacky gas optimization. If they had used standard u128 multiplication with overflow checks, this wouldn’t have happened.
On high-performance chains like Sui, where the average transaction cost is well under one cent, the juice just is not worth the squeeze.
In essence, no money has been lost in Move hacks when following recommended Move practices.


Shayan (Devconnect era 🇦🇷)
First and foremost, my greatest sympathies to the @Balancer team as well as everyone affected by this exploit.
It's always a rough day when there's a significant DeFi hack like this, let alone from an OG protocol. More than the dollar cost of the stolen funds, this genuinely hurts all of crypto and DeFi's image as a whole and sets our industry back several months.
Fact of the matter is that Solidity is just too insecure a language for it to truly be the one that hosts the future of finance. Solidity has just too large of a surface area that makes it prone to hacks, with devs relying on manual checks for everything from access controls to precise math, and it is exactly why asset-first languages like Move were invented to begin with.
After doing a bit of digging, this was how Balancer was hacked: Attackers exploited rounding errors in stable pool swaps to distort the pool's invariant, a key math constant that represents balanced liquidity. They started with flash-loaned swaps of BPT (Balancer Pool Tokens) for an underlying asset like cbETH, pushing balances to exact rounding boundaries (e.g., scaled to 9). Then, they swapped between assets like wstETH to cbETH with crafted amounts (e.g., ~8.918 rounded down to 8 due to fixed-point scaling), underestimating reserve changes and artificially deflating the invariant (D).
This tanked the BPT price (D / totalSupply), letting attackers reverse-swap to mint excess BPT cheaply, burn it to withdraw underlying assets at "normal" rates, and pocket the difference, essentially stealing from liquidity providers. Profits accumulated in the Vault's internal balances and were cashed out via manageUserBalance with WITHDRAW_INTERNAL, no direct auth bypass needed since the math flaw subsidized the theft. It's a precision loss in Solidity's manual fixed-point libraries that cascades into massive drains.
The way Move would have bypassed this hack altogether is by baking in safety at the core: Assets are treated as resources with linear types that enforce strict conservation (no unintended dupes, drops, or losses), and math uses exact u64/u128 integers with built-in overflow aborts, no floats, no exploitable rounding slips in complex calculations.
In a Move-based DEX, swap functions would atomically check and update invariants via the VM, aborting on any imbalance, such as:
public entry fun swap(pool: &mut LiquidityPool, in: Coin, out_amt: u64): Coin {
assert!(coin::value(&in) >= calculate_required_in(pool, out_amt), E_INSUFFICIENT_INPUT);
coin::merge(&mut pool.coin_x_reserve, in);
let out = coin::extract(&mut pool.coin_y_reserve, out_amt);
assert!(check_invariant(pool), E_INVARIANT_VIOLATION);
out
}
Plus, atomic transactions kill reentrancy risks. This is why Move ecosystems have far fewer exploits compared to the EVM.
It's time for DeFi builders to embrace languages like Move that prioritize security from the ground up, so we can finally build a resilient financial future without preventable setbacks like this.

remember the $200M cetus hack when sui validators recovered most of the stolen funds and other chains mocked sui because cOdE iS iMmUtAbLe LaW?
and now everyone is doing the same (understandably)

Haseeb >|<
Fascinating how different chains responded differently to the $128M @Balancer hack.
Berachain had validators halt the network (Balancer very tightly integrated into their ecosystem).
Polygon validators censoring hacker's transactions to freeze them in place.
Sonic added functionality to freeze & 0 out hacker's account.
TBH, I think these are mostly good answers. Smaller ecosystems should prioritize safety and community protection over "code is law."
Guides
Find out how to buy Cetus Token
Getting started with crypto can feel overwhelming, but learning where and how to buy crypto is simpler than you might think.
Predict Cetus Token’s prices
How much will Cetus Token be worth over the next few years? Check out the community's thoughts and make your predictions.
View Cetus Token’s price history
Track your Cetus Token’s price history to monitor your holdings’ performance over time. You can easily view the open and close values, highs, lows, and trading volume using the table below.

Cetus Token FAQ
Currently, one Cetus Token is worth $0.038. For answers and insight into Cetus Token's price action, you're in the right place. Explore the latest Cetus Token charts and trade responsibly with OKX.
Cryptocurrencies, such as Cetus Token, are digital assets that operate on a public ledger called blockchains. Learn more about coins and tokens offered on OKX and their different attributes, which includes live prices and real-time charts.
Thanks to the 2008 financial crisis, interest in decentralized finance boomed. Bitcoin offered a novel solution by being a secure digital asset on a decentralized network. Since then, many other tokens such as Cetus Token have been created as well.
Check out our Cetus Token price prediction page to forecast future prices and determine your price targets.
Dive deeper into Cetus Token
Cetus is a DEX and concentrated liquidity protocol, crafted on the Sui and Aptos blockchains.
Market cap
$32.75M
Circulating supply
859.06M / 1B
All-time high
$0.49896
24h volume
$12.35M





