1 Like
Is it by checking the latest block? and where to see the reputation score of my node? is there a frontend for that?
1 Like
You can verify if your node is in sync with the network by checking the latest block height. You can use a query like this to get the latest blocks in your graphql playground
query LatestBlocks {
blocks(last: 1) {
nodes {
id
transactions {
id
}
}
}
}
2 Likes