Ciclo di vita di una transazione
Dalla firma al mining
Ciclo di vita di una transazione è una lezione Web3 & DApp Development Fundamentals gratuita su CoddyKit. Questa è la lezione 2 di 4. Puoi leggere la lezione completa qui gratuitamente — poi esercitati direttamente nel browser con un editor di codice integrato e un tutor IA disponibile 24/7. Fa parte del percorso di apprendimento Web3 & DApp Development Fundamentals, e i tuoi progressi si sincronizzano tra il web e l'app CoddyKit. Il corso Web3 & DApp Development Fundamentals include 4 lezioni in totale.
Parti di questa lezione non sono ancora state tradotte e vengono mostrate in inglese.
From Click to Confirmation
When you send a transaction, a lot happens behind the scenes before it becomes permanent.
This lesson walks through the full transaction lifecycle, from signing to inclusion in a block.
Step 1: Building the Transaction
Your wallet assembles a transaction object containing the recipient, value, data, gas settings, and a nonce.
tx = {
to: 0xRecipient...,
value: 1000000000000000000, // 1 ETH
nonce: 7,
gasLimit: 21000,
maxFeePerGas: 30 gwei
}Step 2: Signing
The wallet signs the transaction with your private key, producing a digital signature.
The signature proves you authorized it without ever revealing your private key. Anyone can verify it using your public address.
Step 3: Broadcasting
The signed transaction is broadcast to a node, which validates it and gossips it to peers across the network.
Within seconds, nodes everywhere know about your pending transaction.
Step 4: The Mempool
Pending transactions wait in the mempool (memory pool) — a holding area for transactions not yet included in a block.
Validators pick from the mempool when building the next block.
mempool (pending):
tx A (tip: 5 gwei)
tx B (tip: 2 gwei)
tx C (tip: 8 gwei) <- picked firstStep 5: Selection by a Validator
A validator building a block selects transactions, usually favoring higher fee tips for more revenue.
Paying a higher tip can speed up inclusion, especially when the network is congested.
Step 6: Execution
The validator executes the transaction on the EVM, updating account balances and contract state, consuming gas as it goes.
If it runs out of gas or hits an error, it reverts — but the gas spent is still consumed.
Step 7: Inclusion in a Block
The executed transaction is packed into a new block along with others. The block is proposed and attested to by validators.
At this point your transaction has one confirmation.
Step 8: Confirmations and Finality
As more blocks build on top, your transaction gains confirmations. On Ethereum PoS, it eventually becomes finalized and irreversible.
Now the transfer or contract call is permanently settled.
Receipts
After execution, the network produces a transaction receipt recording status (success or revert), gas used, and any emitted events (logs).
Apps read receipts to confirm what actually happened on-chain.
receipt = {
status: 1, // 1 = success, 0 = revert
gasUsed: 21000,
blockNumber: 18250431,
logs: [ ... ]
}Putting It Together
A transaction is built, signed, broadcast, queued in the mempool, selected and executed by a validator, included in a block, and finally confirmed and finalized.
A receipt records the outcome.
Quick Check
Test your understanding of the lifecycle.
Recap: Transaction Lifecycle
You learned the stages:
- Build and sign with the private key
- Broadcast to the network
- Wait in the mempool
- Selected, executed, and included in a block
- Confirmed and finalized, with a receipt
Next: gas limits and fees.
Impara Web3 & DApp Development Fundamentals con un tutor IA — gratis
Scrivi ed esegui vero codice nel tuo browser, ricevi aiuto istantaneo da un tutor IA disponibile 24/7, e riprendi da dove hai lasciato sul web o nell'app.
- Corsi
- 29
- Lezioni
- 105
Domande Frequenti
La lezione «Ciclo di vita di una transazione» è gratuita?
Sì — il testo completo di «Ciclo di vita di una transazione» è gratuito qui sul web. Per esercitarvi in modo interattivo (un editor di codice integrato e un tutor IA 24/7) e sbloccare il resto del corso Web3 & DApp Development Fundamentals, passa a CoddyKit PRO. Il corso Web3 & DApp Development Fundamentals include 4 lezioni in totale.
Cosa imparerò in «Ciclo di vita di una transazione»?
Dalla firma al mining Eserciti Web3 & DApp Development Fundamentals con codice pratico che esegui direttamente nel browser, e un tutor IA 24/7 risponde alle tue domande mentre lavori sulla lezione.
Ho bisogno di esperienza per iniziare Web3 & DApp Development Fundamentals?
Non è richiesta alcuna esperienza precedente. Web3 & DApp Development Fundamentals su CoddyKit è strutturato per principianti e studenti avanzati, quindi puoi iniziare da qui o dall'inizio e procedere al tuo ritmo. Questa è la lezione 2 di 4.
Quanto tempo richiede la lezione «Ciclo di vita di una transazione»?
La maggior parte delle lezioni CoddyKit richiede circa 5–10 minuti. Ogni lezione è breve e interattiva, quindi fai progressi costanti e riprendi esattamente da dove hai lasciato su web e app.
Posso scrivere ed eseguire codice in questa lezione Web3 & DApp Development Fundamentals?
Sì. Ogni lezione Web3 & DApp Development Fundamentals include un editor di codice integrato, quindi scrivi ed esegui codice reale direttamente nel tuo browser e ricevi feedback istantaneo dall'IA — nessuna configurazione locale necessaria.
Tutte le lezioni di questo corso
- Che cos'è il gas
- Ciclo di vita di una transazione
- Limiti e commissioni del gas
- Nonce e ordinamento