diff --git a/content/get-started/pactus-daemon.md b/content/get-started/pactus-daemon.md index 14d5bb2..5f98238 100644 --- a/content/get-started/pactus-daemon.md +++ b/content/get-started/pactus-daemon.md @@ -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 diff --git a/content/protocol/blockchain/address.md b/content/protocol/blockchain/address.md index 4505884..5a537af 100644 --- a/content/protocol/blockchain/address.md +++ b/content/protocol/blockchain/address.md @@ -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) diff --git a/content/protocol/blockchain/block.md b/content/protocol/blockchain/block.md index 5b28ace..f0c79ca 100644 --- a/content/protocol/blockchain/block.md +++ b/content/protocol/blockchain/block.md @@ -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