A gentle introduction to Arbitrum | Arbitrum Docs (2024)

Q: Hello! What’s Arbitrum?

Hi! Arbitrum is a technology suite designed to scale Ethereum. You can use Arbitrum chains to do all things you do on Ethereum — use Web3 apps, deploy smart contracts, etc., but your transactions will be cheaper and faster. Our flagship product — Arbitrum Rollup — is an Optimistic rollup protocol that inherits Ethereum-level security.

Q: What, what’s “Ethereum”? What's a “smart contract”? Where am I?

If you aren’t yet familiar with the Ethereum ecosystem, you can check out ethereum.org for an intro. Come back whenever you're ready, no rush.

Q: You said Arbitrum exists to “scale” Ethereum; why does Ethereum need this help? Is there something wrong with Ethereum?

Ethereum is awesome; on its own, however, it’s also very limited. The Ethereum blockchain only allows about 20-40 transactions per second (TPS) (that’s in total, for all Ethereum users); when the limit is reached, users are forced to compete against each other for their transactions to be included, which causes fees to go up.

Q: Why does Ethereum have such low TPS?

This was a deliberate decision in Ethereum’s design. Ethereum requires that its nodes (computers running the Ethereum software) have a way of coming to consensus on the current state of things; the way they do this is by processing every transaction in Ethereum’s history; i.e., if you’ve ever used Ethereum, every Ethereum full node has a copy of your transactions in its blockchain ledger.

One of the Ethereum community’s precepts, being an open, decentralized, peer to peer system, is that it should be reasonably accessible for anyone to run an Ethereum node and validate the chain for themselves; i.e., if it gets too expensive (in terms of hardware requirements / computational resources), this undercuts the fundamental goal of decentralization.The combination of these two factors — every node has to process every transaction, and we want it to be relatively feasible to run a node — means Ethereum transaction throughput has to be capped fairly low.

Q: And Arbitrum Rollup fixes this?

Arbitrum rollup fixes this! The basic idea is this: an Arbitrum Rollup chain runs as a sort of sub-module within Ethereum. Unlike regular, layer 1 ( “L1”) Ethereum transactions, we don’t require Ethereum nodes to process every Arbitrum transaction; rather, Ethereum adopts an “innocent until proven guilty" attitude to Arbitrum. Layer 1 initially “optimistically assumes” activity on Arbitrum is following the proper rules. If a violation occurs (i.e., somebody claims “now I have all of your money”), this claim can be disputed back on L1; fraud will be proven, the invalid claim disregarded, and the malicious party will be financially penalized.

This ability to adjudicate and prove fraud on L1 is Arbitrum’s key, fundamental feature, and is how and why the system inherits Ethereum’s security.

Q: So we can use Ethereum to prove fraud on Arbitrum; cool! But if fraud is committed, can we be absolutely sure that we'll be able to prove it?

Yes, indeed we can be. This is where the “rollup” part comes in. The data that gets fed into an Arbitrum Rollup chain (i.e., user’s transaction data) is posted directly on Ethereum. Thus, as long as Ethereum itself is running securely, anybody who’s interested has visibility into what’s going on in Arbitrum, and has the ability to detect and prove fraud.

Q: Who actually does this work (of checking for fraud, proving it, etc?)

The parties who move the Arbitrum chain state forward on L1 — i.e., making claims about the chain’s state, disputing other’s claims, etc. — are called validators.In practice, we don’t expect the average Arbitrum user to be interested in running avalidator, just like the average Ethereum user typically doesn’t run their own layer 1 staking node. The crucial property, however, is that anybody can; becoming an Arbitrum validator requires no special permission (once the allowlist is lifted), only that a user runs the open source validator software (and stakes Ether when/if they need to take action).

Additionally, as long as there’s even just one honest validator, the chain will remain secure; i.e., it only takes one non-malicious fraud-prover to catch any number of malicious trouble-makers. These properties together make the system “trustless”; users are not relying on any special designated party for their funds to be secure.

Q: And how exactly is “fraud” “proven”? Sounds complicated.

