Ethereum Glamsterdam: Why Breaking the Gas Ceiling Tests Every Wallet

Ethereum’s Platåberget testnet makes Glamsterdam’s deepest changes observable: higher gas ceilings, separate state accounting, access lists and enshrined builder roles. The upside is parallel execution and more capacity. The immediate risk is software that quietly assumes yesterday’s limits, costs and block-production workflow.

Ethereum Glamsterdam is now a live test of whether the ecosystem can scale without carrying its old assumptions into a new execution regime. The short-lived Platåberget public network activated the Glamsterdam fork on August 20, 2026. Its headline features include enshrined proposer-builder separation, block-level access lists and a package of gas-accounting changes intended to support much larger blocks. The less visible consequence is more important for users: wallets, indexers, contract toolchains and infrastructure providers must stop treating familiar gas limits and transaction costs as fixed properties of Ethereum.

A protocol can raise capacity by changing a number. An ecosystem becomes scalable only when every dependent system can understand what that number now means. Glamsterdam therefore is not merely a throughput upgrade. It is a coordinated test of resource accounting, block production, state growth and software compatibility. Platåberget gives developers a place to discover failures before the same assumptions reach Sepolia, Hoodi and eventually mainnet.

Ethereum Glamsterdam at a Glance

ChangeIntended benefitImmediate stress point
Higher effective gas floorMore execution capacity per blockHardcoded wallet, RPC and analytics ceilings
Separate state-creation gasControl database growth independently from computationGas estimation and “21,000 gas” transfer assumptions
Block-level access listsParallel reads, execution and state-root workPropagation, indexing and validation pipelines
Enshrined proposer-builder separationTrust-minimized builder payments and more validation timeBuilder, relay, validator and monitoring workflows
Larger contracts and initcodeMore expressive deploymentsCompiler, deployment and audit tooling limits

What Platåberget Actually Put on a Public Network

The Ethereum Foundation’s Platåberget announcement describes a temporary public testnet designed to run for several months and expose Glamsterdam’s features under real application traffic. That distinction matters. Devnets are useful for client coordination, but a public network is where wallet providers, explorers, analytics systems, deployment frameworks and independent node operators confront behavior that their internal test suites may never model.

Glamsterdam’s scope is tracked in the hardfork meta proposal. The fork combines changes that are individually comprehensible but operationally interdependent. More block capacity changes data volume and propagation pressure. Parallel execution depends on reliable descriptions of which state a block touches. A new builder workflow changes when payloads are available and how payments are verified. Separate state pricing changes the cost seen by applications even when the user’s intent has not changed.

This is why the testnet should be read as an integration exercise. Ethereum is not asking only whether a client can accept a Glamsterdam block. It is asking whether the wider market infrastructure can quote, submit, trace, index, simulate, price and explain that block correctly. A consensus-valid network can still deliver a poor user experience if estimation libraries fail, explorers misclassify transactions or operators underestimate new storage and bandwidth requirements.

The Gas Ceiling Was a Hidden Interface

Developers often discuss the block gas limit as a protocol parameter. In practice, it became an interface embedded throughout the ecosystem. Wallets cap user inputs. RPC gateways reject estimates that look implausibly large. Monitoring dashboards define alerts around historical block sizes. Contract frameworks assume a deployment that cannot fit under today’s ceiling will not fit tomorrow. Indexers size queues, databases and retry windows from the volume they expect a valid block to contain.

The Foundation warns that tooling with hardcoded maximum gas values can break as Glamsterdam moves toward a roughly 200 million gas floor. The wording is revealing: the failure is not necessarily an invalid transaction. It may be a valid transaction that software refuses to construct, simulate or display. Users then experience a compatibility outage even though the chain is working exactly as designed.

This resembles the application-versus-infrastructure trade-off examined in Block2Learn’s analysis of the Superseed Layer 2 shutdown. Low transaction cost did not by itself create durable liquidity or justify maintaining a separate network surface. Glamsterdam approaches the problem from the other direction: it expands Ethereum’s shared surface, but the expansion creates new obligations for every product that claims compatibility with it.

More Gas Is Not One-Dimensional Throughput

A single gas meter historically bundled several kinds of resource use into one budget. Computation, calldata, storage reads and permanent state creation all competed inside the same block-level limit. Raising that limit improves capacity, but it can also accelerate the resource that is hardest to reverse: persistent state. Every full node must retain and serve the data needed to execute and verify the network.

EIP-8037 addresses that problem by introducing a separate accounting constraint for state creation. Its motivation includes an uncomfortable scaling arithmetic. The proposal cites a Geth state database of about 390 GiB in January 2026 and reports that increasing the gas limit from 30 million to 60 million was associated with daily state growth rising from roughly 105 MiB to 326 MiB. A simple extrapolation toward 200 million gas could imply annual growth near the current database’s total size.

The numbers are not a forecast of inevitable growth. They show why “raise the gas limit” is incomplete engineering. Compute can become faster through parallelism and hardware improvements; permanently accumulated state creates a compounding burden for synchronization, storage, backups and historical access. A multidimensional model allows Ethereum to increase execution capacity while pricing the creation of new state according to a separate safety target.

Why a Plain ETH Transfer May Stop Looking Plain

The most user-visible compatibility break may involve the most familiar transaction. For years, 21,000 gas has been treated as the canonical cost of a simple ETH transfer. That figure appears in tutorials, wallet defaults, spreadsheets, exchange withdrawal systems and risk engines. Glamsterdam’s accounting work challenges the assumption that one number can represent every transfer context.

