BNB Chain Pasteur Hard Fork: Why Faster Blocks Need Safer Validator Accounting

BNB Chain's Pasteur hard fork can unlock fuller blocks and close validator-accounting gaps, but its near-2x testnet throughput claim shifts new responsibility to builders, validators and client rollout discipline.

BNB Smart Chain’s Pasteur hard fork is being presented as a security upgrade with an unusually attractive side effect: almost twice the transaction throughput without shorter blocks or a higher gas limit. That combination sounds like a free efficiency gain. It is not. Pasteur changes where work happens, when validation happens and which identities are allowed to count toward consensus-sensitive decisions. The upgrade can make BSC more capable, but only if validators, builders and node operators execute a tighter trust model than the one it replaces.

The upgrade was scheduled to activate on BSC mainnet at 02:30 UTC on August 25, 2026. Nodes were required to run client version 1.7.7. Its three proposals address separate layers of the system: duplicate-validator checks for cross-chain verification, stricter treatment of rotated validator keys and a new builder-proposed block path that removes repeated execution from the most time-sensitive part of block production.

The investment question is not whether 2,324 transactions per second is better than 1,237. It is whether those testnet numbers describe durable mainnet capacity, and whether the new execution path preserves the security properties users assume when a block is signed. Pasteur matters because it makes a broader point about high-performance chains: speed usually comes from deciding which checks can move, which actors can be trusted temporarily and how quickly failures are contained.

Pasteur Is a Trust-Accounting Upgrade Before It Is a Speed Upgrade

The official BNB Chain announcement groups three proposals under the Pasteur name. BEP-682 rejects duplicate validators in a bridge-verification precompile. BEP-695 closes authorization, slashing and governance gaps involving rotated or blacklisted validator identities. BEP-675 lets specialist block builders submit already-executed blocks so validators can sign and broadcast before completing full post-signature verification.

Those changes look unrelated until they are viewed as accounting problems. A bridge must know that ten listed validators are ten distinct validators, not one validator repeated ten times. A staking system must know that a retired consensus key is no longer entitled to exercise current authority. A governance contract must identify the actual signer behind a relayed vote, not only the account that delivered it. A block-production pipeline must know which builder produced an executable result and how to respond if later verification disagrees.

In each case, performance and security depend on binding an action to the correct identity at the correct point in time. Pasteur therefore tightens identity rules while relaxing one timing rule. It rejects more ambiguous validator states, then allows validators to defer part of transaction execution until after a block has entered the broadcast path. That is a reasonable engineering trade only if the identity and accountability layers are stronger than before.

The Bridge Fix Closes a Minority-as-Supermajority Failure Mode

BEP-682 addresses a narrow but serious assumption inside the CometBFT light-block verification precompile at address 0x67. The precompile decoded validator sets but did not enforce uniqueness across validator address, consensus key, BLS key and relayer address. A malformed set could therefore repeat a validator in multiple positions. The same signature could satisfy multiple slots and inflate apparent voting power.

That is not merely a data-cleanliness issue. Threshold systems derive their security from independent participants. If one participant can be counted several times, the arithmetic remains correct while the security meaning collapses. A nominal supermajority becomes a disguised minority. The bridge may accept a light block that never received the distinct economic approval its threshold was designed to represent.

Pasteur rejects duplicated non-zero identity fields before light-client verification begins. Legitimate validator rotations can still place the same validator across trusted and incoming sets; the restriction applies within each set, where uniqueness is required. This is an important distinction. The proposal narrows malformed inputs without changing the normal bridge message format.

The broader lesson echoes Block2Learn’s analysis of The Sandbox bridge exploit and cross-chain supply risk. A bridge does not only move tokens. It imports trust assumptions from one verification domain into another. If the receiving chain miscounts who approved a state transition, wrapped supply can appear valid even though the underlying authorization was never economically real.

Rotated Keys Must Lose Authority Without Losing Accountability

Validator key rotation creates a difficult state-management problem. The old key must stop exercising current authority, but the network may still need it to attribute historical rewards, evidence or penalties. Deleting the old mapping entirely can break accountability. Leaving it fully active can preserve privileges that should have expired.

BEP-695 separates those functions. A retired consensus address remains available for slash and reward resolution, but it no longer resolves to the validator operator for administrative actions. If a double-sign or malicious-vote slash targets an old key, the system also propagates eviction to the validator’s current key so rotation cannot be used to escape removal from the active set.

The governance fix follows the same logic. BSC already checked whether the transaction sender was blacklisted. Signature-based voting allows a relayer to submit a vote on someone else’s behalf, so checking only the relayer misses the identity that actually authorized the vote. Pasteur also checks the recovered voter account, closing the alternate route.

These changes are not glamorous, but they are the institutional plumbing of a proof-of-staked-authority network. Validator legitimacy depends on state transitions remaining coherent across keys, roles and time. An upgrade that raises capacity while leaving stale authority behind would compound risk. Pasteur’s security work is valuable precisely because it removes those stale privileges before BSC leans harder on a specialized builder pipeline.

