Help translate this page

๐ŸŒ

Youโ€™re viewing this page in English because we havenโ€™t translated it yet. Help us translate this content.

Development of smart contracts and creating tokens on Ethereum, buying and selling ETH, other consulting.
This page is incomplete and we'd love your help. Edit this page and add anything that you think might be useful to others.

Nodes as a service

Ryan Cordell
Last edit: @ryancreatescopy, January 26, 2021
Edit page

Introduction

Running your own Ethereum node can be challenging, especially when getting started or while scaling fast. There are a number of services that run optimized node infrastructures for you, so you can focus on developing your application or product instead. We'll explain how node services work, the pros and cons for using them and list providers if you are interested in getting started.

Prerequisites

If you don't already have an understanding of what nodes and clients are, check out Nodes and clients.

How do node services work?

Node service providers run distributed node clients behind the scenes for you, so you don't have to.

These services typically provide an API key that you can use to write to and read from the blockchain. They often including access to Ethereum testnets in addition to the mainnet.

Some services offer you your own dedicated node that they manage for you, while others use load balancers to distribute activity across nodes.

Almost all node services are extremely easy to integrate with, involving one line changes in your code to swap out your self hosted node, or even switch between the services themselves.

Often times node services will run a variety of node clients and types, allowing you to access full and archive nodes in addition to client specific methods in one API.

It's important to note that node services do not and should not store your private keys or information.

What are the benefits of using a node service?

The main benefit for using a node service is not having to spend engineering time maintaining and managing nodes yourself. This allows you to focus on building your product rather than having to worry about infrastructure maintenance.

Running your own nodes can be very expensive from storage to bandwidth to valuable engineering time. Things like spinning up more nodes when scaling, upgrading nodes to the latest versions, and ensuring state consistency, can detract from building and spending resources on your desired web3 product.

What are the cons of using a Node Service?

By using a node service you are centralizing the infrastructure aspect of your product. For this reason, projects that hold decentralization to the upmost importance might prefer self-hosting nodes rather than outsourcing to a 3rd party.

Read more about the benefits of running your own node.

Here is a list of some of the most popular Ethereum node providers, feel free to add any that are missing! Each node service offers different benefits and features in addition to free or paid tiers, you should investigate which ones best suit your needs prior to making a decision.

  • Alchemy
    • Docs
    • Features
      • Free tier option
      • Scale as you go
      • Free archival data
      • Analytics tools
      • Dashboard
      • Unique API endpoints
      • Webhooks
      • Direct support
  • Infura
    • Docs
    • Features
      • Free tier option
      • Scale as you go
      • Paid archival data
      • Direct Support
      • Dashboard
  • QuikNode
    • Features
      • 7 day free trial
      • Varied support
      • Webhooks
      • Dashboard
      • Analytics
  • Rivet
    • Docs
    • Features
      • Free tier option
      • Scale as you go
  • BlockDaemon
    • Docs
    • Benefits
      • Dashboard
      • Per node basis
      • Analytics

Further reading

๐Ÿ‘ˆ
PreviousRun a node