EIP-2780 decomposes the intrinsic transaction charge and moves part of the cost into execution-time accounting. A transfer to an existing account and a transfer that creates a new account do not impose identical state consequences. Under the new model, a wallet that blindly fixes the gas limit at 21,000 can underprice a valid payment when the recipient requires new state.

This does not make ETH transfers unreliable. It makes estimation contextual. Wallets must query current network rules, simulate the actual call and present the result without implying that a historical constant is a guarantee. Exchanges must test withdrawal systems against new-account recipients. Payment processors must verify whether fee buffers and retry logic remain adequate. Documentation that tells users to enter 21,000 manually becomes a source of failure rather than a shortcut.

Wallets and Gas Estimators Face the First Consumer Test

Wallet software sits at the boundary between protocol complexity and user intent. A person wants to send ETH, deploy a contract or interact with an application. The wallet converts that intent into gas limits, fee parameters and calldata. If the wallet assumes an outdated ceiling, it can fail before the transaction reaches the network. If it estimates only execution and ignores separate state charges, it can submit a transaction that predictably reverts.

The correct response is not to add a large arbitrary buffer. Over-buffering can produce alarming fee displays and weaken safeguards that distinguish an expensive transaction from a compromised application. Providers need rule-aware simulation, explicit test cases for existing and new accounts, and interfaces that explain why a previously standard action now has a different limit. Hardware wallets and transaction-signing libraries must also verify that decoded fee fields and confirmation screens do not truncate larger values.

These changes arrive while ETH’s market structure is already volatile. The recent Ethereum technical analysis showed price pressing a major breakout zone after exceptional volume. Price volatility and protocol migration are separate risks, but they can interact operationally: a failed transaction during a fast market is more costly than the same failure during quiet conditions.

Block-Level Access Lists Turn Knowledge Into a Scaling Asset

Ethereum’s execution model is difficult to parallelize because a node traditionally discovers state dependencies while processing transactions. Two transactions that touch unrelated accounts could run at the same time, but a validator needs to know they are independent. EIP-7928 introduces an enforced block-level access list that records the accounts and storage locations touched by the block, together with relevant post-transaction values.

That list turns dependency information into a first-class block artifact. Nodes can prefetch required state, schedule independent work in parallel and reduce the serial bottleneck in execution and state-root computation. The idea is not simply “more cores make Ethereum faster.” The protocol must provide enough reliable information for those cores to work without racing over shared state.

The trade-off is a new propagation and validation surface. Access lists must be generated correctly, transmitted efficiently and checked against execution. Indexers may use them to improve analytics, but they cannot assume the list replaces receipts, traces or complete execution semantics. Infrastructure teams should measure whether the extra block data shifts bottlenecks from computation to networking or database writes. Parallelism is valuable only if the coordination data remains cheaper than the work it saves.

Enshrined Proposer-Builder Separation Changes the Block Supply Chain

EIP-7732 brings proposer-builder separation into the protocol. Builders become staked entities, builder payments are enforced without relying on the same out-of-protocol trust model, and a payload timeliness committee helps determine whether the execution payload arrived on time. The separation gives consensus participants more time to validate the execution payload because consensus and execution duties no longer sit in the same narrow sequence.

This is scaling through workflow design. If validators receive more time for execution validation, Ethereum can accommodate heavier blocks without forcing every task into one critical path. It also changes the infrastructure market. Builders, relays, validators, monitoring firms and staking providers must understand new commitment, payment and timeliness states. Dashboards that reduce a slot to “proposed” or “missed” may no longer explain the economically relevant failure.

For institutional staking products, the change deserves attention even when end investors never choose a builder. Block-production reliability affects rewards, missed-slot analysis and operational due diligence. Block2Learn’s review of Ethereum institutional staking emphasized that advertised yield is only one layer; validator operations, liquidity and counterparties determine realized performance. Glamsterdam makes the builder interface another component of that operating stack.

Gas Repricing Is a Migration of Economic Assumptions

The Glamsterdam gas repricing proposal packages multiple changes required for a higher-capacity network. Repricing is often treated as internal protocol maintenance, but application economics frequently depend on the relative cost of operations. A strategy profitable under one schedule may become marginal under another. A denial-of-service protection based on the expense of a path can weaken if that path becomes cheaper. A contract optimized for yesterday’s expensive opcode mix may carry unnecessary complexity tomorrow.

Developers therefore need differential tests, not only pass-fail tests. The same transaction should be run under the pre-fork and Glamsterdam rules, with changes in execution gas, state gas, calldata, traces and failure conditions recorded. Auditors should examine whether pricing changes revive formerly uneconomic attack patterns or alter incentives around storage cleanup. Treasury teams should model fee distributions across common user journeys rather than multiplying an average gas price by historical gas usage.

This is especially important for protocols that sponsor user transactions. Account-abstraction systems, bridges and consumer applications often hide gas from the user while the protocol absorbs it. A small estimation error repeated across thousands of subsidized actions becomes a material operating cost. Glamsterdam rewards teams that treat gas as a dynamic resource model instead of a constant in a spreadsheet.

Larger Contracts Expand Design Space and Audit Surface

Platåberget also exposes larger contract and initcode limits. That can reduce the need to split complex systems across multiple deployments or rely on elaborate proxy patterns solely to fit an old size constraint. Developers gain room for richer verification logic, modular account systems and applications whose deployment was previously impractical.

