Skip to content

Commit 7be6a1b

Browse files
authored
Merge pull request #274 from VaultaFoundation/vaulta
fix for broken links
2 parents 2fc74f1 + f8204e9 commit 7be6a1b

File tree

10 files changed

+15
-17
lines changed

10 files changed

+15
-17
lines changed

evm/20_smart-contracts/20_migrate-your-smart-contract.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ into the search field.
100100
You have successfully deployed your first smart contract to the Vaulta EVM! 🎉
101101

102102
If you already have a front-end application that interacts with your smart contract, you can now point it at the
103-
[Vaulta EVM Endpoints](/evm/999_miscellaneous/10_endpoints.md), and it will work as expected.
103+
[Vaulta EVM Endpoints](../quick-start/endpoints), and it will work as expected.
104104

105105
Make sure you visit the [**Compatibility**](/evm/999_miscellaneous/20_evm-compatibility.md) section to learn about the differences between
106106
the Vaulta EVM and Ethereum, and how to make sure your web3 application works on the Vaulta EVM as expected.

native/07_node-operation/100_migration-guides/04_upgrade-guide-spring-1-0.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Spring 1.0 Upgrade Guide
33
---
44

55
## Purpose
6-
This upgrade guide covers the steps for upgrading a node to Spring v1 from prior Leap versions. The Node Operator's guide [Switching Over To Savanna Consensus Algorithm](https://docs.vaulta.com/docs/latest/node-operation/migration-guides/switch-to-savanna) covers the steps needed to upgrade the consensus algorithm. Node Producers will be interested in [Guide to Managing Finalizer Keys](https://docs.vaulta.com/docs/latest/advanced-topics/managing-finalizer-keys)
6+
This upgrade guide covers the steps for upgrading a node to Spring v1 from prior Leap versions. The Node Operator's guide [Switching Over To Savanna Consensus Algorithm](https://docs.vaulta.com/docs/latest/node-operation/migration-guides/switch-to-savanna) covers the steps needed to upgrade the consensus algorithm. Node Producers will be interested in [Guide to Managing Finalizer Keys](../../advanced-topics/managing-finalizer-keys)
77

