You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Run the `tool_check.sh` script to confirm you have all the prerequisite software.
44
44
45
-
You may need to make the script executable: `chmod +x scripts/tool_check.sh`
45
+
!!! tip
46
+
You may need to make the script executable: `chmod +x scripts/tool_check.sh`
46
47
47
48
```sh
48
49
./scripts/tool_check.sh
@@ -64,14 +65,11 @@ You might as well need the following tools to interact with the environment...
64
65
🎉 You are ready to go!
65
66
```
66
67
67
-
### Customize your chain
68
-
69
-
To begin understanding the codebase, there are two key files to inspect:
68
+
### Understanding the deployment steps
70
69
71
-
1.[`main.star`](https://github.com/0xPolygon/kurtosis-cdk/blob/main/main.star): The script that defines what steps to take to set up the chain on your machine.
72
-
2.[`params.yml`](https://github.com/0xPolygon/kurtosis-cdk/blob/main/params.yml): The main configuration file that defines the parameters of the chain.
70
+
There are two key files to look at which help you understand what's happening during a deployment.
The `main.star` file defines the step-by-step instructions of the deployment process. It is the main "hub" of the chain setup process; orchestrating the setup of all the components in sequential order by pulling in necessary logic from other files.
77
75
@@ -92,7 +90,7 @@ It defines the following steps for the deployment process:
92
90
93
91
You can customize (or skip) the logic for each of these steps by modifying the logic in the respective files.
The `params.yml` file defines the parameters of the chain and the deployment process. It includes configurations for simple parameters such as the chain ID and more complex configurations such as the gas token smart contract address.
0 commit comments