Skip to content

Commit 4d54720

Browse files
authored
Merge pull request #92 from dusk-network/L1_renaming_check
fixed remaining references to L1 and L2
2 parents bf82994 + 2c4a5ac commit 4d54720

File tree

3 files changed

+6
-8
lines changed

3 files changed

+6
-8
lines changed

src/content/docs/learn/deep-dive/dusk-evm.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -90,8 +90,8 @@ DuskEVM currently inherits a 7-day challenge period from the OP Stack. This is a
9090
| Opcode | Solidity Equivalent | Behavior |
9191
|-------------|---------------------|--------------------------------------------------------------------------------------------------------------------------------------------------|
9292
| `COINBASE` | `block.coinbase` | Returns the address of the current Sequencer's fee wallet. Effectively the same as Ethereum, but typically does not change from block to block. |
93-
| `PREVRANDAO`| `block.prevrandao` | Returns the PREVRANDAO (the most recent RANDAO) value of L1 at the current L1 origin block. |
94-
| `ORIGIN` | `tx.origin` | If the tx is an **L1L2** tx from an L1 smart contract, `tx.origin` is set to the **aliased address** of the originator. Else b
93+
| `PREVRANDAO`| `block.prevrandao` | Returns the PREVRANDAO (the most recent RANDAO) value of DuskDS at the current DuskDS origin block. |
94+
| `ORIGIN` | `tx.origin` | If the tx is a **DuskDSDuskEVM** tx from a DuskDS smart contract, `tx.origin` is set to the **aliased address** of the originator. Else b
9595

9696

9797
:::note[Note]
@@ -104,6 +104,6 @@ DuskEVM does not have a public mempool, as it is currently only visible to the S
104104
The process for a rollup transaction has two requirements:
105105
The transaction needs to be written to DuskDS, tipically by the <a href="https://github.com/ethereum-optimism/optimism/tree/v1.1.4/op-batcher" target="_blank">op-batcher</a>.
106106

107-
The transaction needs to be executed to modify the state (by <a href="https://github.com/ethereum-optimism/op-geth" target="_blank">op-geth</a>). Afterwards, <a href="https://github.com/ethereum-optimism/optimism/tree/develop/op-proposer" target="_blank">op-proposer</a> writes a commitment to the post-transaction state to L1. Note that op-proposer does not need to write a commitment after each transaction to L1; it is OK to commit to the state after a block of transactions.
107+
The transaction needs to be executed to modify the state (by <a href="https://github.com/ethereum-optimism/op-geth" target="_blank">op-geth</a>). Afterwards, <a href="https://github.com/ethereum-optimism/optimism/tree/develop/op-proposer" target="_blank">op-proposer</a> writes a commitment to the post-transaction state to [DuskDS](/learn/core-components#duskds) . Note that op-proposer does not need to write a commitment after each transaction to DuskDS; it is OK to commit to the state after a block of transactions.
108108

109109
More information about the batching process can be seen in the <a href="https://specs.optimism.io/protocol/derivation.html?utm_source=op-docs&utm_medium=docs#batch-submission" target="_blank">OP stack specs</a>.

src/content/docs/learn/glossary.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -44,10 +44,6 @@ Hyperstaking is a feature that allows smart contracts to manage stakes with cust
4444

4545
[Kadcast](/learn/core-components#network-layer-kadcast) is a structured information propagation protocol used by Dusk, characterized by a direct correlation between network performance, latency, and the number of nodes.
4646

47-
#### Lightspeed
48-
49-
Lightspeed is the Dusk L2 solution that offers full EVM equivalence. Lightspeed allows Dusk to scale even further and maintain full interoperability with EVM-based blockchains.
50-
5147
#### LUX
5248

5349
The smallest denomination of DUSK. 10^9 LUX = 1 DUSK, 1 DUSK = 1,000,000,000 LUX.

src/content/docs/learn/overview.mdx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,10 @@ This section provides a brief overview of Dusk’s [core components](/learn/core
4646
| **Phoenix & Moonlight** | Dusk enables both shielded and public transactions through its dual-model approach, offering unmatched flexibility to achieve both privacy and compliance. | ![Phoenix & Moonlight Image](../../../assets/get_started/Phoenix_and_Moonlight.png) |
4747
| **Citadel** | Self-sovereign identity solution for privacy-preserving KYC/AML compliance. It is a protocol designed for authenticating with third party services while protecting sensitive data | ![Citadel Image](../../../assets/get_started/Citadel.png) |
4848

49+
50+
:::tip[Tip]
4951
Find more details about Dusk’s core components [here](/learn/core-components).
50-
---
52+
:::
5153

5254

5355

0 commit comments

Comments
 (0)