More room is not free safety. Larger bytecode increases review surface, deployment cost and the number of branches an auditor must understand. It can encourage monolithic designs that are difficult to upgrade or formally verify. Toolchains must ensure compilers, source verification services, explorers and hardware signers can process the larger artifacts without truncation or timeouts. A limit increase removes one constraint; it does not remove the engineering discipline that the constraint previously enforced.

Indexers, Explorers and Data Providers Cannot Treat Blocks as Yesterday’s Files

A higher-capacity block affects the entire data path after consensus. Archive providers ingest more execution, access-list and state information. Indexers decode more events and update more entities per slot. Explorers render larger transactions and contract artifacts. Analytics platforms backfill schema changes across historical and new data. Risk systems consume the resulting feeds under strict latency targets.

The dangerous failure is silent degradation. A service may remain online while falling several blocks behind, dropping traces or computing incomplete aggregates. Operators should measure lag distributions, queue depth, database write amplification, reorganization recovery and state-pruning behavior under sustained high utilization. They should also distinguish between testnet traffic that is synthetically large and workloads that reproduce realistic account and storage patterns.

For investors, infrastructure observability becomes an adoption signal. A fork is not mature because block explorers show its name. It is mature when independent providers agree on block contents, wallets estimate reliably, developer tools reproduce failures and operators can maintain service-level objectives through load spikes.

What Layer 2 Networks Gain—and What They Still Own

More efficient Ethereum execution can improve the settlement foundation used by rollups, but it does not automatically solve rollup economics. Layer 2 systems still manage sequencing, proving, data availability, bridging, application liquidity and user acquisition. A higher mainnet capacity floor may reduce congestion pressure and create more room for settlement activity. It can also make mainnet more competitive for applications that had moved outward primarily because of execution constraints.

The result is a strategic test. Rollups with genuine product differentiation, strong liquidity or specialized execution retain a reason to exist. Networks whose proposition was only “Ethereum is expensive” face a weaker moat. Glamsterdam may therefore change the division of labor between mainnet and Layer 2 without eliminating either layer. The technical upgrade expands the option set; users and liquidity decide which options become economically durable.

The ETH Investment Thesis Is About Reliability, Not a Gas Number

A higher gas limit is not mechanically bullish for ETH. More capacity can support more activity, but lower per-transaction fees can offset volume growth. Separate state pricing may raise costs for state-heavy applications. Builder changes can improve market structure while creating new implementation risks. The value case depends on whether the network converts technical capacity into reliable, economically meaningful demand.

The strongest outcome is a network that processes more useful activity without centralizing node operation or degrading user experience. That means state growth remains controlled, ordinary hardware can still verify the chain, wallets do not fail at the interface and builders cannot turn protocol complexity into opaque rent extraction. The weakest outcome is a headline capacity increase accompanied by tooling outages, larger infrastructure concentration and confusing fee behavior.

ETH holders should therefore watch adoption evidence rather than extrapolate the 200 million figure into revenue. Relevant signals include sustained testnet participation, client diversity, gas-estimation accuracy, validator performance, builder concentration, state-growth rates and the pace at which major wallets remove hardcoded limits. The protocol change creates capacity. The ecosystem’s response determines whether that capacity becomes utility.

A Practical Glamsterdam Readiness Checklist

  • Wallets: test transfers to existing and new accounts; remove fixed 21,000-gas assumptions; verify large-value rendering and simulation fallbacks.
  • Applications: compare pre-fork and post-fork gas paths; model separate state costs; recheck sponsored-transaction budgets.
  • Contract teams: test larger deployments, source verification and upgrade tooling; do not equate a larger limit with simpler audit risk.
  • Indexers: load-test access-list ingestion, trace completeness, reorganization recovery and database growth.
  • Validators and staking providers: monitor builder commitments, payload timeliness, missed rewards and client-specific failure modes.
  • Investors: track operational adoption, client diversity and state growth alongside transaction volume and fees.

Three Scenarios for the Glamsterdam Rollout

Scenario One: Tooling Adapts Before Mainnet

Major wallets, RPC providers, explorers and contract frameworks use Platåberget to remove fixed ceilings and update estimation logic. Client teams demonstrate stable high-load performance, access lists support measurable parallelism and separate state pricing keeps database growth near its target. Sepolia and Hoodi then become confirmation stages rather than discovery stages. This is the strongest outcome because mainnet inherits rehearsed operations, not merely tested consensus code.

Scenario Two: The Fork Works but Compatibility Is Uneven

Core clients remain stable, while smaller wallets, indexers and application libraries discover hardcoded assumptions late. Users encounter inconsistent estimates and providers apply conservative limits until software catches up. Mainnet timing may remain achievable, but adoption of the new capacity is gradual. This outcome is manageable, yet it concentrates activity in the best-capitalized infrastructure providers and weakens the decentralization benefit of a broadly accessible protocol.

Scenario Three: State or Block-Production Risks Force Rescoping

Testing reveals that state growth, propagation pressure or the new builder workflow produces unacceptable operational risk at the intended capacity. Developers then reduce targets, delay components or change activation sequencing. That would not mean Glamsterdam failed. A temporary public testnet exists precisely to make rescoping cheaper than a mainnet incident. The negative signal would be ignoring measured constraints to preserve a calendar date.

