# What is web3? Decentralized technology explained for business

> Web3 means apps whose records live on shared blockchains, not one company's servers. What it is, what works in 2026, what failed and when you need it.

- URL: https://computese.com/web3-how-decentralized-technologies-are-shaping/
- Author: Duong Quan Nguyen, CEO, Computese
- Published: 2024-08-20
- Updated: 2026-09-25
- Topics: Web development, Cloud

## In short
- Web3 is the idea of applications whose records, money and rules live on public blockchains and are controlled with users' own keys. In practice it still leans on ordinary websites, cloud hosting and a few central stablecoin issuers.
- The uses with real volume in 2026 are financial: stablecoins were worth $317 billion in April 2026, Visa settles with some banks in them, and tokenized treasury funds held almost $9 billion by October 2025.
- Much of the rest failed or stalled: Terra and FTX collapsed in 2022, NFT trading is a fraction of its 2021 peak, and enterprise ledgers such as Maersk and IBM's TradeLens were shut down.
- The big losses come from keys and signing, not the ledger: over $3.4 billion in crypto was stolen in 2025, including about $1.5 billion from Bybit, a theft the FBI attributes to North Korea.
- A blockchain only makes sense when several parties who do not trust each other must write to the same records and cannot agree on an operator. Otherwise a database, an API and an audit log do the job better.

Web3 is a name for applications whose records, money and rules live on public blockchains instead of one company's servers, with each user controlling an account through their own cryptographic keys. As of September 2026 its real uses are in payments and finance: stablecoins and tokenized funds. For almost everything else a business does, a database still wins.

This guide explains the vocabulary in plain words (blockchain, smart contract, wallet, token, stablecoin, decentralized application), then looks at the evidence: what is in real use, what failed, where the money gets stolen, which rules now apply in the EU and the US, how much energy it takes, and the questions to ask before any web3 project.

> [!NOTE]
> This article explains technology, incidents and regulation. It is not investment advice, and nothing in it is a recommendation to buy, sell or hold any crypto asset or token.

## What web3 means, and where the term came from

The Ethereum community's own explainer, [ethereum.org](https://ethereum.org/web3/), splits the web's history into loose periods. Web 1.0, roughly 1990 to 2004, was mostly static pages you could read. Web 2.0, from 2004, added platforms where users write and share content, while a handful of companies came to control most of the traffic and the advertising revenue. Web3 adds ownership: your assets and identity sit on a public blockchain, and you control them with a key rather than an account someone else can close. Ethereum co-founder Gavin Wood coined the term in 2014, and the same page admits it has become a catch-all with no rigid definition.

