https://github.com/jcstein/light-node
https://github.com/jcstein/light-node
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/jcstein/light-node
- Owner: jcstein
- License: apache-2.0
- Created: 2023-05-22T04:40:06.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2023-07-17T12:37:23.000Z (almost 2 years ago)
- Last Synced: 2024-10-29T08:01:37.553Z (7 months ago)
- Language: Shell
- Size: 12.7 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# light-node
This repository will help you run a [Celestia](https://celestia.org)
[light node](https://github.com/celestiaorg/celestia-node) using
Gitpod.## Initializing your node
In order to start our node, we'll first need to initialize a new node
store and key to run the node with. This way if we want to run a rollup
on top of this node, we can fund it with TIA and keep the account safe.Create a new workspace on [Gitpod](https://gitpod.io) with this repository
and run this command from the home directory of the workspace (which will
be `/workspace/light-node` by default):```bash
make init
```Your keys and data will be stored in the
`celestia-pwd/.celestia-light-arabica-9` directory ✨## Starting your node
Now, we'll start our node using the keys we just created above. If you're
curious about what's going on, check out the [`init.sh`](init.sh)
and [`start.sh`](start.sh) scripts, which are called from the
[`Makefile`](Makefile).From the project's working directory, run this to start your node:
```bash
make start
```