Skip to content

Commit

Permalink
Added start node details (#66)
Browse files Browse the repository at this point in the history
* Network Version & Metamask

* update node title

* Test Fix for metamask button

* Update network version, fix metamask button

* Added text for setting up node

* Updates bullet points
  • Loading branch information
Lama1403 authored Dec 13, 2024
1 parent c3bba25 commit 01cff09
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions zq2/docs/nodes/node.md
Original file line number Diff line number Diff line change
Expand Up @@ -126,18 +126,21 @@ Only full archive nodes need to sync from the genesis block. This can take up to
<br><br>
Nodes that do not need all historical blocks can be synced much faster from a checkpoint, preferably the latest one. This takes only a few hours at most. The root of trust in this case is the hash of the checkpoint block that can be obtained from and verified against public sources.

* Start the node without Checkpoint:
* <b>start the node with Checkpoint:</br></b>
(fast, recommended)
```bash
chmod +x start_node.sh && \
./start_node.sh -k $PRIVATE_KEY
./start_node.sh -k $PRIVATE_KEY -p <checkpoint_block_num.dat>
```

* Start the node with Checkpoint:
* <b>start the node without Checkpoint:</br></b>
(slow, available after the next network upgrade)
```bash
chmod +x start_node.sh && \
./start_node.sh -k $PRIVATE_KEY -p <checkpoint_block_num.dat>
./start_node.sh -k $PRIVATE_KEY
```


_NOTE: The `<checkpoint_block_num.dat>` file is the one you previously downloaded. Refer to [syncing-from-checkpoint](../nodes/checkpoint.md#syncing-a-node-from-a-checkpoint)_

Great! The node should now be syncing with the network. It may
Expand Down

0 comments on commit 01cff09

Please sign in to comment.