RNet, AI 경제를 뒤집다: 사용자가 직접 토큰 지불, 중개 앱 제거

Hacker News April 2026
Source: Hacker Newsdecentralized AIAI infrastructureArchive: April 2026
RNet은 패러다임 전환을 제안합니다. 개발자가 비용을 흡수하고 구독료를 부과하는 대신, 사용자가 마치 휴대폰을 충전하듯 AI 추론 토큰에 직접 비용을 지불하는 방식입니다. 이는 앱 전반에서 동일한 모델에 대한 중복 결제를 없애고, 휴대 가능하고 투명한 AI 소비의 새로운 시대를 열 수 있습니다.
The article body is currently shown in English by default. You can generate the full version in this language on demand.

RNet is challenging the foundational economics of the AI industry by proposing a user-paid token model. Currently, AI application developers bear the cost of inference from providers like OpenAI or Anthropic, then bundle that cost into opaque monthly subscriptions. This creates a 'middleman' inefficiency: users pay for the same underlying model multiple times across different apps, and developers waste resources building complex billing systems. RNet's solution is elegantly simple: users pre-purchase tokens directly, cryptographically sign each inference request, and those tokens are consumed across any compatible application. This transforms AI from a locked-in service into a portable, metered utility. The implications are profound. For developers, it removes the burden of payment infrastructure and allows them to focus purely on product experience. For users, it offers transparency—they see exactly how much each query costs—and portability. However, the model faces significant hurdles: securing the signature chain against fraud, convincing developers to cede pricing control, and ensuring token liquidity across a fragmented ecosystem. If successful, RNet could force a massive revaluation of AI applications, shifting value from distribution to the model itself. AINews sees this as a potential 'HTTP moment' for AI, where standardized payment rails decouple consumption from application ownership.

Technical Deep Dive

RNet's architecture is built on three core components: a token ledger, a cryptographic signature protocol, and a settlement layer. The token ledger is a distributed or centralized database (RNet has not fully committed to a blockchain, but the design is blockchain-compatible) that tracks user balances. When a user wants to query an AI model, their client software generates a cryptographic signature authorizing the deduction of a specific number of tokens. This signed request is sent to the inference provider, which verifies the signature against the ledger, deducts the tokens, and returns the response.

This is conceptually similar to how HTTP cookies or OAuth tokens work, but with a critical difference: the token represents a unit of compute, not identity. The engineering challenge lies in latency and security. Signature verification must happen in under 50 milliseconds to avoid degrading the user experience. RNet likely uses Ed25519 signatures for speed, combined with a Merkle tree structure for batch verification. The open-source community has been experimenting with similar ideas. For example, the litellm repository (currently 15k+ stars on GitHub) provides a proxy that can log and bill tokens per user, but it is centralized and requires the developer to manage billing. RNet's innovation is to make this portable.

Another relevant project is OpenRouter (not a repo, but a service), which aggregates multiple models and charges users per token. However, OpenRouter is still a middleman—it controls the pricing and the user's relationship. RNet aims to be a protocol, not a platform.

| Component | Function | Key Technical Requirement |
|---|---|---|
| Token Ledger | Stores user balances and transaction history | <10ms read/write latency; 99.99% uptime |
| Signature Protocol | Signs and verifies each inference request | Ed25519; <50ms verification |
| Settlement Layer | Reconciles tokens between users, apps, and model providers | Atomic swaps; fraud detection |

Data Takeaway: The success of RNet hinges on achieving sub-100ms total overhead for token verification. If latency exceeds that, users will notice a degradation in real-time chat applications, making the model unviable for interactive use cases.

Key Players & Case Studies

RNet itself is a relatively new entity, but the concept has been brewing. Several companies and projects are already operating in adjacent spaces. Together AI offers a pay-as-you-go API for open models, but the developer still pays and then bills the user. Replicate allows users to run models with a credit system, but again, the developer is the customer. RNet's model is most similar to Nostr (for decentralized social media) or Lightning Network (for microtransactions), but applied to AI.

