Skip to content

Commit da6086e

Browse files
Jay Kurahashi-Sofuegitbook-bot
Jay Kurahashi-Sofue
authored andcommitted
GitBook: [master] 14 pages and 2 assets modified
1 parent 4ed6791 commit da6086e

14 files changed

+16
-15
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ description: >-
2222
{% endtab %}
2323

2424
{% tab title="Staking" %}
25-
{% page-ref page="build/get-started.md" %}
25+
{% page-ref page="build/run-avalanche-node.md" %}
2626

2727
{% page-ref page="build/tutorials/nodes-and-staking/" %}
2828
{% endtab %}

SUMMARY.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
## Build
1818

19-
* [Get Started: Run an Avalanche Node](build/get-started.md)
19+
* [Run an Avalanche Node](build/run-avalanche-node.md)
2020
* [Release Notes](build/release-notes/README.md)
2121
* [Email Alerts](http://eepurl.com/heNhSX)
2222
* [AvalancheGo Release Notes](build/release-notes/avalanchego.md)

build/get-started.md build/run-avalanche-node.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Get Started: Run an Avalanche Node
1+
# Run an Avalanche Node
22

33
The quickest way to learn about Avalanche is to run a node and interact with the network.
44

@@ -38,7 +38,7 @@ Let’s install AvalancheGo, the Go implementation of an Avalanche node, and con
3838

3939
The node is a binary program. You can either download the source code and then build the binary program, or you can download the pre-built binary. You don’t need to do both.
4040

41-
Downloading [pre-built binary](get-started.md#binary) is easier and recommended if you're just looking to run your own node and stake on it.
41+
Downloading [pre-built binary](run-avalanche-node.md#binary) is easier and recommended if you're just looking to run your own node and stake on it.
4242

4343
Building the node from source is recommended if you're a developer looking to experiment and build on Avalanche.
4444

build/tools/ortelius.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@ In addition to integers, strings, and booleans, the following data types are use
2323
| Name | Description | Examples |
2424
| :--- | :--- | :--- |
2525
| `id` | A CB58 encoded object identifier, such as a chain, transaction, or asset ID | `2oYMBNV4eNHyqk2fjjV5nVQLDbtmNJzq5s3qs3Lo6ftnC6FByM` |
26-
| `address` | A bech-32 encoded address (used on the X-Chain and P-Chain) | `fuji1wycv8n7d2fg9aq6unp23pnj4q0arv03ysya8jw` |
26+
| `address` | A bech-32 encoded address \(used on the X-Chain and P-Chain\) | `fuji1wycv8n7d2fg9aq6unp23pnj4q0arv03ysya8jw` |
2727
| `datetime` | A Unix timestamp as an integer or an RFC3339 formatted string | `1599696000`, `2020-09-10T00:00:00Z` |
28-
| `caddress` | A hex encoded address (used on the C-Chain) | `0xB31f66AA3C1e785363F0875A1B74E27b85FD66c7` |
28+
| `caddress` | A hex encoded address \(used on the C-Chain\) | `0xB31f66AA3C1e785363F0875A1B74E27b85FD66c7` |
2929
| `chash` | A hex encoded hash | `0xe5b935988317e8552e769ad92b6a2fd01ac8f0f90d8ffa4377e50fcb8d970077` |
3030

3131
### List Parameters
@@ -705,7 +705,7 @@ Find accepted C-Chain transactions.
705705
| :--- | :--- | :--- | :--- | :--- |
706706
| `toAddress` | `caddress` | address | None | None |
707707
| `fromAddress` | `caddress` | address | None | None |
708-
| `address` | `caddress` | address (to or from) | None | None |
708+
| `address` | `caddress` | address \(to or from\) | None | None |
709709
| `hash` | `chash` | transaction hash | None | None |
710710
| `blockStart` | `number` | Starting block number inclusive | None | N/A |
711711
| `blockEnd` | `number` | Ending block number exclusive | None | N/A |

build/tutorials/nodes-and-staking/add-a-validator.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Note that once you issue the transaction to add a node as a validator, there is
1212

1313
## Requirements
1414

15-
You've completed [Run an Avalanche Node](../../get-started.md) and are familiar with [Avalanche's architecture](../../../learn/platform-overview/). In this tutorial, we use [Avalanche’s Postman collection](https://github.com/ava-labs/avalanche-postman-collection) to help us make API calls.
15+
You've completed [Run an Avalanche Node](../../run-avalanche-node.md) and are familiar with [Avalanche's architecture](../../../learn/platform-overview/). In this tutorial, we use [Avalanche’s Postman collection](https://github.com/ava-labs/avalanche-postman-collection) to help us make API calls.
1616

1717
In order to ensure your node is well-connected, make sure that your node can receive and send TCP traffic on the staking port \(`9651` by default\) and that you started your node with command line argument `--public-ip=[YOUR NODE'S PUBLIC IP HERE]`. Failing to do either of these may jeopardize your staking reward.
1818

build/tutorials/nodes-and-staking/set-up-node-with-installer.md

+1
Original file line numberDiff line numberDiff line change
@@ -236,6 +236,7 @@ To see a list of available versions for installation, run:
236236
```bash
237237
./avalanchego-installer.sh --list
238238
```
239+
239240
It will print out a list, something like:
240241

241242
```text

build/tutorials/platform/create-a-new-blockchain.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ In this tutorial, we’ll create a blockchain by creating a new instance of the
88

99
### Prerequisites
1010

11-
You will need a running node, a user on the node, and some AVAX in the address controlled by the user. All of that is covered in the [Run an Avalanche Node](../../get-started.md) tutorial.
11+
You will need a running node, a user on the node, and some AVAX in the address controlled by the user. All of that is covered in the [Run an Avalanche Node](../../run-avalanche-node.md) tutorial.
1212

1313
Next, you need to have your node be a validator on the [Primary Network](http://support.avalabs.org/en/articles/4135650-what-is-the-primary-network). You can find out how to do that in the [Add a Validator](../nodes-and-staking/add-a-validator.md) tutorial. It is recommended you do that [with API calls](../nodes-and-staking/add-a-validator.md#add-a-validator-with-api-calls), since that is the way you will be interacting with your node in the rest of this tutorial.
1414

build/tutorials/platform/transfer-avax-between-x-chain-and-c-chain.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ AVAX tokens exist on the X-Chain, where they can be traded, on the P-Chain, wher
66

77
## Requirements
88

9-
You've completed [Run an Avalanche Node](../../get-started.md) and are familiar with [Avalanche's architecture](../../../learn/platform-overview/).
9+
You've completed [Run an Avalanche Node](../../run-avalanche-node.md) and are familiar with [Avalanche's architecture](../../../learn/platform-overview/).
1010

1111
In order to send AVAX, you need to have some AVAX! You can get real AVAX by buying it on an exchange, or you can get testnet AVAX from the [AVAX Test Faucet](https://faucet.avax-test.network), which is a free and easy way to get to play around with Avalanche.
1212

build/tutorials/platform/transfer-avax-between-x-chain-and-p-chain.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ AVAX tokens exist on the X-Chain, where they can be traded, on the P-Chain, wher
66

77
## Requirements
88

9-
You've completed [Getting Started](../../get-started.md) and are familiar with [Avalanche's architecture](../../../learn/platform-overview/).
9+
You've completed [Getting Started](../../run-avalanche-node.md) and are familiar with [Avalanche's architecture](../../../learn/platform-overview/).
1010

1111
In order to send AVAX, you need to have some AVAX! You can get real AVAX by buying it on an exchange, or you can get testnet AVAX from the [AVAX Test Faucet](https://faucet.avax-test.network), which is a free and easy way to get to play around with Avalanche.
1212

build/tutorials/smart-contracts/using-truffle-with-the-avalanche-c-chain.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
## Requirements
88

9-
You've completed [Run an Avalanche Node](../../get-started.md) and are familiar with [Avalanche's architecture](../../../learn/platform-overview/). You've also performed a cross-chain swap via the [Transfer AVAX Between X-Chain and C-Chain](../platform/transfer-avax-between-x-chain-and-c-chain.md) tutorial to get funds to your C-Chain address.
9+
You've completed [Run an Avalanche Node](../../run-avalanche-node.md) and are familiar with [Avalanche's architecture](../../../learn/platform-overview/). You've also performed a cross-chain swap via the [Transfer AVAX Between X-Chain and C-Chain](../platform/transfer-avax-between-x-chain-and-c-chain.md) tutorial to get funds to your C-Chain address.
1010

1111
## Dependencies
1212

build/tutorials/smart-digital-assets/create-a-fix-cap-asset.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Suppose there is an Income Sharing Agreement \(ISA\) with 10M shares, and no mor
88

99
## Requirements
1010

11-
You've completed [Run an Avalanche Node](../../get-started.md) and are familiar with [Avalanche's architecture](../../../learn/platform-overview/).
11+
You've completed [Run an Avalanche Node](../../run-avalanche-node.md) and are familiar with [Avalanche's architecture](../../../learn/platform-overview/).
1212

1313
## Create the Asset
1414

build/tutorials/smart-digital-assets/creating-a-nft-part-1.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ In this tutorial, we’ll create and send NFTs using AvalancheGo’s API. In a f
1010

1111
## Requirements
1212

13-
You've completed [Run an Avalanche Node](../../get-started.md) and are familiar with [Avalanche's architecture](../../../learn/platform-overview/). In this tutorial, we use [Avalanche’s Postman collection](https://github.com/ava-labs/avalanche-postman-collection) to help us make API calls.
13+
You've completed [Run an Avalanche Node](../../run-avalanche-node.md) and are familiar with [Avalanche's architecture](../../../learn/platform-overview/). In this tutorial, we use [Avalanche’s Postman collection](https://github.com/ava-labs/avalanche-postman-collection) to help us make API calls.
1414

1515
## Create the NFT Family
1616

build/tutorials/smart-digital-assets/creating-a-variable-cap-asset.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Suppose that we want to issue an asset that represents shares of a corporation.
1313

1414
## Requirements
1515

16-
You've completed [Run an Avalanche Node](../../get-started.md) and are familiar with [Avalanche's architecture](../../../learn/platform-overview/).
16+
You've completed [Run an Avalanche Node](../../run-avalanche-node.md) and are familiar with [Avalanche's architecture](../../../learn/platform-overview/).
1717

1818
## Create the Asset
1919

0 commit comments

Comments
 (0)