Why Blocks Were Leaving Capacity Unused

BSC operates with a 450-millisecond block interval and a 100 million gas limit. That gives builders and validators very little time to assemble, execute, verify, sign and propagate a block. Under the previous path, a specialist builder executed candidate transactions to construct a valid block. The validator then executed those transactions again before signing. The second execution protected the validator from accepting an invalid bid, but it consumed time inside the same narrow block window.

The result was a form of operational underutilization. Blocks could remain below half the gas limit even when transaction demand and builder capacity existed. The limiting resource was not theoretical block space; it was the validator’s critical-path latency. Increasing the gas limit would not solve that bottleneck if validators still ran out of time before signing.

BEP-675 changes the sequence. Builders submit a fully executed block. A validator checks consensus-critical structure, signs and broadcasts it, then completes full verification afterward. BNB Chain’s QANet benchmark says this reduced the validator’s critical-path work from 125 milliseconds to 15 milliseconds. Average gas use rose from 46.35 million to 84.15 million, while measured throughput increased from 1,237 to 2,324 transactions per second without changing the block interval or gas ceiling.

This is more efficient because it removes duplication from the scarce portion of the production cycle. It does not make execution free. The work still occurs, and the validator still verifies the block. What changes is the order in which execution certainty arrives relative to signature and broadcast.

Blind Signing Is a Timing Decision, Not Blind Trust

The proposal’s phrase “validator blind signing” can sound more reckless than the design intends. Validators are not supposed to sign arbitrary bytes from unknown actors. Builders submit executed blocks through a defined bidding path, and validators still perform consensus checks before broadcast. Full transaction verification follows. Builders also operate within an economic relationship where invalid output should be punishable and strategically self-defeating.

Even so, the change does move risk. Under pre-signature execution, an invalid transaction result is rejected before the validator adds its authority. Under post-signature verification, the network may temporarily see a signed proposal before the local validator has completed every execution check. The safety of that interval depends on peer validation, fork-choice behavior, builder reputation, bid payment design and the ability to isolate an invalid producer quickly.

The right comparison is not “verified” versus “unverified.” It is synchronous verification versus optimistic sequencing with later full verification. Modern market infrastructure uses similar ideas when it separates trade acceptance, risk checks, clearing and final settlement. Moving a check later can improve capacity, but only when the system defines what happens during the gap and who absorbs the loss if the optimistic assumption fails.

Block2Learn explored the same principle in India’s tokenized bond pilot: faster settlement does not eliminate risk; it relocates risk into prefunding, wallet coordination and exception handling. Pasteur’s faster block path similarly relocates verification timing into builder-validator coordination.

The Near-2x Throughput Number Is a Benchmark, Not a Promise

The headline benchmark deserves attention because the improvement is large. It also deserves discipline. QANet was designed to mirror BSC’s cross-region validator topology, but it remains a controlled environment with a selected workload. Mainnet transaction mixes vary in gas intensity, state access, contract complexity, failure rate and MEV value. A block containing simple transfers is not equivalent to one filled with storage-heavy decentralized-finance operations.

Builder adoption will also be gradual. The SendBidBlock path is gated behind Pasteur and controlled through RPC activation. Builders must run a full node rather than a fast node because they now submit fully executed blocks. Legacy bids continue to work, which reduces migration risk but also means the network may operate with mixed production paths while the new system proves itself.

Investors should therefore avoid turning 2,324 TPS into an immediate mainnet capacity assumption. The stronger evidence will be sustained block-gas utilization during real congestion, stable finality, unchanged reorganization behavior and broad builder participation. If average blocks become fuller without higher failure rates or validator instability, Pasteur will have created usable capacity. If utilization remains low, the bottleneck may sit elsewhere in the transaction pipeline.

Client Rollout Is Part of Consensus Security

Hard forks succeed only when the software transition is operationally boring. The BSC client changelog identifies v1.7.7 as the Pasteur mainnet release. Node operators were instructed to remove the EnableBAL configuration entry because leaving it in config.toml prevents startup. Several command-line flags were removed or made inert. Those details may look peripheral to protocol design, but they decide whether enough independent operators remain synchronized at activation.

A chain with fast blocks is especially sensitive to uneven upgrades. Operators have less time to recover from peer or execution problems, and minority forks can accumulate blocks quickly. A public GitHub issue filed by one validator operator reported out-of-turn sealing, re-queue loops and missed turns after upgrading to v1.7.7 in late July. That report is field evidence from a single operator, not proof of a network-wide defect or an official BNB Chain finding. It is still relevant because it describes the kind of timing interaction that a 450-millisecond system must monitor closely.

The correct response is neither to dismiss the report nor to treat it as confirmation that Pasteur failed. Operators should compare post-activation missed-turn rates, reorganization depth, slash counters and client versions. Maintainers should distinguish issues caused by deliberate block-delay behavior, low peer connectivity or local configuration from defects introduced by the release. Transparent telemetry matters more than narrative certainty during the first hours of a hard fork.

