Hector Bardales
    • Create new note
    • Create a note from template
      • Sharing URL Link copied
      • /edit
      • View mode
        • Edit mode
        • View mode
        • Book mode
        • Slide mode
        Edit mode View mode Book mode Slide mode
      • Customize slides
      • Note Permission
      • Read
        • Only me
        • Signed-in users
        • Everyone
        Only me Signed-in users Everyone
      • Write
        • Only me
        • Signed-in users
        • Everyone
        Only me Signed-in users Everyone
      • Engagement control Commenting, Suggest edit, Emoji Reply
      • Invitee
    • Publish Note

      Share your work with the world Congratulations! 🎉 Your note is out in the world Publish Note

      Your note will be visible on your profile and discoverable by anyone.
      Your note is now live.
      This note is visible on your profile and discoverable online.
      Everyone on the web can find and read all notes of this public team.
      See published notes
      Unpublish note
      Please check the box to agree to the Community Guidelines.
      View profile
    • Commenting
      Permission
      Disabled Forbidden Owners Signed-in users Everyone
    • Enable
    • Permission
      • Forbidden
      • Owners
      • Signed-in users
      • Everyone
    • Suggest edit
      Permission
      Disabled Forbidden Owners Signed-in users Everyone
    • Enable
    • Permission
      • Forbidden
      • Owners
      • Signed-in users
    • Emoji Reply
    • Enable
    • Versions and GitHub Sync
    • Note settings
    • Engagement control
    • Transfer ownership
    • Delete this note
    • Save as template
    • Insert from template
    • Import from
      • Dropbox
      • Google Drive
      • Gist
      • Clipboard
    • Export to
      • Dropbox
      • Google Drive
      • Gist
    • Download
      • Markdown
      • HTML
      • Raw HTML
Menu Note settings Sharing URL Create Help
Create Create new note Create a note from template
Menu
Options
Versions and GitHub Sync Engagement control Transfer ownership Delete this note
Import from
Dropbox Google Drive Gist Clipboard
Export to
Dropbox Google Drive Gist
Download
Markdown HTML Raw HTML
Back
Sharing URL Link copied
/edit
View mode
  • Edit mode
  • View mode
  • Book mode
  • Slide mode
Edit mode View mode Book mode Slide mode
Customize slides
Note Permission
Read
Only me
  • Only me
  • Signed-in users
  • Everyone
Only me Signed-in users Everyone
Write
Only me
  • Only me
  • Signed-in users
  • Everyone
Only me Signed-in users Everyone
Engagement control Commenting, Suggest edit, Emoji Reply
Invitee
Publish Note

Share your work with the world Congratulations! 🎉 Your note is out in the world Publish Note

Your note will be visible on your profile and discoverable by anyone.
Your note is now live.
This note is visible on your profile and discoverable online.
Everyone on the web can find and read all notes of this public team.
See published notes
Unpublish note
Please check the box to agree to the Community Guidelines.
View profile
Engagement control
Commenting
Permission
Disabled Forbidden Owners Signed-in users Everyone
Enable
Permission
  • Forbidden
  • Owners
  • Signed-in users
  • Everyone
Suggest edit
Permission
Disabled Forbidden Owners Signed-in users Everyone
Enable
Permission
  • Forbidden
  • Owners
  • Signed-in users
Emoji Reply
Enable
Import from Dropbox Google Drive Gist Clipboard
   owned this note    owned this note      
Published Linked with GitHub
Subscribed
  • Any changes
    Be notified of any changes
  • Mention me
    Be notified of mention me
  • Unsubscribe
