OpenAI「最开放」一次,Codex不再独宠GPT

marsbitPublished on 2026-06-22Last updated on 2026-06-22

Abstract

OpenAI宣布其编程智能体Codex不再只支持自家的GPT模型,而是开放了“可插拔模型接口层”,允许开发者通过配置接入Ollama、LM Studio等本地开源模型,或通过第三方路由服务接入DeepSeek等外部模型。这一变化被社区称为OpenAI“最开放”的一次举动,意味着用户可以根据需求、成本或隐私考虑灵活切换模型,甚至实现离线运行。然而,接入过程并非完全无障碍:Codex主要基于OpenAI的Responses API协议,而多数开源模型采用Chat Completions接口,因此常需社区工具(如CC Switch、LiteLLM)进行协议转换和路由中转才能顺利工作。此举被视为OpenAI从“卖模型”向“建平台”的战略转变,旨在通过控制生态入口和接口标准来巩固其地位,而开发者则获得了更经济、灵活且能保护代码隐私的使用选择。

有人欢呼,这是OpenAI「最开放」的一次。给Codex装上能随便换模型的插座,等于亲手填平自己模型的护城河。它图什么?

一夜之间,OpenAI的编程智能体Codex不再只认自家的GPT,而是面向所有开源模型开放了。

最先察觉这一信号的,是开发者社区。

有开发者在Codex的命令行(CLI)和软件开发工具包(SDK)配置里,翻出一个陌生的开源模式(OSS mode),官方也叫它本地提供方(local providers)。

在命令行里加一个--oss,它就能在本地跑起开源模型;想接别的,改一个字段就行。

要知道,OpenAI在过去几乎就是「闭源」的代名词,Codex只认OpenAI自家的GPT。

但现在不一样了,仅仅一行配置,就能切换到本地的Ollama、LM Studio等模型服务。

这事很快便在开发者圈里炸了。

OpenAI Codex团队负责人Tibo还不忘亲自在X上提醒道:

Codex的App、CLI和SDK,可以搭配任意开源模型使用,并非只能用OpenAI自家的。

这条提醒,很快被Hugging Face联合创始人Thomas Wolf转发,还加上一句感叹:今天才知道,Codex里居然能用开源模型了。

有网友直呼,这可能是OpenAI有史以来最「开放」的一次,是件了不起的大事。

社区的动作更快。

官方文档一出,开发者立刻尝试把一些开源模型接进去,还顺手讨论起更省token的混搭方案。

但也有人很快就撞上了墙。

开发者Filip Baturan想在Codex里搭一套混合方案:让GPT做规划,再让开源模型当执行者。

可试下来他发现,Codex要求接进来的模型也用同一套工具调用协议,而开源模型未必有。

一边是「史上最开放」的欢呼,一边是接不进去的协议。

这一回,OpenAI到底开放到了哪一步?

开源模型是如何接入Codex的?

OpenAI这次对Codex的开放,本质上并不是开放模型本身,而是开放了「模型接入层」。

换句话说,它没有开放GPT模型,而是给Codex加了一个「可插拔模型接口层」。

这个能力通过一个叫模型提供方(model_providers)的配置来完成的。

开发者可以在配置文件中注册多个「模型提供方」,每个提供方包含四类信息:

访问地址(base_url)、通信协议(wire_api)、鉴权方式(env_key),以及模型映射关系(model)。

Codex启动时会根据配置选择对应模型提供方,从而将请求路由到不同模型服务,包括OpenAI自身模型、本地Ollama模型或DeepSeek等第三方API。

Codex的model_providers配置示例。base_url是模型地址,而协议字段wire_api只认responses一个值。

Mistral、企业自建的代理、第三方中转站,都能这么接入Codex。

有网友把这套能力的亮点总结为:不被一家厂商绑死,按需切换,隐私和成本自己说了算。

更省事的是,你还能把这些设置都保存为「配置档案」,调试时想用哪个,命令行里点它的名字就能切过去。

比起上面的手动配置,还有一个更直接的开关:--oss。加上这个参数,Codex就直接去连本地的开源模型服务。

默认就这两个:Ollama和LM Studio。前者是本地跑大模型最流行的工具,后者是带图形界面的桌面平替。

Codex --oss连本地模型实战截图:左侧Codex CLI(v0.92.0)用--oss调用本地模型,右侧LM Studio在本机1234端口加载openai/gpt-oss-20b(12.11GB)对外提供服务,全程本地离线。

也就是说,通过本地模型服务和网络权限配置,你可以让Codex在本机完成代码生成与推理,并在一定程度上实现离线运行与本地化处理。

Codex CLI界面:启动信息里model一行标着当前模型(gpt-5.2-codex),后面跟着「/model to change」,一句命令就能切换模型,整套智能体就跑在本机。

不过,插座装上了,不代表什么电器插上都能转。

接进来的模型,通常得兼容对话补全(Chat Completions)这套接口格式;至于工具调用(function calling)这类更复杂的能力能不能完整跑通,官方没打包票,得一个个试。

也正因为协议常对不齐,社区还得自己写路由工具在中间转译,而这些,都是目前社区尝试出来的解法,OpenAI官方还没有为此背书。

当GPT与开源模型混搭

在Codex里一起干活

OpenAI官方这边刚开了个口,社区那边已经玩得热闹起来。

原因很简单:Codex好用,但用OpenAI的模型按token计费,太贵。

于是许多开发者都把眼光投向了开源模型。

DeepSeek是很多中文开发者最熟悉的开源模型之一,一个自然的问题是:Codex能不能直接用上DeepSeek?

CC Switch给出的答案是:可以,但不能直接接,需要多一层「中转」。

CC Switch社区教程:《在Codex里用本地路由跑DeepSeek》

其社区教程《在Codex里用本地路由跑DeepSeek》指出,原因在于新版Codex主要基于OpenAI的Responses API,而DeepSeek以及大多数开源模型接口仍以Chat Completions为主。

两套接口在请求结构、流式输出方式、以及工具调用机制上都不完全一致。

所以如果直接把DeepSeek的地址填进Codex,并不能顺利工作,常见情况是请求参数不匹配或返回结果无法被解析,导致调用失败或输出异常,而不是简单的「连不上」。