Pasteur May Increase Builder Concentration Pressure

The new path rewards builders that can execute large blocks, price bids and deliver them within an extremely short window. Requiring a full node increases operational cost relative to the legacy fast-node path. Better-capitalized builders can invest in low-latency infrastructure, private order flow and optimized execution. If the route becomes economically dominant, a smaller group may assemble a larger share of BSC blocks.

Concentration is not automatically a consensus failure. Validators still choose proposals and the network retains independent verification. Specialized market makers and builders can improve execution quality. The concern is that performance dependence may become governance dependence. If only a few builders can fill blocks efficiently, outages, censorship policies or strategic bidding behavior at those firms can affect network access even without controlling validator consensus.

This is why the security proposals belong in the same upgrade as the capacity proposal. Distinct validator identities must count correctly, rotated keys must lose authority and builder behavior must remain attributable. Faster infrastructure needs stronger separation between who proposes, who signs, who verifies and who can be penalized.

Fuller Blocks Could Improve Fees Without Lowering the Gas Price

Users often assume scaling means cheaper transactions. Pasteur does not directly cut the gas price. It increases the probability that available gas capacity is actually used before the block deadline. During bursts of demand, fuller blocks can reduce queue pressure and limit fee spikes that arise from artificial underpacking. During quiet periods, the change may be almost invisible because there was no congestion to absorb.

The important measure is the relationship between demand, block utilization and inclusion delay. If gas utilization rises toward the ceiling while median fees remain stable, the network has converted wasted time into economic throughput. If fees rise despite fuller blocks, demand may simply be expanding faster than supply. If blocks remain underfilled, builder adoption or transaction execution may still be constraining the system.

Ethereum’s recent tooling debates show why raw limits are insufficient. In our analysis of Ethereum’s Glamsterdam gas ceiling, the central issue was whether wallets, nodes and builders could safely process additional capacity. BSC’s approach is different, but the principle is the same: sustainable throughput is an end-to-end property, not a configuration number.

What Pasteur Does Not Change

Pasteur does not change BSC’s 450-millisecond block target or 100 million gas limit. It does not remove the network’s validator-set design. It does not make every cross-chain bridge safe, because external bridges use different contracts, relayers and verification assumptions. It does not guarantee that a transaction receives better execution, and it does not eliminate MEV competition.

The upgrade also does not create a migration requirement for ordinary decentralized applications. Smart-contract developers and users should largely experience continuity. The operational burden falls most heavily on validators, node operators and builders. That asymmetry is useful: a protocol can improve infrastructure without forcing every application to rewrite code. It also means user-facing calm should not be confused with absence of backend risk.

Nor does a successful activation settle the investment case for BNB. Protocol quality can support activity, fees and ecosystem confidence, but token value also depends on demand, supply policy, regulation, exchange economics and competition from other execution environments. A hard fork is infrastructure, not a guaranteed catalyst.

Three Scenarios for the First Weeks After Pasteur

Scenario one: capacity appears without instability. Builders adopt SendBidBlock, average gas utilization rises materially and finality metrics remain stable. Bridge-verification and key-rotation fixes operate quietly. This would validate the core engineering thesis: BSC was leaving capacity unused because validation occurred in the wrong part of the timing path.

Scenario two: security improves, but throughput gains remain modest. Pasteur closes the identity and governance gaps, while builders adopt the new path slowly. Mainnet workloads or infrastructure costs prevent the QANet improvement from carrying over fully. This would still be a positive outcome. Security hardening has value even if the performance headline is delayed.

Scenario three: timing interactions create operational stress. A subset of validators experiences missed turns, re-queue loops or unusual reorganizations. Builder concentration rises faster than monitoring and fallback procedures mature. In that case, the network may need a maintenance release, revised activation parameters or slower builder migration. The existence of a fallback legacy bid path should reduce the need for an all-or-nothing response.

Metrics Investors Should Watch

  • Average block gas used: the official benchmark moved from 46.35 million to 84.15 million. Mainnet should show whether previously empty capacity becomes usable.
  • Transaction inclusion latency: fuller blocks matter most when they reduce waiting time during demand spikes.
  • Finality and reorganization behavior: faster proposal flow must not produce deeper or more frequent minority forks.
  • Missed turns and slash counters: these reveal whether client rollout or block-timing interactions are stressing validators.
  • Builder diversity: capacity is healthier when several builders can compete effectively rather than one or two becoming essential.
  • Bridge rejection events: duplicate-validator checks should reject malformed inputs without disrupting legitimate rotations.
  • Version adoption: a fragmented client fleet can turn a correct protocol change into an operational problem.

These measures should be evaluated together. Higher throughput with falling builder diversity is not the same outcome as higher throughput with resilient competition. Low reorganization rates during quiet demand are less informative than stability during congestion. A successful hard fork is a pattern of evidence, not a single block-height event.

The Block2Learn Assessment