Oh, it’s not so bad. In essence: if two validators disagree, only one of them (at most) can be telling the truth. In a dispute, the two validators play an interactive, call-and-response game, in which they narrow down their dispute to a single computational step (think of something small and simple, like multiplying two numbers). This one step gets executed on L1, and will, by necessity, prove that the honest party was telling the truth. For a more detailed rundown, see here.

Q: This dispute game obviously takes some time; does this impose any sort of delay on Arbitrum users' transactions?

The only delay that's felt by a user is in "withdrawing" — moving their funds from Arbitrum back to Ethereum; if users are withdrawing directly from Arbitrum to Ethereum, they must typically wait 1 week before receiving their funds on L1. If users use a fast-bridge application, however, they can bypass this delay period entirely (likely for a small fee). Anything else a user does — i.e., depositing funds from Ethereum onto Arbitrum, or using a dapp deployed on an Arbitrum chain — doesn't incur this delay period.

Q: Okay, so backing up: the “optimistic execution” part is how and why Arbitrum is able to offer low fees, yes?

Primarily, yes, this is the heart of where the savings come from. However, there are a number of other means by which Arbitrum alleviates the burden on L1, all of which translate to lower transaction costs for end users.For one, Arbitrum transactions are submitted on the L1 in batches; typically, a single batch (submitted in a single L1 transaction) will contain several hundred L2 transactions. Batching amortizes the overhead cost of interacting with the L1, and thus offers significant savings over posting individual transactions at a time. Furthermore, the transaction data is posted on L1 in compressed form (and only decompressed within the L2 environment), further minimizing the transaction’s L1 footprint.

Q: As far as the experience of using Arbitrum: when you said that it’s very similar to using Ethereum…

We really meant it, yes.Different layer 2 protocols emphasize and optimize for different things; Arbitrum was created with Ethereum compatibility as a top priority. This means users can use Arbitrum with all their favorite Ethereum wallets; developers can build and deploy contracts with all their favorite Ethereum libraries and tooling; in fact, most of the time, the experience of using Arbitrum will feel identical to that of using Ethereum (with the important exception of it being much cheaper and faster).

Much development went into achieving this level of Ethereum compatibility. But at its core: the Arbitrum itself uses a fork of Geth — the most widely used Ethereum implementation — with modifications to transform it into a trustless layer 2. This means most of the code running in Arbitrum is identical to the code running in Ethereum. We call this cutting-edge approach Nitro (developers can see the codebase here).

Q: So builders can do all the stuff they do on Ethereum on Arbitrum, nice! But can they do more?

They can; the latest version of the Arbitrum tech stack, called Stylus, keeps Nitro's Ethereum compatibility, while adding on powerful new features, namely the ability to write highly performant smart contracts in programming languages like Rust, C++, and more. Stylus is currently on public testnet; you can read more about it here.

Q: So it sounds like Arbitrum Rollup is an ideal solution that solves any and all scaling problems…?

Arbitrum Rollup is very awesome and cool; its design is geared heavily toward avoidance of introducing any centralization or trust assumptions, and it is thus a clear, strict net-win for the Ethereum ecosystem. Decentralization, however, comes at a (literal) price, and not all applications and users necessarily want or need to pay that price. For dapp use-cases with different security considerations, different tools in the Arbitrum suite are appropriate; i.e., Arbitrum AnyTrust chains!

Q: What’s an AnyTrust chain?

An Arbitrum AnyTrust chain doesn’t have the same decentralization / trustlessness / permissionless security guarantees of a Rollup chain, and thus can offer lower fees. Rollup and AnyTrust are similar in many ways, though have one key difference: whereas in Rollup, all data is posted on L1 (which allows anyone to permissionless join as a validator), in AnyTrust, data is managed off-chain. In the case of a challenge, an AnyTrust chain reverts back to “rollup mode”; the security assumption here is that at least 2 of the committee members are honest (i.e., they will provide the data when it’s necessary). Keeping the data off-chain in the happy/common case means the system can charge the user significantly lower fees.For applications that require high transaction throughput and don’t require the full decentralization that rollups provide, AnyTrust could be a sensible tradeoff.

Q: So there's more than one Arbitrum chain out there?

Yep! The fact that multiple chains can run in parallel is a crucial perk to off-chain scaling technology. Currently, on Ethereum mainnet, there are 2 Arbitrum chains: one Arbitrum Rollup chain, called "Arbitrum One," and one AnyTrust chain, called "Nova"; users and developers can pick whatever suits their security / transaction cost needs.