The pitch rests on four ideas: no single owner (decentralized), open to anyone (permissionless), money built into the network (native payments) and rules enforced by code and incentives rather than by a trusted company (trustless). The honest caveat comes from the same source. Ethereum.org notes that the ecosystem still depends mainly on centralized infrastructure, and its [developer guide to dapps](https://ethereum.org/developers/docs/dapps/) warns that when a service keeps keys on its own server, serves its front end from one server or runs important logic centrally, most of the advantages over a traditional system disappear.

Here is how the two models differ for a business deciding where its records should live:

| Question                       | Typical web2 application                 | Web3 application                                 |
| ------------------------------ | ---------------------------------------- | ------------------------------------------------ |
| Where do the records live?     | In the company's database                | On a blockchain that many independent nodes copy |
| How do users sign in?          | Password, single sign-on or passkey      | A wallet signs a message with the user's key     |
| How does money move?           | Cards and bank transfers                 | Tokens sent on the chain, often stablecoins      |
| What if a user loses access?   | The company resets the password          | A lost private key cannot be recovered           |
| Can a wrong record be fixed?   | An administrator edits or deletes it     | A correction can be added; the original stays    |
| What if the operator vanishes? | The service, and often the data, is gone | The records remain on the chain                  |

## The building blocks, in plain words

Six terms cover most of what you will read about web3. They also map onto the layers of any web3 product, from the website a customer sees down to the ledger underneath.

### Blockchain

NIST's [Blockchain Technology Overview](https://csrc.nist.gov/pubs/ir/8202/final) defines blockchains as tamper evident and tamper resistant digital ledgers, kept in a distributed way and usually without a central authority such as a bank or a company. Transactions are grouped into blocks, and each block carries a cryptographic hash of the previous block's header, so changing an old record would break every link after it. The copies agree on the next block through a consensus method: proof of work, where computers race to solve a costly puzzle (Bitcoin), or proof of stake, where validators put up the network's own token as a deposit. Public chains such as Bitcoin and Ethereum are permissionless; permissioned chains such as Hyperledger Fabric let only authorized parties add blocks and can restrict who reads them.

NIST also points out a consequence businesses tend to discover late. Most applications create, read, update and delete records; a blockchain only creates and reads. You can append a transaction that marks an old one as superseded, but the original stays in every copy, which is why NIST warns that personal data covered by laws such as the GDPR may not belong on a chain at all.

![On the left, three laptops connect to one central database server. On the right, three servers each keep the same chain of blocks, and a new orange block is copied to all of them.](https://computese.com/images/blog/web3-how-decentralized-technologies-are-shaping/ledger.dadd73d470-1536.webp)

*Every participant keeps the same append-only copy: no one can quietly rewrite history, and no one can delete a mistake either.*

### Smart contract

A smart contract is a program stored on the chain. NIST describes it as code and data deployed through signed transactions, executed by the network's nodes, which must all reach the same result. [Ethereum's documentation](https://ethereum.org/developers/docs/smart-contracts/) adds two properties that matter for risk: a contract cannot be deleted by default, and interactions with it are irreversible. The usual comparison is a vending machine: the right input always produces the programmed output, including when the programming is wrong. That is why a bug in a smart contract tends to become a public, permanent loss rather than a support ticket.

### Wallet and private key

A wallet is software, or a small hardware device, that stores private keys and uses them to sign transactions. NIST is blunt about the stakes: if a user loses a private key, the assets tied to it are lost, because the key cannot be regenerated, and if the key is stolen, the thief controls everything it controls. Two answers exist. Custody services hold keys for you, which brings back a trusted company. Multi-signature (multisig) contracts require several keys, for example three of five, to approve a transfer, so no single lost or stolen key is fatal.

### Token, NFT and stablecoin

A token is a balance or item that a smart contract records. The [ERC-20 standard](https://ethereum.org/developers/docs/standards/tokens/erc-20/), proposed in November 2015, defines fungible tokens, where every unit is interchangeable like a coin or a fund share. The [ERC-721 standard](https://ethereum.org/developers/docs/standards/tokens/erc-721/), proposed in January 2018, defines non-fungible tokens (NFTs), where each token has a unique ID and can represent a collectible, a ticket or an access key.

A stablecoin is a token that promises to stay worth a fixed amount of a currency, almost always one US dollar. The Bank for International Settlements (BIS), in its [2025 Annual Economic Report](https://www.bis.org/publications/aer-2025/next-generation-monetary-financial-system), describes three designs: backed by short-term assets in a traditional currency, backed by other crypto as collateral, or held steady by an algorithm. Most of the market is the first kind, and unlike Bitcoin, most stablecoins are issued by a single central company, with USDT (Tether) and USDC (Circle) the two largest.

### Decentralized application (dApp)

A dApp combines a smart contract, which acts as its back end, with a front end that looks like any other website and asks the user's wallet to sign. The front end can be hosted on decentralized storage such as IPFS, but it is often an ordinary site on ordinary hosting. Lending and trading services built this way are called decentralized finance (DeFi), and groups that vote with tokens on how a shared pool of funds is spent, with a contract carrying out the result, are called decentralized autonomous organizations (DAOs).

## What has real use as of September 2026

Three uses have documented, measurable activity. Two are financial, and the third is a well-known supply chain pilot whose limits are as instructive as its result.

### Stablecoins in payments and settlement

Stablecoins are the part of web3 with real volume. A [Federal Reserve staff note](https://www.federalreserve.gov/econres/notes/feds-notes/stablecoins-in-2025-developments-and-financial-stability-implications-20260408.html) puts their combined market capitalization at $317 billion as of April 6, 2026, more than 50% higher than in early 2025. The same note shows that reserves differ by issuer: by their attested disclosures, USDT holds about 1.04 dollars of reserves per coin, of which only about 0.74 is in higher-quality assets such as Treasuries and bank deposits, while USDC holds a full 1.0 in such assets.

The clearest business use is settlement between institutions. Visa became one of the first major networks to settle transactions in a stablecoin in 2023, and on December 16, 2025 it [opened USDC settlement to its US bank partners](https://usa.visa.com/about-visa/newsroom/press-releases.releaseId.21951.html), starting with Cross River Bank and Lead Bank over the Solana blockchain. The practical gain it cites is timing: settlement seven days a week instead of five business days, with no change to what cardholders see. In [September 2026 Visa reported](https://usa.visa.com/about-visa/newsroom/press-releases.releaseId.22721.html) that its stablecoin settlement had passed a $20 billion annualized run rate, more than 15 times the year before, with more than 160 stablecoin-linked card programs on its network.

![A bank and a card network hub are joined by two routes: an upper route blocked by a shuttered building under a crescent moon, and a lower chain of blocks carrying an orange coin.](https://computese.com/images/blog/web3-how-decentralized-technologies-are-shaping/settlement.14b11351d9-1536.webp)

*Stablecoin settlement keeps moving on weekends and holidays, when bank payment systems close. The dollars still come from a central issuer.*

The BIS is less enthusiastic. It argues that stablecoins fail three tests of sound money: singleness (coins from different issuers can trade at different prices, so a dollar is not always a dollar), elasticity (every new coin must be paid for in full upfront, so the system cannot extend credit when payments peak) and integrity (as bearer instruments that move freely into self-hosted wallets, they are weak on know-your-customer checks). For a business, that becomes three questions before accepting or holding one: who issues it and what backs it, whether you can redeem it at par and how fast, and how your payment provider meets anti-money-laundering rules. For card and wallet checkout in online stores, see [the future of e-commerce](https://computese.com/the-future-of-ecommerce-business/).

### Tokenized treasury funds

Tokenization means issuing a traditional asset's ownership records as tokens. The best-known example is BlackRock's BUIDL fund, [launched on March 20, 2024](https://investors.securitize.io/news/news-details/2024/BlackRock-Launches-Its-First-Tokenized-Fund-BUIDL-on-the-Ethereum-Network-03-20-2024/default.aspx) on the Ethereum network as the firm's first tokenized fund on a public blockchain. It invests entirely in cash, US Treasury bills and repurchase agreements, aims to hold a stable value of $1 per token, lets tokens move around the clock but only between pre-approved investors, and is open to qualified investors with a $5 million initial minimum. BNY Mellon holds the fund's assets.

A [BIS bulletin from November 2025](https://www.bis.org/publications/bulletin-115-rise-tokenised-money-market-funds) measured the whole category. Tokenized money market funds held about $770 million at the end of 2023 and almost $9 billion by the end of October 2025, with BUIDL the largest. The bulletin also shows what tokenization does not change: custody and proof of ownership are still performed off-chain, the fund's value reaches the chain through an outside data feed (an oracle) once per business day, and the main investors in BUIDL are companies running DeFi protocols, which use the tokens as collateral. For BUIDL and another large fund, about 90% of holdings sat with just four wallets. Tokenization changed the share register, not the assets underneath.

### Supply chain traceability: one documented pilot

Supply chain projects produced many announcements and few published results. The best-documented is Walmart's. With IBM, it announced two proofs of concept in October 2016 on Hyperledger Fabric, and according to the [LF Decentralized Trust case study](https://www.lfdecentralizedtrust.org/case-studies/walmart-case-study), tracing a pack of sliced mangoes back to its farm went from about 7 days to 2.2 seconds. Walmart went on to trace more than 25 products from 5 suppliers and told its leafy-greens suppliers they would be required to use the system.

Two caveats keep that result in proportion. The case study does not separate how much of the gain came from the ledger and how much from suppliers recording each step digitally for the first time. And a ledger only records what it is told. In their paper [Do you need a Blockchain?](https://eprint.iacr.org/2017/375), Karl Wüst and Arthur Gervais of ETH Zurich describe a supplier who keeps the trusted temperature sensor in a small cooled box while the goods ride warm: the chain faithfully records a perfect cold chain that never existed.

![A delivery truck carries crates in a warm cargo space while a small cooled box inside holds an orange sensor that reports to a chain of blocks, which records a check mark.](https://computese.com/images/blog/web3-how-decentralized-technologies-are-shaping/sensor.7c31f3c399-1536.webp)

*A blockchain proves that a record was not changed after it was written. It cannot prove the record was true.*

## What failed or stalled

The failures matter more than the successes for anyone weighing a project, because they show which problems the technology does not solve.

### The 2022 collapses: Terra and FTX

TerraUSD (UST) was an algorithmic stablecoin, held at one dollar by a mechanism rather than by reserves. In May 2022 it lost its peg, and UST and Terraform's other tokens fell close to zero, wiping out $40 billion in market value nearly overnight, according to the [US Securities and Exchange Commission](https://www.sec.gov/newsroom/press-releases/2024-73). A jury found Terraform Labs and founder Do Kwon liable for fraud in April 2024, and in June 2024 they agreed to pay more than $4.5 billion.

The crypto exchange FTX [collapsed in November 2022](https://www.justice.gov/usao-sdny/pr/united-states-attorney-announces-charges-against-ftx-founder-samuel-bankman-fried). Its founder, Samuel Bankman-Fried, was convicted on seven counts and on March 28, 2024 [sentenced to 25 years in prison](https://www.justice.gov/usao-sdny/pr/samuel-bankman-fried-sentenced-25-years-prison); prosecutors said he had taken more than $8 billion of customers' money. FTX told customers their deposits were held separately, while its code had been altered to let his trading firm, Alameda Research, withdraw effectively unlimited amounts. No blockchain prevented it. This was a custody and governance failure at a central company, the risk you take on whenever an exchange holds your keys.

### NFTs after the 2021 boom

NFT trading was the consumer face of web3 in 2021, when [DappRadar counted](https://dappradar.com/blog/2021-dapp-industry-report) more than $23 billion of it. In the [third quarter of 2025](https://dappradar.com/blog/state-of-the-dapp-industry-q3-2025) it counted $1.6 billion, in a quarter when volume almost doubled. The number of sales hit a record 18.1 million, but DappRadar notes that many NFTs now trade for low values, and that one marketplace's rewards campaign pushed users to trade cheap NFTs to qualify. For a brand, the lesson is that a token is a receipt: its value comes from what it gives access to.

### Enterprise blockchains that were shut down

TradeLens was the flagship enterprise case. Announced in 2018 and built by IBM with a division of Maersk, it aimed to digitize the global shipping supply chain as an open, neutral industry platform. On November 29, 2022, [Maersk and IBM announced](https://www.maersk.com/news/articles/2022/11/29/maersk-and-ibm-to-discontinue-tradelens) they would discontinue it and take it offline by the end of the first quarter of 2023. Their stated reason was not the technology: the platform worked, but the full industry collaboration it needed never arrived, so it could not become commercially viable.

The Australian Securities Exchange (ASX) had a similar outcome with its replacement for CHESS, the system that clears and settles Australian shares, which it was building on [distributed ledger technology](https://www2.asx.com.au/content/dam/asx/markets/clearing-and-settlement-services/asx-chess-replacement-application-delivery-review-2022.pdf). On November 17, 2022, after an independent review by Accenture, [ASX paused the project](https://www.asx.com.au/content/dam/asx/about/media-releases/2022/60-17-november-2022-CHESS-Replacement-ASX-reassessing-financial-derecognition_.pdf) and wrote off A$245 million to A$255 million before tax. The review found the application about 63% complete, with complexity in how ASX's requirements interacted with the application and the underlying ledger, and governance problems between ASX and its delivery partner.

The pattern across both: getting competitors to share one system, and delivering something that complex, were the hard parts. The cryptography was not.

## Security: where the money is actually lost

In 2025 the large losses came from what surrounds a blockchain: keys, signing processes, front ends and people. [Chainalysis counted](https://www.chainalysis.com/blog/crypto-hacking-stolen-funds-2026/) more than $3.4 billion stolen from January to early December 2025, with North Korean groups responsible for at least $2.02 billion of it. It attributes the growing losses at exchanges and other central services to attacks on private key infrastructure and signing processes.

The largest single theft was Bybit's. On February 26, 2025, the [FBI stated](https://www.ic3.gov/PSA/2025/PSA250226) that North Korea was responsible for stealing about $1.5 billion in virtual assets from the exchange on or about February 21, 2025, activity the FBI tracks as TraderTraitor. The mechanism is the useful part for any business. According to [Sygnia's investigation](https://www.sygnia.co/blog/sygnia-investigation-bybit-hack/), attackers compromised a developer's Mac at Safe{Wallet}, the multisig wallet service Bybit used, likely through social engineering. With the developer's cloud credentials they modified the JavaScript served by Safe{Wallet}'s web interface, set to act only on one Bybit cold wallet. When Bybit's signers approved a transfer from that cold wallet to a warm wallet, the code changed the transaction. The browser caches of all three signers' computers held the modified files, and the code was removed from the site two minutes after the theft.

> [!WARNING]
> Multi-signature approval did not help, because every signer approved through the same tampered website. If your organization ever holds digital assets, check each transaction on a device that does not trust the web page, and treat the machines of anyone who can change your signing tools as part of your treasury.

Chainalysis also reports that North Korean operators pose as recruiters for web3 and AI companies and run fake hiring processes to steal credentials and system access from the people they interview. That is ordinary social engineering, and the same controls apply: phishing-resistant sign-in, least privilege and training, the basics in our [cybersecurity best practices](https://computese.com/cybersecurity-best-practices/) checklist.

## The rules in 2026: MiCA and the GENIUS Act

Two major laws now set the rules, and both focus on issuers and service providers rather than on the technology. MiCA is in force; the GENIUS Act is being implemented:

| Item          | EU: Markets in Crypto-Assets Regulation (MiCA)                                                                        | US: GENIUS Act                                                                                                                       |
| ------------- | --------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------ |
| Law           | Regulation (EU) 2023/1114                                                                                             | Public Law 119-27                                                                                                                    |
| Who it covers | Issuers of crypto-assets not covered by existing financial law, stablecoin issuers and crypto-asset service providers | Issuers of payment stablecoins                                                                                                       |
| Key dates     | Stablecoin rules from June 30, 2024; the whole regulation from December 30, 2024                                      | Signed July 18, 2025; in force 18 months later or 120 days after final regulations, whichever comes first                            |
| Core duties   | Authorization, a published white paper, disclosure of the climate impact of the consensus mechanism                   | Reserves of at least 1 to 1 in cash, deposits, short-term Treasuries and repos; monthly reserve reports; no interest paid to holders |

In the EU, [MiCA](https://eur-lex.europa.eu/eli/reg/2023/1114/oj/eng) was adopted on May 31, 2023. Its titles on asset-referenced tokens and e-money tokens, the two kinds of stablecoin it defines, applied from June 30, 2024, and the rest from December 30, 2024. [ESMA](https://www.esma.europa.eu/esmas-activities/digital-finance-and-innovation/markets-crypto-assets-regulation-mica) notes that member states could let existing providers keep operating under national rules during a transition, which ended on July 1, 2026 at the latest, so providers that relied on it now need a MiCA authorization to continue.

In the US, the [GENIUS Act](https://www.govinfo.gov/content/pkg/PLAW-119publ27/html/PLAW-119publ27.htm) became law on July 18, 2025. It requires issuers to hold reserves of at least one dollar per coin in cash, bank deposits, Treasury bills with 93 days or less to maturity and similar instruments, to publish the composition of those reserves every month, and not to pay holders interest or yield. It takes effect on the earlier of 18 months after enactment (January 2027) or 120 days after regulators issue final rules, so check the state of that rulemaking when you read this. Other countries run their own regimes; check the rules wherever your customers are. Regulation makes an issuer accountable; it does not make every token safe.

## Energy use depends on the consensus method

Energy use is a design choice, not a property of every blockchain. Proof of work is energy-intensive by design: the US Energy Information Administration [estimated in February 2024](https://www.eia.gov/todayinenergy/detail.php?id=61364) that crypto mining probably accounts for 0.6% to 2.3% of US electricity consumption. Proof of stake needs no such race. Ethereum [switched to proof of stake on September 15, 2022](https://ethereum.org/roadmap/merge/), in an upgrade known as the Merge, which its documentation says cut the network's energy use by about 99.95%.

For a business, two points follow. If you report on emissions, the chain you choose will show up in that report. And in the EU, MiCA requires crypto-asset white papers to disclose the principal adverse impacts on the climate of the consensus mechanism used to issue the asset.

## Does your business need a blockchain? Questions to ask first

Wüst and Gervais reduced the decision to a short sequence of questions. Their conclusion is that a blockchain only makes sense when several parties who do not trust each other want to change shared records and will not agree on an online trusted third party. Work through it in order:

1. **Do you need to store shared data at all?** If not, you need no database, let alone a ledger.
2. **Does more than one party write to it?** With a single writer, an ordinary database is faster and simpler.
3. **Could a trusted party that is always online run it?** An industry body, a regulator, a vendor or one of the partners? If yes, let it operate a database.
4. **Are all the writers known?** If the set of writers is open to anyone, you are in permissionless territory, such as Ethereum.
5. **Do the known writers trust each other?** If they do, a database with shared write access is the better tool.
6. **Must outsiders be able to verify the records?** That decides between a public and a private permissioned chain.

NIST, reviewing this and similar flowcharts, notes that most paths end in "no", and advises organizations to check whether existing technology solves the problem better. If you still land on "yes", ask these before anything is built:

- **What problem needs a shared ledger that a database cannot solve?** Name the parties, who would otherwise run the system, and why they will not. TradeLens shows that a working platform still fails when the other parties do not join.
- **Who holds the keys?** Decide between a regulated custodian and your own custody, how many people must approve a transfer, how approvals are checked, and what happens when someone leaves or a key is lost.
- **Which rules apply?** MiCA or the GENIUS Act if you issue or handle tokens, anti-money-laundering checks for payments, privacy law for any personal data (remember that a chain cannot delete), and your accountant's view of how the assets appear on the books.
- **What does it cost in energy, fees and speed?** Proof of work and proof of stake differ by orders of magnitude, and public chains confirm transactions in seconds or minutes, not milliseconds.
- **How does data get onto the chain, and who checks it?** Sensors, oracles and manual entries are where false records come from.
- **What is the exit plan?** Chains, custodians and vendors change; know how you would move your records and assets.

For many teams the honest answer is that partners need shared records with a clear audit trail, not a blockchain. That often means a web application with proper sign-in, roles and an API that partners call. Portals and customer tools with the identity, roles and APIs behind them are what our [web design and development](https://computese.com/services/web-design-development/) team builds, and our guide to [enterprise API development](https://computese.com/the-future-of-enterprise-api-development/) covers the API side. Central logging and least-privilege roles are also part of the governed landing zones our [cloud transformation](https://computese.com/services/cloud-transformation/) service puts in place.

## Key terms
- **Web3**: A loose name for applications whose data, assets and rules live on public blockchains and are controlled with users' own keys, instead of on one company's servers and accounts.
- **Blockchain**: A shared, append-only ledger kept by many computers. Records are added in blocks that every copy agrees on, and each block is linked to the one before it by a hash, so published records cannot be quietly changed.
- **Smart contract**: A program stored on a blockchain that every node runs and gets the same result from. It can hold and move tokens by its own rules, and a transaction sent to it cannot be undone.
- **Wallet**: Software or a hardware device that holds the private keys controlling blockchain accounts and signs transactions with them. Whoever holds the key controls the assets, and a lost key cannot be regenerated.
- **Token**: A balance or item recorded by a smart contract. Fungible tokens (the ERC-20 standard) are interchangeable, like coins or fund shares; non-fungible tokens (NFTs, ERC-721) each carry a unique ID.
- **Stablecoin**: A token meant to stay worth one unit of a currency, usually one US dollar, backed by reserves the issuer holds. Algorithmic designs without full reserves, such as TerraUSD, have failed.
- **Decentralized application (dApp)**: An application whose back end is a smart contract on a peer-to-peer network, with a normal web front end that asks the user's wallet to sign transactions.
- **Tokenized fund**: A regulated fund, often a money market fund, whose shares are issued and transferred as tokens on a blockchain, while the underlying assets stay with a traditional custodian.
- **Permissioned blockchain**: A blockchain where only authorized parties may add blocks and, if required, read the data, as in Hyperledger Fabric. Public chains such as Bitcoin and Ethereum are permissionless: anyone can take part.
- **Proof of stake**: A consensus method in which validators lock up the network's own token as a deposit instead of spending electricity on puzzles (proof of work). Ethereum switched to it in September 2022.

## Common questions

### What is web3 in simple terms?

Web3 is the idea of an internet where applications keep their records and money on shared blockchains, and people control their own accounts with cryptographic keys. The website looks the same; the difference is that the back end is a smart contract that no single company runs, at least in principle.

### What is the difference between web2 and web3?

In web2 a company runs the servers, holds your data and can reset or close your account. In web3 the records sit on a public ledger and you sign with your own key, so no company can take your assets, and none can recover them for you if the key is lost.

### Is web3 dead?

The 2021 hype is gone: NFT trading shrank and several large firms collapsed in 2022. The financial plumbing kept growing, though: stablecoins were worth $317 billion in April 2026, and Visa settles with some banks in them.

### Are stablecoins regulated?

In the EU, yes: MiCA's rules for stablecoin issuers have applied since June 30, 2024, and the whole regulation since December 30, 2024. In the US, the GENIUS Act signed on July 18, 2025 requires one-to-one reserves and monthly reserve reports, and takes effect by January 2027 at the latest.

### Does my business need a blockchain?

Probably not, unless several organizations that do not trust each other must write to the same records and no one, including a neutral operator, can run the system for them. If one party can run it, a shared database with an API and an audit log is faster, cheaper and easier to govern.

### Does blockchain use a lot of energy?

It depends on the consensus method. Proof-of-work networks such as Bitcoin use a lot: the US Energy Information Administration estimated in 2024 that crypto mining used 0.6% to 2.3% of US electricity. Ethereum's move to proof of stake in 2022 cut its energy use by about 99.95%.

## Sources
1. [What is Web3 and why is it important?](https://ethereum.org/web3/), ethereum.org
2. [Introduction to dapps](https://ethereum.org/developers/docs/dapps/), ethereum.org
3. [NIST IR 8202: Blockchain Technology Overview](https://csrc.nist.gov/pubs/ir/8202/final), NIST
4. [Introduction to smart contracts](https://ethereum.org/developers/docs/smart-contracts/), ethereum.org
5. [ERC-20 Token Standard](https://ethereum.org/developers/docs/standards/tokens/erc-20/), ethereum.org
6. [ERC-721 Non-Fungible Token Standard](https://ethereum.org/developers/docs/standards/tokens/erc-721/), ethereum.org
7. [Annual Economic Report 2025, Chapter III: The next-generation monetary and financial system](https://www.bis.org/publications/aer-2025/next-generation-monetary-financial-system), Bank for International Settlements
8. [Stablecoins in 2025: Developments and Financial Stability Implications](https://www.federalreserve.gov/econres/notes/feds-notes/stablecoins-in-2025-developments-and-financial-stability-implications-20260408.html), Federal Reserve Board (FEDS Notes)
9. [Visa Launches Stablecoin Settlement in the United States](https://usa.visa.com/about-visa/newsroom/press-releases.releaseId.21951.html), Visa
10. [Visa Brings Onchain Lending into Everyday Payments](https://usa.visa.com/about-visa/newsroom/press-releases.releaseId.22721.html), Visa
11. [BlackRock Launches Its First Tokenized Fund, BUIDL, on the Ethereum Network](https://investors.securitize.io/news/news-details/2024/BlackRock-Launches-Its-First-Tokenized-Fund-BUIDL-on-the-Ethereum-Network-03-20-2024/default.aspx), Securitize
12. [BIS Bulletin 115: The rise of tokenised money market funds](https://www.bis.org/publications/bulletin-115-rise-tokenised-money-market-funds), Bank for International Settlements
13. [How Walmart brought unprecedented transparency to the food supply chain with Hyperledger Fabric](https://www.lfdecentralizedtrust.org/case-studies/walmart-case-study), LF Decentralized Trust
14. [Do you need a Blockchain? (2018 Crypto Valley Conference)](https://eprint.iacr.org/2017/375), Karl Wüst and Arthur Gervais, IACR ePrint
15. [Terraform and Kwon to Pay $4.5 Billion Following Fraud Verdict](https://www.sec.gov/newsroom/press-releases/2024-73), US Securities and Exchange Commission
16. [United States Attorney Announces Charges Against FTX Founder Samuel Bankman-Fried](https://www.justice.gov/usao-sdny/pr/united-states-attorney-announces-charges-against-ftx-founder-samuel-bankman-fried), US Department of Justice, SDNY
17. [Samuel Bankman-Fried Sentenced To 25 Years In Prison](https://www.justice.gov/usao-sdny/pr/samuel-bankman-fried-sentenced-25-years-prison), US Department of Justice, SDNY
18. [2021 Dapp Industry Report](https://dappradar.com/blog/2021-dapp-industry-report), DappRadar
19. [State of the Dapp Industry Q3 2025](https://dappradar.com/blog/state-of-the-dapp-industry-q3-2025), DappRadar
20. [A.P. Moller - Maersk and IBM to discontinue TradeLens, a blockchain-enabled global trade platform](https://www.maersk.com/news/articles/2022/11/29/maersk-and-ibm-to-discontinue-tradelens), Maersk
21. [ASX will reassess all aspects of the CHESS replacement project](https://www.asx.com.au/content/dam/asx/about/media-releases/2022/60-17-november-2022-CHESS-Replacement-ASX-reassessing-financial-derecognition_.pdf), ASX
22. [ASX CHESS Replacement Application Delivery Review 2022 (Accenture)](https://www2.asx.com.au/content/dam/asx/markets/clearing-and-settlement-services/asx-chess-replacement-application-delivery-review-2022.pdf), ASX
23. [North Korea Drives Record $2 Billion Crypto Theft Year](https://www.chainalysis.com/blog/crypto-hacking-stolen-funds-2026/), Chainalysis
24. [North Korea Responsible for $1.5 Billion Bybit Hack (PSA250226)](https://www.ic3.gov/PSA/2025/PSA250226), FBI Internet Crime Complaint Center
25. [Sygnia's Investigation into the Bybit Hack](https://www.sygnia.co/blog/sygnia-investigation-bybit-hack/), Sygnia
26. [Regulation (EU) 2023/1114 on markets in crypto-assets (MiCA)](https://eur-lex.europa.eu/eli/reg/2023/1114/oj/eng), EUR-Lex
27. [Markets in Crypto-Assets Regulation (MiCA)](https://www.esma.europa.eu/esmas-activities/digital-finance-and-innovation/markets-crypto-assets-regulation-mica), ESMA
28. [Public Law 119-27: Guiding and Establishing National Innovation for U.S. Stablecoins Act (GENIUS Act)](https://www.govinfo.gov/content/pkg/PLAW-119publ27/html/PLAW-119publ27.htm), US Government Publishing Office
29. [Tracking electricity consumption from U.S. cryptocurrency mining operations](https://www.eia.gov/todayinenergy/detail.php?id=61364), US Energy Information Administration
30. [The Merge](https://ethereum.org/roadmap/merge/), ethereum.org
