|
| 1 | +--- |
| 2 | +title: Run a Node |
| 3 | +description: Run a node on Flare. |
| 4 | +keywords: [rpc, validator, nodes, flare-network, flare-entity] |
| 5 | +--- |
| 6 | + |
| 7 | +import Tabs from "@theme/Tabs"; |
| 8 | +import TabItem from "@theme/TabItem"; |
| 9 | +import DocCardList from "@theme/DocCardList"; |
| 10 | + |
| 11 | +Running your own node is the most direct way to connect to and interact with the Flare network. |
| 12 | +Whether you need to query blockchain data for your application, want to help secure the network by validating transactions, or aim to participate fully in Flare's data protocols, setting up a node is the first step. |
| 13 | + |
| 14 | +This guide covers the different types of nodes you can run - RPC, Validator, and Flare Entity - and provides links to detailed setup instructions for each. |
| 15 | + |
| 16 | +## RPC Node |
| 17 | + |
| 18 | +Allows applications to read blockchain data and submit transactions. |
| 19 | +Does not participate in consensus. |
| 20 | + |
| 21 | +<DocCardList |
| 22 | + items={[ |
| 23 | + { |
| 24 | + type: "link", |
| 25 | + label: "Check System requirements", |
| 26 | + href: "run-node/system-requirements", |
| 27 | + description: "Minimum hardware requirements for running a node.", |
| 28 | + }, |
| 29 | + { |
| 30 | + type: "link", |
| 31 | + label: "Run Node from source", |
| 32 | + href: "run-node/from-source", |
| 33 | + description: "Run a Flare node from go-flare source code.", |
| 34 | + }, |
| 35 | + { |
| 36 | + type: "link", |
| 37 | + label: "Run Node using Docker", |
| 38 | + href: "run-node/using-docker", |
| 39 | + description: "Run a Flare node using Docker.", |
| 40 | + }, |
| 41 | + ]} |
| 42 | +/> |
| 43 | + |
| 44 | +## Validator Node |
| 45 | + |
| 46 | +Secures the network by validating transactions and participating in consensus. |
| 47 | +Setting up a validator starts with installing a standard node (see [RPC Node](#rpc-node)). |
| 48 | +Once your node is running, proceed with the registration: |
| 49 | + |
| 50 | +<DocCardList |
| 51 | + items={[ |
| 52 | + { |
| 53 | + type: "link", |
| 54 | + label: "Register as Validator", |
| 55 | + href: "run-node/register-validator", |
| 56 | + description: "Register your node as a validator.", |
| 57 | + }, |
| 58 | + ]} |
| 59 | +/> |
| 60 | + |
| 61 | +## Flare Entity |
| 62 | + |
| 63 | +Runs alongside a Validator to provide crucial data for Flare's FTSO and FDC protocols. |
| 64 | +Required for full reward eligibility. |
| 65 | +Requires a running [Validator Node](#validator-node). To set up a Flare Entity: |
| 66 | + |
| 67 | +<DocCardList |
| 68 | + items={[ |
| 69 | + { |
| 70 | + type: "link", |
| 71 | + label: "Set Up Flare Entity", |
| 72 | + href: "run-node/flare-entity", |
| 73 | + description: "Provide data for Flare's enshrined FTSO and FDC protocols.", |
| 74 | + }, |
| 75 | + ]} |
| 76 | +/> |
| 77 | + |
| 78 | +:::tip[Systems Explorer] |
| 79 | + |
| 80 | +All registered Flare Entities, alongside voting and reward epoch, and finalization data can be viewed on the [Flare Systems Explorer](https://flare-systems-explorer.flare.network/providers). |
| 81 | + |
| 82 | +::: |
0 commit comments