-
Notifications
You must be signed in to change notification settings - Fork 49
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* add doc for connect rpc node * RPC guide review --------- Co-authored-by: James Bayly <james@bayly.xyz>
- Loading branch information
1 parent
642113b
commit 2528b1e
Showing
6 changed files
with
123 additions
and
117 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
52 changes: 52 additions & 0 deletions
52
docs/subquery_network/node_operators/rpc_providers/connect-node.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
# Connect your an RPC Endpoint | ||
|
||
Node Operators can run either data indexing projects or RPC endpoints for the network (or both). If you instead want to sync a data indexing project, please follow the instructions [here](../indexers/index-project.md). | ||
|
||
:::info Connect any RPC | ||
The SubQuery Network does not control how your run the underlying RPC endpoint to the Network, only that you connect and announce a standard EVM endpoint that is able to consume public queries. | ||
|
||
This means you can run existing RPC endpoint used for other purposes (includng other decentralised RPC networks) to the SubQuery Network. | ||
::: | ||
|
||
## Prerequisites | ||
|
||
This guide assumes you are already a running an RPC node that is publicly available on a known IP address/port. | ||
|
||
For example with Etheruem, it can any client (geth or erigon etc), and it is listening on a known address and port (in the examples below our node is listening on `192.168.1.100:8545`). | ||
|
||
Please consult the relevant guides for how to run an RPC node on each network, for example this is the guide for [Geth on Ethereum](https://geth.ethereum.org/docs/getting-started), and [Base](https://docs.base.org/tutorials/run-a-base-node/). | ||
|
||
## 1. Add Project | ||
|
||
Inside your Node Operator Admin App (usually this is `http://localhost:8000/` depending on your installation), the Projects tab appears at the top of the page. This enables Node Operators to add projects of their choice to their Node Operator profile. | ||
|
||
Before clicking **`Add Project`,** you will need to obtain the project's deployment ID. If the project has already been deployed and synced by other Node Operators, you will be able to obtain the project’s Deployment ID from the [SubQuery Explorer](https://app.subquery.network/explorer/home). | ||
|
||
Enter the project deployment ID when adding the new project, in our case, it is `QmNa36oZ4zRS1i2wQhiFznU5DjEuNP3wopV6U3VcUWMUKu`. | ||
|
||
![Add a rpc project](/assets/img/network/rpc_project_add.png) | ||
|
||
## 2. Connect your local RPC node | ||
|
||
Input the public endpoint of your local node, then backend will run some verification on the endpoint to check whether it matches the manifest of the project, e.g chainId, node type, localness. | ||
|
||
Be aware that coordinator service runs in docker, so localhost doesn't work like it runs outside of docker. You should use the internal ip address to connect to the node, or `host.docker.internal` which points to the host localhost. | ||
|
||
![Connect local node](/assets/img/network/rpc_connect_node.png) | ||
|
||
## 3. Go Online | ||
|
||
Click `Go Online`, which will then trigger your wallet to sign a transaction, then your RPC is announced online and is available to query. | ||
|
||
## 4. Allocate SQT to the Project and Monitor | ||
|
||
To earn Network Allocation Rewards for your project, you should immediately allocate SQT to your new project. [Please follow the guide here](../stake.md#allocating-stake). | ||
|
||
On the Network app, the Node Operator can check the era information and confirm that the reward collection is up-to-date. The service log component provides the logs for the coordinator service. | ||
|
||
Monitor your eligibility for rewards from the Admin Portal, if your node is out of sync or not reachable, you may not receive rewards. | ||
|
||
Congratulations! You have successfully synced your SubQuery RPC Endpoint. | ||
|
||
- If you encounter any trouble while running the the Node Operator service, please visit [Troubleshooting](../setup/troubleshooting.md)) and find all your solutions in one place. | ||
- Find the list of [FAQs](../setup/faq.md), and resolve your query. |
Oops, something went wrong.