CLARITY Act edges closer – But ONE disagreement is holding everything up

ambcrypto发布于2026-03-18更新于2026-03-18

文章摘要

The CLARITY Act, a key piece of U.S. crypto market structure legislation, is advancing but remains stalled due to a major disagreement over interest-bearing stablecoins. While the crypto industry supports such products, traditional banks oppose them, fearing capital flight from deposits. Despite this impasse, political pressure is mounting, notably from President Donald Trump, who publicly demanded the bill's swift passage to maintain U.S. financial leadership and prevent innovation from moving abroad. The crypto community expresses growing confidence in the bill's eventual success, with Polymarket bettors assigning a 62% probability of it passing in 2026. The legislation aims to provide regulatory clarity and unlock institutional investment, but disagreements continue to delay progress.

The GENIUS Act, passed in 2025, created a regulatory framework for U.S. stablecoins. However, clear rules for the rest of the crypto market are still missing.

That may soon change, as the recent data from Santiment suggested the Digital Asset Market CLARITY Act is moving closer to the final stage of the legislative process.

If passed, the bill could mark a turning point for institutional investment in crypto, providing clearer regulatory guidance for large investors.

Source: Santiment/X

CLARITY Act talks continue

Talking about the same at the DC Blockchain Summit on the 17th of March, Senate Banking Committee Chair Tim Scott said the bill is still delayed due to a disagreement over interest-bearing stablecoins.

While the crypto industry supports such products, banks fear they could pull large amounts of money away from traditional deposits.

That said, Senators Thom Tillis and Angela Alsobrooks are currently reviewing these concerns and pushing for stronger safeguards if crypto products function like bank services.

This cautious approach has slowed the bill’s progress. Meanwhile, political pressure is growing, especially after U.S. President Donald Trump urged lawmakers to pass the Act quickly.

President Trump demands CLARITY Act passage

On the 4th of March, U.S. President Donald Trump wrote in a post on Truth Social,

The Genius Act is being threatened and undermined by the Banks, and that is unacceptable — We are not going to allow it. The U.S. needs to get Market Structure done, ASAP.

Donald Trump’s statement has shifted the debate around the CLARITY Act from a technical policy issue to a broader economic and strategic concern.

He argues that without clear crypto regulations, capital and innovation could move to countries like China, making the bill important for maintaining U.S. financial leadership.

Trump also criticized major banks for resisting crypto reforms, despite reporting record profits, suggesting they are prioritizing their own interests.

By linking the CLARITY Act to his goal of making the U.S. the global crypto capital, he has increased pressure on lawmakers to move the legislation forward.

Crypto community stands confident

The confidence was also reflected in the crypto community, as noted by Senator Kevin Cramer when he said,

I think we have to make this a committee priority for some time just before Easter or shortly after.

Echoing similar sentiments, Dan Spuller, EVP of Industry Affairs at Blockchain Association, added,

I’m now increasingly confident we’re going to get CLARITY through, and we’re not going to let the banks rig the outcome.

Polymarket odds and other hiccups

Additionally, Polymarket bettors have also pushed the odds of the CLARITY Act passing in 2026 to a commanding 62%.

Source: Polymarket

Needless to say, the bill has now become the center of a growing clash between the U.S. government and traditional banks.

This disagreement has stalled the bill since early 2026. Thus, as expected, Trump’s crypto advisor, Patrick Witt, had put it best when he said,

The CLARITY Act must remain a pro-innovation piece of legislation. Attempts to hijack the legislative process and turn it into an anti-competition bill are shameful.


Final Summary

  • Clear rules could unlock large institutional capital that has remained cautious due to regulatory uncertainty.
  • However, a key disagreement over interest-bearing stablecoins continues to slow progress.

热门币种推荐

相关问答

QWhat is the main disagreement holding up the CLARITY Act according to the article?

AThe main disagreement is over interest-bearing stablecoins, with the crypto industry supporting such products while banks fear they could pull large amounts of money away from traditional deposits.

QWhat did U.S. President Donald Trump say about the CLARITY Act and the banks?

APresident Trump stated that the 'Genius Act' (referring to the CLARITY Act) is being 'threatened and undermined by the Banks' and that this is unacceptable. He argued that the U.S. needs to get Market Structure done ASAP and criticized major banks for resisting crypto reforms despite reporting record profits.

QAccording to the article, what is the predicted probability of the CLARITY Act passing in 2026 on Polymarket?

APolymarket bettors have pushed the odds of the CLARITY Act passing in 2026 to 62%.

QHow did Trump's advisor, Patrick Witt, characterize attempts to change the CLARITY Act?

APatrick Witt characterized attempts to hijack the legislative process and turn the CLARITY Act into an anti-competition bill as 'shameful,' stating that the act must remain a pro-innovation piece of legislation.

QWhat previous legislation created a regulatory framework for U.S. stablecoins, as mentioned in the article?

AThe GENIUS Act, passed in 2025, created a regulatory framework for U.S. stablecoins.

你可能也喜欢

生成模型也能端到端训练了?核心竟是一个for循环

