Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
d0cd committed Jul 11, 2024
1 parent f23e8f3 commit 7ffcf2a
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions documentation/concepts/02_records.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ There are two main state models used in blockchains - UTXO (unspent transaction
Aleo uses a variation of the UTXO model - the record model.

<p align="center" width="100%">
<img src="images/account_vs_utxo.png" alt="Account vs UTXO"></img>
<img src={require("./images/account_vs_utxo.png").default} alt="Account vs UTXO"></img>
</p>

<p align="center" width="100%">
Expand All @@ -87,7 +87,7 @@ In the account model as used in Ethereum, the application state can be found by
As such, anyone would be able to view the activities of any account, simply with the knowledge of the address.

<p align="center" width="100%">
<img src="images/ethereum_storage.png" alt="Ethereum Storage Diagram"></img>
<img src={require("./images/ethereum_storage.png").default} alt="Ethereum Storage Diagram"></img>
</p>

<p align="center" width="100%">
Expand All @@ -97,7 +97,7 @@ Source: <a href="https://ethereum.org/en/develope.rs/docs/accounts/"> ethereum.o


<p align="center" width="100%">
<img src="images/ethereum_world_state.png" alt="Ethereum World State Diagram"></img>
<img src={require("./images/ethereum_world_state.png").default} alt="Ethereum World State Diagram"></img>
</p>

<p align="center" width="100%">
Expand All @@ -112,7 +112,7 @@ Source: <a href="https://www.lucassaldanha.com/ethereum-yellow-paper-walkthrough
In the record model, the application state, along with its owner are encrypted and stored on the blockchain.

<p align="center" width="300">
<img src="images/record.png" alt="Aleo Records Diagram"></img>
<img src={require("./images/record.png").default} alt="Aleo Records Diagram"></img>
</p>

<p align="center" width="100%">
Expand All @@ -123,7 +123,7 @@ Source: <a href="https://eprint.iacr.org/2018/962.pdf"> Zexe: Enabling Decentral


<p align="center" width="100%">
<img src="images/aleo_ledger.png" alt="Aleo World State Diagram"></img>
<img src={require("./images/aleo_ledger.png").default} alt="Aleo World State Diagram"></img>
</p>


Expand Down

0 comments on commit 7ffcf2a

Please sign in to comment.