Movement价格
(美元)$0.05754
-- (--)
USD
最后更新于 --
市值
$1.61亿 #111
流通总量
28亿 / 100亿
历史最高价
$1.227
24 小时成交量
$2,406.80万
评级
4.2 / 5


Movement 的价格表现
近 1 年
--
--
3 个月
-54.56%
$0.13
30 天
-48.57%
$0.11
7 天
-23.98%
$0.08
Movement 社交媒体动态

首先,我向 @Balancer 团队以及所有受此攻击影响的人致以最深切的同情。
每当发生像这样的重大 DeFi 攻击,尤其是出自老牌协议时,都是加密行业最痛苦的日子之一。被盗资金的损失远不止于美元价值,更严重的是,它损害了整个 Crypto 和 DeFi 生态的信誉,让行业整体倒退了好几个月。

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.

首先,我对@Balancer团队以及所有受到此次攻击影响的人表示最深切的同情。
当发生如此重大的DeFi黑客事件时,尤其是来自一个老牌协议,真的是一个艰难的日子。比起被盗资金的美元成本,这确实伤害了整个加密货币和DeFi的形象,并使我们的行业倒退了几个月。
事实是,Solidity作为一种语言实在太不安全,无法真正承载未来的金融。Solidity的表面面积太大,容易受到攻击,开发者依赖手动检查从访问控制到精确数学的所有内容,这正是像Move这样的资产优先语言最初被发明的原因。
经过一些调查,Balancer是这样被黑客攻击的:攻击者利用稳定池交换中的舍入错误来扭曲池的不变性,这是一个表示平衡流动性的关键数学常数。他们首先通过闪电贷交换BPT(Balancer池代币)与基础资产如cbETH,推动余额达到精确的舍入边界(例如,缩放到9)。然后,他们在资产之间进行交换,如wstETH与cbETH,使用精心设计的数量(例如,由于定点缩放,约8.918舍入到8),低估了储备变化并人为地降低了不变性(D)。
这使得BPT价格暴跌(D / totalSupply),让攻击者以低价反向交换铸造过量的BPT,销毁它以“正常”价格提取基础资产,并口袋差额,基本上是从流动性提供者那里偷取。利润在Vault的内部余额中累积,并通过manageUserBalance以WITHDRAW_INTERNAL的方式兑现,无需直接的授权绕过,因为数学缺陷补贴了盗窃。这是Solidity手动定点库中的精度损失,导致了巨大的资金流失。
Move将如何完全绕过此黑客攻击呢?它是在核心中内置安全性:资产被视为具有线性类型的资源,强制严格的保护(没有意外的重复、丢失或损失),数学使用精确的u64/u128整数,内置溢出中止,没有浮点数,没有在复杂计算中可利用的舍入失误。
在基于Move的DEX中,交换函数将通过虚拟机原子性地检查和更新不变性,在任何不平衡时中止,例如:
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
}
此外,原子交易消除了重入风险。这就是为什么Move生态系统的漏洞远少于EVM。
是时候让DeFi建设者拥抱像Move这样的语言,从根本上优先考虑安全性,这样我们才能最终构建一个没有可预防的挫折的韧性金融未来。
快捷导航
Movement购买指南
开始入门数字货币可能会让人觉得不知所措,但学习如何购买比您想象的要简单。
预测 Movement 的价格走势
Movement 未来几年值多少?看看社区热议,参与讨论一波预测。
查看 Movement 的价格历史
追踪 Movement 代币的价格历史,实时关注持仓表现。您可以通过下方列表快捷查看开盘价、收盘价、最高价、最低价及交易量。

Movement 常见问题
目前,一个 Movement 价值是 $0.05754。如果您想要了解 Movement 价格走势与行情洞察,那么这里就是您的最佳选择。在欧易探索最新的 Movement 图表,进行专业交易。
数字货币,例如 Movement 是在称为区块链的公共分类账上运行的数字资产。了解有关欧易上提供的数字货币和代币及其不同属性的更多信息,其中包括实时价格和实时图表。
由于 2008 年金融危机,人们对去中心化金融的兴趣激增。比特币作为去中心化网络上的安全数字资产提供了一种新颖的解决方案。从那时起,许多其他代币 (例如 Movement) 也诞生了。
查看 Movement 价格预测页面,预测未来价格,帮助您设定价格目标。
深度了解Movement
Movement Network 是一个基于模块化 Move 的区块链生态系统,使开发人员能够构建安全、高性能且具备互操作性的区块链应用程序,从而弥合 Move 和 EVM 生态系统之间的差距。
免责声明
本页面的社交内容 (包括由 LunarCrush 提供支持的推文和社交统计数据) 均来自第三方,并按“原样”提供,仅供参考。本文内容不代表对任何数字货币或投资的认可或推荐,也未获得欧易授权或撰写,也不代表我们的观点。我们不保证所显示的用户生成内容的准确性或可靠性。本文不应被解释为财务或投资建议。在做出投资决策之前,评估您的投资经验、财务状况、投资目标和风险承受能力并咨询独立财务顾问至关重要。过去的表现并不代表未来的结果。您的投资价值可能会波动,您可能无法收回您投资的金额。您对自己的投资选择自行承担全部责任,我们对因使用本信息而造成的任何损失或损害不承担任何责任。提供外部网站链接是为了用户方便,并不意味着对其内容的认可或控制。
请参阅我们的 使用条款 和 风险警告,了解更多详情。通过使用第三方网站(“第三方网站”),您同意对第三方网站的任何使用均受第三方网站条款的约束和管辖。除非书面明确说明,否则欧易及其关联方(“OKX”)与第三方网站的所有者或运营商没有任何关联。您同意欧易对您使用第三方网站而产生的任何损失、损害和任何其他后果不承担任何责任。请注意,使用第三方网站可能会导致您的资产损失或贬值。本产品可能无法在所有司法管辖区提供或适用。
请参阅我们的 使用条款 和 风险警告,了解更多详情。通过使用第三方网站(“第三方网站”),您同意对第三方网站的任何使用均受第三方网站条款的约束和管辖。除非书面明确说明,否则欧易及其关联方(“OKX”)与第三方网站的所有者或运营商没有任何关联。您同意欧易对您使用第三方网站而产生的任何损失、损害和任何其他后果不承担任何责任。请注意,使用第三方网站可能会导致您的资产损失或贬值。本产品可能无法在所有司法管辖区提供或适用。
市值
$1.61亿 #111
流通总量
28亿 / 100亿
历史最高价
$1.227
24 小时成交量
$2,406.80万
评级
4.2 / 5




