Movement price

in USD
$0.05757
-- (--)
USD
Last updated on --.
Market cap
$162.37M #121
Circulating supply
2.8B / 10B
All-time high
$1.227
24h volume
$24.07M
Rating
4.2 / 5
MOVEMOVE
USDUSD

About Movement

New
Official website
White Paper
Github
CertiK
Last audit: --

Movement’s price performance

Past year
--
--
3 months
-54.53%
$0.13
30 days
-48.54%
$0.11
7 days
-23.94%
$0.08
Movement’s biggest 24-hour price drop was on Dec 9, 2024, (UTC+8), when it fell by $0.758 (-92.67%). In Dec 2024, Movement experienced its biggest drop over a month, falling by $1.167 (-95.11%). Movement’s biggest drop over a year was by $1.167 (-95.11%) in 2024.
Movement’s all-time low was $0.03015 (+90.94%) on Oct 11, 2025, (UTC+8). Its all-time high was $1.227 (-95.32%) on Dec 26, 2024, (UTC+8). Movement’s circulating supply is 2,800,000,000 MOVE, which represents 28.00% of its maximum circulating supply of 10,000,000,000 MOVE.
56%
Buying
Updated hourly.
More people are buying MOVE than selling on OKX

Movement on socials

Movement官方中文
Movement官方中文
First of all, I extend my deepest sympathies to the @Balancer team and everyone affected by this attack. Whenever a significant DeFi attack occurs, especially from a well-established protocol, it is one of the most painful days for the crypto industry. The loss of stolen funds goes far beyond just the dollar value; more seriously, it damages the credibility of the entire Crypto and DeFi ecosystem, setting the industry back several months.
Shayan (Devconnect era 🇦🇷)
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.
EricF
EricF
One person with Face Swap can create unlimited aesthetics instantly. The creative possibilities are actually insane with @higgsfield_ai faceswap.. heres Zuck doing more than just Lama AI and crypto Move language...
EricF
EricF
ok my last sponsored post of the day.. i don't use the faceswap, but i do use the seeddance and sora portion often.. to make nfts move Unlike Nanobanana which destroys image quality, Face Swap preserves everything that makes the photo work while giving you perfect results. this is @higgsfield_ai face swap.. its so good, im sure some will use to do nsfw stuff..
Shayan (Devconnect era 🇦🇷)
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.

Guides

Find out how to buy Movement
Getting started with crypto can feel overwhelming, but learning where and how to buy crypto is simpler than you might think.
Predict Movement’s prices
How much will Movement be worth over the next few years? Check out the community's thoughts and make your predictions.
View Movement’s price history
Track your Movement’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.
Own Movement in 3 steps

Create a free OKX account

Fund your account

Choose your crypto

Capitalize on market volatility with advanced trading tools

Movement FAQ

Currently, one Movement is worth $0.05757. For answers and insight into Movement's price action, you're in the right place. Explore the latest Movement charts and trade responsibly with OKX.
Cryptocurrencies, such as Movement, 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 Movement have been created as well.
Check out our Movement price prediction page to forecast future prices and determine your price targets.

Dive deeper into Movement

Movement Network is an ecosystem of Modular Move-Based Blockchains that enables developers to build secure, performant, and interoperable blockchain applications, bridging the gap between Move and EVM ecosystems.

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.
Market cap
$162.37M #121
Circulating supply
2.8B / 10B
All-time high
$1.227
24h volume
$24.07M
Rating
4.2 / 5
MOVEMOVE
USDUSD
Derivatives trading is now in the UAE