This commit is contained in:
2024-05-23 11:09:37 +03:00
parent 2d41a9a8a2
commit 00f1b87efa
115 changed files with 333 additions and 715 deletions

View File

@@ -60,7 +60,7 @@ The next step accourding to the [docs](https://developer.algorand.org/docs/run-a
## Run Participant Node
Participation means participation in the Algorand consensus protocol. An account that participates in the Algorand consensus protocol is eligible and available to be selected to propose and vote on new blocks in the Algorand blockchain.
Participation means participation in the Algorand consensus protocol. An account that participates in the Algorand consensus protocol is eligible and available to be selected to propose and vote on new slice in the Algorand blockchain.
Participation node is responsible for hosting participation keys for one or more online accounts.
What you need?
@@ -76,7 +76,7 @@ What you need?
![partdep](./img/algorand_partdep.png)
after the deployment is done. `ssh` to the node and run `goal node status` to see the status of the node. you see it do catchup. and the fast catchup is to make the node sync with the latest block faster by only fetch the last 1k blocks. after it done it will start create the participation keys.
after the deployment is done. `ssh` to the node and run `goal node status` to see the status of the node. you see it do catchup. and the fast catchup is to make the node sync with the latest block faster by only fetch the last 1k slice. after it done it will start create the participation keys.
![partstatus](./img/algorand_partstatus.png)
now if you check the explorer you can see the status of the account turned to Online

View File

@@ -10,7 +10,7 @@
## Introduction
[Subsquid](https://www.subsquid.io/) indexer is a piece of software that reads all the blocks from a Substrate based blockchain, decodes and stores them for processing in a later stage.
[Subsquid](https://www.subsquid.io/) indexer is a piece of software that reads all the slice from a Substrate based blockchain, decodes and stores them for processing in a later stage.
## Prerequisites