Pasteur is a structurally sensible upgrade because it addresses the security assumptions that become more important as BSC pushes performance. Rejecting duplicated validators is an overdue defense for threshold verification. Revoking authority from rotated keys while preserving historical accountability is the correct state model. Extending blacklist checks to the recovered governance signer closes an obvious relayer gap.

BEP-675 is the more consequential economic change. It can unlock capacity without forcing a larger gas limit, but it relies on a more optimistic relationship between builders and validators. That does not make the design unsafe by definition. It makes monitoring, builder competition and post-signature verification part of the security budget.

The 2,324 TPS benchmark should be treated as a testable hypothesis. Mainnet must demonstrate that blocks become fuller, finality remains stable and operators can run the required client without new failure patterns. If those conditions hold, Pasteur will show that some blockchain scaling problems are scheduling problems: the network already has the computational ceiling, but wastes it by repeating work at the wrong moment.

For investors, the most constructive interpretation is not that BNB Chain has suddenly doubled. It is that the network is tightening validator identity and changing the production pipeline to use existing resources more efficiently. That is a stronger foundation than a marketing TPS figure, but it must earn credibility through weeks of boring operation.

Faster Blocks Need Better Boundaries

High-performance chains cannot eliminate verification. They can only reorganize it. Pasteur moves some execution work outside the critical path while making validator identities harder to duplicate, retire incorrectly or hide behind relayers. The upgrade’s logic is coherent: trust builders briefly, verify them fully, and make every consensus-sensitive identity count exactly once.

The next test is operational. Builders must prove that fuller blocks do not become a concentration trap. Validators must prove that client version 1.7.7 can handle mainnet timing without unusual forks or missed turns. Maintainers must respond to field evidence with transparent data. Users should receive more reliable capacity without needing to understand any of the machinery.

That is the standard by which Pasteur should be judged. Not by whether a benchmark nearly doubled, but by whether BSC can convert more of its theoretical block space into dependable settlement while strengthening the identities that secure it.

To place this upgrade inside a broader framework for evaluating blockchain infrastructure, settlement risk and market structure, continue through the Block2Learn Learning Path.

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

Leave a Reply

You Missed

Apple Technical Analysis: $300 Support Tests the Post-Earnings Gap

  • August 26, 2026
Apple Technical Analysis: $300 Support Tests the Post-Earnings Gap

US Corporate Profits Surge $400.9 Billion: Why Flat Real Spending Makes the Margin Boom Fragile

  • August 26, 2026
US Corporate Profits Surge 0.9 Billion: Why Flat Real Spending Makes the Margin Boom Fragile

B2L Market Focus: Why China’s Stronger Yuan Is a Global Liquidity Signal

  • August 26, 2026
B2L Market Focus: Why China’s Stronger Yuan Is a Global Liquidity Signal

AAVE Technical Analysis: $124 Support Tests a Parabolic Breakout

  • August 26, 2026
AAVE Technical Analysis: $124 Support Tests a Parabolic Breakout

USD1 on Canton: Why Atomic Settlement Moves Risk Into Governance

  • August 26, 2026
USD1 on Canton: Why Atomic Settlement Moves Risk Into Governance

India Bank Dollar Bonds: Why a Discounted Hedge Created a Funding Stampede

  • August 26, 2026
India Bank Dollar Bonds: Why a Discounted Hedge Created a Funding Stampede

Solana Governance Vote: Why Fee Reform Turns Staking Into Fiscal Policy

  • August 26, 2026
Solana Governance Vote: Why Fee Reform Turns Staking Into Fiscal Policy

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

  • August 25, 2026
