Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 749 Bytes

dip-001.md

File metadata and controls

35 lines (26 loc) · 749 Bytes

DIP-001: The world state of layer 2

Concepts

flowchart
    ws(World State) --> as(Account State)
    ws --> ds(Database State)
    ws --> rs(Rollup State)
    as --> Credits
    as --> Bills
Loading
  • Account State which include the credits and bills
  • Database State which include the data state of database
  • Rollup State which include the job state of rollup and the mapping between block and file on L1 storage network

State machine

stateDiagram-v2 
    [*] --> Mutation
    Mutation --> Database_State
    Mutation --> Account_State
    Database_State --> Root
    Account_State --> Root
    Root --> [*]
    [*] --> Every_86400_Block
    Every_86400_Block --> Rollup_State
    Rollup_State --> [*]
Loading