Subscribe
# RPC Nodes ## Intro Solana makes use of independent nodes which have the responsibility of working to confirm programs and outputs of programs on one of the three Solana clusters, Devnet, Testnet or Mainnet Beta. A cluster is made up of a set of validators that work to confirm transactions. These are owned and operated by individuals. These nodes are also responsible for storing data and transaction history which is shared amongst the nodes. A node can become a validator node if it is being used to vote on valid blocks and if SOL is delegated to the validator identity it can become a leader node. [This](https://solana.com/validators) is the link to the information on how to become a validator. Not all nodes can become leader nodes or vote to confirm blocks. They still serve the other functionalities of validator nodes, but since they cannot vote they are primarily used to respond to requests on the blockchain. These are RPC nodes. RPC stands for remote procedure call, and these RPC nodes are used to send transactions through the blockchain. Solana maintains three public API nodes, one for each cluster which are Devnet, Mainnet Beta, and Testnet. These API nodes are what allow users to connect to the cluster. To connect to Devnet users can use: ``` https://api.devnet.solana.com ``` This is the node for Devnet, and it is rate limited. In the Mainnet Beta cluster, many developers choose to use their own private RPC node to take advantage of higher rate limits not avalible to them from Solana's public API nodes. ![Mainnet-beta rate limit information](https://i.imgur.com/1GmCbcu.png =400x) For Mainnet Beta in the picture above, from the [Solana Docs](https://docs.solana.com/cluster/rpc-endpoints), we can view the rate limits from using the mainnet api node. <!-- The term RPC stands for remote procedure call. RPCs are similar to the enpdoints that Solana provides to connect to Devnet, Mainnet-beta, and Testnet for which you can find more information [here](https://docs.solana.com/cluster/rpc-endpoints). These are all public endpoints. In the previous link, you you will see the following information regarding the rate limits for Mainnet-beta: Why would you want to get a private RPC? Due to the high volume of transactions, it is highly recommended to work with your own private RPC otherwise you risk being rate limited. Using one will help increase speed of several commands. Some of its uses include uploading assets, minting NFTs, updating metdata, requesting tokens in an account, and more. When choosing to create your private RPC, you will be prompted to choose between one of the three networks in Solana. --> We will proceed to define two types of RPC nodes and then present you with several options. We recommend you choose one based on your project's needs. ## Archive and Nonarchive Nodes We can divide nodes into two different categories. The first one we will look at are the **Archive nodes**. These can store information of previous blocks. In the case of these archival nodes, we can leverage having access to all previous blocks in several ways. Some of the advantages include being able to view an address's balance history and view any state in the history. Due to the high system requirements of running a full historical node, having private nodes available with this feature is highly beneficial. Unlike archival nodes, a non-archive node, or just a regular node, will only have access to some of the previous blocks, which is upwards of 100 blocks. We previously mentioned that running an archival node has intensive requirements, but even a non-archive node can become hard to manage. For this reason, users often choose a private RPC provider. Most use cases involving private RPCs in Solana usually revolve around Mainnet-beta uses since this involves real SOL tokens, and there is a higher chance of being rate limited. ## RPCs Available The following section includes multiple RPC providers. :::info This list is in alphabetical order. Please choose the RPC provider that best suits your project's needs. If we are missing a provider, let us know in our discord or submit a PR. ::: ### Alchemy Alchemy offers a free plan with a rate limit of 12 million transactions per month. Their plan is to keep it free for the first 500 people who sign up to use it. Once you sign up, you will have access to the private RPC they provide. ![Alchemy Dashboard](https://i.imgur.com/v0AZlqf.png =450x) From this image you will notice they have a request counter which is setup to help you confirm your RPC is working. | RPC Info | Free | 49 USD/month | Custom | | -------- | -------- | -------- | -------- | | Transactions/month | 12 million | 16 million | Custom | | Archival Node | - |- | Yes | ### Ankr [Ankr](https://www.ankr.com/rpc/solana) provides a free endpoint without any account creation requirement. This allows you to connect to both devent and mainnet beta. | RPC Info | Free | Paid | | -------- | -------- | -------- | | Requests/sec | 500 | 4000 | | Full Archival Node | Yes | Yes | Their dashboard also allows you to test the RPC through several methods such as using the public address of your wallet which you can get from your terminal with: ```ts= solana address // output DZCjxxxxxxxxx ``` And input it into their tester with `getbalance` option chosen for the following result which includes the token balance and time taken to respond: ![Ankr RPC tester](https://i.imgur.com/HCcFoym.png =400x) ### Blockdaemon [Blockdaemon](https://blockdaemon.com/documentation/guides/solana/solana-nodes/) offers nodes for the three Solana networks and also provide the option of having an archival node with full history or history from past weeks. They have both a free option and a custom option. ![Blockdaemon RPC options](https://i.imgur.com/EJlxV4Q.png =400x) | RPC Info | Free | Custom | | -------- | -------- | -------- | | Calls/month | - | 1+ million | | Archival Node | - | Yes | ### Figment [Figment](https://www.figment.io/datahub/solana) has a free option of 3 million requests per month and requires filling in an application to request your private RPC. They also offer a paid plan with 15 million requests per month and for higher options you can contact their team. | RPC Info | Free | 50 USD/month | Custom | | -------- | -------- | -------- | -------- | | Requests/month | 3 million | 15 million | Custom| | Archival Node | - | - | - | ### GenesysGo GenesysGo has information regarding the setup for your RPC in their [docs](https://docs.genesysgo.com/shadow/). Their free RPC has a limit of 1 request per second. They also offer a premium service that has no rate limiting. After going through the documentation, you can reserve an account in their [portal](https://portal.genesysgo.net/premium/reserve) and proceed to choose your plan. | RPC Info | Free | 325 USDC/month | 795 USDC/month | | -------- | -------- | -------- | -------- | | Requests/sec | 1 | 100 + 100 extra | 200 + 200 extra | | Archival Node | - | - | - | ### QuickNode Another provider is [QuickNode](https://www.quicknode.com?tap_a=67226-09396e&tap_s=2286372-341e1b&utm_source=affiliate&utm_campaign=generic&utm_content=affiliate_landing_page&utm_medium=generic). To begin using it, you will create an account and go to your dashboard. Once you're there, you'll create an endpoint and choose the appropriate blockchain. We will click on Solana. You will then have the option to choose between one of the three networks that Solana has to offer. ![Solana mainnet beta QuickNode RPC](https://i.imgur.com/iAD5sUi.png =400x) This is followed by optional add-ons and finally you get to choose a plan. Currently, QuickNode offers a **Discover** option for free and paid options if you require higher rate limits along with other features such as additional endpoints. ![QuickNode plan options](https://i.imgur.com/HGvgNOu.png =350x) | RPC Info | Free | 49 USD/month | 299 USD/month | | -------- | -------- | -------- | -------- | | Requests/sec | 25 | 100 | 600 | | Archival Node | Yes | Yes | Yes | ### Runnode From the [official docs](https://docs.runnode.com/runnode/tutorials/1.-how-to-sign-up-for-an-rpc-endpoint) from Runnode we can find how to setup a private RPC and the plans that they offer. | RPC Info | Free | 50 USD/month | 200 USD/month | | -------- | -------- | -------- | -------- | | Requests/sec | 25 | 100 | 600 | | Archival Node | - | - | - | ![Runnode Pricing Plans](https://i.imgur.com/zO4kjqG.jpg =400x) ### Syndica [Syndica](https://www.figment.io/datahub/solana) offers three plans. Their free option has a limit of 1 thousand requests per month. | RPC Info | Free | 75 USD/month | 499 USD/month | | -------- | -------- | -------- | -------- | | Requests/month | 1000 | 1 million | Unlimited | | Archival Node | - | - | - | ![Syndica Node Plans](https://i.imgur.com/42O2GVG.png =400x) ### Triton [Triton](https://triton.one/#/pricing) starts by offering a paid plan at 500 USD per month which provides up to 50 requests per second. They also offer higher rate limits at other price points. ![Triton Node Options](https://i.imgur.com/qaUayM6.png =400x) | RPC Info | 500 USD/month | 1000 USD/month | 1500 USD/month | | -------- | -------- | -------- | -------- | | Requests/sec | 25 | 100 | 150 | | Archival Node | - | - | - | ## Additional Information If you have any questions or would like to further understand this topic, you are welcome to ask questions in the [Metaplex Discord]() group.