IBM Technical Analysis: $232 Support Tests the Post-Gap Recovery
bitcoin
Bitcoin (BTC) $ 78,929.00 0.23%
ethereum
Ethereum (ETH) $ 2,503.33 2.01%
xrp
XRP (XRP) $ 1.42 1.50%
tether
Tether (USDT) $ 0.999962 0.01%
solana
Solana (SOL) $ 101.83 5.18%
bnb
BNB (BNB) $ 705.18 1.62%
usd-coin
USDC (USDC) $ 0.999974 0.01%
dogecoin
Dogecoin (DOGE) $ 0.087342 1.39%
cardano
Cardano (ADA) $ 0.211435 0.54%
staked-ether
Lido Staked Ether (STETH) $ 2,265.05 3.46%
tron
TRON (TRX) $ 0.335754 0.03%
chainlink
Chainlink (LINK) $ 11.59 2.20%
avalanche-2
Avalanche (AVAX) $ 7.40 0.52%
stellar
Stellar (XLM) $ 0.184469 0.45%
the-open-network
Gram (prev. Toncoin) (GRAM) $ 1.40 2.76%
hedera-hashgraph
Hedera (HBAR) $ 0.077832 0.33%
sui
Sui (SUI) $ 0.756791 0.08%
shiba-inu
Shiba Inu (SHIB) $ 0.000005 0.54%
leo-token
LEO Token (LEO) $ 9.29 0.29%
polkadot
Polkadot (DOT) $ 0.876695 3.31%
litecoin
Litecoin (LTC) $ 50.07 0.07%
bitget-token
Bitget Token (BGB) $ 1.92 0.76%
bitcoin-cash
Bitcoin Cash (BCH) $ 269.38 0.63%
hyperliquid
Hyperliquid (HYPE) $ 81.99 1.02%
uniswap
Uniswap (UNI) $ 4.42 3.07%
usds
USDS (USDS) $ 0.999652 0.02%
wrapped-eeth
Wrapped eETH (WEETH) $ 2,465.31 3.39%
ethena-usde
Ethena USDe (USDE) $ 0.999843 0.00%
official-trump
Official Trump (TRUMP) $ 2.29 4.80%
pepe
Pepe (PEPE) $ 0.000004 0.24%
near
NEAR Protocol (NEAR) $ 1.88 0.06%
ondo-finance
Ondo (ONDO) $ 0.373415 2.08%
aave
Aave (AAVE) $ 125.88 0.77%
mantra-dao
MANTRA (MANTRA) $ 0.004104 0.69%
aptos
Aptos (APT) $ 0.570338 0.70%
internet-computer
Internet Computer (ICP) $ 2.40 0.12%
monero
Monero (XMR) $ 440.33 0.39%
whitebit
WhiteBIT Coin (WBT) $ 73.07 0.45%
bittensor
Bittensor (TAO) $ 242.90 5.04%
ethereum-classic
Ethereum Classic (ETC) $ 7.86 1.54%
mantle
Mantle (MNT) $ 0.509377 0.89%
dai
Dai (DAI) $ 0.999836 0.01%
crypto-com-chain
Cronos (CRO) $ 0.05941 0.66%
vechain
VeChain (VET) $ 0.006615 15.04%
polygon-ecosystem-token
POL (ex-MATIC) (POL) $ 0.105641 14.22%
okb
OKB (OKB) $ 112.50 1.05%
kaspa
Kaspa (KAS) $ 0.02778 0.12%
algorand
Algorand (ALGO) $ 0.090543 0.59%
gatechain-token
Gate (GT) $ 8.12 2.86%
render-token
Render (RENDER) $ 1.54 1.77%
filecoin
Filecoin (FIL) $ 0.710918 0.88%
arbitrum
Arbitrum (ARB) $ 0.091642 1.64%
fetch-ai
Artificial Superintelligence Alliance (FET) $ 0.166254 1.55%
cosmos
Cosmos Hub (ATOM) $ 1.51 0.70%
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.146186 2.98%
celestia
Celestia (TIA) $ 0.355296 0.83%
optimism
Optimism (OP) $ 0.09757 5.04%
bonk
Bonk (BONK) $ 0.000003 0.01%
blockstack
Stacks (STX) $ 0.264224 5.54%
binance-peg-weth
Binance-Peg WETH (WETH) $ 2,262.26 3.62%
raydium
Raydium (RAY) $ 0.792075 0.72%
theta-token
Theta Network (THETA) $ 0.176716 0.06%
immutable-x
Immutable (IMX) $ 0.131557 3.19%
lombard-staked-btc
Lombard Staked BTC (LBTC) $ 76,491.00 3.15%
jupiter-exchange-solana
Jupiter (JUP) $ 0.224116 4.10%
movement
Movement (MOVE) $ 0.008356 0.17%
binance-staked-sol
Binance Staked SOL (BNSOL) $ 108.24 4.48%
first-digital-usd
First Digital USD (FDUSD) $ 0.998432 0.01%
injective-protocol
Injective (INJ) $ 5.54 0.98%
kelp-dao-restaked-eth
Kelp DAO Restaked ETH (RSETH) $ 2,404.69 3.37%
xdce-crowd-sale
XDC Network (XDC) $ 0.027787 3.11%
fasttoken
Fasttoken (FTN) $ 0.159833 0.00%
worldcoin-wld
Worldcoin (WLD) $ 0.410704 5.83%
kucoin-shares
KuCoin (KCS) $ 7.25 0.32%
lido-dao
Lido DAO (LDO) $ 0.359839 1.51%
susds
sUSDS (SUSDS) $ 1.08 0.16%
the-graph
The Graph (GRT) $ 0.01748 1.17%
rocket-pool-eth
Rocket Pool ETH (RETH) $ 2,631.35 3.29%
sonic-3
Sonic (S) $ 0.03167 15.03%
mantle-staked-ether
Mantle Staked Ether (METH) $ 2,455.82 3.44%
nexo
NEXO (NEXO) $ 0.864393 3.37%
quant-network
Quant (QNT) $ 63.28 0.35%
flare-networks
Flare (FLR) $ 0.006411 2.80%
sei-network
Sei (SEI) $ 0.047115 0.95%
dogwifcoin
dogwifhat (WIF) $ 0.215146 7.17%
solv-btc
Solv Protocol BTC (SOLVBTC) $ 76,461.00 2.70%
virtual-protocol
Virtuals Protocol (VIRTUAL) $ 0.75088 0.99%
the-sandbox
The Sandbox (SAND) $ 0.042117 1.50%
msol
Marinade Staked SOL (MSOL) $ 133.18 5.83%
gala
GALA (GALA) $ 0.0018 1.75%
usual-usd
Usual USD (USD0) $ 0.998947 0.02%
floki
FLOKI (FLOKI) $ 0.000027 1.89%
jasmycoin
JasmyCoin (JASMY) $ 0.0048 3.04%
tezos
Tezos (XTZ) $ 0.227065 0.30%
kaia
Kaia (KAIA) $ 0.032644 0.90%
solv-protocol-solvbtc-bbn
Solv Protocol Staked BTC (XSOLVBTC) $ 76,043.00 2.27%
iota
IOTA (IOTA) $ 0.042681 1.88%
ethereum-name-service
Ethereum Name Service (ENS) $ 5.97 3.87%
spx6900
SPX6900 (SPX) $ 0.62418 17.64%
fartcoin
Fartcoin (FARTCOIN) $ 0.215868 9.27%
pudgy-penguins
Pudgy Penguins (PENGU) $ 0.009477 1.06%
pyth-network
Pyth Network (PYTH) $ 0.048393 4.90%
solana-swap
Solana Swap (SOS) $ 0.000228 4.13%
bittorrent
BitTorrent (BTT) $ 0.000000286334 1.71%
flow
Flow (FLOW) $ 0.029282 0.30%
bitcoin-sv
Bitcoin SV (BSV) $ 17.13 3.92%
neo
NEO (NEO) $ 2.29 5.65%
chain-2
Onyxcoin (XCN) $ 0.003592 2.22%
ronin
Ronin (RON) $ 0.055888 1.81%
jupiter-staked-sol
Jupiter Staked SOL (JUPSOL) $ 115.56 4.52%
curve-dao-token
Curve DAO (CRV) $ 0.315275 1.36%
jito-governance-token
Jito (JTO) $ 0.525261 0.29%
aioz-network
AIOZ Network (AIOZ) $ 0.058801 9.57%
renzo-restaked-eth
Renzo Restaked ETH (EZETH) $ 2,421.84 3.59%
arweave
Arweave (AR) $ 2.20 0.82%
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.026208 2.83%
axie-infinity
Axie Infinity (AXS) $ 0.936807 1.63%
wbnb
Wrapped BNB (WBNB) $ 759.61 1.56%
dexe
DeXe (DEXE) $ 1.89 1.00%
decentraland
Decentraland (MANA) $ 0.074302 1.02%
based-brett
Brett (BRETT) $ 0.00533 0.10%
elrond-erd-2
MultiversX (EGLD) $ 3.54 3.84%
beam-2
Beam (BEAM) $ 0.001469 2.19%
aerodrome-finance
Aerodrome Finance (AERO) $ 0.517521 0.83%
usdd
USDD (USDD) $ 0.999502 0.01%
dydx-chain
dYdX (DYDX) $ 0.11822 1.65%
thorchain
THORChain (RUNE) $ 0.535708 6.44%
morpho
Morpho (MORPHO) $ 2.51 0.43%
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.048331 2.46%
reserve-rights-token
Reserve Rights (RSR) $ 0.001497 4.41%
arbitrum-bridged-weth-arbitrum-one
Arbitrum Bridged WETH (Arbitrum One) (WETH) $ 2,265.06 3.52%
zcash
Zcash (ZEC) $ 798.66 2.50%
tether-gold
Tether Gold (XAUT) $ 4,626.04 0.36%
ether-fi-staked-btc
Ether.fi Staked BTC (EBTC) $ 76,722.00 4.00%
ai16z
ai16z (AI16Z) $ 0.000389 0.97%
ether-fi-staked-eth
ether.fi Staked ETH (EETH) $ 2,317.47 1.05%
apecoin
ApeCoin (APE) $ 0.140538 0.46%
coredaoorg
Core (CORE) $ 0.026061 4.50%
helium
Helium (HNT) $ 0.232533 8.68%
frax
Legacy Frax Dollar (FRAX) $ 0.99069 0.17%
akash-network
Akash Network (AKT) $ 0.550783 1.06%
compound-governance-token
Compound (COMP) $ 19.52 0.60%
meow
MEOW (MEOW) $ 0.000007 5.87%
usdx-money-usdx
Stables Labs USDX (USDX) $ 0.009526 0.00%
ecash
eCash (XEC) $ 0.000007 2.57%
chiliz
Chiliz (CHZ) $ 0.014232 1.05%
wormhole
Wormhole (W) $ 0.009531 1.53%
amp-token
Amp (AMP) $ 0.000443 2.96%
ultima
Ultima (ULTIMA) $ 2,290.19 2.47%
eigenlayer
EigenCloud (prev. EigenLayer) (EIGEN) $ 0.200489 3.96%
pumpbtc
pumpBTC (PUMPBTC) $ 76,077.00 2.54%
deep
DeepBook (DEEP) $ 0.014048 0.79%
resolv-usr
Resolv USR (USR) $ 0.118972 0.94%
pancakeswap-token
PancakeSwap (CAKE) $ 1.72 0.39%
pax-gold
PAX Gold (PAXG) $ 4,632.71 0.42%
gigachad-2
Gigachad (GIGA) $ 0.002776 5.15%
mina-protocol
Mina Protocol (MINA) $ 0.061779 0.12%
gnosis
Gnosis (GNO) $ 121.44 0.09%
pendle
Pendle (PENDLE) $ 1.73 0.28%
bitcoin-avalanche-bridged-btc-b
Avalanche Bridged BTC (Avalanche) (BTC.B) $ 76,260.00 3.16%
beldex
Beldex (BDX) $ 0.080893 1.84%
echelon-prime
Echelon Prime (PRIME) $ 0.244893 4.14%
zksync
ZKsync (ZK) $ 0.008608 2.20%
paypal-usd
PayPal USD (PYUSD) $ 0.999936 0.00%
havven
Synthetix (SNX) $ 0.227094 0.52%
coinbase-wrapped-staked-eth
Coinbase Wrapped Staked ETH (CBETH) $ 2,539.40 3.57%
true-usd
TrueUSD (TUSD) $ 0.998201 0.01%
stakestone-berachain-vault-token
StakeStone Berachain Vault Token (BERASTONE) $ 2,503.04 1.99%
axelar
Axelar (AXL) $ 0.041225 1.16%
tbtc
tBTC (TBTC) $ 70,942.00 7.49%
apenft
AINFT (NFT) $ 0.000000257058 6.35%
snek
Snek (SNEK) $ 0.000413 2.16%
mog-coin
Mog Coin (MOG) $ 0.00000011932 1.54%
telcoin
Telcoin (TEL) $ 0.001837 1.71%
toshi
Toshi (TOSHI) $ 0.000131 1.04%
dydx
dYdX (ETHDYDX) $ 0.117994 1.41%
kava
Kava (KAVA) $ 0.045494 0.21%
polygon-pos-bridged-weth-polygon-pos
Polygon PoS Bridged WETH (Polygon POS) (WETH) $ 2,261.63 3.58%
newton-project
AB (AB) $ 0.000977 0.24%
notcoin
Notcoin (NOT) $ 0.000426 3.46%
chex-token
Chintai (CHEX) $ 0.00986 1.36%
bridged-usdc-polygon-pos-bridge
Polygon Bridged USDC (Polygon PoS) (USDC.E) $ 0.99972 0.00%
vethor-token
VeThor (VTHO) $ 0.000402 7.41%
frax-ether
Frax Ether (FRXETH) $ 2,262.16 2.20%
1inch
1INCH (1INCH) $ 0.089702 0.55%
trust-wallet-token
Trust Wallet (TWT) $ 0.452206 2.73%
quantixai
Quantix Finance (QFI) $ 24.99 25.53%
grass
Grass (GRASS) $ 0.368858 11.32%
stader-ethx
Stader ETHx (ETHX) $ 2,455.55 2.19%
superfarm
SuperVerse (SUPER) $ 0.111341 3.00%
terra-luna
Terra Luna Classic (LUNC) $ 0.000054 0.87%
sweth
Swell Ethereum (SWETH) $ 2,521.55 3.25%
safe
Safe (SAFE) $ 0.092948 3.23%
livepeer
Livepeer (LPT) $ 1.41 0.47%
hashnote-usyc
Circle USYC (USYC) $ 1.14 0.01%
usdb
USDB (USDB) $ 1.00 0.35%
creditcoin-2
Creditcoin (CTC) $ 0.088651 1.46%
theta-fuel
Theta Fuel (TFUEL) $ 0.009011 1.56%
oasis-network
Oasis (ROSE) $ 0.006066 2.47%
super-oeth
Super OETH (SUPEROETH) $ 2,263.65 2.59%
aixbt
aixbt (AIXBT) $ 0.020949 0.07%
kusama
Kusama (KSM) $ 3.58 2.63%
bio-protocol
Bio Protocol (BIO) $ 0.028463 2.36%
layerzero
LayerZero (ZRO) $ 1.15 2.00%
blur
Blur (BLUR) $ 0.016126 1.82%
dash
Dash (DASH) $ 38.89 2.10%
cat-in-a-dogs-world
cat in a dogs world (MEW) $ 0.000424 1.25%
ordinals
ORDI (ORDI) $ 4.27 4.15%
solayer-staked-sol
Solayer Staked SOL (SSOL) $ 112.14 4.30%
io
io.net (IO) $ 0.137195 0.95%
ondo-us-dollar-yield
Ondo US Dollar Yield (USDY) $ 1.14 0.11%
freysa-ai
Freysa AI (FAI) $ 0.002924 2.89%
arkham
Arkham (ARKM) $ 0.11409 3.36%
turbo
Turbo (TURBO) $ 0.001005 1.44%
popcat
Popcat (POPCAT) $ 0.057769 1.48%
binance-peg-busd
Binance-Peg BUSD (BUSD) $ 1.00 0.05%
olympus
Olympus (OHM) $ 18.01 0.80%
dog-go-to-the-moon-rune
Dog (Bitcoin) (DOG) $ 0.001309 1.69%
nervos-network
Nervos Network (CKB) $ 0.001008 4.34%
astar
Astar (ASTR) $ 0.005568 1.11%
just
JUST (JST) $ 0.100572 0.83%
compound-wrapped-btc
cWBTC (CWBTC) $ 1,534.90 2.99%
mx-token
MX (MX) $ 1.75 3.55%
zilliqa
Zilliqa (ZIL) $ 0.002743 0.65%
verus-coin
Verus (VRSC) $ 0.237864 12.82%
melania-meme
Melania Meme (MELANIA) $ 0.113351 8.30%
holotoken
holo (HOLO) $ 0.000013 3.12%
ai-rig-complex
AI Rig Complex (ARC) $ 0.070473 2.78%
origintrail
OriginTrail (TRAC) $ 0.335095 5.31%
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.099521 2.78%
baby-doge-coin
Baby Doge Coin (BABYDOGE) $ 0.00000000037662 2.23%
ether-fi
Ether.fi (ETHFI) $ 0.571119 0.27%
safepal
SafePal (SFP) $ 0.263558 0.94%
staked-frax-ether
Staked Frax Ether (SFRXETH) $ 2,589.68 3.62%
aethir
Aethir (ATH) $ 0.005008 1.07%
golem
Golem (GLM) $ 0.112673 5.07%
basic-attention-token
Basic Attention (BAT) $ 0.067689 0.64%
swissborg
SwissBorg (BORG) $ 0.178291 1.82%
skale
SKALE (SKL) $ 0.003897 1.04%
wemix-token
WEMIX (WEMIX) $ 0.199056 1.09%
mocaverse
Moca Network (MOCA) $ 0.008462 5.29%
xyo-network
XYO Network (XYO) $ 0.003693 14.81%
gas
Gas (GAS) $ 1.46 16.56%
celo
Celo (CELO) $ 0.07712 0.95%
benqi-liquid-staked-avax
BENQI Liquid Staked AVAX (SAVAX) $ 12.58 0.25%
qtum
Qtum (QTUM) $ 0.883677 4.43%
spell-token
Spell (SPELL) $ 0.000086 0.87%
would
would (WOULD) $ 0.058646 5.30%
vine
Vine (VINE) $ 0.007488 0.43%
zencash
Horizen (ZEN) $ 5.20 0.36%
woo-network
WOO (WOO) $ 0.01158 1.86%
iotex
IoTeX (IOTX) $ 0.002969 5.34%
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.000647 0.81%
bybit-staked-sol
Bybit Staked SOL (BBSOL) $ 112.08 4.42%
plume
Plume (PLUME) $ 0.014272 6.18%
osmosis
Osmosis (OSMO) $ 0.036403 5.11%
vana
Vana (VANA) $ 0.980902 1.00%
griffain
GRIFFAIN (GRIFFAIN) $ 0.01205 2.22%
zetachain
ZetaChain (ZETA) $ 0.032504 0.22%
uxlink
UXLINK (UXLINK) $ 0.000656 9.20%
ethereum-pow-iou
EthereumPoW (ETHW) $ 0.277943 2.15%
ankr
Ankr Network (ANKR) $ 0.004079 0.39%
akuma-inu
Akuma Inu (AKUMA) $ 0.000000093778 10.36%
tribe-2
Tribe (TRIBE) $ 0.387363 0.93%
ravencoin
Ravencoin (RVN) $ 0.00328 1.61%
enjincoin
Enjin Coin (ENJ) $ 0.026516 1.77%
peanut-the-squirrel
Peanut the Squirrel (PNUT) $ 0.051792 0.57%
elixir-deusd
Elixir deUSD (DEUSD) $ 0.000977 0.00%
memecoin-2
Memecoin (MEME) $ 0.000551 2.71%
aelf
aelf (ELF) $ 0.062916 6.84%
anime
Animecoin (ANIME) $ 0.002682 1.94%
constellation-labs
Constellation (DAG) $ 0.007087 5.26%
polymesh
Polymesh (POLYX) $ 0.03507 3.48%
convex-finance
Convex Finance (CVX) $ 2.42 19.05%
drift-protocol
Drift Protocol (DRIFT) $ 0.012302 3.07%
sats-ordinals
SATS (Ordinals) (SATS) $ 0.000000011927 3.02%
venice-token
Venice Token (VVV) $ 17.60 0.78%
qubic-network
Qubic (QUBIC) $ 0.0000004179 0.68%
coinex-token
CoinEx (CET) $ 0.012181 0.86%
peaq-2
peaq (PEAQ) $ 0.024106 14.05%
threshold-network-token
Threshold Network (T) $ 0.003704 1.30%
stepn
GMT (GMT) $ 0.007228 0.13%
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