88
### Summary of Changes
99
- [Exceeding number of in flight requests or Mb in flight now returns HTTP 503](#updated-error-codes)
@@ -144,5 +144,5 @@ Scripts that move or delete the ‘data’ directory need to protect the finaliz
144144
- `finalizers-dir` - Specifies the directory path for storing voting history. Node Operators may want to specify a directory outside of their nodeos' data directory, and manage this as distinct file. More information in [Guide to Managing Finalizer Keys](../../../advanced-topics/managing-finalizer-keys).
145145

146146
### New `vote-threads` Option
147-
Where there is a block producing node that connects to its peers through an intermediate nodeos, the intermediate nodeos will need to have an integer value greater than 0 for `vote-threads`. The default value for `vote-threads` is 4. When `vote-threads` is not an integer greater than 0, votes are not propagated. See [Voting and Peering](../../../advanced-topics/introduction-finalizers-voting/#voting-and-peering) for more background and recomendations on configuring `vote-threads`.
147+
Where there is a block producing node that connects to its peers through an intermediate nodeos, the intermediate nodeos will need to have an integer value greater than 0 for `vote-threads`. The default value for `vote-threads` is 4. When `vote-threads` is not an integer greater than 0, votes are not propagated. See [Voting and Peering](../../advanced-topics/introduction-finalizers-voting/#voting-and-peering) for more background and recomendations on configuring `vote-threads`.
148148
- `vote-threads` - Sets the number of threads to handle voting. The default is sufficient for all known production setups, and the recommendation is to leave this value unchanged.

native/07_node-operation/10_getting-started/30_plugins/chain-api-plugin.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ See [Chain API Reference](https://docs.vaulta.com/apis/leap/latest/chain.api/).
77

88
## Overview
99

10-
The `chain_api_plugin` exposes functionality from the [`chain_plugin`](./chain-plugin.md) to the RPC API interface managed by the [`http_plugin`](./http-plugin/index.md).
10+
The `chain_api_plugin` exposes functionality from the [`chain_plugin`](./chain-plugin.md) to the RPC API interface managed by the [`http_plugin`](./http-plugin).
1111

1212
## Usage
1313

native/07_node-operation/10_getting-started/30_plugins/state-history-plugin.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,9 +51,9 @@ Option (=default) | Description
5151

5252
## Examples
5353

54-
* [How to replay or resync with full history](../../snapshots#replay--resync-with-full-state-history)
55-
* [How to create a portable snapshot with full state history](../../snapshots#creating-a-snapshot-with-full-state-history)
56-
* [How to restore a portable snapshot with full state history](../../snapshots#restoring-a-snapshot-with-full-state-history)
54+
* [How to replay or resync with full history](../snapshots#replay--resync-with-full-state-history)
55+
* [How to create a portable snapshot with full state history](../snapshots#creating-a-snapshot-with-full-state-history)
56+
* [How to restore a portable snapshot with full state history](../snapshots#restoring-a-snapshot-with-full-state-history)
5757

5858
## Dependencies
5959

native/07_node-operation/10_getting-started/40_peering.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Vaulta blockchains may consist of one or many nodes. Although a single node can
1111
Peering allows Vaulta nodes to propagate and synchronize the distributed blockchain state by receiving and relaying blocks and/or transactions to other nodes. Any node that is configured to send and receive data in a peer-to-peer fashion is considered a "peer". This adds redundancy and allows for faster response times to client queries and node requests. Therefore, peering is key to the decentralized operation and incremental growth of the Vaulta blockchain.
1212

1313
> ℹ️ Vaulta Network Protocol
14-
Peering is enabled through the Vaulta peer-to-peer (p2p) network protocol and it is what allows the decentralized operation of the blockchain. For more information, check the [Vaulta Network Protocol](../../60_advanced-topics/03_network-peer-protocol.md).
14+
Peering is enabled through the Vaulta peer-to-peer (p2p) network protocol and it is what allows the decentralized operation of the blockchain.
1515

1616
## Why you need nodes/peers?
1717

native/60_advanced-topics/02_transactions-protocol.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ To execute the transaction, a chain database session is started and a snapshot i
168168

169169
#### 3.5.1. Apply Context
170170

171-
To prepare for action execution, an apply context instance is created locally for each action. The apply context, as its name implies, contains references to the necessary resources to apply the action, such as an instance to the chain controller (see [Network Peer Protocol: 2.2. Chain Controller](03_network-peer-protocol.md#22-chain-controller)), the chain database where state is kept, the transaction context where the transaction is running, the actual action instance, and the receiver account to whom the action is intended.
171+
To prepare for action execution, an apply context instance is created locally for each action. The apply context, as its name implies, contains references to the necessary resources to apply the action, such as an instance to the chain controller, the chain database where state is kept, the transaction context where the transaction is running, the actual action instance, and the receiver account to whom the action is intended.
172172

173173

174174
#### 3.5.2. Action Trace
@@ -231,4 +231,4 @@ A transaction is verified and validated at various stages during its lifecycle:
231231

232232
#### 3.7.1. Validation Process
233233

234-
When validating a transaction as part of a block, multiple validations occur at various levels. In full block validation, all transactions recorded in the block are replayed and the locally calculated merkle tree root hashes (generated from the transaction receipt data and the action receipt data, respectively) are compared against the `transaction_mroot` and `action_mroot` fields in the block header. Therefore, if a recorded transaction is tampered within a block, not only the merkle tree root hashes would cause a mismatch, but also the transaction signature(s) would fail to validate. If the tampering was not performed by a bona-fide block producer, the block signature would fail to validate as well (see [Consensus Protocol: 5.3. Block Validation](01_consensus-protocol.md#53-block-validation)).
234+
When validating a transaction as part of a block, multiple validations occur at various levels. In full block validation, all transactions recorded in the block are replayed and the locally calculated merkle tree root hashes (generated from the transaction receipt data and the action receipt data, respectively) are compared against the `transaction_mroot` and `action_mroot` fields in the block header. Therefore, if a recorded transaction is tampered within a block, not only the merkle tree root hashes would cause a mismatch, but also the transaction signature(s) would fail to validate. If the tampering was not performed by a bona-fide block producer, the block signature would fail to validate as well.

native/60_advanced-topics/20_introduction-finalizers-voting.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ Please take care when managing the `safety.dat` file. Please do not share BLS ke
4242
### Continuous Voting
4343
Unlike block publishing, for the top 21 block producers, voting is continuous. Taking a producer offline would prevent that producer from voting to advance finality. To support continuous voting and manage various support scenarios the Vaulta blockchain provides on chain actions to register, activate, and delete BLS Keys. Using these actions, a producer can quickly rotate to a new BLS Key.
4444

45-
For this reason it is recommended that each producer instance uses its own unique BLS Key, and activates the BLS Key when going online. There are many strategies for [managing BLS Keys](../managing-finalizer-keys).
45+
For this reason it is recommended that each producer instance uses its own unique BLS Key, and activates the BLS Key when going online. There are many strategies for [managing BLS Keys](./managing-finalizer-keys).
4646

4747
### Voting and Peering
4848
All the nodeos instance from the source of the votes, to the receiver of the votes, along with any intermediate nodes must be configured to send, receive, and propagate votes. This is accomplished by enabling the vote-threading pools, configuring `vote-threads` to a value greater than zero. By default `vote-threads` is greater than zero on all block production nodes. Therefore, when two finalizers are directly peered, votes are sent and received with no additional configuration changes needed.

native/60_advanced-topics/21_managing-finalizer-keys.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: Managing Finalizer Keys
33
---
44

5-
Review [Introduction to Finalizers and Voting](../introduction-finalizers-voting) for additional background. See How To [Rotate BLS Finalizer Keys](../../node-operation/tutorials/Rotate-BLS-Finalizer-Keys) for specific instructions on moving to new finalizer keys. The Savanna Consensus algorithm utilized by Spring v1 separates the roles of publishing blocks from signing and finalizing blocks. Finalizer Keys are needed to sign and finalize blocks. In Spring v1, all block producers are expected to be finalizers.
5+
Review [Introduction to Finalizers and Voting](../introduction-finalizers-voting) for additional background. See How To [Rotate BLS Finalizer Keys](../node-operation/tutorials/Rotate-BLS-Finalizer-Keys) for specific instructions on moving to new finalizer keys. The Savanna Consensus algorithm utilized by Spring v1 separates the roles of publishing blocks from signing and finalizing blocks. Finalizer Keys are needed to sign and finalize blocks. In Spring v1, all block producers are expected to be finalizers.
66

77
## Recommended Setup
88
The recommendation is to generate, and register several finalizer keys. It is recommended to have one finalizer key for each instance of a producer node. A producer may have only one active finalizer key. When the keys are generated ahead of time, and included in the configuration, only an on-chain action is needed to use a new finalizer key.
@@ -50,7 +50,7 @@ A full recovery is more involved and it included using a different finalizer key
5050
## Generating and Registering Finalizer Keys
5151

5252
### Importance of Finalizer Safety
53-
Savanna consensus introduces a new file that captures the history of finalizer voting. See [Introduction to Finalizers and Voting](../introduction-finalizers-voting) for more background on voting history and the role of the `finalizers/safety.dat` file. By default the file `finalizers/safety.dat` is found under the data directory. `finalizers/safety.dat` must have the full voting history for the BLS finalizer key that is in use. If `finalizers/safety.dat` is corrupted, removed, or lacks the full voting history for the BLS finalizer key in use, a new BLS finalizer key must be used.
53+
Savanna consensus introduces a new file that captures the history of finalizer voting. See [Introduction to Finalizers and Voting](./introduction-finalizers-voting) for more background on voting history and the role of the `finalizers/safety.dat` file. By default the file `finalizers/safety.dat` is found under the data directory. `finalizers/safety.dat` must have the full voting history for the BLS finalizer key that is in use. If `finalizers/safety.dat` is corrupted, removed, or lacks the full voting history for the BLS finalizer key in use, a new BLS finalizer key must be used.
5454

5555
Spring v1 introduces a new configuration option `finalizers-dir` that can change the location of the `safety.dat` file. A node operator may want to change the location of `safety.dat`, if they want to move this important file out of the nodeos default data directory.
5656

native/60_advanced-topics/30_staking/10_contracts.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ aimed at rewarding the Vaulta community.
194194
It allows the Vaulta blockchain to define a [set of receivers](https://unicove.com/contract/eosio.reward/tables/strategies)
195195
that will receive rewards, and a weight for each receiver.
196196

197-
See the [inflows](./inflows) document for more information on how the reward contract is funded.
197+
See the [inflows](./20_token-flows) document for more information on how the reward contract is funded.
198198

199199
> **Note**
200200
> Modifying strategies is controlled by the block producers and requires a 15/21 multisig to change.

native/60_advanced-topics/index.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,7 @@ The `Vaulta Core` provides the basic building blocks for the `system` layer. How
1010

1111
The core protocols are:
1212

13-
1. [Consensus Protocol](01_consensus-protocol.md)
14-
2. [Transactions Protocol](02_transactions-protocol.md)
15-
3. [Network or Peer to Peer Protocol](03_network-peer-protocol.md)
13+
1. [Transactions Protocol](02_transactions-protocol.md)
1614

1715
## System
1816

0 commit comments

Comments
 (0)