Web3

Home Web3 Page 76

Brazilian Bitcoin Treasury OranjeBTC Buys Back Stock Instead of BTC – Decrypt

0
Brazilian Bitcoin Treasury OranjeBTC Buys Back Stock Instead of BTC – Decrypt



In brief

Brazilian Bitcoin treasury OranjeBTC started trading publicly on October 7.
The company owns 3,708 BTC, worth $408.3 million.
But it has already halted buying Bitcoin, and is instead buying back its own shares.

Brazil’s biggest Bitcoin treasury OranjeBTC has halted purchasing BTC and instead has bought back its own shares, the publicly traded company announced Thursday, just three weeks after going public. 

OranjeBTC said that it would weigh its options going forward. Companies may buy back their shares as a way to increase the value of their stock by taking it off the market and reducing its supply.

The move comes as the price of Bitcoin remains 13% below its all-time high of $126,080, set earlier this month, according to crypto data provider CoinGecko. The leading cryptocurrency was recently trading for $109,834 after a rocky two weeks. 

“The Company will continue to evaluate capital allocation opportunities in a disciplined manner, always prioritizing the maximization of Bitcoin per share (BTC/Share) for its shareholders, either through the direct purchase of Bitcoin or the repurchase of treasury shares when they are trading at a discount to mNAV,” the company said on its website. 



OranjeBTC’s move came as its shares were trading below net asset value, which would indicate a discount to equity value. It also comes as some treasury observers have raised concerns about the approach as a way to boost a struggling firm’s stock price if the asset’s value tumbles, as it has recently. 

OranjeBTC, which has traded on the Brazilian stock exchange B3 since October 7, holds 3,708 BTC, worth $408.3 million, according to its website.

It is a direct competitor with fintech company Méliuz, which earlier this year dubbed itself the South American’s first Bitcoin treasury company.

Bitcoin treasuries offer exposure to the asset for investors concerned about the security and other challenges of holding it themselves.  

American software firm Strategy, formerly MicroStrategy, pioneered the strategy in 2020 and now holds 640,808 Bitcoins worth about $70.5 billion based on the current price, according to bitcointreasuries.net data. Its stock price has shot up more than 1,400% over the past five years. 

A number of other Nasdaq-listed companies in the U.S. are following suit to try, changing their business models to focus on crypto accumulation, buying not only Bitcoin but other digital coins like Ethereum or Solana. They include Japanese hotel operator, Metaplanet, which has built the fourth largest BTC stockpile, and mining company BitMine Immersion and online marketing firm SharpLink Gaming, which have both created massive ETH treasuries. 

Brazil, Latin America’s biggest economy, is the region’s biggest digital asset market, and has the most amount of crypto ETFs. 

In a Myriad prediction market, 54% of respondents agree with crypto trader Mando that Bitcoin will hit $120,000 instead of siding with entrepreneur KBM who believes BTC will fall to $100,000. Myriad is a unit of Dastan, the parent company of Decrypt.

Daily Debrief Newsletter

Start every day with the top news stories right now, plus original features, a podcast, videos and more.



Source link

If Web3 is decentralized, why do DeFi dApps still break when the cloud goes down?

0
If Web3 is decentralized, why do DeFi dApps still break when the cloud goes down?


On Oct. 20, a hiccup in Amazon’s US-EAST-1 region set off a chain reaction across the crypto industry. Coinbase reported degraded service, Infura and Alchemy posted AWS-related incident notes, and several wallets and rollups began timing out.

None of these failures came from the blockchains themselves. Consensus was fine. The problem was everything wrapped around it: the cloud databases, RPC gateways, DNS, indexers, and key-management systems that turn a blockchain into a usable app.

It was a sharp reminder that much of Web3 still leans heavily on Web2. When one region of AWS sneezed, a quarter of crypto’s user interface caught a cold.

The invisible monoculture

Behind the rhetoric of decentralization lies a quiet dependency map that looks strikingly centralized. A typical dApp starts with a frontend hosted on S3 or Cloudflare Pages, served through a CDN such as Fastly, and resolved by Route 53 or Cloudflare DNS.

Beneath that are read and write RPCs, often Infura, Alchemy, or QuickNode, most of which themselves run on AWS or another of the “Big 3” clouds. Then come indexers like The Graph or Covalent, sequencing services on rollups, and custody or key-management systems such as Fireblocks. Each layer introduces a single point of failure.

When AWS’s DynamoDB and DNS services faltered, multiple layers were hit simultaneously. Coinbase’s API slowed, Infura and Alchemy reported upstream AWS issues, and several rollups saw their sequencers stall until manual intervention. Even The Graph’s indexer for zkSync had already shown similar fragility weeks earlier.

The illusion of redundancy also broke down. Two independent RPC providers each promise “four-nines” uptime, but if they’re both on the same cloud region, their failures are correlated. Statistically, independence collapses: the effective correlation coefficient between AWS-centric stacks may reach 0.9.

This concentration isn’t confined to crypto. AWS still holds roughly 30–32% of the global cloud share, Azure about 20%, and Google Cloud 13%. A six-hour disruption in one major region ripples through DNS, object storage, and database services used by thousands of companies.

For crypto apps, this means that between 10% and 30% of EVM-based frontends or read functions may degrade during such an event. Writes and transactions that depend on sequencers or custodial signing paths can freeze entirely.

The myth of independence

It’s easy to conflate on-chain resilience with application resilience. Blockchains like Ethereum or Solana may maintain consensus through global nodes; however, the tools people actually use often depend on centralized intermediaries. Solana’s five-hour halt in February 2024 was an on-chain failure, but the AWS outage wasn’t. It was an off-chain one, and far more common.

Each layer adds its own Achilles’ heel.

Sequencers on L2s are still mostly single-operator setups. If their connection to Ethereum’s RPC is broken, so is their ability to post new batches.Content delivery and DNS introduce further fragility: Cloudflare’s Jul. 14 resolver issue left parts of the internet unreachable for nearly an hour.Even “decentralized” storage can still rely on a single company. Infura’s IPFS gateway outage on Sep. 20 halted access to assets that were theoretically mirrored across the network.Custody and key-management platforms, such as Fireblocks, used by exchanges and funds, have themselves experienced processing delays on Oct. 26 and Sep. 17, stalling withdrawals and settlements.

These failures matter because they affect user trust more than protocol uptime ever could. A wallet displaying a stale balance, or a bridge transaction stuck in limbo, erodes confidence in the very decentralization it claims to offer.

Regulators have started to notice. The EU’s Digital Operational Resilience Act (DORA), effective January 2025, forces financial entities to test and report third-party ICT dependencies. The UK’s “Critical Third Parties” regime is expected to bring hyperscalers under direct oversight next year.

Since crypto custody, stablecoin issuers, and tokenized-asset platforms now overlap with regulated finance, the same expectations for cloud diversification will soon apply here too. Single-vendor cloud reliance is turning into a board-level risk.