Block2Learn Assessment

Ethereum Glamsterdam is best understood as a transition from one-dimensional scaling to explicit resource management. Block-level access lists provide information needed for parallel work. Enshrined proposer-builder separation rearranges the critical path around block production. State gas separates durable storage pressure from general computation. Repricing and larger limits remove assumptions that had quietly hardened into ecosystem interfaces.

The design is coherent because each component addresses a different constraint. The risk is also coherent: every component reaches beyond core clients. A wallet can reject a valid transaction, an indexer can lag without failing, a validator can misread a new builder state and an application can retain obsolete economics. Platåberget’s value lies in making those hidden contracts visible while repairs are still reversible.

The market should resist two shortcuts. The first is treating a 200 million gas floor as an immediate multiple of throughput or fee revenue. The second is treating implementation risk as evidence that Ethereum should not scale. The useful question is whether the network can increase capacity while keeping verification distributed and user-facing behavior predictable. Glamsterdam is the test environment for that answer.

Conclusion: The Upgrade Succeeds When Users Do Not Notice the Migration

The most successful Ethereum upgrade is not the one with the largest parameter. It is the one that allows more activity while users continue to sign, send and settle with confidence. Glamsterdam’s higher capacity, access lists, state accounting and builder changes can move Ethereum toward that goal. Platåberget now gives the ecosystem a realistic place to prove that the surrounding software is ready.

For developers, the instruction is concrete: test assumptions, not only features. For infrastructure operators, measure silent degradation before it becomes an outage. For investors, watch whether capacity is converted into dependable activity without excessive state growth or provider concentration. The gas ceiling is breaking. The harder task is ensuring every tool built beneath it does not break at the same time.

Continue with the Block2Learn Learning Path to connect protocol design, execution economics and market structure into a reusable analytical framework.

This article is for educational purposes only and does not constitute financial advice.

FREE START + 15% DISCOUNT

Start Free Today. Unlock Your 15% Member Discount.

Access the Free Start program immediately and receive an exclusive 15% discount for your first Learning Path purchase.

Build your foundation before making your next investment decision.

GET FREE ACCESS

OASIS

Investor and entrepreneur with a focus on jewelry, e-commerce, and blockchain technologies. Founder of Block2Learn, a platform dedicated to educating on crypto, NFTs, and decentralized finance. Passionate about empowering others through innovative investments in digital assets and traditional industries.

Related Posts

You Missed

IBM Technical Analysis: $232 Support Tests the Post-Gap Recovery

  • August 25, 2026
IBM Technical Analysis: $232 Support Tests the Post-Gap Recovery

Microsoft Technical Analysis: $478 Support Tests the Post-Earnings Breakout

  • August 25, 2026
Microsoft Technical Analysis: $478 Support Tests the Post-Earnings Breakout

Nvidia Earnings Risk: Why One Chipmaker Now Tests the S&P 500’s AI Duration Trade

  • August 25, 2026
Nvidia Earnings Risk: Why One Chipmaker Now Tests the S&P 500’s AI Duration Trade

Stablecoin Cards at $1 Billion a Month: Why Checkout Growth Still Depends on Old Rails

  • August 25, 2026
Stablecoin Cards at  Billion a Month: Why Checkout Growth Still Depends on Old Rails

India’s Closing Auction: Why Better Price Discovery Can Create a 20-Minute Liquidity Trap

  • August 25, 2026
India’s Closing Auction: Why Better Price Discovery Can Create a 20-Minute Liquidity Trap

BNB Technical Analysis: $685 Support Tests an Overbought Breakout

  • August 25, 2026
BNB Technical Analysis: $685 Support Tests an Overbought Breakout

Bitcoin $80K Rally: Why Treasury Buybacks Have Repriced the Debasement Trade

  • August 25, 2026
Bitcoin K Rally: Why Treasury Buybacks Have Repriced the Debasement Trade

RBA Rate Hold: Why Australia’s AI Investment Boom Has Become an Inflation Risk

  • August 25, 2026