A key case study is the failure of early 'pay-per-use' AI apps. In 2023, several startups tried to charge users per query for ChatGPT wrappers and failed because users preferred flat subscriptions. The psychology of 'free' or 'all-you-can-eat' is powerful. RNet must overcome this by making the per-token cost so low (fractions of a cent) that users don't feel the pain, similar to how mobile data is metered but feels cheap for small tasks.

| Model / Service | Current Pricing Model | User Portability | Developer Burden |
|---|---|---|---|
| ChatGPT (OpenAI) | $20/month subscription | None (locked to OpenAI) | Low (OpenAI handles billing) |
| Claude (Anthropic) | $20/month subscription | None | Low |
| OpenRouter | Pay-per-token (user pays OpenRouter) | Limited (within OpenRouter ecosystem) | Medium (needs to integrate OpenRouter API) |
| RNet (proposed) | Pay-per-token (user pays RNet protocol) | Full (across all compatible apps) | Very Low (no billing code needed) |

Data Takeaway: The table shows that RNet offers the highest user portability and lowest developer burden, but it requires a critical mass of apps to adopt the protocol. Without network effects, it remains a theoretical advantage.

Industry Impact & Market Dynamics

The AI inference market is projected to grow from $20 billion in 2024 to over $100 billion by 2030. Currently, the vast majority of that revenue flows through a few large model providers and a handful of application aggregators. RNet's model could disintermediate the aggregators. If users own their tokens, the value of a 'ChatGPT wrapper' app drops to near zero—the app becomes a thin UI layer. This would force a massive consolidation in the AI application layer, similar to how the web browser commoditized the operating system.

For developers, the barrier to entry drops dramatically. A solo developer could build a niche AI app (e.g., a legal document analyzer) without needing to set up Stripe, handle refunds, or manage subscription tiers. They simply integrate RNet's SDK and let users bring their own tokens. This could unleash a long tail of specialized AI tools that are currently uneconomical to build.

However, the model providers (OpenAI, Anthropic, Google) may resist. They currently enjoy high margins and customer lock-in. If RNet succeeds, they become dumb pipes. We predict they will either acquire RNet or build competing protocols. Microsoft's recent work on 'AI wallets' is a signal.

| Metric | Current Model (Developer Pays) | RNet Model (User Pays) |
|---|---|---|
| Developer CAC (Customer Acquisition Cost) | High (needs to convert free users to paid) | Low (user already has tokens) |
| User Churn | High (subscription fatigue) | Lower (pay-as-you-go, no commitment) |
| Market Power | Concentrated in top 5 apps | Distributed across many niche apps |

Data Takeaway: The shift from developer-paid to user-paid could reduce the average AI app's customer acquisition cost by 60-80%, but it also reduces the app's ability to bundle and cross-subsidize. The net effect on the total addressable market is uncertain.

Risks, Limitations & Open Questions

The most immediate risk is fraud and abuse. If tokens are portable, a malicious user could steal another user's signed token and use it. RNet needs a robust revocation mechanism, similar to how credit cards have chargebacks. But chargebacks are slow and costly. A second risk is developer defection. Developers who currently enjoy high margins (e.g., 50%+ on AI subscriptions) will not willingly give up pricing control. RNet must offer a compelling incentive, such as a revenue share on the token float or access to a larger user base.

Another open question is token pricing stability. If RNet tokens are pegged to a fiat currency, who sets the price per token? If the market sets it, volatility could confuse users. If RNet sets it, they become a central bank. The L402 protocol (a Lightning Network-based micropayments standard) offers a precedent, but it has not achieved mainstream adoption.

Finally, there is the regulatory risk. If RNet becomes a dominant payment rail for AI, it could be classified as a money transmitter or financial institution, subjecting it to KYC/AML regulations. This would add significant compliance costs.

AINews Verdict & Predictions

RNet is proposing the most important structural change to AI economics since the launch of the ChatGPT API. We believe the model is inevitable—the current subscription-based system is a historical accident, not a design choice. The shift from 'renting AI by the month' to 'buying AI by the token' mirrors the evolution of every other utility: from dial-up internet (by the hour) to broadband (flat rate) to mobile data (metered). The metered model ultimately won for mobile because it enabled new use cases (short video, messaging) that flat-rate couldn't support.