社区的解法,是在中间加一层本地「路由层」或「协议转换器」。

基本流程如下:

1.Codex按Responses API 发请求;

2.路由层把它转换成Chat Completions格式;

3.转发给DeepSeek等开源模型;

4.再把返回结果转换回Codex能识别的Responses格式。

类似的能力并不只有CC Switch提供。

LiteLLM、claude-code-router,以及开发者自建的各种代理服务,本质上都在解决同一个问题:让不同模型通过统一接口规范进行交互。

OpenAI这次开了道口子,但真正落地,还需要社区自己「添砖加瓦」。

这一切背后,是一套混合路由的玩法。

比如让GPT负责规划:拆解任务、设计架构、想清楚要干什么。让开源模型负责执行:把方案变成能跑的代码、批量改文件。

通过这样的混搭,同样一个任务,成本可能砍掉一大半。

除了更省钱,把Codex配上本地的开源模型,代码一行都不出你自己的电脑。

对那些不想把私人项目传上云、也不想一直给API交钱的个人开发者来说,这诱惑一点也不小。

模型战争结束了

接口战争开始了

过去几年,所有人都以为护城河是模型。谁的模型参数大、跑分高、回答聪明,谁就能赢。

但这一次,OpenAI把Codex这一层做成了一个可插拔的接口,它提供的价值也开始向生态入口转移。

OpenAI的算盘,很可能是从一个卖模型的厂商,向一个卖平台和框架的玩家转身:模型随你换,工具得是我的。

谁占住了开发者每天打开的那个入口,谁就握住了分发,就能坐上生态的核心位置。

这也不是OpenAI头一回在开源生态上的布局。

虽然它自2019年推出GPT-2之后长期未再发布开放权重大语言模型,在开源生态(如Llama、DeepSeek等模型)快速发展下,它还是在2025年8月重新推出gpt-oss系列开放权重模型。

这些模型随后被社区工具链(如Ollama、LM Studio等)迅速集成支持,正是如今Codex --oss默认连接支持的。

配置层,OpenAI确实开放了模型接入能力,通过模型提供方抽象层允许第三方模型接入,但并不是任意模型都能直接使用,必须符合其接口协议或通过适配层进行转换。

在协议层,它保留了一道关键约束:以Responses API作为主要交互标准,同时允许通过兼容层支持Chat Completions等其他模型接口。

也就是说,无论接入哪种模型,都需要对齐到OpenAI定义的请求与响应结构,它最终想要做的是把接口标准攥在自己手里。

从这个角度看,这层过去容易被忽视的接口协议,正在成为新的竞争焦点。

也许,这次OpenAI是想用一个不起眼的配置开关,发动一场AI编程的入口之战,这使得它与Anthropic下一阶段的较量,已经不在模型上。

对每天打开Codex的开发者来说,这更是实打实的便利:能跑开源模型、能省下token、还能本地离线。

但越用得顺手,越用得深入,也就越离不开这个入口。

参考资料:

https://x.com/thsottiaux/status/2067181377028538431

https://developers.openai.com/codex/config-advanced#oss-mode-local-providers

https://www.ccswitch.io/en/tutorials/codex-deepseek-routing-guide

本文来自微信公众号“新智元”,作者:ASI启示录,编辑:元宇

Trending Cryptos

Related Questions

QOpenAI对Codex做了什么样的调整,使其变得「最开放」?

AOpenAI为Codex引入了名为「开源模式」或「本地提供方」的模型接入层,允许开发者通过配置或命令行参数,将Codex与本地开源模型服务(如Ollama、LM Studio)或第三方API连接使用,不再仅限于自家的GPT模型。

Q开发者社区是如何发现Codex支持开源模型的?

A开发者在Codex的命令行和SDK配置中发现了一个陌生的「开源模式」设置,并通过添加命令行参数或修改配置字段,成功在本地运行起开源模型,随后OpenAI Codex团队负责人Tibo在X上亲自确认了这一功能。

Q开源模型接入Codex时可能遇到什么问题?社区如何解决?

A开源模型可能与Codex要求的协议(特别是Responses API)不完全兼容,尤其是工具调用等功能。社区的解决方案是在中间添加一层本地「路由层」或「协议转换器」,将请求和响应格式进行转换,以实现兼容。

QCodex支持开源模型对开发者有什么实际好处?

A主要好处包括:1) 降低使用成本,可以混搭GPT进行规划、开源模型执行来节省token费用;2) 增强隐私保护,代码可在本地离线处理,避免上传云端;3) 提高灵活性,可按需求自由切换不同模型供应商。

Q从战略角度看,OpenAI开放Codex的模型接入能力可能意在什么?

AOpenAI可能正从「卖模型」转向「卖平台和框架」,通过掌握模型接入层和接口标准(如Responses API),构建生态入口,占据开发者日常工具的分发核心,从而在AI编程领域建立新的竞争壁垒。

Related Reads

A Group of Suzhou Engineers Unexpectedly Attain Financial Freedom

In Suzhou, a group of engineers from Lianxun Instruments, a leader in optical communication testing equipment, have achieved remarkable wealth after the company's IPO. Listed just two months ago on the STAR Market, the company's stock price surged approximately 30 times, making it the only A-share stock priced above 2,000 yuan. This surge created substantial fortunes for nearly 100 technical employees who held a collective 15.91% stake through employee stock ownership platforms, valued at over 36 billion yuan at the current market cap. Among them, nearly 40 became billionaires, while even the smallest holdings exceeded 5 million yuan in value. Founded in 2017 by Hu Haiyang, Yang Jian, and Huang Jianjun, Lianxun Instruments was established to address China's reliance on foreign high-end testing instruments. The company grew rapidly with a strong focus on R&D, where technical staff make up nearly 80% of its workforce. Early implementation of employee stock plans helped retain this core talent. The company's explosive growth is fueled by booming AI computing demand, with clients including major global optical module leaders. Its revenue skyrocketed from 276 million yuan in 2023 to 1.194 billion yuan in 2025, turning a profit in 2024. The IPO has also generated massive returns for early investors, including Suzhou's state-owned capital, which saw a hundredfold return. This story reflects a broader trend in China's markets, where technology firms in AI, semiconductors, and optics are creating new wealth, rewarding engineers and technical teams who are now central to modern capital-driven success stories, marking a shift from previous eras dominated by internet and real estate tycoons.

