Skip to content

Commit

Permalink
fix invalid links
Browse files Browse the repository at this point in the history
  • Loading branch information
b00f committed Jul 12, 2024
1 parent 450517e commit 3dd8563
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion content/get-started/pactus-daemon.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Before proceeding with the steps below, ensure that you have the following:
## Download

To get started, download and extract the Pactus CLI file from
[here]({{ site.baseurl }}/download/#cli).
[here](https://pactus.org/download/#cli).
Once you have downloaded and extracted the Pactus CLI file, you can proceed to the next step.

## Initializing the Node
Expand Down
2 changes: 1 addition & 1 deletion content/protocol/blockchain/address.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ An address in the Pactus blockchain is made up of 21 bytes and it is derived fro
The first byte of the address specifies the address type,
while the remaining 20 bytes represent the hash of the public key.
The hash function used is [RIPEMD-160](https://en.wikipedia.org/wiki/RIPEMD#RIPEMD-160_hashes),
which is applied after [Blake2b]({{ site.baseurl }}/learn/blockchain/cryptography/#hashing-algorithm)):
which is applied after [Blake2b](/protocol/blockchain/cryptography/#hashing-algorithm)):
The resulting byte array is then converted into a bech32m[^first] string.

![Pactus address structure](/images/pactus-address.png)
Expand Down
2 changes: 1 addition & 1 deletion content/protocol/blockchain/block.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ The block header is 138 bytes long and consists the following fields:
- **State Hash** is the [state hash](/protocol/blockchain/state-hash) of the blockchain at this block.
The State Hash ensures that all nodes in the network have the same state.
- **Sortition Seed** is a verifiable and unpredictable seed data used by
the [sortition]({{ site.baseurl }}/learn/consensus/sortition) algorithm.
the [sortition](/protocol/consensus/sortition) algorithm.
- **Proposer Address** is the address of the validator who created and proposed the block.

## Block Certificate
Expand Down

0 comments on commit 3dd8563

Please sign in to comment.