以太坊下一站 Glamsterdam:你必须知道的核心升级点

Foresight NewsPublished on 2026-06-23Last updated on 2026-06-23

Abstract

以太坊计划于2026年下半年进行的Glamsterdam升级,并非一次简单的吞吐量提升,而是对出块、验证和资源定价机制的重构,为未来更高Gas上限、更大数据容量及并行执行奠定基础。 此次升级的核心内容包括:**协议内提议者-构建者分离(ePBS,EIP-7732)**,将区块提议与交易构建的职责在协议层面分离,延长执行负载的传播验证窗口,提升网络处理更大负载的安全性,并减少对外部中继的依赖。**区块级访问列表(BAL,EIP-7928)**,为每个区块记录其执行过程中访问的账户和存储位置,为客户端实现并行处理、验证和状态计算创造条件。**状态创建成本重定价(EIP-8037)**,提高创建新状态(如账户、合约)的Gas成本,以抑制以太坊状态数据库的过快膨胀,在扩容执行能力的同时控制节点的长期存储负担。 此外,升级清单还包括调整各类资源Gas定价、增强EVM功能等多方面改进。一批EIP仍在考虑纳入,其中涉及改善质押者退出流动性的提案(如EIP-8061、EIP-8080)值得关注。 与此同时,以太坊基金会协议团队发生人事变动,官方表示正转向一个由多个组织共同协作的联盟模式来推进以太坊发展。Glamsterdam标志着以太坊在追求更高性能的道路上,对底层协议工程与生态系统治理结构的一次重要调整。


撰文:KarenZ,Foresight News


以太坊的 Glamsterdam 升级,最容易被误读成又一次单纯提高吞吐量的技术迭代。更准确的说法是:它在重排以太坊的出块流程、验证流程和资源定价方式等内容,为更高 Gas 上限、更大 blob 容量和未来并行执行铺底。


截至 2026 年 6 月 23 日,ethereum.org 将 Glamsterdam 标注为计划于 2026 年下半年进行的升级。Glamsterdam 的名字来自执行层升级 Amsterdam 与共识层升级 Gloas 的组合。官方路线图把它放在 2025 年 12 月 Fusaka 之后、Hegotá 之前,并明确列出两项主要功能:协议内提议者 - 构建者分离,即 ePBS,以及区块级访问列表,即 BAL。


谁提议,谁构建:ePBS 把出块分工写进协议


今天的以太坊出块像一个时间很紧的交接班:有人负责提议区块,有人负责构建交易内容,中间还依赖 MEV-Boost、第三方中继(relay)等协议外基础设施。


这个体系已经运行多年,但它把一部分信任关系放在协议外,也让验证者在很短时间窗口里同时处理共识、执行、数据可用性等任务。


Glamsterdam 的头号变化之一 EIP-7732,即 ePBS(Enshrined Proposer-Builder Separation),就是把提议者和构建者的分工写进协议。


简单说,提议者负责选择共识区块,构建者负责准备里面的交易内容。构建者不能只口头承诺,它要先在协议里「交保证书」:写清楚自己会交出哪个执行区块、愿意付给提议者多少钱;随后,Payload Timeliness Committee(负载及时性委员会,PTC )会检查它是否按时交付。


这项改动的关键不只是减少对第三方中继的依赖,还在于给区块传播和验证争取时间。


今天,验证者需要在很短的关键窗口内同时处理共识和执行;ePBS 把这两件事拆开,让执行负载可以稍后揭示和验证。按 EIP-7732 的设计,执行负载的传播窗口,也就是数据在网络里传播并被节点接收的可用时间,可以从约 2 秒扩展到约 9 秒。窗口变长后,以太坊在提高区块容量时,更不容易因为节点来不及下载、验证和投票而增加掉票或重组风险。


这件事对普通用户的直接感知可能不强,但对以太坊扩容很关键。更长的传播和验证窗口,意味着网络可以更安全地处理更大负载。CoinDesk 在 2026 年 6 月 16 日报道中援引以太坊基金会 DevOps 工程师 Parithosh Jayanthi 的说法,Glamsterdam 可能是 Merge 以来最大的分叉之一,将改变很多关于以太坊的假设,并为未来更大规模扩容做准备。


BAL 和重定价:扩容不能只踩油门,还要管数据库


Glamsterdam 的另一项核心改动是 EIP-7928,Block-Level Access Lists,区块级访问列表。