marsbit2h ago

A Group of Suzhou Engineers Unexpectedly Attain Financial Freedom

marsbit2h ago

NVIDIA's Annual 'Most Dangerous' Paper: AI Self-Replicating Code, Unlimited Leveling and Evolution

NVIDIA's "Red Queen Gödel Machine" (RQGM) paper proposes a potentially groundbreaking AI self-evolution framework. It breaks from the long-stalled concept of the "Gödel Machine," which required mathematically proven beneficial self-modifications, by adopting an evolutionary approach. The core, and most striking, innovation is that the AI does not just evolve its own code in a static environment. Instead, it co-evolves both the "student" (the task-performing agent) and the "examiner" (the evaluation system that judges it). This creates a dynamic, recursive self-improvement loop inspired by the biological "Red Queen Hypothesis"—where continuous adaptation is needed just to maintain relative fitness. The mechanism operates in epochs. Within an epoch, a fixed examiner evaluates all candidate code variants. At epoch boundaries, a new, potentially more rigorous examiner can replace the old one, but only if it proves statistically superior on a held-out "ground truth" dataset. This "controlled utility evolution" aims to ensure progress is measurable and grounded. The paper demonstrates RQGM's effectiveness across three domains: 1. **Code Generation:** It achieved a 71.7% test-set pass rate (improving over a 69.9% SOTA) while using 1.35-1.72x fewer computational tokens. 2. **Paper Writing:** In a subjective task, the co-evolved writer and reviewer achieved a 40.5% acceptance rate by a fixed human panel, up from 21.8%. 3. **Math Proofs:** It evolved more accurate graders (at 3x lower cost) and higher-scoring provers. Notably, RQGM also mitigated a known LLM bias where AI reviewers favor AI-generated content. By specifically rewarding reviewers that correctly rejected AI-written papers from a historical pool, the evolved system achieved impartiality while maintaining 80% accuracy. The research has sparked significant discussion about the acceleration of Recursive Self-Improvement (RSI). Some, like Anthropic's Jack Clark, have predicted a high probability of highly autonomous, self-evolving AI emerging by 2028. The paper suggests that when an AI begins to design its own evaluators and push itself toward ever-higher standards in a recursive loop, it may be taking a fundamental step toward redefining intelligence and autonomy.

marsbit2h ago

NVIDIA's Annual 'Most Dangerous' Paper: AI Self-Replicating Code, Unlimited Leveling and Evolution

marsbit2h ago

Apple and the Power Rebalancing with 'The Microns': Dissecting the Profit Ledger Behind the iPhone

The article analyzes the shifting profit dynamics and power balance between Apple and memory suppliers like Micron within the iPhone supply chain. It highlights a social media post criticizing Apple for raising iPhone prices while blaming memory chip cost increases, despite historically paying suppliers like Micron very little. An estimated iPhone 18 cost breakdown is referenced. Historically, memory was a minor cost component. In 2017's iPhone X, memory accounted for only about 1.6-2.3% of the price, with Apple capturing nearly 50% net profit. Over time, memory's share of the Bill-of-Materials (BOM) cost has grown significantly, reaching an estimated 12-15% for the iPhone 17 series. The core driver of this change is soaring demand for memory from the AI industry, particularly for High Bandwidth Memory (HBM) and AI servers, which is diverting production capacity and squeezing supply for consumer electronics. Memory manufacturers, after enduring periods of low profits, now hold greater pricing power. This is reflected in their recent strong financials, like Micron's 84.6% gross margin. Apple CEO Tim Cook initially described the memory price pressure as unprecedented in his 40-year career, later calling it a "once-in-a-century flood," before Apple announced price hikes across several product lines, causing a significant stock drop. Elon Musk echoed Cook's sentiment about the dramatic cost surge. The article concludes that the era of memory suppliers being at the mercy of Apple's pricing power has temporarily reversed, thanks to AI-driven demand. It notes Apple is reportedly seeking to diversify its supply chain, including exploring chips from China's CXMT.

Odaily星球日报4h ago

Apple and the Power Rebalancing with 'The Microns': Dissecting the Profit Ledger Behind the iPhone

Odaily星球日报4h ago

Trading

Spot

Hot Articles

What is LINON