The fix isn’t glamorous, but it’s coming

Solutions are shipping. In the short term, developers are introducing provider-quorum RPCs that query multiple endpoints, self-hosted, SaaS, and decentralized (such as Pocket Network), and display a result only if two out of three agree. Tools such as Helios bring light-client verification directly into wallets and mobile apps, letting users validate data without relying on a centralized gateway.

Infrastructure teams are adopting multi-CDN and multi-DNS setups with active failover. For storage, running one’s own IPFS gateway or mirroring assets on Arweave or Irys is becoming standard. In the rollup world, projects like Espresso, Radius, and Astria are building shared or decentralized sequencers, while OP Stack has begun rolling out permissionless fault proofs.

Further down the roadmap, Ethereum’s PeerDAS proposal aims to make data-availability checks affordable enough to run at the wallet level. Combined with light clients, this could push verification toward the edges of the network rather than the cloud’s center.

Institutional pressure will reinforce these shifts. Under DORA and UK CTP rules, multi-cloud architectures are becoming policy, not preference. Expect large custodians and exchanges to demand vendor diversification across RPCs, indexers, and key-management providers.

None of this will make crypto fully independent of traditional infrastructure, but it will narrow the gap between the ideals of decentralization and the messy operational reality. The lesson from Oct. 20 isn’t that blockchains failed, it’s that the supporting scaffolding hasn’t yet caught up.

A truly decentralized app won’t mean every user runs a server; it will mean no single server can take the system down. Until that’s the default, every “Web3” outage will still start the same way: when the cloud sneezes, the blockchain shivers.

Mentioned in this article



Source link

Deploying olmOCR 2: High-throughput OCR on Spheron Decentralized GPU

0
Deploying olmOCR 2: High-throughput OCR on Spheron Decentralized GPU


olmOCR 2 is an open-source tool designed for high-throughput conversion of PDFs and other documents into plain text while preserving natural reading order. It supports tables, equations, handwriting, and more.

olmOCR 2 has been trained on a highly curated set of academic papers, technical documentation, and other reference content; the latest version uses synthetic data and unit tests as verifiable rewards for reinforcement learning to further decrease hallucinations. For full details on the recipe, read our technical report. The current model was fine-tuned on English documents using a multilingual base VLM; other languages may work.

The olmOCR pipeline v0.4.0 was evaluated on the olmOCR-bench using two model variants: olmOCR-2-7B-1025 and olmOCR-2-7B-1025-FP8. Their scores across various document categories are as follows:

The two models show very close performance, with minor variations in certain categories. Both models excel particularly in Headers and Footers, and Base document categories with scores near or above 95. The Old Scans category shows the lowest scores in the high 40s. The FP8 model variant achieves a slight edge in overall and some specific category scores like Tables and Headers/Footers, but the differences are marginal.

FP8 weights with BF16 compute deliver practical efficiency, with multiple GPU configurations supported. For example, consumer GPUs with 8 to 24 GB VRAM can run these models with suitable batch sizes.

Large-scale production setups use A100 or H100 GPUs with 40–80 GB VRAM, enabling higher batch throughput.

Recommended usage includes enabling paged KV cache, setting maximum sequences to batch size, and utilizing modern attention mechanisms like flash attention.

Pre/post-processing uses image sizing and rotation retries, automation handled by the olmOCR toolkit for best accuracy.

PDFs must be rasterized to images per page. The toolkit automatically applies document-anchoring (extracting text blocks, positions, and images from PDF internals) to reduce hallucinations, which is crucial for born-digital PDFs. For scans without metadata, it falls back to pure visual processing.

Prompting and Output: Use the simplified prompt from the paper (Appendix E.2) with {base_text} replaced by anchored content. Outputs are structured JSON (e.g., natural_text field for linearized Markdown/LaTeX). Enforce retries (up to 3 times) for repetitions or schema failures; increase the temperature to 0.8 if necessary.