它可以理解成给每个区块配一份「访问记录」:这个区块执行时碰过哪些账户、哪些存储位置,执行后相关状态变成了什么,都要被记录下来。这样,节点在处理区块时就不再完全像拆盲盒,可以更早知道哪些数据需要读取,哪些计算可以并行推进。


过去的 EIP-2930 已经引入过交易级访问列表,但它是可选的,实际使用有限。EIP-7928 的变化在于,它把访问列表提高到区块层面:区块头里留下这份清单的「指纹」(哈希记录),执行负载存储完整清单。节点执行区块时会核对,清单里写的访问记录是否真的和区块执行过程一致;如果对不上,区块就无效。


这件事为什么重要?今天以太坊执行交易时,很多数据访问只有真正跑到那一步才知道。节点不知道一批交易会不会同时读写同一个账户或存储槽,就很难放心地并行处理。BAL 相当于把区块执行中的访问轨迹显式写出来,让客户端可以做并行磁盘读取、并行交易验证、并行状态根计算,也能在某些场景下不完整重放交易就更新状态。它不是直接让用户手续费下降的按钮,而是给客户端工程打开并行化空间。


但 Glamsterdam 的扩容逻辑不只有「把路修宽」。它还要管住以太坊数据库的长期膨胀。EIP-8037 提高状态创建成本,并引入每状态字节成本 CPSB。状态可以理解为以太坊必须长期保存的数据库内容,比如新账户、新合约、新存储槽。交易执行完就结束,状态却会留在所有节点要维护的账本里;如果状态增长太快,运行节点会越来越贵,去中心化也会被慢慢挤压。


EIP-8037 给出的背景数字很直观:截至 2026 年 1 月,一个专用于状态的 Geth 节点数据库约为 390 GiB;主网 Gas 上限从 3000 万提高到 6000 万后,每日新增状态从约 105 MiB 上升到约 326 MiB,折算成年增长约 116 GiB。若在 2 亿 Gas 上限下按比例外推,状态年增长可能达到约 387 GiB,并在不到一年内突破 650 GiB 这一性能退化阈值。


所以,EIP-8037 想做的是把「临时计算」和「永久占数据库」分开定价。创建新状态会更贵,因为它给网络带来的不是一次性计算成本,而是长期存储负担。


Vitalik Buterin 也在解释 Glamsterdam 扩容路线时提到,Glamsterdam 会把状态创建成本从执行与 calldata 成本中分出来:目标是让执行容量可以扩大得更多,而状态规模不要按同样速度膨胀。


放在一起看,BAL 让节点更容易并行处理区块,解决的是「跑得更快」;状态创建重定价让长期占用数据库的操作付出更高成本,解决的是「别把账本越撑越胖」。Glamsterdam 的扩容不是简单提高 Gas limit,而是在问一个更现实的问题:以太坊能否装下更多交易,同时避免区块传播、交易验证和状态存储压力失控。


Glamsterdam EIP 清单成形:哪些已定,哪些还在等?


截至 2026 年 6 月 23 日,根据 Forkcast 上有关以太坊升级的跟踪内容,当前以太坊开发者正在对 Glamsterdam 升级进行 devnets 环境测试,8 月 3 日将在 Sepolia 上线,9 月 16 日将在主网上线(具体上线时间可能有变动)。




当前计划纳入 Glamsterdam 清单的有 10 个 EIP:


  • EIP-7708(ETH 转账也会触发日志,方便索引和追踪原生 ETH 转账)
  • EIP-7732(ePBS,把提议者和构建者分工写进协议,减少对协议外 relay 的依赖)
  • EIP-7778(取消 Gas refund 相关的区块 Gas 记账,让区块 Gas 计算更简单)
  • EIP-7843(新增 SLOTNUM 操作码,让合约能读取当前 slot 编号)
  • EIP-7928(区块级访问列表 BAL,记录区块执行访问过的账户和存储位置,为并行验证铺路)
  • EIP-7954(提高最大合约大小上限,允许更大的合约字节码)
  • EIP-7976(提高 calldata floor cost,调整 calldata 的最低成本)
  • EIP-7981(提高访问列表成本,重新校准 access list 的 Gas 定价)
  • EIP-8024(向后兼容的 SWAPN、DUPN、EXCHANGE 操作码,增强 EVM 栈操作能力)
  • EIP-8037(提高状态创建 Gas 成本,抑制状态数据库过快膨胀)


