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
Copy file name to clipboardExpand all lines: content/guides/spin-up-a-devnet.md
+60-14
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,5 @@
1
1
---
2
-
title: "Spin up a devnet for Entropy"
2
+
title: "Spin up a devnet"
3
3
lead: "A developer network (devnet) is a private blockchain network that mimics the mainnet but is isolated for testing and development purposes. This allows developers to make mistakes and iterate quickly without impacting real users or risking real-world assets. This guide will walk you through setting up a local devnet for the Entropy."
4
4
---
5
5
@@ -27,14 +27,7 @@ This method leverages pre-built Docker images to quickly and easily spin up a lo
The reference forthis file can be foundin the [Entropy JavaScript SDK repo](https://github.com/entropyxyz/sdk/blob/4ea6037276a5e406668bd1ff25b0ea265b5e904e/dev/docker-scripts/four-nodes.yaml).
91
+
92
+
1. Grab the [entropyxyz/entropy](https://hub.docker.com/r/entropyxyz/entropy) and [entropyxyz/entropy-tss](https://hub.docker.com/r/entropyxyz/entropy-tss) Docker containers:
93
+
94
+
```shell
95
+
docker pull entropyxyz/entropy
96
+
docker pull entropyxyz/entropy-tss
97
+
```
98
+
99
+
1. Start the devnet using the two containers you just downloaded and the `four-nodes.yaml` file you created:
100
+
101
+
```shell
102
+
docker-compose -f four-up.yaml up -d
103
+
```
58
104
59
105
1. Verify container status:
60
106
@@ -70,7 +116,7 @@ This method leverages pre-built Docker images to quickly and easily spin up a lo
70
116
docker compose logs
71
117
```
72
118
73
-
While optional, this command shows logs from running containers which can be helpful for troubleshooting.
119
+
While optional, this command shows logs from running containers, which can help with troubleshooting.
0 commit comments