Developers also have the option of launching their own Arbitrum chains that run top an Arbitrum layer 2. These are called Orbit chains and you can read more about them here.

Q: Who makes decisions about the future of Arbitrum One and Arbitrum Nova?

The Arbitrum One and Nova chains are owned by the Governance system; to learn more, see the Arbitrum Governance docs.

A gentle introduction to Arbitrum | Arbitrum Docs (2024)

FAQs

What is the introduction of arbitrum? ›

Arbitrum is a technology suite designed to scale Ethereum. You can use Arbitrum chains to do all things you do on Ethereum — use Web3 apps, deploy smart contracts, etc., but your transactions will be cheaper and faster.

What are the disadvantages of arbitrum? ›

High degree of centralization: Arbitrum's security depends on its operators, which may lead to risks of centralization.

What is the arbitrum docs token? ›

The $ARB token is minted by a smart contract that lives on Arbitrum One, a Layer 2 Arbitrum rollup chain. The Arbitrum DAO is responsible for managing both the governance protocol as defined within the Constitution, and the technologies that the DAO governs.

Is Arbitrum safe to use? ›

Offchain Labs' implementation of the Arbitrum protocol has been carefully constructed, is perpetually being audited by several independent firms, and is continuously reviewed and tested following best engineering practices.

What makes arbitrum unique? ›

Some of its unique features include: Interoperability: Arbitrum is fully compatible with Ethereum, meaning that dApps and smart contracts can easily migrate without any code changes. Decentralisation: Unlike some other Layer 2 solutions, Arbitrum does not rely on a centralised operator.

How high will arbitrum go? ›

According to our current Arbitrum price prediction, the price of Arbitrum is predicted to rise by 232.10% and reach $ 1.794633 by September 6, 2024. Per our technical indicators, the current sentiment is Bearish while the Fear & Greed Index is showing 20 (Extreme Fear).

Why is arbitrum suspended? ›

The suspension is a result of technical difficulties with the API, which is a set of protocols and tools for building software and applications. APIs are crucial for enabling different software programs to interact with each other.

What problem does arbitrum solve? ›

Arbitrum is a Layer 2 scaling solution designed to improve the performance of Ethereum-based applications. Developed by Offchain Labs, Arbitrum leverages rollup technology to bundle multiple transactions into a single batch, which is then processed off-chain.

Is Ethereum better than Arbitrum? ›

Transactions are executed off-chain, and assets are held in a smart contract on-chain. A primary benefit of Arbitrum is its super-fast transaction speeds (TPS). Ethereum averages around 30 TPS, compared to a staggering 40,000 TPS for Arbitrum transactions. Faster transactions equal lower fees.

Who owns arbitrum? ›

Chain ownership of both Arbitrum One and Arbitrum Nova is under the control of the Arbitrum Governance system. Comprised of both the Arbitrum DAO and the Security Council, the governance system currently has the ability to alter itself.

How much is 1 arbitrum token worth? ›

The live price of Arbitrum is $ 0.587179 per (ARB / USD) with a current market cap of $ 1.96B USD. 24-hour trading volume is $ 213.94M USD. ARB to USD price is updated in real-time. Arbitrum is -4.18% in the last 24 hours with a circulating supply of 3.34B.

How does arbitrum make money? ›

Arbitrum generates revenue through transaction fees. Users pay fees to use computing resources on the network. These fees support sustainability and incentivize validators.

How do I cash out my arbitrum? ›

How to sell Arbitrum
  1. Create your free Kraken account. Verify your details to get started.
  2. Send ARB to your Kraken account. Deposit ARB in your secure Kraken account.
  3. Sell Arbitrum instantly. Enjoy ultra-fast ARB transactions & withdraws.

What is the best wallet for arbitrum? ›

Top 10 Arbitrum Wallets in 2024
  1. MetaMask. MetaMask lets users access the new decentralized web through browsers and mobile apps. ...
  2. Coin Wallet. ...
  3. Exodus. ...
  4. Trust Wallet. ...
  5. Tangem. ...
  6. Ledger. ...
  7. Guarda. ...
  8. Trezor.