Linde plc Tokenized Stock (Ondo): Revolutionizing Traditional Equity Access Through Blockchain Innovation The emergence of Linde plc Tokenized Stock (Ondo), represented by the ticker $LINON, signifies a monumental shift in the fusion of traditional financial structures and decentralized finance (DeFi). This innovative financial instrument showcases the tremendous potential of blockchain technology to democratize access to traditional equity markets while ensuring the security and regulatory compliance necessary for institutional-grade financial products. Through Ondo Finance's pioneering tokenization platform, $LINON provides a seamless pathway for global investors to engage with one of the world's leading industrial gas companies, Linde plc, creating a blockchain-native representation of the underlying equity. Introduction to Linde plc Tokenized Stock The landscape of financial markets is witnessing a groundbreaking transformation through the tokenization of real-world assets. Linde plc Tokenized Stock (Ondo) epitomizes this revolutionary approach by bridging the gap between conventional stock ownership and blockchain-enabled financial infrastructure. The $LINON token allows investors to gain exposure to one of the prominent industrial companies worldwide through decentralized technology. Operating within Ondo Finance's comprehensive ecosystem, $LINON symbolizes a practical application of tokenization technology that enhances accessibility, efficiency, and global connectivity in traditional financial markets. By leveraging blockchain infrastructure, this tokenized stock enables international investors to participate in U.S. equity markets, overcoming traditional barriers associated with cross-border investing. The significance of $LINON goes beyond technological innovation; it represents a fundamental shift in asset structuring, distribution, and trading in the digital age. This tokenized stock maintains all the economic benefits associated with traditional Linde plc shares while offering improved liquidity, programmable compliance features, and seamless integration with decentralized finance protocols. The development of $LINON indicates a growing acceptance of blockchain technology as a viable means for traditional finance, exemplifying how even well-established assets like Linde plc can integrate into blockchain systems. This approach preserves the core attributes that appeal to investors while introducing advanced capabilities that enhance the overall investment proposition. Project Overview and Objectives Linde plc Tokenized Stock (Ondo) encapsulates a strategic effort to democratize access to traditional equity markets through advanced blockchain technologies. The primary objective of $LINON is to provide approved global investors seamless access to the economic exposure associated with Linde plc shares, furthering an effort to create a more inclusive financial ecosystem. Beyond the digital representation of traditional assets, $LINON endeavors to eliminate barriers of geography and time zones that limit investor participation. Its design ensures that blockchain technology can elevate traditional investment vehicles without undermining the security or compliance requirements expected by investors. Key goals of the project include enhanced liquidity provision, programmable compliance mechanisms, and interoperability with other blockchain networks. Each $LINON token is fortified by actual Linde plc securities housed at U.S.-registered broker-dealers, allowing holders to reap economic advantages akin to traditional stockholders, such as dividend reinvestment. Furthermore, $LINON aims to establish new industry standards for institutional-grade tokenized securities, paving the way for traditional assets to embrace blockchain technology while remaining compliant with regulatory frameworks. By associating itself with a company as reputable as Linde plc, the project opens avenues for exploring tokenized equities catering to both conservative institutional players and daring retail investors. Project Creator and Development Team The vision for Linde plc Tokenized Stock (Ondo) comes from Nathan Allman, founder and CEO of Ondo Finance. His background in traditional finance coupled with expertise in blockchain technology positions him uniquely to navigate the complexities of asset tokenization. Allman's academic journey began at Brown University, focusing on Economics and Biology, equipping him with valuable analytical skills. His time at Goldman Sachs in the Digital Assets division strengthened his understanding of the interplay between financial institutions and emerging technologies, laying the groundwork for his later endeavors in alternative investment strategies. Under Allman's guidance, Ondo Finance has emerged as a leader in asset tokenization, launching $LINON as a flagship example of the company's larger mission towards revolutionizing traditional financial systems using blockchain technology. His commitment to leveraging blockchain for creating institutional-grade financial products has shaped the landscape of real-world asset tokenization. Investment and Funding Structure The growth of Ondo Finance, the platform powering Linde plc Tokenized Stock (Ondo), is bolstered by robust financial backing from prestigious venture capital firms and strategic investors. This strong investment foundation underpins the development of the key infrastructure essential for compliant tokenized securities like $LINON. In August 2021, Ondo Finance secured $4 million in seed funding led by a major venture capital firm, which enabled the company to commence platform development and establish the necessary regulatory processes for tokenizing real-world assets. This early investment cemented Ondo Finance's credibility within the industry. The Series A funding round followed, garnering $20 million with participation from renowned firms committed to transformative technology companies. This backing demonstrated substantial institutional confidence in Ondo Finance's vision, allowing it to hone its approach to asset tokenization through mechanisms that ensure compliance and accessibility. Noteworthy contributors, including institutional investors and experienced partners, have added significant value to Ondo Finance’s development efforts. Their involvement underscores the confidence across sectors in Ondo Finance's approach to bridging traditional finance with blockchain innovations. Technical Infrastructure and Innovation The technical architecture that underpins Linde plc Tokenized Stock (Ondo) represents a sophisticated melding of traditional finance systems and cutting-edge blockchain technology. The architecture's foundation is built on the Ethereum network, renowned for its security and programmability—both critical for intricate financial instruments. The $LINON tokenization process comprises creating a blockchain-native representation of Linde plc shares that preserves economic benefits while augmenting investor capabilities. Each token corresponds to actual shares held at U.S.-registered broker-dealers, creating a compliant custody structure that legitimizes the asset's existence and value. Automated compliance systems are integrated into the tokenization process, managing critical components such as know-your-customer (KYC) verification and anti-money laundering (AML) protocols. This incorporation of programmable compliance empowers $LINON to uphold regulatory standards essential for institutional proliferation. Cross-chain interoperability characterizes the advanced technical features of $LINON. While initially deployed on Ethereum, the framework is designed for expansion to other networks such as Solana and BNB Chain. This adaptability enhances liquidity and accessibility, allowing investors to select their preferred blockchain ecosystems. Historical Timeline and Development Crafting the history of Linde plc Tokenized Stock (Ondo) unfolds in parallel with the evolution of Ondo Finance's tokenization platform. The timeline's inception dates back to March 2021 when Nathan Allman laid the foundations for creating institutional-grade financial products on blockchain infrastructure. The initial funding round in August 2021 provided crucial resources for developing the platform and establishing partnerships necessary for effective tokenization. By January 2023, Ondo Finance launched its tokenized treasury products, establishing mechanisms that would facilitate future tokenized equities such as $LINON. A pivotal milestone arose in February 2025 when Ondo Chain—a Layer 1 blockchain designed specifically for asset tokenization—was introduced. This infrastructure enhances capabilities vital for institutional markets, demonstrating Ondo Finance's long-term commitment to tokenization. Subsequently, the launch of Ondo Global Markets in September 2025 marked the official debut of $LINON. This milestone showcased the successful transition from development to active trading, enabling investors around the world to access American financial markets seamlessly. Ongoing development plans include a targeted expansion of available tokenized assets to over 1,000 by the end of 2025, pointing to a bright future for Ondo Finance's ecosystem and its mission to broaden tokenized equity accessibility. Regulatory Compliance and Legal Framework The legal architecture governing Linde plc Tokenized Stock (Ondo) emphasizes a sophisticated approach to regulatory compliance, allowing tokenized securities to be implemented within a blockchain-based framework. The legal structure governing $LINON spans multiple jurisdictions while maintaining a robust legal footing. Compliance systems ensure that only eligible investors can access the token, enforced through automated verification that aligns with international regulations. This innovative regulatory technology promises real-time enforcement of complex requirements, considerably enhancing efficiency in operating within the regulatory landscape. The custody framework undergirding $LINON ensures that the underlying shares are securely held at U.S.-registered broker-dealers, complying with necessary regulations while delivering blockchain-driven access to investors. The token maintains its economic equivalency and security through this carefully structured custody arrangement. KYC and AML compliance systems are embedded within the smart contract architecture, ensuring integrity and adherence to regulatory practices while fostering transparency for investors. The jurisdictional restrictions mark a commitment to navigating the evolving landscape of international securities laws. Market Impact and Industry Significance The advent of Linde plc Tokenized Stock (Ondo) holds profound implications for the broader financial landscape, symbolizing a clear shift towards blockchain-enabled markets. $LINON serves as a proof-of-concept for integrating traditional companies into blockchain ecosystems, showcasing the potential benefits such as broader accessibility and improved efficiency. The market's response to $LINON indicates a growing acceptance of tokenization among institutional investors, contributing to the emergence of an expanding sector wherein traditional assets can be interconnected with blockchain innovations. The success of $LINON further solidifies market confidence, indicating an overarching shift towards recognizing asset tokenization as a transformative force in finance. Future Development and Expansion Plans The future trajectory for Linde plc Tokenized Stock (Ondo) centers around the expansion of the tokenization ecosystem and enhanced infrastructure supporting blockchain-enabled financial services. Plans for cross-chain integration usher in new opportunities for liquidity and flexibility within the investment framework, with existing capabilities poised for continuous enhancement. With the introduction of Ondo Chain, Ondo Finance aims to transition $LINON to an optimized blockchain environment specifically designed for asset tokenization. This new infrastructure heralds exciting prospects for the development of institutional-grade financial products, ensuring ongoing compatibility with contemporary investment strategies. Further integration with decentralized finance protocols signifies a commitment to empowering $LINON holders through advanced financial strategies. The anticipated expansion of available tokenized assets promises to broaden investor access, enhancing the utility and appeal of the platform. In alignment with ambitions for regulatory expansion, ongoing efforts to secure approvals for new jurisdictions will enhance investor access, further positioning $LINON at the forefront of the burgeoning tokenization market. Conclusion Linde plc Tokenized Stock (Ondo), as represented by the $LINON token, stands at the intersection of traditional finance and blockchain innovation. It embodies a transformative milestone in how financial assets are structured, distributed, and engaged within modern investment ecosystems. The technical sophistication behind $LINON, combined with its regulatory compliance framework, illustrates that asset tokenization can improve financial infrastructure rather than simply digitizing existing products. This pioneering effort not only enhances investor access to U.S. equity markets but also signifies an evolution of how traditional financial services can integrate blockchain technology. As the asset tokenization market grows exponentially, with prospects suggesting significant valuation increases, $LINON paves the way for a future where tokenized securities become standard fixtures in the financial landscape. The trajectory of $LINON will undoubtedly influence how traditional finance adapts to a transformed, blockchain-powered world.