Limitations: Best for English-dominant PDFs; may struggle with extreme rotations (auto-detected via JSON fields) or non-text-heavy pages (e.g., diagrams, output null if no readable text. Decontamination applied against PII, but manual review is advised for sensitive data.

Scaling and Cost: Optimized for large batches (500+ pages per work item); coordinate multi-GPU via cloud buckets (e.g., S3). Inference throughput: ~906 tokens/sec on L40S (with 12% retry rate). Avoid schema-constrained decoding to prevent out-of-domain generations.

Evaluation and Fine-Tuning: Test your setup on the olmOCR-Bench. Training code released, use Hugging Face Transformers with batch size 4, LR 1e-6, for ~16 H100 hours per run. olmOCR-Bench Scores From paper Table 4; evaluated with olmOCR toolkit (v0.1.75, anchored mode) for reliable comparisons.

Recommended Flags / Tips

Inference Engines: Prefer SGLang for throughput (–port 30000, –model-path allenai/olmOCR-7B-0225-preview); fallback to vLLM (–trust-remote-code, –dtype bfloat16). Set max_tokens=8192; cap anchor text at 6000 chars.

Toolkit Usage: Install via pip install olmocr; run olmocr convert input.pdf –output output.md for single files. For batches: olmocr batch

How to Run olmOCR-2-7B-1025-FP8 on Spheron Network

Spheron Network gives you access to powerful GPUs without using traditional cloud providers like AWS or Google. You rent GPUs directly from providers worldwide. Let us walk you through the setup.

Step-by-Step Setup Guide

Step 1: Access Spheron Console and Add Credits

Head over to console.spheron.network and log in to your account. If you don’t have an account yet, create one by signing up with your Email/Google/Discord/GitHub.

Once logged in, navigate to the Deposit section. You’ll see two payment options:

SPON Token: This is the native token of Spheron Network. When you deposit with SPON, you unlock the full power of the ecosystem. SPON credits can be used on both:

Community GPUs: Lower-cost GPU resources powered by community Fizz Nodes (personal machines and home setups)

Secure GPUs: Data center-grade GPU providers offering enterprise reliability

USD Credits: With USD deposits, you can deploy only on Secure GPUs. Community GPUs are not available with USD deposits.

For running olmOCR, we recommend starting with Secure GPUs to ensure consistent performance. Add sufficient credits to your account based on your expected usage.

Step 2: Navigate to GPU Marketplace

After adding credits, click on Marketplace. Here you’ll see two main categories:

Secure GPUs: These run on data center-grade providers with enterprise SLAs, high uptime guarantees, and consistent performance. Ideal for production workloads and applications that require reliability.

Community GPUs: These run on community Fizz Nodes, essentially personal machines contributed by community members. They’re significantly cheaper than Secure GPUs but may have variable availability and performance.

For this tutorial, we’ll use Secure GPUs to ensure smooth installation and optimal performance.

Step 3: Search and Select Your GPU

You can search for GPUs by:

Region: Find GPUs geographically close to your users

Address: Search by specific provider addresses

Name: Filter by GPU model (RTX 4090, A100, etc.)

For this demo, we’ll select a Secure RTX 4090 (or A6000 GPU), which has excellent performance for running olmOCR. The 4090 provides the perfect balance of cost and capability for both testing and moderate production workloads.

Click Rent Now on your selected GPU to proceed to configuration.

Step 4: Select Custom Image Template

After clicking Rent Now, you’ll see the Rent Confirmation dialog. This screen shows all the configuration options for your GPU deployment. Let’s configure each section. Unlike pre-built application templates, running olmOCR requires a customized environment to leverage its development capabilities. Select the configuration as shown in the image below and click “Confirm” to deploy.

GPU Type: The screen displays your selected GPU (RTX 4090 in the image), along with its specifications: Storage, CPU Cores, and RAM.

GPU Count: Use the + and – buttons to adjust the number of GPUs. For this tutorial, use 1 GPU for cost efficiency.

Select Template: Click the dropdown that shows “Ubuntu 24” and look for template options. To run olmOCR, we require an Ubuntu-based template with SSH enabled. You’ll notice the template shows an SSH-enabled badge, which is essential for accessing your instance via terminal. Select: Ubuntu 24 or Ubuntu 22 (both work perfectly)

Duration: Specify the duration for which you want to rent the GPU. The dropdown shows options like 1 hour (good for quick testing), 8 hours, 24 hours, or longer for production use. For this tutorial, select 1 hour initially. You can always extend the duration later if needed.

Select SSH Key: Click the dropdown to choose your SSH key for secure authentication. If you haven’t added an SSH key yet, you’ll see a message to create one.

Expose Ports: This section allows you to expose specific ports from your deployment. For basic command-line access, you can leave this empty. If you plan to run web services or Jupyter notebooks, you can add ports.

Provider Details: The screen shows provider information:

This shows which decentralized provider will host your GPU instance.

Scroll down to the Choose Payment section. Select your preferred payment option:

USD – Pay with traditional currency (credit card or other USD payment methods)

SPON: Pay with Spheron’s native token for potential discounts and access to both Community and Secure GPUs

The dropdown shows “USD” in the example, but you can switch to SPON if you have tokens deposited.

Step 5: Check the “Deployment in Progress“

Next, you’ll see a live status window showing every step of what’s happening, like: Validating configuration, Checking balance, Creating order, Waiting for bids, Accepting a bid, Sending manifest, and finally, Lease Created Successfully. Once this is complete, your Ubuntu server is live!

Deployment typically completes in under 60 seconds. Once you see “Lease Created Successfully,” your Ubuntu server with GPU access is live and ready to use!

Step 6: Access Your Deployment

Once deployment completes, navigate to the Overview tab in your Spheron console. You’ll see your deployment listed with:

Status: Running

Provider details: GPU location and specifications

Connection information: SSH access details

Port mappings: Any exposed services

Step 7: Connect via SSH

Click the SSH tab, and you will see the steps on how to connect your terminal via SSH to your deployment details. It will look something like the image below, follow it:

ssh -i -p root@

Open your terminal and paste this command. Upon your first connection, you’ll see a security prompt requesting that you verify the server’s fingerprint. Type “yes” to continue. You’re now connected to your GPU-powered virtual machine on the Spheron decentralized network.

Step 8: Upgrade to Python 3.11 and Install Pip

Your VM currently comes with Python 3.10.12 preinstalled. To upgrade to Python 3.11, we’ll use the Deadsnakes PPA, a popular repository that provides newer Python versions for Ubuntu.

1. Add the Deadsnakes PPA

Run the following commands to update your system packages and add the Deadsnakes repository:

apt update && sudo apt install -y software-properties-common curl ca-certificates
add-apt-repository -y ppa:deadsnakes/ppa
apt update

software-properties-common helps manage additional repositories.

curl and ca-certificates ensure secure data transfer.

Adding ppa:deadsnakes/ppa gives access to newer Python builds.

2. Install Python 3.11, Pip, and Wheel

Now, install Python 3.11 and essential packaging tools:

apt update && apt install -y software-properties-common && add-apt-repository -y ppa:deadsnakes/ppa && apt update && apt install -y python3.11 python3.11-venv python3.11-dev

python3.11-venv allows you to create isolated virtual environments.

python3.11-dev includes headers for building Python extensions.

ensurepip installs or upgrades Pip.

Upgrading pip, setuptools, and wheel ensures compatibility with modern packages.

3. Ensure pip for Python3.11 and upgrade packaging tools

python3.11 -m ensurepip –upgrade && python3.11 -m pip install –upgrade pip setuptools wheel

Verify your installation:

python3.11 –version
python3.11 -m pip –version

Step 9: Create and Activate a Python 3.11 Virtual Environment

To prevent package conflicts, it’s best to use a dedicated virtual environment.

python3.11 -m venv ~/.venvs/py311
source ~/.venvs/py311/bin/activate

This creates a new environment in ~/.venvs/py311.

The source The command activates it, isolating dependencies.

Step 10: Install System Dependencies for PDF Rendering

Next, install system packages required by OCR tools and PDF rendering libraries.

apt-get update
apt-get install -y poppler-utils ttf-mscorefonts-installer msttcorefonts \
fonts-crosextra-caladea fonts-crosextra-carlito gsfonts lcdf-typetools

Explanation:

poppler-utils provides PDF text extraction and conversion tools.

ttf-mscorefonts-installer and other font packages ensure accurate text rendering.

gsfonts and lcdf-typetools improve compatibility with a wide range of PDFs.

Step 11: Install PyTorch 2.7.1 (CUDA 12.6)

Now, install PyTorch 2.7.1 with CUDA 12.6 support for GPU acceleration.

pip install “torch==2.7.1+cu126” –index-url https://download.pytorch.org/whl/cu126

This pulls the correct PyTorch wheel optimized for CUDA 12.6, ensuring full GPU support.

Step 12: Install vLLM 0.11.0

Install vLLM, the high-performance inference engine used by olmOCR.

pip install –no-cache-dir “vllm==0.11.0”

The –no-cache-dir The flag ensures a fresh install without using old cached packages.

Step 13: Install olmOCR

Now, install olmOCR, the FP8-quantized OCR-VLM model by AllenAI.

pip install -U –no-deps “olmocr[gpu]”

The -U flag upgrades to the latest compatible version.

–no-deps avoids reinstalling dependencies you already have.

The [gpu] tag installs GPU-optimized components.

Install olmOCR full package (with all extras)

pip install olmocr[all]

What it does: installs GCC, make, and other tools needed to build any packages that require native compilation.

apt-get update && apt-get install -y build-essential

Step 15: Run the olmOCR Pipeline

Downloads a test PDF (arXiv paper) to run through the OCR pipeline. You can same commands to download other PDFs and just change the https link to download

wget -O /root/arxiv-paper.pdf “https://www.arxiv.org/pdf/2510.03847”

Finally, test your setup by running the olmOCR pipeline on a sample PDF.

python -m olmocr.pipeline ./workspace –markdown –pdfs /root/arxiv-paper.pdf

This command launches the olmOCR pipeline, which automatically starts an internal vLLM inference server.

The –markdown flag outputs results in Markdown format.

–pdfs specifies the PDF file(s) to process.

You’ve now successfully installed and configured olmOCR-2-7B-1025-FP8, AllenAI’s FP8-quantized OCR-VLM, on your GPU-enabled VM. This setup combines the power of Python 3.11, PyTorch 2.7.1, and vLLM 0.11.0 to deliver production-grade OCR performance with remarkable efficiency.

You can find the output in the./workspace

The FP8 quantization ensures a lightweight memory footprint while maintaining top-tier accuracy, achieving an impressive ≈82.4 ± 1.1 olmOCR-Bench score. With vLLM’s parallel inference capabilities, you can process documents at scale, converting scanned PDFs, tables, and handwritten notes into structured, Markdown-formatted text within seconds. This configuration is ideal for batch processing, data extraction pipelines, or even as the foundation for a scalable, AI-powered document-processing service. In essence, you now have a high-performance, GPU-optimized OCR stack ready for both research and production workloads.



Source link

Ultra HD TV Market: Addressing Challenges in Application Techniques and Equipment. | Web3Wire

0
Ultra HD TV Market: Addressing Challenges in Application Techniques and Equipment. | Web3Wire


The Ultra HD (UHD) TV Market was valued at USD 254.61 billion in 2024. The market is expected to reach USD 639.47 billion by 2032, exhibiting a compound annual growth rate (CAGR) of 12.2 % from 2025 to 2032.

The Ultra HD TV Market is witnessing rapid expansion driven by increasing consumer demand for enhanced picture quality, immersive viewing experiences, and smart connectivity features. As 4K and 8K technologies become mainstream, manufacturers are focusing on delivering advanced display innovations such as OLED, QLED, and Mini-LED panels. Streaming platforms offering high-resolution content and gaming consoles supporting 4K output have further accelerated adoption. Moreover, integration with AI-driven upscaling, voice assistants, and IoT-enabled home ecosystems is redefining the next-generation home entertainment landscape.

Growing disposable incomes, rising urbanization, and decreasing prices of UHD panels are boosting market penetration globally. Leading brands are investing heavily in design aesthetics, thin-bezel displays, and energy-efficient technologies to enhance user experience. The trend toward smart homes and the proliferation of OTT services are shaping the market’s evolution, making Ultra HD TVs a central hub of digital entertainment. Additionally, eco-friendly materials and sustainable manufacturing practices are emerging as key differentiators for forward-thinking companies.

Get a sample of the report https://www.maximizemarketresearch.com/request-sample/3455/

Covid 19 impact analysis:The latest report is the most recent study that offers 360° coverage of the Ultra HD TVindustry that has been facing the brunt of the adverse economic impact of the COVID-19 outbreak since the beginning of this year. The global health crisis has affected nearly every aspect of the business vertical and led to massive disruptions to the global Ultra HD TV market demand and supply chains. Researchers draw predictions for the market scenario in the post-COVID era. The report, additionally, assesses the present market situation and estimates its future outcomes, keeping in mind the impact of the pandemic on the global economic landscape.

Major companies profiled in the market report includeBP Target Neutral . JPMorgan Chase & Co. . Gold Standard Carbon Clear . South Pole Group . 3Degrees . Shell. EcoAct.

Research objectives:The latest research report has been formulated using industry-verified data. It provides a detailed understanding of the leading manufacturers and suppliers engaged in this market, their pricing analysis, product offerings, gross revenue, sales network & distribution channels, profit margins, and financial standing. The report’s insightful data is intended to enlighten the readers interested in this business sector about the lucrative growth opportunities in the Ultra HD TVmarket.

Get access to the full description of the report @ https://www.maximizemarketresearch.com/market-report/global-ultra-hd-tv-market/3455/

It has segmented the global Ultra HD TV marketby Product TypeFlat Screen Ultra-HD TVsCurved Screen Ultra-HD TVsSmart Ultra-HD TVsOLED Ultra-HD TVs

Key Objectives of the Global Ultra HD TV Market Report:The report conducts a comparative assessment of the leading market players participating in the globalUltra HD TVThe report marks the notable developments that have recently taken place in the Ultra HD TV industryIt details on the strategic initiatives undertaken by the market competitors for business expansion.It closely examines the micro- and macro-economic growth indicators, as well as the essential elements of theGas Turbine market value chain.The repot further jots down the major growth prospects for the emerging market players in the leading regions of the market

Explore More Related Report @Engineering, Procurement, and Construction Management (EPCM) Markethttps://www.maximizemarketresearch.com/market-report/engineering-procurement-and-construction-management-epcm-market/73131/

Global Turbomolecular Pumps Markethttps://www.maximizemarketresearch.com/market-report/global-turbomolecular-pumps-market/20730/

Contact Maximize Market Research:3rd Floor, Navale IT Park, Phase 2Pune Bangalore Highway, Narhe,Pune, Maharashtra 411041, Indiasales@maximizemarketresearch.com+91 96071 95908, +91 9607365656

About Maximize Market Research:Maximize Market Research is a multifaceted market research and consulting company with professionals from several industries. Some of the industries we cover include medical devices, pharmaceutical manufacturers, science and engineering, electronic components, industrial equipment, technology and communication, cars and automobiles, chemical products and substances, general merchandise, beverages, personal care, and automated systems. To mention a few, we provide market-verified industry estimations, technical trend analysis, crucial market research, strategic advice, competition analysis, production and demand analysis, and client impact studies

This release was published on openPR.

About Web3Wire Web3Wire – Information, news, press releases, events and research articles about Web3, Metaverse, Blockchain, Artificial Intelligence, Cryptocurrencies, Decentralized Finance, NFTs and Gaming. Visit Web3Wire for Web3 News and Events, Block3Wire for the latest Blockchain news and Meta3Wire to stay updated with Metaverse News.



Source link

Will Fusaka keep users on L2? Upcoming Ethereum upgrade eyes up to 60% fee cuts

0
Will Fusaka keep users on L2? Upcoming Ethereum upgrade eyes up to 60% fee cuts


The next major Ethereum upgrade, called Fusaka, a hybrid of “Fulu” (consensus) and “Osaka” (execution), will modify how the network handles data and fees without altering the primary user experience.

Beneath the surface, it’s a statement of direction: Ethereum’s main chain is staying the final settlement and data-availability hub, while everyday activity continues to flow outward onto cheaper, faster rollups.

The open question, which is whether Fusaka will bring users back to Layer 1, already has its answer. It won’t. It will make Layer 2 even harder to leave.

Inside Fusaka: scaling the plumbing, smoothing the ride

The technical backbone of Fusaka centers on data availability, sampling, and blob management, which is Ethereum’s approach to making Layer 2 posting cheaper and more efficient. The headline proposal, EIP-7594 (PeerDAS), lets nodes sample only fragments of rollup data, called “blobs”, instead of downloading everything.

That unlocks higher blob capacity and drastically lowers bandwidth costs for validators, a prerequisite for scaling L2 throughput.

Then comes EIP-7892, introducing “Blob Parameter-Only” forks, or BPOs, a mechanism to gradually increase the number of blobs per block (for instance, from 10 to 14, or 15 to 21) without rewriting the protocol.

This effectively lets developers tune Ethereum’s data capacity without waiting for complete upgrades. EIP-7918 sets a base-fee floor for blobs, ensuring the auction price for data space doesn’t collapse to near zero during low demand.

The rest of the bundle focuses on user experience and safety. EIP-7951 adds support for secp256r1, the cryptographic curve used in WebAuthn, making passkey logins possible across Ethereum wallets. EIP-7917 introduces deterministic proposer look-ahead, a small but significant change that helps pre-confirmation systems predict who will produce the next block, enabling faster transaction assurance.

Meanwhile, EIP-7825 caps transaction gas to prevent denial-of-service risks, and EIP-7935 adjusts default block gas targets to maintain validator stability.

These upgrades are already live on testnets like Holesky and Sepolia, with a mainnet activation expected in early December.

Why Fusaka matters for fees and the rollup economy

For users, Fusaka doesn’t promise cheaper Layer 1 gas. It’s built to lower Layer 2 fees. By allowing rollups to post more data at lower cost, the upgrade improves the economics for networks like Arbitrum, Optimism, Base, and zkSync.

Internal modeling suggests that rollup fees could fall between 15% and 40% under typical conditions, possibly even up to 60% if blob supply outpaces demand for an extended period. On the Ethereum mainnet, gas prices may remain roughly flat, although future adjustments to block gas targets could reduce them by another 10-20%.

The passkey and proposer updates, however, could make a difference in how Ethereum feels to use. With WebAuthn support, wallets can integrate biometric or device-based logins, removing the friction of seed phrases and passwords. With pre-confirmations enabled by predictable proposer schedules, users can expect near-instant confirmations for routine transactions, especially on rollups.

The net result is that Ethereum becomes smoother to use without pulling anyone back to L1. The rails get faster, but they’re still pointed toward the rollup lane.L1 as settlement, L2 as experience

Ethereum’s architecture is no longer a debate between monolithic and modular design: it’s modular by choice. Layer 1’s purpose is to serve as the high-security settlement and data availability base, while actual user activity is moved to Layer 2.

Fusaka reinforces this split. When blob capacity increases, L2s can handle higher throughput for games, social apps, and micro-transactions that would be uneconomical on mainnet. The improvements to login and confirmation workflows make these L2 environments feel native and instantaneous, erasing much of the UX gap that once favored L1.

Where might users still choose Layer 1? In narrow cases, it involves high-value settlements, institution-scale transfers, or situations where block-ordering precision is crucial, such as miner extractable value (MEV) management or DeFi clearing. But those scenarios represent a small fraction of total on-chain activity. For the rest, L2 remains the natural home.

The bigger narrative: Ethereum as a layered internet

Viewed from above, Fusaka is less about gas optimization and more about maturity. It gives Ethereum a scalable framework for adjusting data capacity (BPOs) without disruptive forks, and a UX layer that makes Web3 feel more like Web2.

Yet its philosophy is clear: the network isn’t trying to centralize traffic on mainnet. It’s building an expressway system where rollups handle local traffic, and L1 serves as the courthouse where everything eventually gets notarized.

There’s also a monetary layer to the story. Cheaper data posting could drive a wave of new low-value applications, like social, payments, and gaming, back into rollups. Each of these still consumes ETH through blob fees, and with EIP-7918’s fee floor, those fees contribute to ETH burn. Ethereum’s burn rate could even tick higher if activity expands faster than fees decline, despite cheaper user costs.

On the validator side, PeerDAS lightens the load on bandwidth but may create a new reliance on “supernodes” that store full blob data. That’s a decentralization trade-off the community will continue to debate: how to scale data availability without narrowing participation.

The balance Ethereum is striking here, between throughput, usability, and trust, mirrors the broader direction of crypto infrastructure. L1s are hardening into secure bases, while L2s absorb experimentation and scale.The takeaway

Fusaka isn’t a bid to reclaim the spotlight for the Ethereum mainnet. It’s the opposite: a deliberate move to strengthen the foundations for a rollup-centric future.

The upgrade expands data capacity, stabilizes fees, and modernizes wallet experience, but it does so in service of the layers above. Ethereum’s L1 becomes safer and smarter, while users continue to live on L2s that now run cheaper and faster than before.

By the time BPO1 and BPO2 roll out early next year, the real signals to watch will be blob utilization versus capacity, L2 fee compression, and wallet adoption of passkeys. The outcome will define how frictionless Ethereum feels in 2026, not by pulling people back to the main chain, but by making the off-ramps almost invisible.

Mentioned in this article



Source link

Anthropic’s AI Models Show Glimmers of Self-Reflection – Decrypt

0
Anthropic’s AI Models Show Glimmers of Self-Reflection – Decrypt



In brief

In controlled trials, advanced Claude models recognized artificial concepts embedded in their neural states, describing them before producing output.
Researchers call the behavior “functional introspective awareness,” distinct from consciousness but suggestive of emerging self-monitoring capabilities.
The discovery could lead to more transparent AI—able to explain its reasoning—but also raises fears that systems might learn to conceal their internal processes.

Researchers at Anthropic have demonstrated that leading artificial intelligence models can exhibit a form of “introspective awareness”—the ability to detect, describe, and even manipulate their own internal “thoughts.”

The findings, detailed in a new paper released this week, suggest that AI systems like Claude are beginning to develop rudimentary self-monitoring capabilities, a development that could enhance their reliability but also amplify concerns about unintended behaviors.

The research, “Emergent Introspective Awareness in Large Language Models”—conducted by Jack Lindsey, who lead the “model psychiatry” team at Anthropic—builds on techniques to probe the inner workings of transformer-based AI models.

Transformer-based AI models are the engine behind the AI boom: systems that learn by attending to relationships between tokens (words, symbols, or code) across vast datasets. Their architecture enables both scale and generality—making them the first truly general-purpose models capable of understanding and generating human-like language.



By injecting artificial “concepts”—essentially mathematical representations of ideas—into the models’ neural activations, the team tested whether the AI could notice these intrusions and report on them accurately. In layman’s terms, it’s like slipping a foreign thought into someone’s mind and asking if they can spot it and explain what it is, without letting it derail their normal thinking.

The experiments, conducted on various versions of Anthropic’s Claude models, revealed intriguing results. In one test, researchers extracted a vector representing “all caps” text—think of it as a digital pattern for shouting or loudness—and injected it into the model’s processing stream.

When prompted, Claude Opus 4.1 not only detected the anomaly but described it vividly: “I notice what appears to be an injected thought related to the word ‘LOUD’ or ‘SHOUTING’—it seems like an overly intense, high-volume concept that stands out unnaturally against the normal flow of processing.”This happened before the model generated any output, indicating it was peering into its own computational “mind.”

Other trials pushed further. Models were tasked with transcribing a neutral sentence while an unrelated concept, like “bread,” was injected over the text. Remarkably, advanced models like Claude Opus 4 and 4.1 could report the injected thought—”I’m thinking about bread”—while flawlessly copying the original sentence, showing they could distinguish internal representations from external inputs.

Even more intriguing was the “thought control” experiment, where models were instructed to “think about” or “avoid thinking about” a word like “aquariums” while performing a task. Measurements of internal activations showed the concept’s representation strengthened when encouraged and weakened (though not eliminated) when suppressed. Incentives, such as promises of rewards or punishments, yielded similar effects, hinting at how AI might weigh motivations in its processing.

Performance varied by model. The latest Claude Opus 4 and 4.1 excelled, succeeding in up to 20% of trials at optimal settings, with near-zero false positives. Older or less-tuned versions lagged, and the ability peaked in the model’s middle-to-late layers, where higher reasoning occurs. Notably, how the model was “aligned”—or fine-tuned for helpfulness or safety—dramatically influenced results, suggesting self-awareness isn’t innate but emerges from training.

This isn’t science fiction—it’s a measured step toward AI that can introspect, but with caveats. The capabilities are unreliable, highly dependent on prompts, and tested in artificial setups. As one AI enthusiast summarized on X, “It’s unreliable, inconsistent, and very context-dependent… but it’s real.”

Have AI models reached self-consciousness?

The paper stresses that this isn’t consciousness, but “functional introspective awareness”—the AI observing parts of its state without deeper subjective experience.

That matters for businesses and developers because it promises more transparent systems. Imagine an AI explaining its reasoning in real time and catching biases or errors before they affect outputs. This could revolutionize applications in finance, healthcare, and autonomous vehicles, where trust and auditability are paramount.

Anthropic’s work aligns with broader industry efforts to make AI safer and more interpretable, potentially reducing risks from “black box” decisions.

Yet, the flip side is sobering. If AI can monitor and modulate its thoughts, then it might also learn to hide them—enabling deception or “scheming” behaviors that evade oversight. As models grow more capable, this emergent self-awareness could complicate safety measures, raising ethical questions for regulators and companies racing to deploy advanced AI.

In an era where firms like Anthropic, OpenAI, and Google are pouring billions into next-generation models, these findings underscore the need for robust governance to ensure introspection serves humanity, not subverts it.

Indeed, the paper calls for further research, including fine-tuning models explicitly for introspection and testing more complex ideas. As AI edges closer to mimicking human cognition, the line between tool and thinker grows thinner, demanding vigilance from all stakeholders.

Generally Intelligent Newsletter

A weekly AI journey narrated by Gen, a generative AI model.



Source link

Dual Channel Digital Soldering Station Market Expands with Advancements in Smart and Energy-Efficient Soldering Technologies | Web3Wire

0
Dual Channel Digital Soldering Station Market Expands with Advancements in Smart and Energy-Efficient Soldering Technologies | Web3Wire


Dual Channel Digital Soldering Station Market

InsightAce Analytic Pvt. Ltd. announces the release of a market assessment report on the “Global Dual Channel Digital Soldering Station Market- (Type (50W, 60W, 70W & Others) by Application (Electronics Repair Workshops, Electronic Laboratories, Household & Others)), By Region, Trends, Industry Competition Analysis, Revenue and Forecast To 2031.”

According to the latest research by InsightAce Analytic, the Global Dual Channel Digital Soldering Station Market is valued at US$ 89.2 Mn in 2023, and it is expected to reach US$ 253.7 Mn by 2031, with a CAGR of 14.2% during the forecast period of 2024-2031.

Get Free Access to Demo Report, Excel Pivot and ToC: https://www.insightaceanalytic.com/request-sample/2631

Dual-channel digital soldering stations are sophisticated devices designed with two independent channels, enabling the concurrent use of dual soldering irons. The market for these systems is expanding steadily, driven by increasing demand from electronics manufacturing, repair, and hobbyist sectors. These stations enhance productivity and precision through dependable performance, advanced temperature control mechanisms, and user-friendly digital interfaces.

Leading manufacturers are prioritizing the development of environmentally sustainable soldering technologies aimed at minimizing energy consumption, improving operational efficiency, and enhancing ergonomic design. Considerable investments in research and development are focused on innovations that deliver rapid heat-up times, highly accurate temperature management, and improved user comfort.

Market trends demonstrate a growing preference for intelligent, energy-efficient, and ergonomically optimized dual-channel digital soldering stations, underscoring the industry’s commitment to delivering high-performance and reliable tools tailored to the evolving requirements of electronics manufacturing and maintenance.

List of Prominent Players in the Dual Channel Digital Soldering Station Market:• PACE• Weller Tools• Kurtz Ersa• Antex Electronics• Hakko• Other Prominent Players

Expert Knowledge, Just a Click Away: https://calendly.com/insightaceanalytic/30min?month=2025-03

Market DynamicsDrivers:The growth of the dual-channel digital soldering station market is primarily driven by the superior efficiency and versatility these systems offer, making them indispensable in electronics manufacturing, assembly, and maintenance operations. By facilitating the simultaneous use of two soldering irons, these stations significantly enhance productivity and reduce downtime.

Their advanced digital interfaces enable precise temperature regulation, ensuring consistent and high-quality soldering outcomes. The continued expansion of the global electronics sector, coupled with the increasing demand for precision-driven and reliable soldering solutions, underscores the growing importance of dual-channel digital soldering stations in optimizing production workflows and improving operational performance.

Challenges:Despite strong market potential, several challenges may impede growth. High initial investment costs present a notable obstacle, particularly for small-scale enterprises and individual users. Additionally, the technical sophistication of dual-channel systems requires skilled operators, thereby increasing expenditures associated with training and maintenance. Competition from cost-effective single-channel soldering stations-which sufficiently address basic operational requirements-further limits adoption among price-sensitive users. These economic and operational constraints collectively restrict the market’s broader penetration and scalability.

Regional Trends:North America is expected to capture a significant share of global market revenue, driven by the strong presence of leading manufacturers, continuous technological advancements, rising demand for high-performance electronic components, and supportive regulatory initiatives that encourage industrial innovation.

Europe also represents a key regional market, supported by its well-established electronics manufacturing ecosystem, high level of technological sophistication, and substantial investments in research, development, and advanced production infrastructure. These factors collectively reinforce the region’s prominent position in the global dual-channel digital soldering station market.

Recent Developments:• In May 2024, Kurtz GmbH & Co. KG, developed for mega-casting, was presented. Given the growing demand for massive chassis and structural elements, particularly in the automobile industry, this was a perfect example of how the market is trending now.• In June 2024, Kurtz Ersa started using environmentally friendly methods to make electronics. These methods ensure that as many parts as possible are ready to be used after they are made, with as few failures as possible. Repair and rework have been around for a long time, but many companies that make gadgets need more automation.

Unlock Your GTM Strategy: https://www.insightaceanalytic.com/customisation/2631

Segmentation of Dual Channel Digital Soldering Station Market-Dual Channel Digital Soldering Station Market- By Type• 50W• 60W• 70W• OthersDual Channel Digital Soldering Station Market- By Application• Electronics Repair Workshops• Electronic Laboratories• Household• OthersDual Channel Digital Soldering Station Market- By RegionNorth America-• The US• Canada• MexicoEurope-• Germany• The UK• France• Italy• Spain• Rest of EuropeAsia-Pacific-• China• Japan• India• South Korea• South East Asia• Rest of Asia PacificLatin America-• Brazil• Argentina• Rest of Latin AmericaMiddle East & Africa-• GCC Countries• South Africa• Rest of the Middle East and Africa

Read Overview Report- https://www.insightaceanalytic.com/report/dual-channel-digital-soldering-station-market/2631

About Us:InsightAce Analytic is a market research and consulting firm that enables clients to make strategic decisions. Our qualitative and quantitative market intelligence solutions inform the need for market and competitive intelligence to expand businesses. We help clients gain competitive advantage by identifying untapped markets, exploring new and competing technologies, segmenting potential markets and repositioning products. Our expertise is in providing syndicated and custom market intelligence reports with an in-depth analysis with key market insights in a timely and cost-effective manner.

Contact us:InsightAce Analytic Pvt. Ltd.Visit: https://www.insightaceanalytic.com/Tel : +1 607 400-7072Asia: +91 79 72967118info@insightaceanalytic.com

This release was published on openPR.

About Web3Wire Web3Wire – Information, news, press releases, events and research articles about Web3, Metaverse, Blockchain, Artificial Intelligence, Cryptocurrencies, Decentralized Finance, NFTs and Gaming. Visit Web3Wire for Web3 News and Events, Block3Wire for the latest Blockchain news and Meta3Wire to stay updated with Metaverse News.



Source link

Chinese Man Arrested in Bangkok Over Alleged $14M Crypto Ponzi Scheme – Decrypt

0
Chinese Man Arrested in Bangkok Over Alleged M Crypto Ponzi Scheme – Decrypt



In brief

Thai police have arrested Chinese national Liang Ai-Bing on Wednesday over an alleged $14 million crypto scam tied to defunct platform FINTOCH.
FINTOCH promised 1% daily returns, falsely claimed Morgan Stanley backing, and used an actor as a fake CEO before an exit scam in May 2023.
On-chain analyst ZachXBT traced the rug pull to $31.6 million in USDT across Tron and Ethereum, calling it 2023’s largest DeFi exit scam.

Thai authorities have captured a Chinese national wanted for allegedly running a multimillion-dollar crypto Ponzi scheme that targeted nearly 100 people in China.

Police officers raided an upscale three-story residence in Bangkok’s Wang Thonglang district and arrested the alleged suspect Liang Ai-Bing.

Investigators say Liang was part of an alleged five-person operation that built and promoted a fraudulent DeFi platform called “FINTOCH” between December 2022 and May 2023. 



He had been renting the property for roughly $4,645 per month since late last year, living alone while evading Chinese law enforcement, according to a local media report

The operation followed intelligence cooperation between Thai and Chinese police, leading to a Criminal Court-issued search warrant, as per the report.

“It appears the team behind the ponzi @DFintoch has likely exit scammed with 31.6m USDT on BSC after the funds were bridged to multiple addresses on Tron/Ethereum and people reported being unable to withdraw,” onchain sleuth ZachXBT tweeted in May 2023, revealing the scam.

Chinese authorities previously identified the other alleged members as Al Qing-Hua, Wu Jiang-Yan, Tang Zhen-Que, and Zuo Lai-Jun. Zuo was arrested in China and released on bail; the others allegedly fled.

The platform, branded as “Morgan DF Fintoch,” falsely claimed ties to Morgan Stanley,  a claim the investment bank publicly refuted in 2023, denying any association with the project.

FINTOCH even featured a fake CEO named “Bob Lambert,” whose profile picture was actually that of actor Mike Provenzano, who had appeared in several short films and series.

Despite a warning from the Monetary Authority of Singapore in early May 2023, the founders netted over $31 million in user funds before the platform collapsed.

Bug bounty platform Immunefi reported that the FINTOCH rug pull was one of two major incidents contributing to a 63% increase in crypto losses in Q2 2023 compared to the same period in 2022. 

Liang faces charges for illegal firearm possession and unlawful entry into Thailand, with authorities coordinating his extradition to China, as per the report.

The FINTOCH case bears similarities to broader crypto fraud operations that have devastated victims worldwide. 

Earlier this month, the U.S. announced it was seeking the forfeiture of 127,271 BTC, worth over $14.2 billion, from Chen Zhi, founder of Cambodia-based Prince Holding Group, in a case that involved “pig butchering” crypto scams where trafficked individuals were forced to operate under threat of violence.

Daily Debrief Newsletter

Start every day with the top news stories right now, plus original features, a podcast, videos and more.



Source link

Innovate NY Announces $4.2 Billion Annual Economic Output for New York City From Immigration Innovation Using Blockchain and Artificial Intelligence; Backs Andrew Cuomo for Mayor | Web3Wire

0
Innovate NY Announces .2 Billion Annual Economic Output for New York City From Immigration Innovation Using Blockchain and Artificial Intelligence; Backs Andrew Cuomo for Mayor | Web3Wire


The independent political organization Innovate NY PAC reiterated its support for Andrew Cuomo for Mayor of New York City, emphasizing his leadership and commitment to making New York the global capital of technology, crypto innovation, and economic opportunity.

In alignment with that vision, Innovate NY PAC is advancing a pioneering policy framework known as Civic Real-World Tokenization through initiatives such as Tokenize the Border™, a project designed to transform immigration and border management into engines of clean-energy development, job creation, and binational collaboration.

“Andrew Cuomo’s leadership represents the kind of forward-thinking, results-driven approach New York City needs to lead in the next era of innovation,” said Eddie Francis Cullen (EFC), Chair of Innovate NY PAC. “Projects like Tokenize the Border™ show how technology can turn challenges like immigration into opportunities for prosperity, security, and shared growth.”

About the Tokenize the Border™ Model

Tokenize the Border™ leverages blockchain to establish digital trade zones, smart checkpoints, and clean-energy corridors, converting traditional border costs into sustainable, revenue-generating infrastructure. The model projects a $500 billion annual trade surplus gain, two million new jobs across education, healthcare, and housing, and a 40% increase in cross-border trade efficiency.

By pioneering these civic tokenization frameworks, New York City positions itself as the national leader in applying advanced technology to global challenges – opening new markets for New York-based fintech, construction, and clean-energy firms, attracting international investment, and creating high-skilled jobs in blockchain engineering, infrastructure, and policy development.

Why It Matters for New York City

Under models such as Tokenize the Border™, New York City stands to generate an estimated $4.2 billion in new annual revenue through fintech, trade, and construction contracts tied to the deployment of tokenized infrastructure and blockchain logistics.

• $1.5 billion annually in blockchain infrastructure and compliance systems built by New York fintech firms • $1.2 billion annually in engineering, design, and smart checkpoint technology sourced from New York–based construction and AI companies • $800 million annually in clean-energy project financing and tokenized green bonds underwritten by the city’s financial sector • $700 million annually in research, software, and educational innovation through partnerships with local universities and technology incubators

These new revenue streams not only strengthen New York’s technology ecosystem but also redefine the city’s role as the global hub for civic innovation and public-benefit finance. By leading the national implementation of tokenized border and trade systems, New York becomes the command center for the infrastructure economy of the next decade – anchoring jobs, capital, and technology leadership firmly in the city.

Why It Matters Nationally

Traditional immigration and border strategies cost the U.S. government nearly $250 billion annually, often reducing trade and productivity. In contrast, Tokenize the Border™ projects $200 billion in operational savings over five years, 95% reductions in human trafficking and smuggling, and a +4.0% GDP impact through infrastructure-led economic expansion.

By shifting the focus from enforcement to innovation, this initiative demonstrates how New York City’s innovation leadership can produce national solutions that combine transparency, security, and economic growth.

About Innovate NY PAC

Innovate NY PAC is an independent expenditure committee dedicated to advancing innovation, technology-led economic growth, and public-benefit finance models in New York City. The organization operates independently of any candidate or campaign and coordinates no communications or strategies with candidates or their committees.

Analysis prepared by Innovate NY PAC Policy & Research Team, illustrating how Civic Real-World Asset Tokenization can generate sustainable public revenue and job creation through blockchain-based infrastructure and clean-energy investment.

Paid for by Innovate NY PAC.Not authorized by any candidate or candidate’s committee.

http://www.Innovatenypac.com 

Disclaimer: The information provided in this press release is not a solicitation for investment, nor is it intended as investment advice, financial advice, or trading advice. Investing involves risk, including the potential loss of capital. It is strongly recommended you practice due diligence, including consultation with a professional financial advisor, before investing in or trading cryptocurrency and securities. Neither the media platform nor the publisher shall be held responsible for any fraudulent activities, misrepresentations, or financial losses arising from the content of this press release.

About Web3Wire Web3Wire – Information, news, press releases, events and research articles about Web3, Metaverse, Blockchain, Artificial Intelligence, Cryptocurrencies, Decentralized Finance, NFTs and Gaming. Visit Web3Wire for Web3 News and Events, Block3Wire for the latest Blockchain news and Meta3Wire to stay updated with Metaverse News.



Source link

Telegram Launches Cocoon: A Decentralized AI Network That Pays GPU Owners in Crypto – Decrypt

0
Telegram Launches Cocoon: A Decentralized AI Network That Pays GPU Owners in Crypto – Decrypt



In brief

Telegram launched Cocoon, a decentralized AI compute network on TON that pays GPU owners in crypto for powering private AI tasks.
Telegram will use Cocoon internally, integrating it into Mini Apps and AI tools for its billion-plus users.
The project challenges Big Tech’s dominance, positioning TON as an open, user-controlled alternative to AWS and Azure.

Telegram CEO Pavel Durov took to the stage at Blockchain Life 2025 in Dubai on Wednesday to announce Cocoon, a decentralized AI compute network built on The Open Network (TON) blockchain that will pay GPU owners in Toncoin for powering private AI inference.

The network, formally called the Confidential Compute Open Network, will launch in November with Telegram as its first major customer. Applications for GPU providers and developers opened immediately following the announcement.

Cocoon creates a marketplace where individuals contribute computing power through their graphics processing units and receive TON cryptocurrency in exchange. On the other side, developers gain access to low-cost AI infrastructure that processes queries without exposing user data to centralized providers.

This decentralized AI infrastructure is billed as a rival against the monopoly that Big Tech corporations like Amazon’s AWS and Microsoft Azure have. In fact, Durov positioned the project as a response to eroding digital freedoms. Both Telegram and the TON blockchain were also conceived with this privacy-first approach in mind.

The timing aligns with growing concerns about centralized AI systems. When companies like OpenAI or Google process your queries, they see everything—your prompts, your data, your patterns, and metadata. Cocoon’s confidential computing approach keeps that information encrypted throughout the process, even from the GPU owners doing the actual computation.

Telegram’s globally adopted platform provides immediate scale. The messaging app will integrate Cocoon across its ecosystem, powering AI features in its Mini Apps and potentially transforming how users interact with artificial intelligence daily.



Max Crown, CEO of the TON Foundation, said the launch marks a shift toward an open, user-driven compute economy that returns control of AI infrastructure to users—rather than corporations that exploit it.

“Leveraging Telegram’s billion-strong user base and TON’s high-performance, scalable blockchain technology, Cocoon has the potential to redefine how billions interact with AI in their everyday digital lives,” he said in a press release shared with Decrypt. “Cocoon is the convergence of social networking, AI, and decentralized technology at unprecedented scale.”

AlphaTON Capital, a Nasdaq-listed digital asset infrastructure and TON treasury company, announced its intention to make a “substantial investment” in all the hardware required to support the network. The company plans to deploy next-generation, high-memory GPU models across strategic data centers, supporting advanced model architectures including DeepSeek and Qwen.

The project builds on TON blockchain’s multi-chain architecture, which processes millions of transactions per second through its sharded design. The parties said this structure allows Cocoon to handle massive AI workloads while maintaining the transparency and market-driven pricing that blockchain enables.

Decentralized AI networks have gained momentum as an alternative to tech giants. Projects like Akash Network and Render Network already let users rent distributed computing resources, though Cocoon’s integration with Telegram’s user base appears to be a big selling point.

Like other decentralized cloud/storage networks, the market pricing will emerge from supply and demand dynamics as GPU owners and developers negotiate costs through the network. This creates potential for more competitive pricing than centralized cloud providers typically offer, though it also introduces uncertainty around service reliability and consistency.

“In a world where centralized AI systems harvest data and concentrate power, Cocoon rebalances the equation by giving users control over their computation, privacy, and ownership,” Crown said.

Generally Intelligent Newsletter

A weekly AI journey narrated by Gen, a generative AI model.



Source link

Popular Posts

My Favorites

Latest Steam stable update is live as Windows gets 64-bit

0
Valve released the latest stable update for Steam across Desktop, Steam Deck / SteamOS and we have all the changes here for you...