Skip to content

Commit a251b4a

Browse files
committed
update deleted unused docs
1 parent b8e75a6 commit a251b4a

File tree

11 files changed

+9
-31
lines changed

11 files changed

+9
-31
lines changed

docs/zkEVM/architecture/architecture.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ Before getting into a transaction flow in L2, users need some funds to perform a
159159
- Aggregator will take pending transactions to be verified and build a Proof in order to achieve finality on L1
160160
- Once the Proof is validated, user's transactions will attain L1 finality (important for withdrawals). This is called the **consolidated state**.
161161

162-
The above process is a summarized version of how transactions are processed in zkEVM. We recommend you to take a look at the complete [transaction life cycle](../protocol/l2-transaction-cycle-intro.md) document.
162+
The above process is a summarized version of how transactions are processed in zkEVM. We recommend you to take a look at the complete [transaction life cycle](../protocol/submit-transaction.md) document.
163163

164164
## Design characteristics
165165

docs/zkEVM/bridge-to-zkevm.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,11 @@
55

66
Users can deposit assets from Ethereum and transact off-chain on Polygon zkEVM. For moving assets across chains (L1 ↔ zkEVM), you will need to use the zkEVM Bridge. The bridge interface is available for both Mainnet Beta and Testnet in the [Polygon Wallet Suite](https://wallet.polygon.technology/zkEVM/bridge).
77

8-
<!-- Also, bridging can be done with the help of [MaticJS](/docs/develop/ethereum-polygon/matic-js/zkevm/initialize-zkevm/) SDK. -->
98

109
The next video is a guide on how to bridge tokens from L1 to the zkEVM Testnet. The same video applies to the zkEVM Mainnet.
1110

1211
<video loop width="100%" height="100%" controls="true" >
13-
<source type="video/mp4" src="../img/zkvm/zkevmwallettestnet.mp4"></source>
12+
<source type="video/mp4" src="../../img/zkvm/zkevmwallettestnet.mp4"></source>
1413
<p>Your browser does not support the video element.</p>
1514
</video>
1615

docs/zkEVM/connect-wallet.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Navigate to `Add network` in your wallet, and enter the respective network detai
1616
Here is a video tutorial on **how to add Polygon zkEVM Testnet to MetaMask and deploy smart contracts**:
1717

1818
<video loop width="100%" height="100%" controls="true" >
19-
<source type="video/mp4" src="../img/zkvm/tutorial.mp4"></source>
19+
<source type="video/mp4" src="../../img/zkvm/tutorial.mp4"></source>
2020
<p>Your browser does not support the video element.</p>
2121
</video>
2222

docs/zkEVM/protocol/batch-aggregation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
!!!info
33

4-
This document is a continuation in the series of articles explaining the [<ins>Transaction Life Cycle</ins>](l2-transaction-cycle-intro.md) inside Polygon zkEVM.
4+
This document is a continuation in the series of articles explaining the [<ins>Transaction Life Cycle</ins>](submit-transaction.md) inside Polygon zkEVM.
55

66
The **Trusted Aggregator should eventually aggregate the sequences of batches previously committed by the Trusted Sequencer in order to achieve the L2 State final stage**, which is the Consolidated State.
77

docs/zkEVM/protocol/flow-of-assets.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ Consider now the case where a user commits to bridging some assets from L2 to L1
4141

4242
For example, the interaction between the Consensus Contract and the Sequencer is omitted in the figure.
4343

44-
For a more wholistic view of the interaction between the Consensus Contract and the Sequencer, the reader is referred to earlier subsections of this documentation, specifically on the [<ins>Consensus Contract</ins>](/zkevm/architecture.md#consensus-contract).
44+
For a more wholistic view of the interaction between the Consensus Contract and the Sequencer, the reader is referred to earlier subsections of this documentation, specifically on the [<ins>Consensus Contract</ins>](../architecture/architecture.md).
4545

4646

4747
![A end-to-end flow of assets between L1 and L2](../../img/zkvm/06pzb-complete-asset-flow-l1-l2.png)
File renamed without changes.

docs/zkEVM/protocol/submit-trasaction.md

Lines changed: 0 additions & 18 deletions
This file was deleted.

docs/zkEVM/protocol/transaction-batching.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11

22
!!!info
3-
This document is a continuation in the series of articles explaining the [<ins>Transaction Life Cycle</ins>](l2-transaction-cycle-intro.md) inside Polygon zkEVM.
3+
This document is a continuation in the series of articles explaining the [<ins>Transaction Life Cycle</ins>](submit-transaction.md) inside Polygon zkEVM.
44

55

66
The **Trusted Sequencer** must batch the transactions using the following `BatchData` struct specified in the `PolygonZkEVM.sol` contract:

docs/zkEVM/protocol/transaction-execution.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11

22
!!!info
3-
This document is a continuation in the series of articles explaining the [<ins>Transaction Life Cycle</ins>](l2-transaction-cycle-intro.md) inside Polygon zkEVM.
3+
This document is a continuation in the series of articles explaining the [<ins>Transaction Life Cycle</ins>](submit-transaction.md) inside Polygon zkEVM.
44

55
The **Trusted Sequencer reads transactions from the pool** and decides whether to **discard** them or **order and execute** them. Transactions that have been executed are added to a transaction batch, and the Sequencer's local L2 State is updated.
66

docs/zkEVM/specifications/evm-differences.md

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,9 @@ This document provides a comprehensive list of differences between the Ethereum
55

66
Note that the following differences have no impact on the developer experience with the zkEVM as compared to the EVM. Gas optimization techniques, interacting with libraries like Web3.js and Ethers.js, and deploying contracts works seamlessly on the zkEVM without any overhead.
77

8-
To start deploying your own smart contracts on the zKEVM, check out the [<ins>deployment guide</ins>](/zkevm/develop.md).
9-
10-
118
## Opcodes
129

13-
This section lists out the changes we have done with Opcodes in zKEVM as compared to the EVM.
10+
This section lists the changes we have done with Opcodes in zKEVM as compared to the EVM.
1411

1512
- **SELFDESTRUCT** &rarr; removed and replaced by **SENDALL**.
1613

0 commit comments

Comments
 (0)