Import from clipboard

Paste your markdown or webpage here...

Advanced permission required

Your current role can only read. Ask the system administrator to acquire write and comment permission.

This team is disabled

Sorry, this team is disabled. You can't edit this note.

This note is locked

Sorry, only owner can edit this note.

Reach the limit

Sorry, you've reached the max length this note can be.
Please reduce the content or divide it to more notes, thank you!

Import from Gist

Import from Snippet

or

Export to Snippet

Are you sure?

Do you really want to delete this note?
All users will lose their connection.

Create a note from template

Create a note from template

Oops...
This template has been removed or transferred.
Upgrade
All
  • All
  • Team
No template.

Create a template

Upgrade

Delete template

Do you really want to delete this template?
Turn this template into a regular note and keep its content, versions, and comments.

This page need refresh

You have an incompatible client version.
Refresh to update.
New version available!
See releases notes here
Refresh to enjoy new features.
Your user state has changed.
Refresh to load new user state.

Sign in

Forgot password

or

By clicking below, you agree to our terms of service.

Sign in via Facebook Sign in via Twitter Sign in via GitHub Sign in via Dropbox Sign in with Wallet
Wallet ( )
Connect another wallet

New to HackMD? Sign up

Help

  • English
  • 中文
  • Français
  • Deutsch
  • 日本語
  • Español
  • Català
  • Ελληνικά
  • Português
  • italiano
  • Türkçe
  • Русский
  • Nederlands
  • hrvatski jezik
  • język polski
  • Українська
  • हिन्दी
  • svenska
  • Esperanto
  • dansk

