mirror of
https://github.com/vacp2p/linea-monorepo.git
synced 2026-01-09 04:08:01 -05:00
* placeholder docs * adding more documentation * documentation work in progress * add main linking or index documents * add a link images * add messaging flows * linking operator documentation and folder cleanup * use correct pathing on tokenbridge.md * link workflow documents * add function signatures * remove welcome to * cross reference blob submission and finalization * remove confusing text * use better definition of shnarf * fix broken link * add charter, diagram and address book * docs(LSC): Rename security-council-charter-v1.3.md to security-council-charter.md Signed-off-by: Julien Marchand <julien-marchand@users.noreply.github.com> * Update contracts/docs/mainnet-address-book.csv Co-authored-by: Julien Marchand <julien-marchand@users.noreply.github.com> Signed-off-by: The Dark Jester <thedarkjester@users.noreply.github.com> --------- Signed-off-by: Julien Marchand <julien-marchand@users.noreply.github.com> Signed-off-by: The Dark Jester <thedarkjester@users.noreply.github.com> Co-authored-by: Julien Marchand <julien-marchand@users.noreply.github.com>
1.6 KiB
1.6 KiB
🔁 Interaction Flow: Canonical Token Bridging (L1 → L2)
This document describes how tokens are bridged canonically from L1 to L2, step-by-step.
🔄 Step-by-Step Flow
- L1 User calls
bridgeToken()on theL1 Token Bridge. - The
L1 Tokenis either:- Transferred using
safeTransferFrom(), or - Burned
- Transferred using
L1 Token Bridgesends a message usingsendMessage()toLineaRollup / L1MessageService.- The contract:
- Verifies non-empty data
- Gets the next message number
- Computes the message hash with all the message fields
- Computes the rolling hash using the previous rolling hash and the new message hash
- Stores the rolling hash and emits a message event
- Coordinator captures the event and message hash.
- Coordinator:
- Anchors the message hash on L2
- L2MessageService receives the message on L2.
- Computes and verifies the rolling hash sync
- Stores each hash for claiming
- Postman service or user calls
claimMessage()on the L2MessageService. - L2MessageService calls the L2 Token Bridge performing
completeBridging(). - Depending on token status, L2 Token is:
- Minted or,
- Transferred to the L2 User
- As part of regular chain operations:
- L2 Blocks and Transactions are produced
- Prover / Trace Generator Compressor uses L2 data, generates traces and all proofs
- Proofs are submitted to the Coordinator via
SubmitBlocks/finalizeBlocks
- LineaRollup / L1MessageService verifies rolling hash sync as part of a feedback loop.