这些 EIP 大致可以分成几类:第一类是出块和验证流程重构,以 EIP-7732 和 EIP-7928 为核心;第二类是资源定价调整,包括 EIP-7778、EIP-7976、EIP-7981 和 EIP-8037;第三类是 EVM 和开发者体验改动,包括 EIP-7708、EIP-7843、EIP-7954、EIP-8024。


换句话说,Glamsterdam 不是只改一个功能点,而是在同时升级出块分工、并行验证、Gas 定价和 EVM 可用性。


另有一批 EIP 仍在 「考虑纳入」清单:


  • EIP-2780(按资源拆分交易 intrinsic Gas)
  • EIP-7610(非空存储账户创建合约时回滚)
  • EIP-7688(面向未来兼容的共识层数据结构)
  • EIP-7904(计算 Gas 成本分析,可能会被从 Glamsterdam 中剔除)
  • EIP-7975(eth/70,部分区块收据列表)
  • EIP-7997(确定性工厂合约)
  • EIP-8038(状态访问 Gas 成本更新)
  • EIP-8045(排除已被罚没验证者继续提议区块)
  • EIP-8061(提高退出和合并 churn)
  • EIP-8070(eth/72,Sparse Blobpool)
  • EIP-8080(让退出使用 consolidation queue)
  • EIP-8136(数据列广播的 cell-level deltas)
  • EIP-8159(eth/71,区块访问列表交换)
  • EIP-8246(移除 SELFDESTRUCT burn)
  • EIP-8282(Builder Execution Requests,给 ePBS 构建者提供专门的注册和退出请求)


此外,Forkcast 目前还把 EIP-8254(限制每个执行层区块里的 deposit requests 数量为 8192 个)列为「建议纳入」清单。


从质押者角度看,考虑纳入清单中的 EIP-8061 和 EIP-8080 尤其值得关注。对质押者来说,这意味着退出流动性可能改善。Figment 在 2026 年 5 月 5 日文章中称,机构质押者最需要关注 ePBS、EIP-8061 和 EIP-8080,并估算截至 2026 年 4 月约 3890 万枚 ETH 质押规模下,EIP-8061 可把退出 churn limit 从 256 ETH/epoch 提高到约 1187 ETH/epoch,EIP-8080 则让普通退出可以利用合并队列的空余能力。Figment 同时提醒,所有主网上线前的数字都应视为推测。


来源:Figment


协议在升级,基金会成员也在变动


Glamsterdam 的技术准备,和以太坊基金会协议集群(Protocol cluster)的人事调整几乎同时发生。以太坊基金会 2026 年 5 月 11 日博客称,Glamsterdam 已达到几个里程碑:2 亿 Gas limit floor 被建立为可信的 post-Glamsterdam 目标,ePBS 在多客户端 Glamsterdam devnet 中稳定运行,EIP-8037 完成定稿。


同一篇文章宣布 Protocol cluster 的领导交接:Will Corcoran、Kev Wedderburn、Fredrik 将成为新的协议集群协调者。原协调者 Barnabé Monnot、Tim Beiko 离开以太坊基金会,Alex Stokes 休假。


基金会对三位新协调者的分工描述是:Will Corcoran 具备跨团队协调经验;Kev Wedderburn 领导 zkEVM 团队;Fredrik 领导 Protocol Security 和 Trillion Dollar Security 项目。


这轮变化没有停留在协议团队。2026 年 6 月 18 日,Hsiao-Wei Wang 发文称,在休假后决定辞去以太坊基金会联合执行董事和董事会成员职务


以太坊基金会前研究员 Dankrad Feist 在 2026 年 6 月 19 日表示,离开 EF 的人是 CROPS(抗审查与抗捕获、开源、隐私、安全)信仰者,问题不在战略,而在管理,并称这波人才外流对以太坊偏利空。Miden 联合创始人 Azeem 则从相反方向解读,认为 EF 难以自我改变,人才流出后可能成立更能执行以太坊路线图的新组织,对生态长期反而是净利好。


以太坊基金会内部人士的口径更像一次定边界。以太坊基金会临时联席执行董事 Bastian Aue(Aerugo)回应称,以太坊基金会成员离职原因包括战略分歧、岗位适配、机构正常变动或个人选择,EF 不会在社交媒体上讨论个人人事问题,但表示离职者应有体面的离场方式。