Documents

Help & Tutorial

How to use Book mode

Slide Example

API Docs

Edit in VSCode

Install browser extension

Contacts

Feedback

Discord

Send us email

Resources

Releases

Pricing

Blog

Policy

Terms

Privacy

Cheatsheet

Syntax Example Reference
# Header Header 基本排版
- Unordered List
  • Unordered List
1. Ordered List
  1. Ordered List
- [ ] Todo List
  • Todo List
> Blockquote
Blockquote
**Bold font** Bold font
*Italics font* Italics font
~~Strikethrough~~ Strikethrough
19^th^ 19th
H~2~O H2O
++Inserted text++ Inserted text
==Marked text== Marked text
[link text](https:// "title") Link
![image alt](https:// "title") Image
`Code` Code 在筆記中貼入程式碼
```javascript
var i = 0;
```
var i = 0;
:smile: :smile: Emoji list
{%youtube youtube_id %} Externals
$L^aT_eX$ LaTeX
:::info
This is a alert area.
:::

This is a alert area.

Versions and GitHub Sync
Get Full History Access

  • Edit version name
  • Delete

revision author avatar     named on  

More Less

Note content is identical to the latest version.
Compare
    Choose a version
    No search result
    Version not found
Sign in to link this note to GitHub
Learn more
This note is not linked with GitHub
 

Feedback

Submission failed, please try again

Thanks for your support.

On a scale of 0-10, how likely is it that you would recommend HackMD to your friends, family or business associates?

Please give us some advice and help us improve HackMD.

 

Thanks for your feedback

Remove version name

Do you want to remove this version name and description?

Transfer ownership

Transfer to
    Warning: is a public team. If you transfer note to this team, everyone on the web can find and read this note.

      Link with GitHub

      Please authorize HackMD on GitHub
      • Please sign in to GitHub and install the HackMD app on your GitHub repo.
      • HackMD links with GitHub through a GitHub App. You can choose which repo to install our App.
      Learn more  Sign in to GitHub

      Push the note to GitHub Push to GitHub Pull a file from GitHub

        Authorize again
       

      Choose which file to push to

      Select repo
      Refresh Authorize more repos
      Select branch
      Select file
      Select branch
      Choose version(s) to push
      • Save a new version and push
      • Choose from existing versions
      Include title and tags
      Available push count

      Pull from GitHub

       
      File from GitHub
      File from HackMD

      GitHub Link Settings

      File linked

      Linked by
      File path
      Last synced branch
      Available push count

      Danger Zone

      Unlink
      You will no longer receive notification when GitHub file changes after unlink.

      Syncing

      Push failed

      Push successfully