Skip to content
This repository has been archived by the owner on Oct 7, 2024. It is now read-only.

feat(docs) Add description to check if synchronization is complete #5

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions initiation-1/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,26 @@ $ initiad start

## How to setup validator

Once synchronization is complete, you can try "Validator Creation". Run the following command and if "catching_up: false" then the synchronization is complete

```sh
curl http://localhost:26657/status | jq

{
"jsonrpc": "2.0",
"id": -1,
"result": {
...
"sync_info": {
...
"earliest_block_time": "2024-05-10T07:00:00Z",
"catching_up": false # true if not complete
},
...
}
}
```

### Validator Creation

```sh
Expand Down