以太坊基金会随后用官方推特 thread 给出更明确的组织叙事:实现以太坊潜力需要多个组织组成联盟,过去一年已有若干组织共同增强生态韧性和能力。EF 列出的例子包括:6 月 23 日宣布的 ethlabs(一个聚焦以太坊与 ETH 下一阶段采用的非营利研发实验室)、2026 年 4 月启动的 Eth Apps Guild(面向以太坊原生应用真实采用,尤其关注新兴市场)(2026 年启动的 Ethereum Economic Zone(目标是通过同步可组合性和零知识实时证明降低生态碎片化)以及 2025 年成立的 Argot(一个维护 Solidity 与开源编译器工具的工程师和研究员自治集体)。


这条官方 thread 让以太坊基金会的近期变化更容易理解:基金会不是单纯把人和项目往外推,也不是放弃中心协调,而是可能在把以太坊路线图拆给更多组织共同承担。


小结


所以,Glamsterdam 不该只被看成一组 EIP。它是以太坊在更高吞吐量之前做的一次工程重排:谁建块、谁提议、谁验证、哪些数据必须长期保存、哪些资源该更贵,都被重新放上桌面。


技术路线的关键词是 ePBS、BAL 和多维 Gas 的开端;组织路线的关键词则更现实:以太坊基金会能否保持协调力,以及基金会之外的新组织能否把这份协调力变成持续交付。


参考:
https://forkcast.org/upgrade/glamsterdam/
https://ethereum.org/roadmap/glamsterdam/
https://blog.ethereum.org/2026/05/11/protocol-update-may-26
https://x.com/VitalikButerin/status/2027403360484430122

Trending Cryptos

Related Questions

Q以太坊 Glamsterdam 升级的主要目标是什么?

AGlamsterdam 升级的主要目标不是单纯提高吞吐量,而是重排出块流程、验证流程和资源定价方式,为未来提高 Gas 上限、扩大 blob 容量和实现并行执行奠定基础。

Q什么是 ePBS (EIP-7732)?它解决了当前以太坊出块流程中的什么问题?

AePBS(协议内提议者-构建者分离)是将区块提议者(负责选择共识区块)和构建者(负责准备交易内容)的分工写入核心协议。它解决了当前对 MEV-Boost、第三方中继等协议外基础设施的依赖,并将共识与执行验证的时间窗口拆分开,使执行负载的传播窗口从约2秒延长至约9秒,从而为安全地提高区块容量、支持未来更大规模扩容创造条件。

Q区块级访问列表(BAL, EIP-7928)的作用是什么?它对以太坊性能有何潜在影响?

A区块级访问列表(BAL)的作用是为每个区块记录其执行过程中访问过的所有账户和存储位置及其最终状态。这使得节点在执行区块前就能预知数据访问模式,从而能够更安全、更高效地进行并行磁盘读取、并行交易验证和并行状态根计算,为客户端工程的并行化优化打开了空间,有助于提升网络处理能力。

QEIP-8037 旨在解决什么问题?它如何调整以太坊的资源定价模型?

AEIP-8037 旨在解决以太坊状态(数据库)过快膨胀导致节点运行成本飙升、威胁去中心化的问题。它提高了创建新状态(如新账户、合约、存储槽)的 Gas 成本,并引入每状态字节成本(CPSB)。这项改动将‘临时计算’成本和‘永久占用数据库’的成本分开定价,目的是在允许执行容量扩大的同时,抑制状态规模以同比例增长,确保网络的长期可持续性。

Q从质押者(Staker)的角度看,Glamsterdam 升级中哪些潜在的 EIP 值得特别关注?为什么?

A质押者应特别关注考虑纳入清单中的 EIP-8061 和 EIP-8080。EIP-8061 预计能显著提高每个纪元(epoch)的退出额度(churn limit),从而改善质押 ETH 的退出流动性。EIP-8080 则可能允许普通退出利用合并队列的空余能力,进一步优化退出流程。这些改动旨在让大规模质押资金的进出变得更加顺畅。

Related Reads

Chainlink Adds 6,100 Wallets In Two Days In Strongest Growth Burst Of 2026

Chainlink experienced its strongest wallet growth burst of 2026, adding approximately 6,100 new addresses in just two days. This notable increase in network participation occurred despite LINK's price trading in a difficult market environment alongside other altcoins. The surge in new wallets is seen as a positive signal for user and investor interest, suggesting the ecosystem continues to attract attention even when price action is weak. Wallet growth is considered a useful metric as it measures real participation rather than just price speculation. For an infrastructure project like Chainlink, whose value is tied to oracle services, data, and real-world assets, such growth indicates ongoing engagement with its core technology. However, the article notes that this data point, while constructive, is not conclusive on its own. The nature of the new wallets—whether they belong to small holders, new users, or exchange-related entities—remains unclear. The report maintains a balanced perspective, stating that while this wallet growth is a positive adoption signal for LINK bulls, it does not guarantee a price increase. Skeptics may question whether this user growth translates into value capture for the token. The key takeaway is that this burst of activity should be monitored alongside other factors like transaction volume, price structure, and broader market trends for a more complete picture. The signal requires follow-through in price and demand to be fully validated.

bitcoinist1h ago

Chainlink Adds 6,100 Wallets In Two Days In Strongest Growth Burst Of 2026

bitcoinist1h ago

Trading

Spot

Hot Articles

What is SONIC

Sonic: Pioneering the Future of Gaming in Web3 Introduction to Sonic In the ever-evolving landscape of Web3, the gaming industry stands out as one of the most dynamic and promising sectors. At the forefront of this revolution is Sonic, a project designed to amplify the gaming ecosystem on the Solana blockchain. Leveraging cutting-edge technology, Sonic aims to deliver an unparalleled gaming experience by efficiently processing millions of requests per second, ensuring that players enjoy seamless gameplay while maintaining low transaction costs. This article delves into the intricate details of Sonic, exploring its creators, funding sources, operational mechanics, and the timeline of significant events that have shaped its journey. What is Sonic? Sonic is an innovative layer-2 network that operates atop the Solana blockchain, specifically tailored to enhance the existing Solana gaming ecosystem. It accomplishes this through a customised, VM-agnostic game engine paired with a HyperGrid interpreter, facilitating sovereign game economies that roll up back to the Solana platform. The primary goals of Sonic include: Enhanced Gaming Experiences: Sonic is committed to offering lightning-fast on-chain gameplay, allowing players and developers to engage with games at previously unattainable speeds. Atomic Interoperability: This feature enables transactions to be executed within Sonic without the need to redeploy Solana programmes and accounts. This makes the process more efficient and directly benefits from Solana Layer1 services and liquidity. Seamless Deployment: Sonic allows developers to write for Ethereum Virtual Machine (EVM) based systems and execute them on Solana’s SVM infrastructure. This interoperability is crucial for attracting a broader range of dApps and decentralised applications to the platform. Support for Developers: By offering native composable gaming primitives and extensible data types - dining within the Entity-Component-System (ECS) framework - game creators can craft intricate business logic with ease. Overall, Sonic's unique approach not only caters to players but also provides an accessible and low-cost environment for developers to innovate and thrive. Creator of Sonic The information regarding the creator of Sonic is somewhat ambiguous. However, it is known that Sonic's SVM is owned by the company Mirror World. The absence of detailed information about the individuals behind Sonic reflects a common trend in several Web3 projects, where collective efforts and partnerships often overshadow individual contributions. Investors of Sonic Sonic has garnered considerable attention and support from various investors within the crypto and gaming sectors. Notably, the project raised an impressive $12 million during its Series A funding round. The round was led by BITKRAFT Ventures, with other notable investors including Galaxy, Okx Ventures, Interactive, Big Brain Holdings, and Mirana. This financial backing signifies the confidence that investment foundations have in Sonic’s potential to revolutionise the Web3 gaming landscape, further validating its innovative approaches and technologies. How Does Sonic Work? Sonic utilises the HyperGrid framework, a sophisticated parallel processing mechanism that enhances its scalability and customisability. Here are the core features that set Sonic apart: Lightning Speed at Low Costs: Sonic offers one of the fastest on-chain gaming experiences compared to other Layer-1 solutions, powered by the scalability of Solana’s virtual machine (SVM). Atomic Interoperability: Sonic enables transaction execution without redeployment of Solana programmes and accounts, effectively streamlining the interaction between users and the blockchain. EVM Compatibility: Developers can effortlessly migrate decentralised applications from EVM chains to the Solana environment using Sonic’s HyperGrid interpreter, increasing the accessibility and integration of various dApps. Ecosystem Support for Developers: By exposing native composable gaming primitives, Sonic facilitates a sandbox-like environment where developers can experiment and implement business logic, greatly enhancing the overall development experience. Monetisation Infrastructure: Sonic natively supports growth and monetisation efforts, providing frameworks for traffic generation, payments, and settlements, thereby ensuring that gaming projects are not only viable but also sustainable financially. Timeline of Sonic The evolution of Sonic has been marked by several key milestones. Below is a brief timeline highlighting critical events in the project's history: 2022: The Sonic cryptocurrency was officially launched, marking the beginning of its journey in the Web3 gaming arena. 2024: June: Sonic SVM successfully raised $12 million in a Series A funding round. This investment allowed Sonic to further develop its platform and expand its offerings. August: The launch of the Sonic Odyssey testnet provided users with the first opportunity to engage with the platform, offering interactive activities such as collecting rings—a nod to gaming nostalgia. October: SonicX, an innovative crypto game integrated with Solana, made its debut on TikTok, capturing the attention of over 120,000 users within a short span. This integration illustrated Sonic’s commitment to reaching a broader, global audience and showcased the potential of blockchain gaming. Key Points Sonic SVM is a revolutionary layer-2 network on Solana explicitly designed to enhance the GameFi landscape, demonstrating great potential for future development. HyperGrid Framework empowers Sonic by introducing horizontal scaling capabilities, ensuring that the network can handle the demands of Web3 gaming. Integration with Social Platforms: The successful launch of SonicX on TikTok displays Sonic’s strategy to leverage social media platforms to engage users, exponentially increasing the exposure and reach of its projects. Investment Confidence: The substantial funding from BITKRAFT Ventures, among others, emphasizes the robust backing Sonic has, paving the way for its ambitious future. In conclusion, Sonic encapsulates the essence of Web3 gaming innovation, striking a balance between cutting-edge technology, developer-centric tools, and community engagement. As the project continues to evolve, it is poised to redefine the gaming landscape, making it a notable entity for gamers and developers alike. As Sonic moves forward, it will undoubtedly attract greater interest and participation, solidifying its place within the broader narrative of blockchain gaming.

1.7k Total ViewsPublished 2024.04.04Updated 2024.12.03

What is SONIC

What is $S$

Understanding SPERO: A Comprehensive Overview Introduction to SPERO As the landscape of innovation continues to evolve, the emergence of web3 technologies and cryptocurrency projects plays a pivotal role in shaping the digital future. One project that has garnered attention in this dynamic field is SPERO, denoted as SPERO,$$s$. This article aims to gather and present detailed information about SPERO, to help enthusiasts and investors understand its foundations, objectives, and innovations within the web3 and crypto domains. What is SPERO,$$s$? SPERO,$$s$ is a unique project within the crypto space that seeks to leverage the principles of decentralisation and blockchain technology to create an ecosystem that promotes engagement, utility, and financial inclusion. The project is tailored to facilitate peer-to-peer interactions in new ways, providing users with innovative financial solutions and services. At its core, SPERO,$$s$ aims to empower individuals by providing tools and platforms that enhance user experience in the cryptocurrency space. This includes enabling more flexible transaction methods, fostering community-driven initiatives, and creating pathways for financial opportunities through decentralised applications (dApps). The underlying vision of SPERO,$$s$ revolves around inclusiveness, aiming to bridge gaps within traditional finance while harnessing the benefits of blockchain technology. Who is the Creator of SPERO,$$s$? The identity of the creator of SPERO,$$s$ remains somewhat obscure, as there are limited publicly available resources providing detailed background information on its founder(s). This lack of transparency can stem from the project's commitment to decentralisation—an ethos that many web3 projects share, prioritising collective contributions over individual recognition. By centring discussions around the community and its collective goals, SPERO,$$s$ embodies the essence of empowerment without singling out specific individuals. As such, understanding the ethos and mission of SPERO remains more important than identifying a singular creator. Who are the Investors of SPERO,$$s$? SPERO,$$s$ is supported by a diverse array of investors ranging from venture capitalists to angel investors dedicated to fostering innovation in the crypto sector. The focus of these investors generally aligns with SPERO's mission—prioritising projects that promise societal technological advancement, financial inclusivity, and decentralised governance. These investor foundations are typically interested in projects that not only offer innovative products but also contribute positively to the blockchain community and its ecosystems. The backing from these investors reinforces SPERO,$$s$ as a noteworthy contender in the rapidly evolving domain of crypto projects. How Does SPERO,$$s$ Work? SPERO,$$s$ employs a multi-faceted framework that distinguishes it from conventional cryptocurrency projects. Here are some of the key features that underline its uniqueness and innovation: Decentralised Governance: SPERO,$$s$ integrates decentralised governance models, empowering users to participate actively in decision-making processes regarding the project’s future. This approach fosters a sense of ownership and accountability among community members. Token Utility: SPERO,$$s$ utilises its own cryptocurrency token, designed to serve various functions within the ecosystem. These tokens enable transactions, rewards, and the facilitation of services offered on the platform, enhancing overall engagement and utility. Layered Architecture: The technical architecture of SPERO,$$s$ supports modularity and scalability, allowing for seamless integration of additional features and applications as the project evolves. This adaptability is paramount for sustaining relevance in the ever-changing crypto landscape. Community Engagement: The project emphasises community-driven initiatives, employing mechanisms that incentivise collaboration and feedback. By nurturing a strong community, SPERO,$$s$ can better address user needs and adapt to market trends. Focus on Inclusion: By offering low transaction fees and user-friendly interfaces, SPERO,$$s$ aims to attract a diverse user base, including individuals who may not previously have engaged in the crypto space. This commitment to inclusion aligns with its overarching mission of empowerment through accessibility. Timeline of SPERO,$$s$ Understanding a project's history provides crucial insights into its development trajectory and milestones. Below is a suggested timeline mapping significant events in the evolution of SPERO,$$s$: Conceptualisation and Ideation Phase: The initial ideas forming the basis of SPERO,$$s$ were conceived, aligning closely with the principles of decentralisation and community focus within the blockchain industry. Launch of Project Whitepaper: Following the conceptual phase, a comprehensive whitepaper detailing the vision, goals, and technological infrastructure of SPERO,$$s$ was released to garner community interest and feedback. Community Building and Early Engagements: Active outreach efforts were made to build a community of early adopters and potential investors, facilitating discussions around the project’s goals and garnering support. Token Generation Event: SPERO,$$s$ conducted a token generation event (TGE) to distribute its native tokens to early supporters and establish initial liquidity within the ecosystem. Launch of Initial dApp: The first decentralised application (dApp) associated with SPERO,$$s$ went live, allowing users to engage with the platform's core functionalities. Ongoing Development and Partnerships: Continuous updates and enhancements to the project's offerings, including strategic partnerships with other players in the blockchain space, have shaped SPERO,$$s$ into a competitive and evolving player in the crypto market. Conclusion SPERO,$$s$ stands as a testament to the potential of web3 and cryptocurrency to revolutionise financial systems and empower individuals. With a commitment to decentralised governance, community engagement, and innovatively designed functionalities, it paves the way toward a more inclusive financial landscape. As with any investment in the rapidly evolving crypto space, potential investors and users are encouraged to research thoroughly and engage thoughtfully with the ongoing developments within SPERO,$$s$. The project showcases the innovative spirit of the crypto industry, inviting further exploration into its myriad possibilities. While the journey of SPERO,$$s$ is still unfolding, its foundational principles may indeed influence the future of how we interact with technology, finance, and each other in interconnected digital ecosystems.

75 Total ViewsPublished 2024.12.17Updated 2024.12.17

What is $S$

What is AGENT S

Agent S: The Future of Autonomous Interaction in Web3 Introduction In the ever-evolving landscape of Web3 and cryptocurrency, innovations are constantly redefining how individuals interact with digital platforms. One such pioneering project, Agent S, promises to revolutionise human-computer interaction through its open agentic framework. By paving the way for autonomous interactions, Agent S aims to simplify complex tasks, offering transformative applications in artificial intelligence (AI). This detailed exploration will delve into the project's intricacies, its unique features, and the implications for the cryptocurrency domain. What is Agent S? Agent S stands as a groundbreaking open agentic framework, specifically designed to tackle three fundamental challenges in the automation of computer tasks: Acquiring Domain-Specific Knowledge: The framework intelligently learns from various external knowledge sources and internal experiences. This dual approach empowers it to build a rich repository of domain-specific knowledge, enhancing its performance in task execution. Planning Over Long Task Horizons: Agent S employs experience-augmented hierarchical planning, a strategic approach that facilitates efficient breakdown and execution of intricate tasks. This feature significantly enhances its ability to manage multiple subtasks efficiently and effectively. Handling Dynamic, Non-Uniform Interfaces: The project introduces the Agent-Computer Interface (ACI), an innovative solution that enhances the interaction between agents and users. Utilizing Multimodal Large Language Models (MLLMs), Agent S can navigate and manipulate diverse graphical user interfaces seamlessly. Through these pioneering features, Agent S provides a robust framework that addresses the complexities involved in automating human interaction with machines, setting the stage for myriad applications in AI and beyond. Who is the Creator of Agent S? While the concept of Agent S is fundamentally innovative, specific information about its creator remains elusive. The creator is currently unknown, which highlights either the nascent stage of the project or the strategic choice to keep founding members under wraps. Regardless of anonymity, the focus remains on the framework's capabilities and potential. Who are the Investors of Agent S? As Agent S is relatively new in the cryptographic ecosystem, detailed information regarding its investors and financial backers is not explicitly documented. The lack of publicly available insights into the investment foundations or organisations supporting the project raises questions about its funding structure and development roadmap. Understanding the backing is crucial for gauging the project's sustainability and potential market impact. How Does Agent S Work? At the core of Agent S lies cutting-edge technology that enables it to function effectively in diverse settings. Its operational model is built around several key features: Human-like Computer Interaction: The framework offers advanced AI planning, striving to make interactions with computers more intuitive. By mimicking human behaviour in tasks execution, it promises to elevate user experiences. Narrative Memory: Employed to leverage high-level experiences, Agent S utilises narrative memory to keep track of task histories, thereby enhancing its decision-making processes. Episodic Memory: This feature provides users with step-by-step guidance, allowing the framework to offer contextual support as tasks unfold. Support for OpenACI: With the ability to run locally, Agent S allows users to maintain control over their interactions and workflows, aligning with the decentralised ethos of Web3. Easy Integration with External APIs: Its versatility and compatibility with various AI platforms ensure that Agent S can fit seamlessly into existing technological ecosystems, making it an appealing choice for developers and organisations. These functionalities collectively contribute to Agent S's unique position within the crypto space, as it automates complex, multi-step tasks with minimal human intervention. As the project evolves, its potential applications in Web3 could redefine how digital interactions unfold. Timeline of Agent S The development and milestones of Agent S can be encapsulated in a timeline that highlights its significant events: September 27, 2024: The concept of Agent S was launched in a comprehensive research paper titled “An Open Agentic Framework that Uses Computers Like a Human,” showcasing the groundwork for the project. October 10, 2024: The research paper was made publicly available on arXiv, offering an in-depth exploration of the framework and its performance evaluation based on the OSWorld benchmark. October 12, 2024: A video presentation was released, providing a visual insight into the capabilities and features of Agent S, further engaging potential users and investors. These markers in the timeline not only illustrate the progress of Agent S but also indicate its commitment to transparency and community engagement. Key Points About Agent S As the Agent S framework continues to evolve, several key attributes stand out, underscoring its innovative nature and potential: Innovative Framework: Designed to provide an intuitive use of computers akin to human interaction, Agent S brings a novel approach to task automation. Autonomous Interaction: The ability to interact autonomously with computers through GUI signifies a leap towards more intelligent and efficient computing solutions. Complex Task Automation: With its robust methodology, it can automate complex, multi-step tasks, making processes faster and less error-prone. Continuous Improvement: The learning mechanisms enable Agent S to improve from past experiences, continually enhancing its performance and efficacy. Versatility: Its adaptability across different operating environments like OSWorld and WindowsAgentArena ensures that it can serve a broad range of applications. As Agent S positions itself in the Web3 and crypto landscape, its potential to enhance interaction capabilities and automate processes signifies a significant advancement in AI technologies. Through its innovative framework, Agent S exemplifies the future of digital interactions, promising a more seamless and efficient experience for users across various industries. Conclusion Agent S represents a bold leap forward in the marriage of AI and Web3, with the capacity to redefine how we interact with technology. While still in its early stages, the possibilities for its application are vast and compelling. Through its comprehensive framework addressing critical challenges, Agent S aims to bring autonomous interactions to the forefront of the digital experience. As we move deeper into the realms of cryptocurrency and decentralisation, projects like Agent S will undoubtedly play a crucial role in shaping the future of technology and human-computer collaboration.

753 Total ViewsPublished 2025.01.14Updated 2025.01.14

What is AGENT S

Discussions

Welcome to the HTX Community. Here, you can stay informed about the latest platform developments and gain access to professional market insights. Users' opinions on the price of S (S) are presented below.

活动图片