Arbitrum One
هل أنت مستعد لاستدعاء هذا في الإنتاج؟
الخطة المجانية تغطي المشاريع الشخصية. الدفع حسب الاستخدام يتوسع دون بطاقة.
Arbitrum One
الخطة المجانية تغطي المشاريع الشخصية. الدفع حسب الاستخدام يتوسع دون بطاقة.
On Arbitrum One the sequencer hands back a soft confirmation in well under a second, which feels instant but is not the same as irreversible settlement — economic finality only arrives once the transaction's batch is posted to Ethereum L1 and clears the rollup's challenge window. Confirmations are how you measure the distance between "the sequencer accepted it" and "this can no longer be reversed," and getting that distinction right is what keeps an exchange deposit, a bridge withdrawal, or a high-value swap on GMX or Uniswap from acting on state that could still change. This guide shows you how to count confirmations against https://arbitrum.therpc.io/YOUR_API_KEY, pick value-appropriate thresholds, and wait for finality safely before releasing goods or crediting funds.
currentBlockNumber - transactionBlockNumber; zero means the transaction is included but no block sits above it yet.finalized tag, which tracks L1-backed state. Thresholds scale with value because the cost of acting on a reversed transaction scales with value.finalized tag for anything where a reversal would be costly to unwind. Codify the tiers rather than hard-coding one magic number.eth_getTransactionReceipt returns null, treat it as no longer included, roll back any dependent state you wrote, and resubmit only after checking the nonce has not already been consumed.currentBlock - txBlockNumber, surface live confirmation depth to the user, and trigger your business action only when the configured threshold (or the finalized tag) is reached, with a timeout and alert if a transaction stalls.