Feb 20, 2024

Is arbitrum a token or coin? ›

About Arbitrum

ARB is the governance token for the Arbitrum layer 2 blockchain. Created by Offchain Labs in 2021 as a scaling solution for Ethereum, the Arbitrum protocol has rapidly emerged as one of the key players in the decentralized finance (DeFi) ecosystem.

Why is arbitrum popular? ›

One of the most attractive features of Arbitrum is its cost efficiency. By moving most of the transaction processing off-chain, Arbitrum dramatically reduces gas fees, making it economically viable for both developers and users.

What is the difference between arbitrum and ETH? ›

ETH is the currency used to pay gas fees on Arbitrum, and all Arbitrum transactions are powered by ETH. You can bridge ETH (and other tokens) from Ethereum to Arbitrum through Arbitrum's bridge.

Should I invest in Arbitrum? ›

Arbitrum has a very high chance of experiencing financial distress in the next few years of operation. It has also generated negative returns for investors over the last 90 days. Cryptocurrency ratings for Arbitrum are calculated daily based on our scoring framework.

Top Articles
The Ultimate Guide To Ledger Lightning Network
Maximize Your Pension With This Calculator
Splunk Stats Count By Hour
Patreon, reimagined — a better future for creators and fans
Kathleen Hixson Leaked
The Atlanta Constitution from Atlanta, Georgia
Mileage To Walmart
Ati Capstone Orientation Video Quiz
Northern Whooping Crane Festival highlights conservation and collaboration in Fort Smith, N.W.T. | CBC News
Craigslist Pet Phoenix
Kostenlose Games: Die besten Free to play Spiele 2024 - Update mit einem legendären Shooter
City Of Spokane Code Enforcement
Lesson 1 Homework 5.5 Answer Key
Vichatter Gifs
Best Restaurants Ventnor
Hoe kom ik bij mijn medische gegevens van de huisarts? - HKN Huisartsen
Quest Beyondtrustcloud.com
Samantha Lyne Wikipedia
Carolina Aguilar Facebook
Pizza Hut In Dinuba
ARK: Survival Evolved Valguero Map Guide: Resource Locations, Bosses, & Dinos
Officialmilarosee
Quick Answer: When Is The Zellwood Corn Festival - BikeHike
Https Paperlesspay Talx Com Boydgaming
Georgia Cash 3 Midday-Lottery Results & Winning Numbers
St Clair County Mi Mugshots
Governor Brown Signs Legislation Supporting California Legislative Women's Caucus Priorities
Barista Breast Expansion
Elite Dangerous How To Scan Nav Beacon
Plost Dental
Znamy dalsze plany Magdaleny Fręch. Nie będzie nawet chwili przerwy
Cognitive Science Cornell
Striffler-Hamby Mortuary - Phenix City Obituaries
Mississippi Craigslist
Filmy Met
Angel del Villar Net Worth | Wife
Ellafeet.official
Fedex Walgreens Pickup Times
Old Peterbilt For Sale Craigslist
Why The Boogeyman Is Rated PG-13
Academic important dates - University of Victoria
Is Arnold Swansinger Married
Topos De Bolos Engraçados
How to Get a Better Signal on Your iPhone or Android Smartphone
Tfn Powerschool
22 Golden Rules for Fitness Beginners – Barnes Corner Fitness
Petfinder Quiz
Xre 00251
Worland Wy Directions
Heat Wave and Summer Temperature Data for Oklahoma City, Oklahoma
Mazda 3 Depreciation
Latest Posts
Article information

Author: Greg Kuvalis

Last Updated:

Views: 6444

Rating: 4.4 / 5 (75 voted)

Reviews: 90% of readers found this page helpful

Author information

Name: Greg Kuvalis

Birthday: 1996-12-20

Address: 53157 Trantow Inlet, Townemouth, FL 92564-0267

Phone: +68218650356656

Job: IT Representative

Hobby: Knitting, Amateur radio, Skiing, Running, Mountain biking, Slacklining, Electronics

Introduction: My name is Greg Kuvalis, I am a witty, spotless, beautiful, charming, delightful, thankful, beautiful person who loves writing and wants to share my knowledge and understanding with you.