RBA Rate Hold: Why Australia’s AI Investment Boom Has Become an Inflation Risk
bitcoin
Bitcoin (BTC) $ 78,409.00 1.51%
ethereum
Ethereum (ETH) $ 2,440.14 2.27%
xrp
XRP (XRP) $ 1.43 5.50%
tether
Tether (USDT) $ 0.999919 0.01%
solana
Solana (SOL) $ 96.47 5.38%
bnb
BNB (BNB) $ 692.30 2.54%
usd-coin
USDC (USDC) $ 0.999904 0.00%
dogecoin
Dogecoin (DOGE) $ 0.085932 6.03%
cardano
Cardano (ADA) $ 0.209292 6.80%
staked-ether
Lido Staked Ether (STETH) $ 2,265.05 3.46%
tron
TRON (TRX) $ 0.335486 2.92%
chainlink
Chainlink (LINK) $ 11.25 4.25%
avalanche-2
Avalanche (AVAX) $ 7.33 3.73%
stellar
Stellar (XLM) $ 0.182387 7.19%
the-open-network
Gram (prev. Toncoin) (GRAM) $ 1.44 2.14%
hedera-hashgraph
Hedera (HBAR) $ 0.077599 3.36%
sui
Sui (SUI) $ 0.755318 6.89%
shiba-inu
Shiba Inu (SHIB) $ 0.000005 4.10%
leo-token
LEO Token (LEO) $ 9.33 0.35%
polkadot
Polkadot (DOT) $ 0.848473 6.39%
litecoin
Litecoin (LTC) $ 50.06 3.88%
bitget-token
Bitget Token (BGB) $ 1.90 1.00%
bitcoin-cash
Bitcoin Cash (BCH) $ 266.32 3.03%
hyperliquid
Hyperliquid (HYPE) $ 80.29 0.96%
uniswap
Uniswap (UNI) $ 4.27 2.02%
usds
USDS (USDS) $ 0.999797 0.02%
wrapped-eeth
Wrapped eETH (WEETH) $ 2,465.31 3.39%
ethena-usde
Ethena USDe (USDE) $ 0.999813 0.01%
official-trump
Official Trump (TRUMP) $ 2.19 10.38%
pepe
Pepe (PEPE) $ 0.000004 7.08%
near
NEAR Protocol (NEAR) $ 1.87 5.13%
ondo-finance
Ondo (ONDO) $ 0.363051 5.79%
aave
Aave (AAVE) $ 125.92 5.42%
mantra-dao
MANTRA (MANTRA) $ 0.004158 2.37%
aptos
Aptos (APT) $ 0.562987 8.02%
internet-computer
Internet Computer (ICP) $ 2.38 2.03%
monero
Monero (XMR) $ 440.97 0.23%
whitebit
WhiteBIT Coin (WBT) $ 72.38 1.94%
bittensor
Bittensor (TAO) $ 229.79 4.47%
ethereum-classic
Ethereum Classic (ETC) $ 7.75 0.96%
mantle
Mantle (MNT) $ 0.516015 0.30%
dai
Dai (DAI) $ 0.999863 0.02%
crypto-com-chain
Cronos (CRO) $ 0.058753 3.05%
vechain
VeChain (VET) $ 0.00572 0.03%
polygon-ecosystem-token
POL (ex-MATIC) (POL) $ 0.121123 4.57%
okb
OKB (OKB) $ 113.11 3.20%
kaspa
Kaspa (KAS) $ 0.027621 6.09%
algorand
Algorand (ALGO) $ 0.089519 3.68%
gatechain-token
Gate (GT) $ 7.83 3.28%
render-token
Render (RENDER) $ 1.50 0.85%
filecoin
Filecoin (FIL) $ 0.714272 5.77%
arbitrum
Arbitrum (ARB) $ 0.092295 5.86%
fetch-ai
Artificial Superintelligence Alliance (FET) $ 0.162597 7.07%
cosmos
Cosmos Hub (ATOM) $ 1.53 0.10%
coinbase-wrapped-btc
Coinbase Wrapped BTC (CBBTC) $ 76,366.00 3.12%
tokenize-xchange
Tokenize Xchange (TKX) $ 0.171556 0.00%
ethena
Ethena (ENA) $ 0.142562 8.29%
celestia
Celestia (TIA) $ 0.350581 7.01%
optimism
Optimism (OP) $ 0.101584 6.58%
bonk
Bonk (BONK) $ 0.000003 8.76%
blockstack
Stacks (STX) $ 0.2666 12.85%
binance-peg-weth
Binance-Peg WETH (WETH) $ 2,262.26 3.62%
raydium
Raydium (RAY) $ 0.781058 3.59%
theta-token
Theta Network (THETA) $ 0.175623 5.50%
immutable-x
Immutable (IMX) $ 0.128618 2.72%
lombard-staked-btc
Lombard Staked BTC (LBTC) $ 76,491.00 3.15%
jupiter-exchange-solana
Jupiter (JUP) $ 0.212621 3.78%
movement
Movement (MOVE) $ 0.008055 0.66%
binance-staked-sol
Binance Staked SOL (BNSOL) $ 108.24 4.48%
first-digital-usd
First Digital USD (FDUSD) $ 0.998394 0.07%
injective-protocol
Injective (INJ) $ 5.54 4.57%
kelp-dao-restaked-eth
Kelp DAO Restaked ETH (RSETH) $ 2,404.69 3.37%
xdce-crowd-sale
XDC Network (XDC) $ 0.028698 5.20%
fasttoken
Fasttoken (FTN) $ 0.159833 0.00%
worldcoin-wld
Worldcoin (WLD) $ 0.386425 5.30%
kucoin-shares
KuCoin (KCS) $ 7.21 5.79%
lido-dao
Lido DAO (LDO) $ 0.363665 3.38%
susds
sUSDS (SUSDS) $ 1.08 0.16%
the-graph
The Graph (GRT) $ 0.017488 2.67%
rocket-pool-eth
Rocket Pool ETH (RETH) $ 2,631.35 3.29%
sonic-3
Sonic (S) $ 0.027518 3.93%
mantle-staked-ether
Mantle Staked Ether (METH) $ 2,455.82 3.44%
nexo
NEXO (NEXO) $ 0.846371 1.03%
quant-network
Quant (QNT) $ 63.41 1.92%
flare-networks
Flare (FLR) $ 0.006581 5.38%
sei-network
Sei (SEI) $ 0.046218 2.41%
dogwifcoin
dogwifhat (WIF) $ 0.195309 4.92%
solv-btc
Solv Protocol BTC (SOLVBTC) $ 76,461.00 2.70%
virtual-protocol
Virtuals Protocol (VIRTUAL) $ 0.738913 7.99%
the-sandbox
The Sandbox (SAND) $ 0.040862 3.24%
msol
Marinade Staked SOL (MSOL) $ 133.18 5.83%
gala
GALA (GALA) $ 0.001832 5.35%
usual-usd
Usual USD (USD0) $ 0.99888 0.01%
floki
FLOKI (FLOKI) $ 0.000026 3.67%
jasmycoin
JasmyCoin (JASMY) $ 0.004989 5.73%
tezos
Tezos (XTZ) $ 0.225726 2.52%
kaia
Kaia (KAIA) $ 0.03244 0.85%
solv-protocol-solvbtc-bbn
Solv Protocol Staked BTC (XSOLVBTC) $ 76,043.00 2.27%
iota
IOTA (IOTA) $ 0.043329 5.60%
ethereum-name-service
Ethereum Name Service (ENS) $ 5.65 3.34%
spx6900
SPX6900 (SPX) $ 0.514151 10.97%
fartcoin
Fartcoin (FARTCOIN) $ 0.185267 0.45%
pudgy-penguins
Pudgy Penguins (PENGU) $ 0.009425 5.62%
pyth-network
Pyth Network (PYTH) $ 0.050854 0.46%
solana-swap
Solana Swap (SOS) $ 0.000218 5.19%
bittorrent
BitTorrent (BTT) $ 0.000000291017 1.32%
flow
Flow (FLOW) $ 0.029357 1.74%
bitcoin-sv
Bitcoin SV (BSV) $ 16.44 2.54%
neo
NEO (NEO) $ 2.14 2.85%
chain-2
Onyxcoin (XCN) $ 0.003656 2.48%
ronin
Ronin (RON) $ 0.054401 3.39%
jupiter-staked-sol
Jupiter Staked SOL (JUPSOL) $ 115.56 4.52%
curve-dao-token
Curve DAO (CRV) $ 0.315953 7.54%
jito-governance-token
Jito (JTO) $ 0.527563 9.20%
aioz-network
AIOZ Network (AIOZ) $ 0.053393 3.12%
renzo-restaked-eth
Renzo Restaked ETH (EZETH) $ 2,421.84 3.59%
arweave
Arweave (AR) $ 2.16 5.87%
binance-peg-dogecoin
Binance-Peg Dogecoin (DOGE) $ 0.107393 0.17%
arbitrum-bridged-wbtc-arbitrum-one
Arbitrum Bridged WBTC (Arbitrum One) (WBTC) $ 76,200.00 2.99%
starknet
Starknet (STRK) $ 0.02565 5.81%
axie-infinity
Axie Infinity (AXS) $ 0.946447 3.38%
wbnb
Wrapped BNB (WBNB) $ 759.61 1.56%
dexe
DeXe (DEXE) $ 1.90 0.28%
decentraland
Decentraland (MANA) $ 0.073586 2.30%
based-brett
Brett (BRETT) $ 0.005229 4.34%
elrond-erd-2
MultiversX (EGLD) $ 3.40 4.26%
beam-2
Beam (BEAM) $ 0.001433 2.66%
aerodrome-finance
Aerodrome Finance (AERO) $ 0.515968 4.19%
usdd
USDD (USDD) $ 0.999315 0.00%
dydx-chain
dYdX (DYDX) $ 0.116215 1.11%
thorchain
THORChain (RUNE) $ 0.482453 0.26%
morpho
Morpho (MORPHO) $ 2.50 4.57%
l2-standard-bridged-weth-base
L2 Standard Bridged WETH (Base) (WETH) $ 2,266.86 3.46%
mantle-restaked-eth
Mantle Restaked ETH (CMETH) $ 2,447.46 3.67%
conflux-token
Conflux (CFX) $ 0.047028 4.49%
reserve-rights-token
Reserve Rights (RSR) $ 0.001432 2.55%
arbitrum-bridged-weth-arbitrum-one
Arbitrum Bridged WETH (Arbitrum One) (WETH) $ 2,265.06 3.52%
zcash
Zcash (ZEC) $ 773.90 8.32%
tether-gold
Tether Gold (XAUT) $ 4,621.73 1.13%
ether-fi-staked-btc
Ether.fi Staked BTC (EBTC) $ 76,722.00 4.00%
ai16z
ai16z (AI16Z) $ 0.000387 20.83%
ether-fi-staked-eth
ether.fi Staked ETH (EETH) $ 2,317.47 1.05%
apecoin
ApeCoin (APE) $ 0.141235 4.36%
coredaoorg
Core (CORE) $ 0.024725 2.23%
helium
Helium (HNT) $ 0.204328 5.73%
frax
Legacy Frax Dollar (FRAX) $ 0.992151 0.02%
akash-network
Akash Network (AKT) $ 0.55544 3.67%
compound-governance-token
Compound (COMP) $ 19.28 2.59%
meow
MEOW (MEOW) $ 0.000007 3.83%
usdx-money-usdx
Stables Labs USDX (USDX) $ 0.009526 0.00%
ecash
eCash (XEC) $ 0.000007 4.35%
chiliz
Chiliz (CHZ) $ 0.014064 3.43%
wormhole
Wormhole (W) $ 0.009344 4.65%
amp-token
Amp (AMP) $ 0.000457 6.34%
ultima
Ultima (ULTIMA) $ 2,344.95 1.21%
eigenlayer
EigenCloud (prev. EigenLayer) (EIGEN) $ 0.207069 7.18%
pumpbtc
pumpBTC (PUMPBTC) $ 76,077.00 2.54%
deep
DeepBook (DEEP) $ 0.013898 3.31%
resolv-usr
Resolv USR (USR) $ 0.117885 3.28%
pancakeswap-token
PancakeSwap (CAKE) $ 1.71 3.78%
pax-gold
PAX Gold (PAXG) $ 4,629.34 1.16%
gigachad-2
Gigachad (GIGA) $ 0.002629 8.87%
mina-protocol
Mina Protocol (MINA) $ 0.060673 0.93%
gnosis
Gnosis (GNO) $ 120.42 2.43%
pendle
Pendle (PENDLE) $ 1.73 2.58%
bitcoin-avalanche-bridged-btc-b
Avalanche Bridged BTC (Avalanche) (BTC.B) $ 76,260.00 3.16%
beldex
Beldex (BDX) $ 0.082452 0.80%
echelon-prime
Echelon Prime (PRIME) $ 0.235581 2.30%
zksync
ZKsync (ZK) $ 0.008773 2.87%
paypal-usd
PayPal USD (PYUSD) $ 0.999934 0.00%
havven
Synthetix (SNX) $ 0.22796 1.73%
coinbase-wrapped-staked-eth
Coinbase Wrapped Staked ETH (CBETH) $ 2,539.40 3.57%
true-usd
TrueUSD (TUSD) $ 0.998099 0.03%
stakestone-berachain-vault-token
StakeStone Berachain Vault Token (BERASTONE) $ 2,442.72 1.98%
axelar
Axelar (AXL) $ 0.040283 4.37%
tbtc
tBTC (TBTC) $ 70,942.00 7.49%
apenft
AINFT (NFT) $ 0.000000276603 0.83%
snek
Snek (SNEK) $ 0.000423 2.08%
mog-coin
Mog Coin (MOG) $ 0.000000114132 4.62%
telcoin
Telcoin (TEL) $ 0.001815 2.98%
toshi
Toshi (TOSHI) $ 0.000129 4.06%
dydx
dYdX (ETHDYDX) $ 0.116549 0.65%
kava
Kava (KAVA) $ 0.045478 1.26%
polygon-pos-bridged-weth-polygon-pos
Polygon PoS Bridged WETH (Polygon POS) (WETH) $ 2,261.63 3.58%
newton-project
AB (AB) $ 0.000975 1.11%
notcoin
Notcoin (NOT) $ 0.000408 3.64%
chex-token
Chintai (CHEX) $ 0.009964 0.68%
bridged-usdc-polygon-pos-bridge
Polygon Bridged USDC (Polygon PoS) (USDC.E) $ 0.99972 0.00%
vethor-token
VeThor (VTHO) $ 0.000372 1.58%
frax-ether
Frax Ether (FRXETH) $ 2,262.16 2.20%
1inch
1INCH (1INCH) $ 0.089296 2.30%
trust-wallet-token
Trust Wallet (TWT) $ 0.458614 7.99%
quantixai
Quantix Finance (QFI) $ 20.18 104.23%
grass
Grass (GRASS) $ 0.329817 8.37%
stader-ethx
Stader ETHx (ETHX) $ 2,455.55 2.19%
superfarm
SuperVerse (SUPER) $ 0.113901 5.25%
terra-luna
Terra Luna Classic (LUNC) $ 0.000053 2.87%
sweth
Swell Ethereum (SWETH) $ 2,521.55 3.25%
safe
Safe (SAFE) $ 0.08934 4.40%
livepeer
Livepeer (LPT) $ 1.39 2.93%
hashnote-usyc
Circle USYC (USYC) $ 1.14 0.01%
usdb
USDB (USDB) $ 0.999183 0.25%
creditcoin-2
Creditcoin (CTC) $ 0.088059 2.73%
theta-fuel
Theta Fuel (TFUEL) $ 0.008863 1.01%
oasis-network
Oasis (ROSE) $ 0.005877 4.92%
super-oeth
Super OETH (SUPEROETH) $ 2,263.65 2.59%
aixbt
aixbt (AIXBT) $ 0.020888 4.02%
kusama
Kusama (KSM) $ 3.48 4.70%
bio-protocol
Bio Protocol (BIO) $ 0.029194 1.82%
layerzero
LayerZero (ZRO) $ 1.19 7.87%
blur
Blur (BLUR) $ 0.016299 2.53%
dash
Dash (DASH) $ 38.15 10.75%
cat-in-a-dogs-world
cat in a dogs world (MEW) $ 0.000414 6.92%
ordinals
ORDI (ORDI) $ 4.13 3.45%
solayer-staked-sol
Solayer Staked SOL (SSOL) $ 112.14 4.30%
io
io.net (IO) $ 0.138093 5.62%
ondo-us-dollar-yield
Ondo US Dollar Yield (USDY) $ 1.14 0.02%
freysa-ai
Freysa AI (FAI) $ 0.002835 3.77%
arkham
Arkham (ARKM) $ 0.109919 3.61%
turbo
Turbo (TURBO) $ 0.000988 3.59%
popcat
Popcat (POPCAT) $ 0.058693 1.77%
binance-peg-busd
Binance-Peg BUSD (BUSD) $ 1.00 0.05%
olympus
Olympus (OHM) $ 18.11 0.94%
dog-go-to-the-moon-rune
Dog (Bitcoin) (DOG) $ 0.001218 5.88%
nervos-network
Nervos Network (CKB) $ 0.000962 3.87%
astar
Astar (ASTR) $ 0.005478 1.42%
just
JUST (JST) $ 0.099506 1.77%
compound-wrapped-btc
cWBTC (CWBTC) $ 1,534.90 2.99%
mx-token
MX (MX) $ 1.70 1.95%
zilliqa
Zilliqa (ZIL) $ 0.002694 2.59%
verus-coin
Verus (VRSC) $ 0.210063 1.30%
melania-meme
Melania Meme (MELANIA) $ 0.104787 8.46%
holotoken
holo (HOLO) $ 0.000013 0.00%
ai-rig-complex
AI Rig Complex (ARC) $ 0.072523 0.70%
origintrail
OriginTrail (TRAC) $ 0.36011 3.00%
liquid-staked-ethereum
Liquid Staked ETH (LSETH) $ 2,406.26 2.78%
polygon-bridged-wbtc-polygon-pos
Polygon Bridged WBTC (Polygon POS) (WBTC) $ 76,130.00 3.08%
0x
0x Protocol (ZRX) $ 0.096463 2.27%
baby-doge-coin
Baby Doge Coin (BABYDOGE) $ 0.00000000036812 3.24%
ether-fi
Ether.fi (ETHFI) $ 0.563165 9.60%
safepal
SafePal (SFP) $ 0.260019 4.15%
staked-frax-ether
Staked Frax Ether (SFRXETH) $ 2,589.68 3.62%
aethir
Aethir (ATH) $ 0.005011 3.76%
golem
Golem (GLM) $ 0.10751 3.44%
basic-attention-token
Basic Attention (BAT) $ 0.066978 3.83%
swissborg
SwissBorg (BORG) $ 0.175479 2.70%
skale
SKALE (SKL) $ 0.003847 2.81%
wemix-token
WEMIX (WEMIX) $ 0.194992 0.45%
mocaverse
Moca Network (MOCA) $ 0.008032 3.10%
xyo-network
XYO Network (XYO) $ 0.003189 4.42%
gas
Gas (GAS) $ 1.23 0.81%
celo
Celo (CELO) $ 0.076367 2.70%
benqi-liquid-staked-avax
BENQI Liquid Staked AVAX (SAVAX) $ 12.58 0.25%
qtum
Qtum (QTUM) $ 0.841404 4.01%
spell-token
Spell (SPELL) $ 0.000086 3.74%
would
would (WOULD) $ 0.055249 10.95%
vine
Vine (VINE) $ 0.007425 10.87%
zencash
Horizen (ZEN) $ 5.15 5.95%
woo-network
WOO (WOO) $ 0.011369 2.89%
iotex
IoTeX (IOTX) $ 0.00279 2.44%
bridged-wrapped-ether-starkgate
Bridged Ether (StarkGate) (ETH) $ 2,241.79 5.41%
resolv-wstusr
Resolv wstUSR (WSTUSR) $ 1.13 0.06%
siacoin
Siacoin (SC) $ 0.000677 1.92%
bybit-staked-sol
Bybit Staked SOL (BBSOL) $ 112.08 4.42%
plume
Plume (PLUME) $ 0.013295 5.17%
osmosis
Osmosis (OSMO) $ 0.034529 4.61%
vana
Vana (VANA) $ 0.983983 4.38%
griffain
GRIFFAIN (GRIFFAIN) $ 0.011738 3.22%
zetachain
ZetaChain (ZETA) $ 0.032392 3.31%
uxlink
UXLINK (UXLINK) $ 0.000726 2.48%
ethereum-pow-iou
EthereumPoW (ETHW) $ 0.269107 3.29%
ankr
Ankr Network (ANKR) $ 0.003997 1.30%
akuma-inu
Akuma Inu (AKUMA) $ 0.000000084817 1.68%
tribe-2
Tribe (TRIBE) $ 0.382778 0.96%
ravencoin
Ravencoin (RVN) $ 0.003201 4.14%
enjincoin
Enjin Coin (ENJ) $ 0.025865 7.43%
peanut-the-squirrel
Peanut the Squirrel (PNUT) $ 0.051087 3.75%
elixir-deusd
Elixir deUSD (DEUSD) $ 0.000977 0.00%
memecoin-2
Memecoin (MEME) $ 0.000533 3.46%
aelf
aelf (ELF) $ 0.058826 7.66%
anime
Animecoin (ANIME) $ 0.002614 6.80%
constellation-labs
Constellation (DAG) $ 0.007495 0.31%
polymesh
Polymesh (POLYX) $ 0.033687 4.12%
convex-finance
Convex Finance (CVX) $ 2.04 8.61%
drift-protocol
Drift Protocol (DRIFT) $ 0.011857 3.18%
sats-ordinals
SATS (Ordinals) (SATS) $ 0.00000001157 6.88%
venice-token
Venice Token (VVV) $ 17.46 3.22%
qubic-network
Qubic (QUBIC) $ 0.000000420226 0.18%
coinex-token
CoinEx (CET) $ 0.011993 2.63%
peaq-2
peaq (PEAQ) $ 0.021071 7.61%
threshold-network-token
Threshold Network (T) $ 0.00362 3.51%
stepn
GMT (GMT) $ 0.007066 4.19%
usda-2
USDa (USDA) $ 0.967102 0.00%

Discover more from Block2Learn

Subscribe now to keep reading and get access to the full archive.

Continue reading