2024-05-20 11:27:41 +00:00
|
|
|
# laconicd-full-node
|
|
|
|
|
|
|
|
Instructions for deploying a laconicd full node along with steps to join testnet as a validator post genesis
|
|
|
|
|
|
|
|
Minimum hardware requirements:
|
|
|
|
|
|
|
|
- RAM: 8-16GB
|
|
|
|
- Disk space: 200GB
|
|
|
|
- CPU: 2 cores
|
|
|
|
|
|
|
|
## Clone the stack repo
|
|
|
|
|
2024-06-17 13:46:19 +00:00
|
|
|
```bash
|
|
|
|
laconic-so fetch-stack git.vdb.to/cerc-io/testnet-laconicd-stack
|
2024-05-20 11:27:41 +00:00
|
|
|
```
|
|
|
|
|
|
|
|
## Clone required repositories
|
|
|
|
|
2024-06-17 13:46:19 +00:00
|
|
|
```bash
|
|
|
|
laconic-so --stack ~/cerc/testnet-laconicd-stack/stack-orchestrator/stacks/laconicd-full-node setup-repositories
|
2024-05-20 11:27:41 +00:00
|
|
|
```
|
|
|
|
|
|
|
|
## Build the fixturenet-eth containers
|
|
|
|
|
2024-06-17 13:46:19 +00:00
|
|
|
```bash
|
|
|
|
laconic-so --stack ~/cerc/testnet-laconicd-stack/stack-orchestrator/stacks/laconicd-full-node build-containers
|
2024-05-20 11:27:41 +00:00
|
|
|
```
|
|
|
|
|
|
|
|
This should create several container images in the local image registry:
|
|
|
|
|
2024-06-17 13:46:19 +00:00
|
|
|
* cerc/laconic2d
|
|
|
|
* cerc/laconic-registry-cli
|
|
|
|
* cerc/webapp-base
|
|
|
|
* cerc/laconic-console-host
|
2024-05-20 11:27:41 +00:00
|
|
|
|
|
|
|
## Deploy the stack
|
|
|
|
|
2024-06-17 13:46:19 +00:00
|
|
|
```bash
|
|
|
|
laconic-so --stack ~/cerc/testnet-laconicd-stack/stack-orchestrator/stacks/laconicd-full-node deploy up
|
2024-05-20 11:27:41 +00:00
|
|
|
```
|
|
|
|
|
|
|
|
## Check status
|
|
|
|
|
|
|
|
<!-- TODO -->
|
|
|
|
|
|
|
|
## Join as testnet validator
|
|
|
|
|
2024-06-17 13:46:19 +00:00
|
|
|
<!-- TODO import a funded account / create an account and get it funded -->
|
|
|
|
|
|
|
|
<!-- TODO create a validator-->
|
2024-05-20 11:27:41 +00:00
|
|
|
|
|
|
|
## Clean up
|
|
|
|
|
|
|
|
Stop all services running in the background:
|
|
|
|
|
|
|
|
```bash
|
2024-06-17 13:46:19 +00:00
|
|
|
laconic-so --stack ~/cerc/testnet-laconicd-stack/stack-orchestrator/stacks/laconicd-full-node deploy down
|
2024-05-20 11:27:41 +00:00
|
|
|
```
|
|
|
|
|
|
|
|
Clear volumes created by this stack:
|
|
|
|
|
|
|
|
<!-- TODO -->
|