3.3k Total ViewsPublished 2025.12.05Updated 2025.12.05

What is LINON

What is CRMON

Salesforce Tokenized Stock (Ondo): Revolutionising Traditional Equity Access Through Blockchain Innovation The emergence of Salesforce Tokenized Stock (CRMON) marks a pivotal advancement in integrating traditional financial markets with blockchain technology. This innovative approach offers investors unprecedented access to equity exposure through tokenisation. Developed by Ondo Finance, CRMON provides tokenholders with economic exposure equivalent to holding Salesforce stock (CRM) while automatically reinvesting dividends. This effectively bridges the gap between conventional equity markets and decentralised finance (DeFi). Introduction and Comprehensive Overview of Salesforce Tokenized Stock In recent years, the financial landscape has dramatically transformed due to blockchain technology, fundamentally altering how investors access and interact with traditional assets. The development of Salesforce Tokenized Stock (CRMON) is a prime example of this evolution, representing a sophisticated fusion of conventional equity markets with cutting-edge distributed ledger technology. CRMON is a tokenised version of Salesforce stock, emerging from the innovative work of Ondo Finance, a leading platform in the real-world asset tokenisation sector that positions itself as a bridge between traditional finance and decentralised systems. Designed to provide tokenholders with economic exposure that mirrors the performance of the underlying Salesforce stock, CRMON incorporates automatic dividend reinvestment mechanisms. This eliminates many traditional barriers associated with international equity investment, such as complex brokerage relationships, currency conversion challenges, and restricted trading hours. The tokenisation process reimagines stock ownership as a blockchain-native asset while maintaining its economic equivalence with the underlying security, offering enhanced portability and integration capabilities within decentralised finance ecosystems. CRMON transcends its individual utility as an investment instrument to represent a fundamental shift in how financial markets can operate in an increasingly digital world. By maintaining full backing through U.S.-registered broker-dealers and implementing robust compliance frameworks, CRMON demonstrates that tokenised securities can achieve the regulatory standards necessary for institutional adoption while delivering the technological advantages of blockchain infrastructure. Understanding Tokenized Real-World Assets and CRMON's Strategic Position Tokenised real-world assets signify one of the most significant innovations in modern finance, fundamentally reimagining how traditional securities are represented, traded, and utilised within digital ecosystems. CRMON operates as a tokenised equity instrument correlating directly with Salesforce stock while optimising accessibility and efficiency. This aligns with Ondo Finance's broader mission to democratise access to institutional-grade financial products through innovative tokenisation strategies. The tokenisation process guarantees complete economic equivalence with the underlying Salesforce equity. Each CRMON token represents a proportional claim on Salesforce stock held by qualified custodians, with dividend payments automatically reinvested to maintain continuous exposure to total return performance. This structure simplifies dividend management and ensures that tokenholders receive the full economic benefit of their equity exposure, encompassing both capital appreciation and income generation. Ondo Finance's strategy in tokenising Salesforce stock demonstrates its expertise in creating compliant, institutional-grade products that meet traditional financial markets' stringent requirements. The platform’s focus on merging regulatory compliance with blockchain benefits positions it at the forefront of decentralised finance, captivating both institutional and retail investors seeking blockchain-native solutions. The Technology and Innovation Framework Behind CRMON The technological infrastructure supporting CRMON integrates blockchain technology with traditional financial mechanisms, delivering institutional-grade security and compliance while maintaining the operational advantages of decentralised systems. Built on the Ethereum blockchain, CRMON utilises robust smart contract capabilities to ensure transparent, secure operations. The smart contract architecture incorporates layered security and compliance mechanisms, enabling automated compliance checks and real-time asset backing verification. Integration with oracle services maintains accurate pricing and dividend information, ensuring CRMON reflects the underlying Salesforce stock's accurate performance. This architecture delivers automated dividend reinvestments and other corporate actions, eliminating manual processing requirements and directly enhancing tokenholder benefits. Ondo Finance ensures CRMON's security structure includes daily third-party verification of holdings, independent collateral agents, and a multiple-layer custody system through partnerships with established financial institutions. This framework safeguards tokenholder interests against operational risks while providing robust asset backing. The user interface enhances integration capabilities, allowing seamless interaction between CRMON and various decentralised finance protocols, as well as cryptocurrency exchanges. This interoperability enables users to leverage their tokenised equity across multiple platforms, creating sophisticated investment strategies that marry traditional equity characteristics with blockchain-native innovation. Leadership and Corporate Structure of Ondo Finance The leadership team behind CRMON and Ondo Finance blends expertise from traditional finance and blockchain technology, presenting a robust combination of skills essential for successfully bridging conventional markets with decentralised finance. Nathan Allman, the founder and CEO, emerged from a distinguished financial background before establishing Ondo Finance in 2021. Allman's experience includes notable roles at major financial institutions, including significant contributions to developing cryptocurrency market services. His insights into regulatory compliance were paramount in developing products like CRMON that successfully unify traditional securities with blockchain technology. With a team of professionals boasting substantial experience in both conventional finance and blockchain sectors, Ondo Finance's leadership comprises diverse expertise that covers every aspect of tokenised asset development. Justin Schmidt serves as President and COO, contributing unique operational expertise, while Chris Tyrell brings essential compliance knowledge. Investment Landscape and Funding History The investment landscape surrounding Ondo Finance reflects significant institutional confidence in its mission to tokenise real-world assets. The company has raised substantial funds through various investment rounds, attracting leading venture capital firms and strategic investors that recognise the transformative potential of tokenised securities like CRMON. Notably, Ondo Finance completed a successful Series A funding round in 2022, led by well-known venture capital firms. This funding success validates Ondo Finance's innovative approach to creating compliant, institutional-grade tokenised products. In total, Ondo Finance has successfully secured substantial funding, raising significant capital for product development and market expansion, including a noteworthy token sale that reinforced its governance structure through the establishment of the ONDO token. The diverse composition of investors reflects broad market confidence in Ondo Finance's business model, demonstrating support from both traditional and blockchain-native organisations. Operational Mechanics and Technical Implementation The operational framework supporting CRMON exemplifies sophisticated integration of traditional financial mechanisms with blockchain technology. The technical implementation introduces multiple layers of security, compliance, and operational efficiency to meet institutional standards while enhancing accessibility. The tokenisation process begins by acquiring actual Salesforce stock through U.S.-registered broker-dealers, ensuring each CRMON token maintains direct correlation with the underlying equity performance. Smart contracts automate operational processes, including dividend reinvestment and corporate action processing, facilitating a streamlined user experience. The Minting and redemption processes allow authorised participants to manage CRMON tokens effectively. During U.S. trading hours, institutions can mint new tokens by depositing stablecoins that are used to purchase corresponding Salesforce equity. This structure maintains a tight correlation with underlying assets, enhancing liquidity and price discovery. Additionally, the infrastructure supports twenty-four-hour token transfer capabilities, providing CRMON holders with operations outside traditional market hours. This represents a significant advantage over conventional securities ownership, thus promoting integration with decentralised finance applications. Plans for cross-chain compatibility through partnerships signal further ambitions for CRMON's market reach. By expanding to other blockchain networks, Ondo Finance aims to enhance accessibility and user engagement with tokenised equity products. Timeline and Historical Development of Tokenized Equity Innovation The timeline of CRMON's development and Ondo Finance's broader tokenised capabilities demonstrates a systematic innovation process beginning with the company's founding in 2021. 2021: Ondo Finance is founded by Nathan Allman and co-founders, launching initial products focused on structured vault offerings on the Ethereum blockchain. 2022: The company completes substantial funding rounds—both equity and token sales—totaling significant capital and launching initial tokenised U.S. Treasury products. 2023-2024: Ondo Finance experiences substantial growth, establishing partnerships with major financial institutions while expanding its product offerings beyond fixed-income securities. February 2025: Ondo Global Markets is announced, marking the transition into equity tokenisation with plans for accessing over one hundred U.S. stocks and ETFs. September 2025: The official launch of Ondo Global Markets includes CRMON alongside other tokenised equity offerings, marking a significant evolution in Ondo Finance's product ecosystem. This timeline highlights the organisation's rapid growth and its capability to adapt its technological and compliance frameworks to accommodate different asset classes effectively while maintaining security and regulatory integrity. Regulatory Framework and Compliance Approach Ondo Finance's regulatory framework showcases a sophisticated compliance strategy, essential for achieving institutional adoption in the tokenised securities market. The company's strong partnerships with U.S.-registered broker-dealers promote adherence to Securities and Exchange Commission regulations and apply robust investor protections. Acquisitions, such as Oasis Pro—a registered broker-dealer—significantly enhance Ondo Finance's compliance capabilities, ensuring thorough alignment with existing regulatory structures. The company employs independent verification procedures that foster transparency, aiming for a solid performance standards reputation. Furthermore, Ondo Finance's commitment extends to international regulatory compliance, ensuring token access remains restricted to eligible investors while adhering to pertinent cross-border securities regulations. Comprehensive attention to tax implications and reporting requirements fortifies the security and compliance landscape of CRMON, ensuring that investor obligations remain manageable. Future Prospects and Market Positioning The forward-looking landscape for CRMON and Ondo Finance illustrates substantial growth opportunities driven by institutional adoption of blockchain technology and escalating demand for efficient alternatives to conventional securities ownership. Market projections indicate the tokenised asset sector could value multiple trillion dollars by 2030. With plans to scale CRMON offerings significantly and integrate it with a dedicated blockchain infrastructure—Ondo Chain—Ondo Finance aims to elevate its institutional-grade tokenised asset operations. Additionally, the development of strategic partnerships enhances distribution capabilities while establishing the company's credibility in the financial market. Furthermore, the integration of tokenised equity with decentralised finance protocols offers new potential for innovative financial products and strategies previously impossible with traditional securities. These factors underscore CRMON's positioning to effectively capture increased market share and deliver innovative solutions for international investment exposure. Conclusion Salesforce Tokenized Stock (CRMON) symbolises a transformative development within financial markets, successfully bridging traditional equity ownership with blockchain technology to create unprecedented accessibility for global investors. Through Ondo Finance's sophisticated tokenisation framework, CRMON provides complete economic exposure to Salesforce equity performance while enhancing operational advantages that exceed traditional ownership. The launch of CRMON reflects the broader evolution of financial markets towards blockchain infrastructures that maintain regulatory compliance while delivering increased efficiency. Ondo Finance's extensive approach to regulatory adherence, institutional-grade security, and technological innovation solidifies CRMON as a model for future tokenised securities, delivering access previously unattainable in conventional brokerage structures. As the tokenised asset sector continues to develop, CRMON is well-positioned to address historical inefficiencies in capital markets while providing investors with innovative solutions for accessing traditional securities. The outlook for CRMON looks exceptionally promising, supported by ambitious expansion plans, technological innovations, and strategic partnerships, thereby representing a pioneering model of modern financial infrastructure evolving through blockchain integration.

