Skip to content

Commit 0974241

Browse files
pushing updates for availability externally
1 parent 18c3775 commit 0974241

File tree

3 files changed

+29
-30
lines changed

3 files changed

+29
-30
lines changed

docs/cdk/get-started/deploy-validium/contracts/prerequisites.md

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

33
- A Linux-based OS (e.g., Ubuntu Server 22.04 LTS).
4-
- At least 16GB RAM with a 4-core CPU.
4+
- At least 8GB RAM with a 2-core CPU.
55
- An AMD64 architecture system.
66

77
## Software

docs/cdk/get-started/deploy-validium/index.md

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,20 @@ This quick start takes you through the process of deploying a full CDK validium,
33
The process requires two separate flows with different software requirements. For this reason, these instructions have two distinct sections.
44

55
1. [Deploying the contracts](contracts/prerequisites.md).
6-
2. [Deploying the node and services]().
6+
2. [Deploying the node and services](node/prerequisites.md).
77

88
!!! warning
99
- The instructions are subject to frequent updates as the software remains at an early development stage.
10-
- Report any content issues on our docs repo: https://github.com/0xPolygon/polygon-docs
10+
- Report any content issues on our docs repo: https://github.com/0xPolygon/polygon-docs
11+
12+
## Git repos
13+
14+
These are code bases for setting everything up in this order.
15+
16+
| Repo | Version |
17+
| --- | --- |
18+
| https://github.com/0xPolygon/cdk-validium-contracts/releases/tag/v0.0.2 | v0.0.2 |
19+
| https://github.com/0xPolygon/cdk-validium-node/releases/tag/v0.0.3 | v0.0.3 |
20+
| https://github.com/0xPolygonHermez/zkevm-prover | v3.0.2 |
21+
| https://github.com/0xPolygon/cdk-data-availability.git | v0.0.3 |
22+
| https://github.com/0xPolygonHermez/zkevm-bridge-service | v0.3.1 |

docs/cdk/get-started/deploy-validium/node/prerequisites.md

Lines changed: 14 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,13 @@
1-
| Repo | Version |
2-
| --- | --- |
3-
| https://github.com/0xPolygon/cdk-validium-contracts/releases/tag/v0.0.2 | v0.0.2 |
4-
| https://github.com/0xPolygon/cdk-validium-node/releases/tag/v0.0.3 | v0.0.3 |
5-
| https://github.com/0xPolygonHermez/zkevm-prover | v3.0.2 |
6-
| https://github.com/0xPolygon/cdk-data-availability.git | v0.0.3 |
7-
| https://github.com/0xPolygonHermez/zkevm-bridge-service | v0.3.1 |
1+
!!! important
2+
- You have already followed the [deploy contracts section](../contracts/prerequisites.md).
3+
- Make sure you have at least `~0.3 Sepolia ETH` ready for deploying more contracts and various contract calls.
84

9-
The listed version may not be the most recent, but this will give a general idea of how the deployment process works.
5+
## Software requirements
106

11-
# Prerequisites
7+
!!! important
8+
The specified software versions are required.
129

13-
### Minimum Requirements:
14-
15-
| Minimum Disk Size | vCPUs | Memory (GB) | CPU Type | Architecture | OS |
16-
| --- | --- | --- | --- | --- | --- |
17-
| 32GB | 2 | 8 | Intel or AMD | x86/64 | Ubuntu 22.04 |
18-
19-
Your operating system should be Linux-based (preferably Ubuntu 22.04), and it must have an AMD or Intel chip.
20-
21-
Lastly, make sure you have at least `~0.3 Sepolia ETH` ready for deploying contracts and various contract calls.
22-
23-
## Dependency Checking
24-
25-
| Dependency | Version | Installation links |
10+
| Software | Version | Installation link |
2611
| --- | --- | --- |
2712
| git | 2.18.0 | https://git-scm.com/book/en/v2/Getting-Started-Installing-Git |
2813
| node | 16.0.0 | https://nodejs.org/en/download |
@@ -38,9 +23,10 @@ Lastly, make sure you have at least `~0.3 Sepolia ETH` ready for deploying contr
3823
| pip3 | 20.0.0 | https://pip.pypa.io/en/stable/installation/ |
3924
| [For Testing] python3 | 3.8.0 | https://www.python.org/downloads/ |
4025
| [For Testing] polycli | 0.1.39 | https://github.com/maticnetwork/polygon-cli/tree/main |
41-
- You can run the following script to validate that dependency requirements are met:
42-
43-
```bash
26+
27+
1. Create a `version-check.sh` file and copy and paste the script below.
28+
29+
```bash
4430
#!/bin/bash
4531

4632
declare -A commands
@@ -100,10 +86,11 @@ Lastly, make sure you have at least `~0.3 Sepolia ETH` ready for deploying contr
10086
done
10187
```
10288

103-
You can create a `version-check.sh` file, then copy and paste the script into that file. Then run the following to execute the script:
89+
2. Run the script:
10490

10591
```bash
10692
chmod +x version-check.sh
10793
./version-check.sh
10894
```
109-
95+
96+

0 commit comments

Comments
 (0)