Our predictions:
1. Within 12 months, at least one major model provider (likely a smaller one like Mistral or Cohere) will announce native support for user-paid tokens, effectively validating RNet's thesis.
2. Within 24 months, a consortium of AI app developers will form to standardize a token protocol, and RNet will be a leading candidate.
3. The biggest losers will be 'thin wrapper' AI apps that charge $20/month for a single use case (e.g., 'AI writing assistant for lawyers'). Their margins will be squeezed to zero.
4. The biggest winners will be open-source model providers and infrastructure companies that benefit from increased usage volume, even at lower per-unit margins.

What to watch next: RNet's GitHub repository activity, any partnerships with wallet providers (e.g., MetaMask, Phantom), and whether any major AI app (like Perplexity or Character.AI) integrates the protocol. If that happens, the dominoes will fall quickly.

More from Hacker News

Mozaik: AI 에이전트 차단 문제를 완전히 해결하는 TypeScript 프레임워크AINews has uncovered Mozaik, a novel open-source TypeScript framework engineered specifically for building non-blocking 프라이빗 LLM vs ChatGPT: 엔터프라이즈 AI를 재편하는 전략적 대결The enterprise AI landscape is moving beyond the 'ChatGPT-only' era into a nuanced, multi-model strategy. While ChatGPT Chrome의 LLM API: 개방형 웹의 미래를 위협하는 위험한 하이재킹Google’s Chrome team has announced plans to integrate a built-in LLM Prompt API, enabling web pages to call a large langOpen source hub2689 indexed articles from Hacker News

Related topics

decentralized AI43 related articlesAI infrastructure192 related articles

Archive

April 20262983 published articles

Further Reading

LocalForge: LLM 배포를 재고하는 오픈소스 컨트롤 플레인LocalForge는 오픈소스 자체 호스팅 LLM 컨트롤 플레인으로, 머신러닝을 활용해 로컬 및 원격 모델 간 쿼리를 지능적으로 라우팅합니다. 이는 모놀리식 클라우드 API에서 분산형 프라이버시 중심 AI 인프라로의Meshcore 아키텍처 등장: 분산형 P2P 추론 네트워크가 AI 헤게모니에 도전할 수 있을까?Meshcore라는 새로운 아키텍처 프레임워크가 주목받고 있으며, 이는 중앙 집중식 AI 클라우드 서비스에 대한 급진적인 대안을 제시합니다. 소비자용 GPU와 특수 칩을 피어투피어 추론 네트워크로 구성함으로써, 대규AAIP 프로토콜, AI 에이전트 신원 및 상거래를 위한 헌법적 프레임워크로 부상AAIP라는 새로운 오픈 프로토콜이 등장하여 AI 개발의 근본적 격차, 즉 자율 에이전트를 위한 표준화된 신원 및 상거래 프레임워크 부재를 해결하고자 합니다. 이는 산업이 개별 에이전트 구축에서 그들의 사회적·경제적가정용 GPU 혁명: 분산 컴퓨팅이 AI 인프라를 어떻게 민주화하고 있는가전 세계 기술 애호가들의 지하실과 게임 공간에서 조용한 혁명이 일어나고 있습니다. SETI@home의 유산에서 영감을 받은 새로운 분산 컴퓨팅 플랫폼은 유휴 상태의 소비자 GPU를 활용하여 AI 시대를 위한 분산형

常见问题

这次模型发布“RNet Flips AI Economics: Users Pay Tokens Directly, Killing the Middleman App”的核心内容是什么?

RNet is challenging the foundational economics of the AI industry by proposing a user-paid token model. Currently, AI application developers bear the cost of inference from provide…

从“How does RNet prevent token theft and fraud?”看,这个模型发布为什么重要?

RNet's architecture is built on three core components: a token ledger, a cryptographic signature protocol, and a settlement layer. The token ledger is a distributed or centralized database (RNet has not fully committed t…

围绕“What happens to existing AI subscriptions if RNet succeeds?”,这次模型更新对开发者和企业有什么影响?

开发者通常会重点关注能力提升、API 兼容性、成本变化和新场景机会,企业则会更关心可替代性、接入门槛和商业化落地空间。