3.4k Total ViewsPublished 2025.12.05Updated 2025.12.05

What is CRMON

What is SHOPON

Shopify Tokenized Stock (Ondo): A Comprehensive Analysis of Real-World Asset Tokenization in Web3 This article delves into the Shopify Tokenized Stock (Ondo), recognised by its ticker symbol $SHOPON, exploring its implications at the intersection of traditional finance and blockchain technology. As a part of Ondo Finance's tokenized securities platform, Shopify’s tokenized stock exemplifies advancements in democratizing access to global capital markets through innovative digital assets. Introduction and Overview of Shopify Tokenized Stock (Ondo) Shopify Tokenized Stock (Ondo), or $SHOPON, portrays a pivotal innovation in the realm of tokenized securities, allowing investors to gain economic exposure akin to directly owning shares of Shopify Inc. This token, developed under the umbrella of Ondo Finance, not only provides investors with the ability to hold digital representations of the company’s stock but also integrates features such as automatic reinvestment of dividends. This advancement represents a substantial shift in the landscape of decentralized finance (DeFi), linking conventional equity markets with blockchain solutions designed to enhance accessibility, transparency, and liquidity. By eliminating geographical barriers and enabling 24/7 trading capabilities, $SHOPON is positioned as a bridge connecting traditional financial instruments and the emerging Web3 ecosystem. What is Shopify Tokenized Stock (Ondo), $SHOPON? The $SHOPON token serves as a digital manifestation of Shopify Inc.'s shares, engineered to provide a direct correlation to the underlying asset's performance. Through the utilization of blockchain technology, the token gives holders a mechanism to participate in the economic benefits associated with equity ownership, including capital appreciation and dividend distribution. The unique aspect of $SHOPON lies in its automatic dividend reinvestment mechanism, which allows returns to compound without necessitating active management by the investor. This feature inherently enhances its attractiveness as an investment vehicle, particularly for individuals seeking passive income growth alongside exposure to high-performing equities. The tokenization process is facilitated by the custody of actual Shopify shares through regulated intermediaries, ensuring that every $SHOPON token is verifiably backed by real equity. This structure empowers investors with the dual advantages of both traditional financial characteristics and the innovative benefits tied to blockchain technology. Who is the Creator of Shopify Tokenized Stock (Ondo)? The creator of Shopify Tokenized Stock (Ondo), Nathan Allman, is an experienced figure in the finance sector, formerly associated with Goldman Sachs. His rich background includes significant expertise in digital asset development, bridging the gap between traditional finance and cryptocurrencies. Allman’s educational journey, marked by studies at Brown University, provided him with a deep understanding of economics and biology, equipping him with analytical skills that inform his strategic vision. In 2021, he founded Ondo Finance, committing to developing tokenized securities that meet institutional-grade standards while leveraging blockchain's transformative capabilities. Under Allman's leadership, Ondo Finance has focused on creating compliant and innovative financial products that empower a diverse investor base. Who are the Investors of Shopify Tokenized Stock (Ondo)? The investment landscape surrounding Shopify Tokenized Stock (Ondo) is notably robust, underpinned by significant institutional support. Primarily, Pantera Capital stands out as a strategic partner through the Ondo Catalyst initiative, a $250 million commitment aimed at accelerating the development of on-chain capital markets. This partnership not only signifies institutional confidence in the potential of tokenized assets but also reinforces Ondo Finance's operational capabilities and market positioning. The funding pathways have included earlier rounds that amassed millions in seed funding and further structural investments, solidifying relationships with both venture capital firms and private investors. Moreover, the financial framework is complemented by strategic partnerships with established financial institutions and technology companies, enhancing Ondo’s infrastructure and operational expertise. How Does Shopify Tokenized Stock (Ondo), $SHOPON Work? At the core of $SHOPON's operational framework is a sophisticated system integrating traditional finance mechanisms with blockchain technology. The custody of actual Shopify shares ensures that token holders retain authentic economic exposure, safeguarding their investments in line with recognized legal structures. The smart contracts employed in managing $SHOPON handle various functions, including automatic dividend reinvestment and ownership transfer, offering instant settlement and increased liquidity, marking a significant departure from conventional trading systems plagued by multi-day settlement delays. By providing interoperability with other decentralized finance applications, $SHOPON empowers holders with potentially lucrative opportunities for advanced investment strategies, including lending and automated market making. This complex integration presents a unique value proposition, catering to both traditional and crypto-native investors. The innovative structure of $SHOPON also allows for real-time settlements and transactions documented on the blockchain, delivering unparalleled transparency and security—a major advancement over standard equity trading practices. Timeline of Shopify Tokenized Stock (Ondo) March 2021: Nathan Allman establishes Ondo Finance, initially focusing on decentralized finance yield optimization. August 2021: Completion of a $4 million seed funding round led by Pantera Capital. January 2023: Launch of initial tokenized treasury security products, laying the groundwork for future equity tokenization. July 2025: Announcement of the Ondo Catalyst initiative, a strategic investment program valued at $250 million, aimed at propelling the development of tokenization in capital markets. September 3, 2025: Launch of Ondo Global Markets featuring over 100 tokenized U.S. stocks and ETFs, including $SHOPON. Technical Implementation and Blockchain Infrastructure Shopify Tokenized Stock (Ondo) operates on a technical architectural framework that marries blockchain protocols with traditional financial custody arrangements. The ecosystem leverages Ethereum's smart contract capabilities, providing seamless transaction management while ensuring compliance with regulatory standards through established financial custodians. Central to this architecture are security measures and transparent transaction records that affirm the legitimacy of each tokenholder's economic stake. With automated features managed by intricate smart contracts, $SHOPON not only streamlines ownership transfers but also allows for the tactical reinvestment of dividends—a hallmark of modern investment strategies. Moreover, the incorporation of LayerZero technology facilitates cross-chain interoperability, making $SHOPON accessible across multiple blockchain environments while preserving its functional robustness. This forward-thinking technical design positions $SHOPON as an adaptable asset within the larger DeFi milieu. Regulatory Framework and Compliance Architecture $SHOPON's regulatory framework is built upon the meticulous navigation of existing financial regulations that govern securities. The custody arrangements for the underlying Shopify shares are managed by U.S.-regulated broker-dealers, ensuring compliance and protection for investors. By maintaining a separation between the blockchain tokenization process and traditional custody, $SHOPON adheres to legal requirements while offering innovative functionalities that challenge conventional constraints. This dual-layered compliance approach enhances investor confidence and underscores Ondo Finance's commitment to regulatory integrity. Notably, the availability of $SHOPON is tailored to international investors from regions such as Asia-Pacific, Europe, and Africa, as regulatory parameters in the U.S. and U.K. present challenges in accessing tokenized securities. Market Access and Global Distribution Strategy The distribution strategy of $SHOPON is keenly designed to optimize global access while conforming to regulatory standards. The platform aims to establish comprehensive coverage for eligible investors across multiple regions, effectively dismantling traditional barriers through the implementation of blockchain technology. Integration with various cryptocurrency wallets and exchanges also promotes user-friendliness and accessibility, establishing a streamlined experience for investors to manage their holdings. Moreover, the 24/7 trading capabilities afforded by the tokenized model allow participants to react promptly to market shifts, fundamentally transforming how global equities are accessed and traded. Technology Integration and Cross-Chain Functionality The remarkable technological underpinnings of $SHOPON propagate its multi-chain functionality, set to expand its reach beyond Ethereum to networks such as Solana and BNB Chain. Such cross-chain capabilities allow users flexibility when navigating between blockchains, concurrently leveraging distinct network attributes to optimize their trading experience. LayerZero serves as the backbone for ensuring decentralized transfers between networks while providing the requisite security and speed, quintessential for maintaining investor trust. This comprehensive interoperability illustrates $SHOPON's commitment to being a versatile, user-centric asset in the evolving investment landscape. Ecosystem Integration and DeFi Compatibility Incorporating $SHOPON into broader DeFi protocols signifies its potential beyond traditional stock ownership. Token holders can leverage their holdings for various sophisticated strategies and applications, enhancing investment returns and liquidity management. By establishing a presence in lending protocols and automated trading systems, $SHOPON effectively democratizes access to advanced financial strategies previously limited to institutional investors. Such integration contributes to a more competitive and dynamic financial landscape, where individual investors can capitalize on tools typically reserved for larger entities. Risk Management and Security Framework Security remains paramount in the operational infrastructure of $SHOPON. The tokenization framework employs multiple layers of protection—beginning with regulated custody of the underlying Shopify shares. The operational protocols establish rigorous auditing, key management, and transaction monitoring standards, thus safeguarding against potential vulnerabilities. Moreover, meticulous adherence to evolving regulatory requirements provides an extra layer of security, fortifying investor protections and institutional compliance. Market Impact and Industry Implications The introduction of Shopify Tokenized Stock (Ondo) heralds a transformative shift in how financial markets operate, emphasizing the potential of tokenized securities to reshape traditional investment paradigms. The successful integration of $SHOPON encapsulates the efficiencies inherent in blockchain technology and opens avenues for new user demographics previously barred from extensive market participation. The impact extends beyond the immediate benefits to token holders, indicating broader trends that may challenge the status quo of investment services, particularly in addressing geographic restrictions and operational costs typically associated with traditional brokerage platforms. Undeniably, $SHOPON encapsulates the potential for traditional institutions to innovate further, leveraging the increasing demand for seamless blockchain access to complement existing financial infrastructure. Future Development Roadmap and Strategic Vision As Ondo Finance looks forward, the trajectory of $SHOPON rests on ambitious goals aimed at broadening the spectrum of available tokenized assets significantly. Over the next few years, plans are in place to expand to more than 1,000 tokenized securities, further enhancing market participation and investment options for individuals worldwide. Continued integration with traditional financial actors, development of specialized institutional products, and enhancements in automated trading capabilities will ensure that $SHOPON maintains its position at the forefront of financial innovation. Regulatory collaboration will also remain a focal point, establishing a framework that not only supports the compliance requirements but also promotes a healthy environment for tokenized asset proliferation. Conclusion and Market Significance In summary, Shopify Tokenized Stock (Ondo), represented by the ticker $SHOPON, is more than merely a tokenized equity offering; it embodies the innovation possible when traditional finance collides with modern blockchain applications. With a robust technical architecture, a commitment to compliance, and a clear strategic vision, $SHOPON exemplifies the potential for tokenized assets to enhance liquidity, accessibility, and functionality in capital markets. As the global investment landscape evolves, the transformative implications of $SHOPON extend beyond individual investors to revolutionize how financial instruments are perceived, traded, and utilized within both traditional and decentralized frameworks.

3.4k Total ViewsPublished 2025.12.05Updated 2025.12.05

What is SHOPON

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 MOVE (MOVE) are presented below.

活动图片