Arbitrum One logoArbitrum One

Badges

EVM badge
Ethereum with blobs badge
Built on Arbitrum Nitro badge
Governance badge
L3 Host Chain badge

About

Arbitrum One is a general-purpose Optimistic Rollup built by Offchain Labs and governed by the Arbitrum DAO.

Value Locked

$17.11 B

3.74%

Canonically Bridged
$11.37 B
Externally Bridged
$886.35 M
Natively Minted
$4.85 B
  • Tokens
  • Daily TPS
    18.6926.68%
  • 30D tx count
    59.24 M
  • Stage
    Stage 1
  • Type
    Optimistic Rollup
  • Purpose
    Universal
  • ...

    Tokens

    Choose token

    Natively Minted Tokens

    Arbitrum (ARB)
    USD Coin (USDC)
    GMX (GMX)
    LayerZero (ZRO)
    Radiant (RDNT)
    Xai (XAI)
    Gains Network (GNS)
    DMT (DMT)
    Frax (FRAX)
    TapToken (TAP)
    MXC Token (MXC)
    Camelot token (GRAIL)
    Frax Ether (frxETH)
    MOR (MOR)
    WINR (WINR)
    Externally Bridged Tokens

    Graph Token (GRT)
    Renzo Restaked ETH (ezETH)
    KelpDao Restaked ETH (rsETH)
    USDe (USDe)
    ether.fi governance token (ETHFI)
    JoeToken (JOE)
    StargateToken (STG)
    SmarDex Token (SDEX)
    Gho Token (GHO)
    beefy.finance (BIFI)
    Bitcoin (BTC.b)
    Staked USDe (sUSDe)
    Canonically Bridged Tokens (Top 15)

    Ether (ETH)
    Tether USD (USDT)
    Wrapped BTC (WBTC)
    Wrapped eETH (weETH)
    Wrapped liquid staked Ether 2.0 (wstETH)
    USD Coin (USDC.e)
    MAGIC (MAGIC)
    Vertex (VRTX)
    Livepeer Token (LPT)
    Pendle (PENDLE)
    ChainLink Token (LINK)
    Dai Stablecoin (DAI)
    Marlin POND (POND)
    Rocket Pool ETH (rETH)
    MUX Protocol (MCB)

    ...

    ...

    Milestones

    Arbitrum starts using blobs

    2024 Mar 14th

    Arbitrum starts publishing data to blobs.

    Learn more

    ARB token airdrop

    2023 Mar 23rd

    ARB token launched as a governance token for Arbitrum DAO.

    Learn more

    Nitro Upgrade

    2022 Aug 31st

    Upgrade is live, introducing new architecture, increased throughput and lower fees.

    Learn more

    Odyssey paused

    2022 Jun 29th

    Due of the heavy load being put on the chain, Odyssey program got paused.

    Learn more

    Odyssey started

    2022 Jun 21st

    Incentives program to onboard new users has started.

    Learn more

    Mainnet for everyone

    2021 Aug 31st

    Whitelist got removed, there are no restrictions on who can transact with the network.

    Learn more
    Risk summary
    Fraud proof system is fully deployed but is not yet permissionless as it requires Validators to be whitelisted.
    Risk analysis
    Fraud proof system is fully deployed but is not yet permissionless as it requires Validators to be whitelisted.
    Sequencer failureState validationData availabilityExit windowProposer failure

    State validation

    Fraud proofs (INT)

    Fraud proofs allow 14 WHITELISTED actors watching the chain to prove that the state is incorrect. Interactive proofs (INT) require multiple transactions over time to resolve. There is a 6d 8h challenge period.

    Data availability

    On chain

    All of the data needed for proof construction is published on Ethereum L1.

    Exit window

    2d
    The Security Council can upgrade with no delay.

    Upgrades are initiated on L2 and have to go first through a 3d delay. Since there is a 1d to force a tx, users have only 2d to exit. If users post a tx after that time, they would need to self propose a root with a 6d 8h delay and then wait for the 6d 8h challenge window, while the upgrade would be confirmed just after the 6d 8h challenge window and the 3d L1 timelock.

    Sequencer failure

    Self sequence

    In the event of a sequencer failure, users can force transactions to be included in the project’s chain by sending them to L1. There is a 1d delay on this operation.

    Proposer failure

    Self propose

    Anyone can become a Proposer after 6d 8h of inactivity from the currently whitelisted Proposers.

    Rollup stage
    Arbitrum OneArbitrum One is a
    Stage 1
    Optimistic Rollup.
    Stage 0
    4 requirements met
    Stage 1
    5 requirements met
    Stage 2
    3 issues need fixing
    Learn more about Rollup stages
    Please keep in mind that these stages do not reflect rollup security, this is an opinionated assessment of rollup maturity based on subjective criteria, created with a goal of incentivizing projects to push toward better decentralization. Each team may have taken different paths to achieve this goal.
    Technology

    Fraud proofs ensure state correctness

    After some period of time, the published state root is assumed to be correct. For a certain time period, one of the whitelisted actors can submit a fraud proof that shows that the state was incorrect. The challenge protocol can be subject to delay attacks.

    • Funds can be stolen if none of the whitelisted verifiers checks the published state. Fraud proofs assume at least one honest and able validator (CRITICAL).

    1. How is fraud proven - Arbitrum documentation FAQ
    2. Arbitrum Glossary: Challenge Period
    3. RollupUser.sol - Etherscan source code, onlyValidator modifier
    4. Solutions to Delay Attacks on Rollups

    All data required for proofs is published on chain

    All the data that is used to construct the system state is published on chain in the form of cheap blobs or calldata. This ensures that it will be available for enough time.

    1. Sequencing followed by deterministic execution - Arbitrum documentation
    2. SequencerInbox.sol - Etherscan source code, addSequencerL2BatchFromOrigin function
    State derivation
    Node software

    The rollup node (Arbitrum Nitro) consists of three parts. The base layer is the core Geth server (with minor modifications to add hooks) that emulates the execution of EVM contracts and maintains Ethereum’s state. The middle layer, ArbOS, provides additional Layer 2 functionalities such as decompressing data batches, accounting for Layer 1 gas costs, and supporting cross-chain bridge functionalities. The top layer consists of node software, primarily from Geth, that handles client connections (i.e., regular RPC node). View Code

    Compression scheme

    The Sequencer’s batches are compressed using a general-purpose data compression algorithm known as Brotli, configured to its highest compression setting.

    Genesis state

    They performed a regenesis from Classic to Nitro, and that file represents the last Classic state. To sync from the initial Classic state, instructions can be found here.

    Data format

    Nitro supports Ethereum’s data structures and formats by incorporating the core code of the popular go-ethereum (“Geth”) Ethereum node software. The batch is composed of a header and a compressed blob, which results from compressing concatenated RLP-encoded transactions using the standard RLP encoding.

    Operator

    The system has a centralized sequencer

    While forcing transaction is open to anyone the system employs a privileged sequencer that has priority for submitting transaction batches and ordering transactions.

    • MEV can be extracted if the operator exploits their centralized position and frontruns user transactions.

    1. Sequencer - Arbitrum documentation

    Users can force any transaction

    Because the state of the system is based on transactions submitted on-chain and anyone can submit their transactions there it allows the users to circumvent censorship by interacting with the smart contract directly. Anyone can become a Proposer after approximately 6d 8h (45818 blocks) of inactivity from the currently whitelisted Proposers.

    1. SequencerInbox.sol - Etherscan source code, forceInclusion function
    2. Sequencer Isn’t Doing Its Job - Arbitrum documentation
    Withdrawals

    Regular exit

    The user initiates the withdrawal by submitting a regular transaction on this chain. When the block containing that transaction is finalized the funds become available for withdrawal on L1. The process of block finalization usually takes several days to complete. Finally the user submits an L1 transaction to claim the funds. This transaction requires a merkle proof.

    1. Transaction lifecycle - Arbitrum documentation
    2. L2 to L1 Messages - Arbitrum documentation
    3. Mainnet for everyone - Arbitrum Blog

    Tradeable Bridge Exit

    When a user initiates a regular withdrawal a third party verifying the chain can offer to buy this withdrawal by paying the user on L1. The user will get the funds immediately, however the third party has to wait for the block to be finalized. This is implemented as a first party functionality inside Arbitrum’s token bridge.

    1. Tradeable Bridge Exits - Arbitrum documentation

    Autonomous exit

    Users can (eventually) exit the system by pushing the transaction on L1 and providing the corresponding state root. The only way to prevent such withdrawal is via an upgrade.

    Other considerations

    EVM compatible smart contracts are supported

    Arbitrum One uses Nitro technology that allows running fraud proofs by executing EVM code on top of WASM.

    • Funds can be lost if there are mistakes in the highly complex Nitro and WASM one-step prover implementation.

    1. Inside Arbitrum Nitro

    Arbitrum DAO is in charge of upgrades

    Arbitrum DAO allows $ARB token holders to propose and vote on changes to the organization and the technologies it governs. The governance smart contracts are implemented on Arbitrum One rollup chain. The DAO can upgrade the Arbitrum One contracts on L2 with 3d delay and - using L2 --> L1 Governance Relay, update contracts on L1 with additional 3d delay + 6d 8h delay for all L2 --> L1 messages (in total a delay of 12d 8h). The Security Council can upgrade the contracts without any delay. It can also cancel any upgrades initiated by the DAO.

    • Funds can be stolen if a contract receives a malicious code upgrade. There is a 12d 8h delay on code upgrades.

    1. Arbitrum DAO
    Permissions

    The system uses the following set of permissioned addresses:

    Central actors allowed to submit transaction batches to L1.

    They can submit new state roots and challenge state roots. Some of the operators perform their duties through special purpose smart contracts.

    SecurityCouncil 0xF06E…3F85

    The admin of all contracts in the system, capable of issuing upgrades without notice and delay. This allows it to censor transactions and to upgrade the bridge implementation, potentially gaining access to all funds stored in the bridge and change the sequencer or any other system component (unlimited upgrade power). It is also the admin of the special purpose smart contracts used by validators. This is a Gnosis Safe with 9 / 12 threshold. It uses the following modules: UpgradeExecutor.

    Used in:

    Project icon
    BatchPosterManagerMultisig 0xd0FD…679B

    It can update whether an address is authorized to be a batch poster at the sequencer inbox. The UpgradeExecutor retains the ability to update the batch poster manager (along with any batch posters). This is a Gnosis Safe with 4 / 6 threshold.

    Used in:

    Project icon

    Those are the participants of the BatchPosterManagerMultisig.

    L1ArbitrumTimelock 0xE684…7f49

    It gives the DAO participants on the L2 the ability to upgrade the system. Only the L2 counterpart of this contract can execute the upgrades.

    Used in:

    Project icon

    The system consists of the following permissions on Arbitrum One:

    L2SecurityCouncilEmergency 0x4235…1641

    The elected signers for the Arbitrum SecurityCouncil can act through this multisig on Layer2, permissioned to upgrade all system contracts without delay. This is a Gnosis Safe with 9 / 12 threshold. It uses the following modules: L2UpgradeExecutor.

    Those are the participants of the L2SecurityCouncilEmergency.

    L2SecurityCouncilPropose 0xADd6…a941

    The elected signers for the Arbitrum SecurityCouncil can act through this multisig on Layer2 to propose transactions in the L2CoreTimelock (e.g. upgrade proposals). This is a Gnosis Safe with 9 / 12 threshold. It uses the following modules: L2UpgradeExecutor.

    Smart contracts
    A diagram of the smart contract architecture
    A diagram of the smart contract architecture

    The system consists of the following smart contracts on the host chain (Ethereum):

    Main contract implementing Arbitrum One Rollup. Manages other Rollup components, list of Stakers and Validators. Entry point for Validators creating new Rollup Nodes (state commits) and Challengers submitting fraud proofs.

    Upgrade delay: 12d 8h or 0 if overridden by the Security Council

    Implementation used in:

    Project icon

    Contract managing Inboxes and Outboxes. It escrows ETH sent to L2. This contract stores the following tokens: ETH.

    Upgrade delay: 12d 8h or 0 if overridden by the Security Council

    Implementation used in:

    Project icon

    Main entry point for the Sequencer submitting transaction batches to a Rollup.

    Upgrade delay: 12d 8h or 0 if overridden by the Security Council

    Implementation used in:

    Project icon

    Entry point for users depositing ETH and sending L1 --> L2 messages. Deposited ETH is escrowed in a Bridge contract.

    Upgrade delay: 12d 8h or 0 if overridden by the Security Council

    Arbitrum’s Outbox system allows for arbitrary L2 to L1 contract calls; i.e., messages initiated from L2 which eventually resolve in execution on L1.

    Upgrade delay: 12d 8h or 0 if overridden by the Security Council

    This contract can upgrade the system’s contracts. The upgrades can be done either by the Security Council or by the L1ArbitrumTimelock.

    Upgrade delay: 12d 8h or 0 if overridden by the Security Council

    Proxy used in:

    Project icon

    Timelock contract for Arbitrum DAO Governance. It gives the DAO participants the ability to upgrade the system. Only the L2 counterpart of this contract can execute the upgrades.

    Upgrade delay: 12d 8h or 0 if overridden by the Security Council

    Proxy used in:

    Project icon

    Router managing token <–> gateway mapping.

    Upgrade delay: 12d 8h or 0 if overridden by the Security Council

    Implementation used in:

    Project icon

    Contract that allows challenging invalid state roots. Can be called through the RollupProxy.

    Upgrade delay: 12d 8h or 0 if overridden by the Security Council

    Implementation used in:

    Project icon
    OneStepProofEntry 0xC6E1…4F7e

    Contract used to perform the last step of a fraud proof.

    Implementation used in:

    Project icon
    OneStepProverMemory 0xb602…D3ED

    Contract used to perform the last step of a fraud proof.

    Implementation used in:

    Project icon
    OneStepProverMath 0x221C…DCAa

    Contract used to perform the last step of a fraud proof.

    Implementation used in:

    Project icon
    OneStepProverHostIo 0xd7f1…A63e

    Contract used to perform the last step of a fraud proof.

    Implementation used in:

    Project icon
    OneStepProver0 0xA174…A58C

    Contract used to perform the last step of a fraud proof.

    Implementation used in:

    Project icon

    The system consists of the following smart contracts on Arbitrum One:

    Governance contract accepting and managing constitutional Arbitrum Improvement Proposals (AIPs, core proposals) and, among other formal parameters, enforcing the 5% quorum for proposals.

    Upgrade delay: 12d 8h or 0 if overridden by the Security Council

    Delays constitutional AIPs from the CoreGovernor by 3d.

    Upgrade delay: 12d 8h or 0 if overridden by the Security Council

    Governance contract used for creating non-constitutional AIPs, or “treasury proposals”, e.g., transferring founds out of the DAO Treasury. Also enforces the 3% quorum for proposals.

    Upgrade delay: 12d 8h or 0 if overridden by the Security Council

    Delays treasury proposals from the TreasuryGovernor by 3d.

    Upgrade delay: 12d 8h or 0 if overridden by the Security Council

    This contract can upgrade the L2 system’s contracts through the L2ProxyAdmin. The upgrades can be done either by the Security Council or by the L1ArbitrumTimelock (via its alias on L2).

    Upgrade delay: 12d 8h or 0 if overridden by the Security Council

    This contract enforces the rules for changing members and cohorts of the SecurityCouncil and creates crosschain messages to Ethereum and Arbitrum Nova to keep the configuration in sync.

    Upgrade delay: 12d 8h or 0 if overridden by the Security Council

    ConstitutionHash 0x1D62…0417

    Keeps the current hash of the ArbitrumDAO Constitution. Settable by the L2UpgradeExecutor.

    L2ProxyAdmin 0xdb21…961e

    The owner (UpgradeExecutor) can upgrade proxies’ implementations of all L2 system contracts through this contract.

    L2GatewaysProxyAdmin 0xd570…2a86

    The owner (UpgradeExecutor) can upgrade proxies’ implementations of all L2 bridging gateway contracts through this contract.

    L2BaseFee 0xbF50…b649

    This contract receives all BaseFees: The transaction fee component that covers the minimum cost of Arbitrum transaction execution. They are withdrawable to a configurable set of recipients.

    L2SurplusFee 0x32e7…6b1d

    This contract receives all SurplusFees: Transaction fee component that covers the cost beyond that covered by the L2 Base Fee during chain congestion. They are withdrawable to a configurable set of recipients.

    The ARB token contract. Supply can be increased by the owner once per year by a maximum of 2%.

    Upgrade delay: 12d 8h or 0 if overridden by the Security Council

    Router managing token <–> gateway mapping on L2.

    Upgrade delay: 12d 8h or 0 if overridden by the Security Council

    Counterpart to the L1ERC20Gateway. Can mint (deposit to L2) and burn (withdraw to L1) ERC20 tokens on L2.

    Upgrade delay: 12d 8h or 0 if overridden by the Security Council

    Counterpart to the Bridge on L1. Mints and burns WETH on L2.

    Upgrade delay: 12d 8h or 0 if overridden by the Security Council

    ARB sent from L2 to L1 is escrowed in this contract and minted on L1.

    Upgrade delay: 12d 8h or 0 if overridden by the Security Council

    L2DAIGateway 0x4671…6C65

    Counterpart to the L1DaiGateway. Can mint (deposit to L2) and burn (withdraw to L1) DAI tokens on L2

    L2LPTGateway 0x6D24…D318

    Counterpart to the L1LPTGateway. Can mint (deposit to L2) and burn (withdraw to L1) LPT on L2

    Value Locked is calculated based on these smart contracts and tokens:

    Main entry point for users depositing ERC20 tokens that require minting custom token on L2.

    Upgrade delay: 12d 8h or 0 if overridden by the Security Council

    Main entry point for users depositing ERC20 tokens. Upon depositing, on L2 a generic, “wrapped” token will be minted.

    Upgrade delay: 12d 8h or 0 if overridden by the Security Council

    Contract managing Inboxes and Outboxes. It escrows ETH sent to L2.

    Can be upgraded by:

    Upgrade delay: No delay

    Implementation used in:

    Project icon
    Escrow for DAI 0xA10c…9400

    DAI Vault for custom DAI Gateway. Fully controlled by MakerDAO governance.

    wstETH Vault for custom wstETH Gateway. Fully controlled by Lido governance.

    Escrow for LPT 0x6A23…210A

    LPT Vault for custom Livepeer Token Gateway.

    The current deployment carries some associated risks:

    • Funds can be stolen if a contract receives a malicious code upgrade. There is a 12 days delay on code upgrades unless upgrade is initiated by the Security Council in which case there is no delay.

    Knowledge nuggets