长期以来,深度学习在图像分类、检测等任务上凭借端到端训练取得了巨大成功,但生成模型领域却始终是个例外。当前主流的自回归、扩散模型等训练时只学习预测“一小步”,推理时则需要反复展开数百上千步,这种训练与推理的不一致导致了“暴露偏差”等问题,使得生成模型一直未能实现真正的端到端训练。 最近,一篇来自UIUC与哈佛大学的论文提出了“探索式建模(Explorative Modeling,XM)”新范式,其核心是一个简单到近乎朴素的for循环:在每个训练步骤中,模型生成K个候选样本,然后仅选取其中最接近真实数据的一个样本来计算损失和回传梯度。这种做法巧妙地绕开了传统生成模型中因使用重构损失(如平方误差)而导致的“模态模糊”问题——即模型倾向于输出多个可能答案的平均值,而这个平均值往往不属于任何真实的数据模式。 XM通过这种方式,在不拆分生成过程的前提下,直接提升了模型的“生成表达力”,即模型捕捉数据分布中多个独立模式的能力。论文将“探索”验证为继模型参数量、数据量之后的第三根可扩展轴。实验表明,随着模型规模、数据量和计算量的增大,探索带来的性能收益越发显著,在图像、视频、语言等多种任务上均能带来效率与质量的提升。 更重要的是,当探索程度足够时,XM可以实现真正的端到端生成。在机器人控制等任务中,仅需一次网络前向传播的XM策略,其性能可媲美甚至超过需要上百次前向的扩散模型策略,实现了推理效率的飞跃。 尽管“最佳K样本选择”的思想并非全新,但该研究的贡献在于清晰地揭示了这一简单机制如何直接解决生成模型的核心瓶颈,并为实现高效、端到端的生成模型开辟了新的可能性。随着模型规模的持续扩大,探索这一新维度可能将发挥越来越关键的作用。

marsbit10分钟前

生成模型也能端到端训练了?核心竟是一个for循环

marsbit10分钟前

年薪百万抢电工,Meta急到自己办技校

AI竞赛正面临新的瓶颈:工地。美国正面临严重的电工、建筑工等技术工人短缺,这已成为微软、Meta、OpenAI等公司快速建设超大规模AI数据中心(如OpenAI耗资160亿美元的“星际之门”项目)的“头号障碍”。 尽管AI公司愿支付高薪(如电工年薪可达24-28万美元),远超传统行业,但熟练技工仍供不应求。麦肯锡预测,美国在2023-2030年间需额外培养13万名电工和24万名建筑工,而劳工统计局预计每年仍有8万个电工岗位空缺。这种短缺导致项目延迟,每月可能造成数百万美元的收入损失。 AI数据中心建设复杂,需应对巨大功耗(一座设施耗电堪比数十万户家庭)、复杂的配电系统以及高密度散热(需液冷技术)等挑战,因此亟需大量技术娴熟的工人。 为此,科技巨头开始亲自下场培养人才。例如,Meta投入1.15亿美元建立建筑工人培训学校,提供免费培训及生活补贴,以快速输送工人上岗。OpenAI则与建筑工会合作,提前锁定熟练劳动力。同时,企业也将招聘目光投向高中生,鼓励年轻人投身技工行业。这些举措已见成效,Z世代对技工职业的兴趣显著上升。 然而,更深层的挑战在于电力。AI数据中心用电量正以惊人速度增长,已推高部分地区的电价。此外,数据中心建设是项目制的,建设期需要成千上万的工人,但建成后仅需少量常驻人员。这意味着未来可能面临熟练工人短期过剩、并流向其他行业压低薪资的风险。如何实现劳动力与电力资源的长期平衡,仍是悬而未决的问题。

marsbit1小时前

年薪百万抢电工,Meta急到自己办技校

marsbit1小时前

交易

现货

热门文章

如何购买ONE

欢迎来到HTX.com!我们已经让购买Harmony(ONE)变得简单而便捷。跟随我们的逐步指南,放心开始您的加密货币之旅。第一步:创建您的HTX账户使用您的电子邮件、手机号码注册一个免费账户在HTX上。体验无忧的注册过程并解锁所有平台功能。立即注册第二步:前往买币页面,选择您的支付方式信用卡/借记卡购买:使用您的Visa或Mastercard即时购买Harmony(ONE)。余额购买:使用您HTX账户余额中的资金进行无缝交易。第三方购买:探索诸如Google Pay或Apple Pay等流行支付方法以增加便利性。C2C购买:在HTX平台上直接与其他用户交易。HTX场外交易台(OTC)购买:为大量交易者提供个性化服务和竞争性汇率。第三步:存储您的Harmony(ONE)购买完您的Harmony(ONE)后,将其存储在您的HTX账户钱包中。您也可以通过区块链转账将其发送到其他地方或者用于交易其他加密货币。第四步:交易Harmony(ONE)在HTX的现货市场轻松交易Harmony(ONE)。访问您的账户,选择您的交易对,执行您的交易,并实时监控。HTX为初学者和经验丰富的交易者提供了友好的用户体验。

1.3k人学过发布于 2024.03.29更新于 2026.06.02

如何购买ONE

相关讨论

欢迎来到HTX社区。在这里,您可以了解最新的平台发展动态并获得专业的市场意见。以下是用户对ONE(ONE)币价的意见。

活动图片