Network
Launch Date
Consensus
Note
Sepolia
Oct 2021
PoW
Like-for-like representation of Ethereum
Görli
Jan 2019
PoA
Proof-of-Authority
Kiln
Mar 2022
PoS
Post-Merge (for ETH2), shadow fork of the mainnet
Kintsugi
Dec 2021
PoS
DEPRECATED, use Kiln; post-Merge (for ETH2)
Ropsten
Nov 2016
PoW
DEPRECATED, use Sepolia; the Merge to happen on Jun 8, 2022
Rinkeby
Apr 2017
PoA
DEPRECATED, use Görli and Görli Faucet
Kovan
Mar 2017
PoA
DEPRECATED, use Sepolia or Görli
List of active and deprecated Ethereum testnets, including Kintsugi.
Features
Optimistic rollup 
ZK-rollup 
Proof
Uses fraud proofs to prove transaction validity. 
Uses validity (zero-knowledge) proofs to prove transaction validity. 
Capital efficiency
Requires waiting through a 1-week delay (dispute period) before withdrawing funds. 
Users can withdraw funds immediately because validity proofs provide incontrovertible evidence of the authenticity of off-chain transactions. 
Data compression
Publishes full transaction data as calldata to Ethereum Mainnet, which increases rollup costs. 
Doesn't need to publish transaction data on Ethereum because ZK-SNARKs and ZK-STARKs already guarantee the accuracy of the rollup state. 
EVM compatibility
Uses a simulation of the Ethereum Virtual Machine (EVM), which allows it to run arbitrary logic and support smart contracts. 
Doesn't widely support EVM computation, although a few EVM-compatible ZK-rollups have appeared. 
Rollup costs
Reduces costs since it publishes minimal data on Ethereum and doesn't have to post proofs for transactions, except in special circumstances. 
Faces higher overhead from costs involved in generating and verifying proofs for every transaction block. ZK proofs require specialized, expensive hardware to create and have high on-chain verification costs. 
Trust assumptions
Doesn't require a trusted setup. 
Requires a trusted setup to work. 
Liveness requirements
Verifiers are needed to keep tabs on the actual rollup state and the one referenced in the state root to detect fraud. 
Users don't need someone to watch the L2 chain to detect fraud. 
Security properties 
Relies on cryptoeconomic incentives to assure users of rollup security. 
Relies on cryptographic guarantees for security. 
Start building
on Alchemy.
Sign up for free
Start building on Optimism.
Sign up for free
Start building on Arbitrum.
Sign up for free
Start building on Ethereum.
Sign up for free
Start building on Polygon.
Sign up for free
Start building on Starknet.
Sign up for free
Start building on Flow.
Sign up for free
kiln faucet
Get free Kiln ETH.
Start building today
Goerli faucet
Get free Goerli ETH.
Start building today
SEPOLIA FAUCET
Get free Sepolia ETH.
Start Building Today
mumbai faucet
Get free Mumbai Matic.
Start building today
rinkeby faucet
Get free Rinkeby
ETH.
Start building today
Start building on Ethereum.
Get started for free
Start building on Ethereum.
Get started for free
Start building on Flow.
Get started for free
Start building on Polygon.
Get started for free
Start building on Starknet.
Get started for free
Start building on Optimism.
Get started for free
Start building on Solana.
Get started for free
Start building on Solana.
Sign up for beta access
Start building on Solana.
Join the waitlist
Arbitrum logo
Start building on Arbitrum.
Get started for free
Build with Alchemy's
Gas Manager & Bundler APIs
Learn
Solidity at
Alchemy
University
Get started today
Build with Alchemy's
Gas Manager & Bundler APIs
curl 
https://release.solana.com/v1.10.32/solana-install-init-x86_64-pc-windows-msvc.exe 
--output 
C:\solana-install-tmp\solana-install-init.exe 
--create-dirs
Infra
ALTERNATIVE RPC OVERVIEW

How to Setup an Alternative RPC

Add a Backup Node Provider to Prevent Downtime and Stuck Transactions
Last Updated:
August 10, 2022

What is a remote procedure call (RPC)?

A remote procedure call (RPC) is a technique in which software is able to remotely communicate with other systems on the same network to access software or data. In the RPC methodology, a client requests something (e.g. data) and a server fills the request remotely. 

In blockchain, this technology has been adapted in the form of RPC nodes, an API in which blockchain developers can interact with blockchain servers (i.e. nodes). As a result, blockchain developers have the capability to create web3 software like dApps that necessitate RPC nodes to link to the blockchain.

In this article, we’re going to explain the importance of using a blockchain node provider and configuring an alternative RPC endpoint as well as the various reasons why an alternative or backup RPC endpoint is important.

Furthermore, we’ll walk you through the different methods of setting up an alternative RPC endpoint in case you want to integrate alternative RPC endpoints into your current blockchain project.

What is an alternative RPC endpoint?

An alternative remote procedure call (RPC) endpoint is a backup endpoint for when the primary RPC endpoint fails or goes down. The risk of an RPC endpoint failure can mean the failure of 1000s or potentially millions of transactions failing.

As a solution, developers have begun to look for backup plans in the event that the primary RPC endpoint fails. One solution is to set up alternative RPC endpoints which act as a fail safe in the event that a primary RPC endpoint fails to function properly.

An alternate RPC endpoint is similar to a private RPC endpoint which is a dedicated endpoint for an application or wallet, but it is different in it's implementation. An alternate RPC endpoint refers to a backup, whereas a private RPC endpoint simply means a non-public endpoint.

When is a good time to use an alternative RPC endpoint?

Alternative RPC endpoints have a variety of potential use cases for blockchain developers ranging from public RPC endpoints being unreliable, to fixing common transaction problems like inaccurate data. In this section, we’ll tackle some of the common situations in which alternative RPC endpoints may be useful.

1. Your Primary RPC Provider is Down

One of the primary use cases of setting up an alternative RPC endpoint is as a backup option in case the primary RPC is completely down, leading to a loss of connection between blockchain-enabled software and the blockchain. This can lead to the temporary malfunction of blockchain-powered software if an RPC alternative is not immediately available.

For example, in July of 2022, there was a network-wide failure of Polygon's public RPC endpoint hosted by Ankr, and the Chief Information Security Officer (CISO), Mudit Gupta, recommended using an alternative Polygon RPC provider like Alchemy that was not experiencing downtime.

Polygon recommended switching to Alchemy when the public RPC provider, Ankr, was hijacked in July, 2022.

2. Transactions Aren't Going Through Your Primary RPC Provider

Another important application of alternative RPC endpoints is a backup option in case the primary RPC endpoint is congested or slow, leading to delayed transactions. This can be particularly disastrous for dApps which heavily rely on instantaneous communication with the blockchain.

When transactions fail, using an alternative RPC endpoint can be a good backup option to ensure the web3 user experience isn't negatively impacted by unstable nodes.

3. Your Primary RPC Provider's Data is Not Accurate

Because blockchains are globally distributed systems, some node providers return inaccurate data from the blockchain because their network of nodes is out of sync with the public blockchain.

When a node provider's fleet of servers are out of sync, it leads to the users receiving inaccurate data such as inaccurate balances, missing NFTs, and overall a poor user experience.

In this situation, having alternative RPC endpoints integrated in your blockchain application means having the option to easily switch from your primary node provider to a secondary, fallback node provider to avoid returning inaccurate data.

4. Your Primary RPC Provider is Not Scalable

Lastly, alternative RPC endpoints can be useful when your primary RPC endpoint has scalability challenges during times of high traffic such as a token airdrop, high profile NFT drop, or incentivized on-chain activity.

As a result, an alternative RPC endpoint can be used to offset the high traffic in order to avoid the primary RPC endpoint from collapsing under the scalability stress.

3 Ways to Approach Faulty Endpoints

When you're dealing with a faulty RPC endpoint, there are three main ways to try to resolve the situation: retrying the transaction on the same endpoint, cycling transactions between a list of RPC endpoints, or changing your primary RPC provider.

1. Retry Transactions Using the Same RPC Endpoint

One approach to dealing with faulty RPC endpoints is sending additional requests to the same RPC endpoint. In this methodology, developers will repeatedly send requests to the same RPC endpoint using a small delay between each retry. This technique works best when a RPC endpoint may temporarily be down for a small period of time, allowing developers to send requests until that RPC endpoint is back online.

2. Rotate Through a List of RPC Endpoints

Another approach is to connect to one or more alternative RPC endpoints and sending a series of RPC requests between a list of different RPC endpoints. In this technique, developers can avoid the issue of having a singular faulty RPC endpoint ruin their blockchain application by having multiple options to retry transactions with instead of retrying the same transaction on the same endpoint.

In the event of a faulty RPC endpoint, developers that use a list of alternative RPC providers can simply connect to a different endpoint on their approved list. 

How to set up a fallback RPC provider on Ethereum

Because setting up a list of alternative RPC endpoints can be challenging, a simpler option, depending on how your application is built, is to switch out your primary RPC endpoint with a more reliable backup provider such as Alchemy.

In this approach, instead of cycling through multiple different endpoints, or retrying transactions on the same endpoint, you can replace your RPC endpoint URL with a reliable backup entirely.

ALCHEMY SUPERNODE - ETHEREUM NODE API

Scale to any size, without any errors

Alchemy Supernode finally makes it possible to scale blockchain applications without all the headaches. Plus, our legendary support will guide you every step of the way.

Get started for free
Supernode footer
Infra
ALTERNATIVE RPC OVERVIEW

How to Setup an Alternative RPC

Add a Backup Node Provider to Prevent Downtime and Stuck Transactions
Last Updated:
August 10, 2022
Last Updated:
March 14, 2023
Don't miss an update
Sign up for our newsletter to get alpha, key insights, and killer resources.
Thank you! Your submission has been received!
Oops! Something went wrong while submitting the form.

Talk to an Expert

Learn how Alchemy's blockchain developer tools can help your business succeed in web3!
Valid number
Thank you! An Alchemy expert will be in touch with you shortly!
Oops! Something went wrong while submitting the form.

{{building-alchemy-ad}}

What is a remote procedure call (RPC)?

A remote procedure call (RPC) is a technique in which software is able to remotely communicate with other systems on the same network to access software or data. In the RPC methodology, a client requests something (e.g. data) and a server fills the request remotely. 

In blockchain, this technology has been adapted in the form of RPC nodes, an API in which blockchain developers can interact with blockchain servers (i.e. nodes). As a result, blockchain developers have the capability to create web3 software like dApps that necessitate RPC nodes to link to the blockchain.

In this article, we’re going to explain the importance of using a blockchain node provider and configuring an alternative RPC endpoint as well as the various reasons why an alternative or backup RPC endpoint is important.

Furthermore, we’ll walk you through the different methods of setting up an alternative RPC endpoint in case you want to integrate alternative RPC endpoints into your current blockchain project.

What is an alternative RPC endpoint?

An alternative remote procedure call (RPC) endpoint is a backup endpoint for when the primary RPC endpoint fails or goes down. The risk of an RPC endpoint failure can mean the failure of 1000s or potentially millions of transactions failing.

As a solution, developers have begun to look for backup plans in the event that the primary RPC endpoint fails. One solution is to set up alternative RPC endpoints which act as a fail safe in the event that a primary RPC endpoint fails to function properly.

An alternate RPC endpoint is similar to a private RPC endpoint which is a dedicated endpoint for an application or wallet, but it is different in it's implementation. An alternate RPC endpoint refers to a backup, whereas a private RPC endpoint simply means a non-public endpoint.

When is a good time to use an alternative RPC endpoint?

Alternative RPC endpoints have a variety of potential use cases for blockchain developers ranging from public RPC endpoints being unreliable, to fixing common transaction problems like inaccurate data. In this section, we’ll tackle some of the common situations in which alternative RPC endpoints may be useful.

1. Your Primary RPC Provider is Down

One of the primary use cases of setting up an alternative RPC endpoint is as a backup option in case the primary RPC is completely down, leading to a loss of connection between blockchain-enabled software and the blockchain. This can lead to the temporary malfunction of blockchain-powered software if an RPC alternative is not immediately available.

For example, in July of 2022, there was a network-wide failure of Polygon's public RPC endpoint hosted by Ankr, and the Chief Information Security Officer (CISO), Mudit Gupta, recommended using an alternative Polygon RPC provider like Alchemy that was not experiencing downtime.

Polygon recommended switching to Alchemy when the public RPC provider, Ankr, was hijacked in July, 2022.

2. Transactions Aren't Going Through Your Primary RPC Provider

Another important application of alternative RPC endpoints is a backup option in case the primary RPC endpoint is congested or slow, leading to delayed transactions. This can be particularly disastrous for dApps which heavily rely on instantaneous communication with the blockchain.

When transactions fail, using an alternative RPC endpoint can be a good backup option to ensure the web3 user experience isn't negatively impacted by unstable nodes.

3. Your Primary RPC Provider's Data is Not Accurate

Because blockchains are globally distributed systems, some node providers return inaccurate data from the blockchain because their network of nodes is out of sync with the public blockchain.

When a node provider's fleet of servers are out of sync, it leads to the users receiving inaccurate data such as inaccurate balances, missing NFTs, and overall a poor user experience.

In this situation, having alternative RPC endpoints integrated in your blockchain application means having the option to easily switch from your primary node provider to a secondary, fallback node provider to avoid returning inaccurate data.

4. Your Primary RPC Provider is Not Scalable

Lastly, alternative RPC endpoints can be useful when your primary RPC endpoint has scalability challenges during times of high traffic such as a token airdrop, high profile NFT drop, or incentivized on-chain activity.

As a result, an alternative RPC endpoint can be used to offset the high traffic in order to avoid the primary RPC endpoint from collapsing under the scalability stress.

3 Ways to Approach Faulty Endpoints

When you're dealing with a faulty RPC endpoint, there are three main ways to try to resolve the situation: retrying the transaction on the same endpoint, cycling transactions between a list of RPC endpoints, or changing your primary RPC provider.

1. Retry Transactions Using the Same RPC Endpoint

One approach to dealing with faulty RPC endpoints is sending additional requests to the same RPC endpoint. In this methodology, developers will repeatedly send requests to the same RPC endpoint using a small delay between each retry. This technique works best when a RPC endpoint may temporarily be down for a small period of time, allowing developers to send requests until that RPC endpoint is back online.

2. Rotate Through a List of RPC Endpoints

Another approach is to connect to one or more alternative RPC endpoints and sending a series of RPC requests between a list of different RPC endpoints. In this technique, developers can avoid the issue of having a singular faulty RPC endpoint ruin their blockchain application by having multiple options to retry transactions with instead of retrying the same transaction on the same endpoint.

In the event of a faulty RPC endpoint, developers that use a list of alternative RPC providers can simply connect to a different endpoint on their approved list. 

How to set up a fallback RPC provider on Ethereum

Because setting up a list of alternative RPC endpoints can be challenging, a simpler option, depending on how your application is built, is to switch out your primary RPC endpoint with a more reliable backup provider such as Alchemy.

In this approach, instead of cycling through multiple different endpoints, or retrying transactions on the same endpoint, you can replace your RPC endpoint URL with a reliable backup entirely.

What is a remote procedure call (RPC)?

A remote procedure call (RPC) is a technique in which software is able to remotely communicate with other systems on the same network to access software or data. In the RPC methodology, a client requests something (e.g. data) and a server fills the request remotely. 

In blockchain, this technology has been adapted in the form of RPC nodes, an API in which blockchain developers can interact with blockchain servers (i.e. nodes). As a result, blockchain developers have the capability to create web3 software like dApps that necessitate RPC nodes to link to the blockchain.

In this article, we’re going to explain the importance of using a blockchain node provider and configuring an alternative RPC endpoint as well as the various reasons why an alternative or backup RPC endpoint is important.

Furthermore, we’ll walk you through the different methods of setting up an alternative RPC endpoint in case you want to integrate alternative RPC endpoints into your current blockchain project.

What is an alternative RPC endpoint?

An alternative remote procedure call (RPC) endpoint is a backup endpoint for when the primary RPC endpoint fails or goes down. The risk of an RPC endpoint failure can mean the failure of 1000s or potentially millions of transactions failing.

As a solution, developers have begun to look for backup plans in the event that the primary RPC endpoint fails. One solution is to set up alternative RPC endpoints which act as a fail safe in the event that a primary RPC endpoint fails to function properly.

An alternate RPC endpoint is similar to a private RPC endpoint which is a dedicated endpoint for an application or wallet, but it is different in it's implementation. An alternate RPC endpoint refers to a backup, whereas a private RPC endpoint simply means a non-public endpoint.

When is a good time to use an alternative RPC endpoint?

Alternative RPC endpoints have a variety of potential use cases for blockchain developers ranging from public RPC endpoints being unreliable, to fixing common transaction problems like inaccurate data. In this section, we’ll tackle some of the common situations in which alternative RPC endpoints may be useful.

1. Your Primary RPC Provider is Down

One of the primary use cases of setting up an alternative RPC endpoint is as a backup option in case the primary RPC is completely down, leading to a loss of connection between blockchain-enabled software and the blockchain. This can lead to the temporary malfunction of blockchain-powered software if an RPC alternative is not immediately available.

For example, in July of 2022, there was a network-wide failure of Polygon's public RPC endpoint hosted by Ankr, and the Chief Information Security Officer (CISO), Mudit Gupta, recommended using an alternative Polygon RPC provider like Alchemy that was not experiencing downtime.

Polygon recommended switching to Alchemy when the public RPC provider, Ankr, was hijacked in July, 2022.

2. Transactions Aren't Going Through Your Primary RPC Provider

Another important application of alternative RPC endpoints is a backup option in case the primary RPC endpoint is congested or slow, leading to delayed transactions. This can be particularly disastrous for dApps which heavily rely on instantaneous communication with the blockchain.

When transactions fail, using an alternative RPC endpoint can be a good backup option to ensure the web3 user experience isn't negatively impacted by unstable nodes.

3. Your Primary RPC Provider's Data is Not Accurate

Because blockchains are globally distributed systems, some node providers return inaccurate data from the blockchain because their network of nodes is out of sync with the public blockchain.

When a node provider's fleet of servers are out of sync, it leads to the users receiving inaccurate data such as inaccurate balances, missing NFTs, and overall a poor user experience.

In this situation, having alternative RPC endpoints integrated in your blockchain application means having the option to easily switch from your primary node provider to a secondary, fallback node provider to avoid returning inaccurate data.

4. Your Primary RPC Provider is Not Scalable

Lastly, alternative RPC endpoints can be useful when your primary RPC endpoint has scalability challenges during times of high traffic such as a token airdrop, high profile NFT drop, or incentivized on-chain activity.

As a result, an alternative RPC endpoint can be used to offset the high traffic in order to avoid the primary RPC endpoint from collapsing under the scalability stress.

3 Ways to Approach Faulty Endpoints

When you're dealing with a faulty RPC endpoint, there are three main ways to try to resolve the situation: retrying the transaction on the same endpoint, cycling transactions between a list of RPC endpoints, or changing your primary RPC provider.

1. Retry Transactions Using the Same RPC Endpoint

One approach to dealing with faulty RPC endpoints is sending additional requests to the same RPC endpoint. In this methodology, developers will repeatedly send requests to the same RPC endpoint using a small delay between each retry. This technique works best when a RPC endpoint may temporarily be down for a small period of time, allowing developers to send requests until that RPC endpoint is back online.

2. Rotate Through a List of RPC Endpoints

Another approach is to connect to one or more alternative RPC endpoints and sending a series of RPC requests between a list of different RPC endpoints. In this technique, developers can avoid the issue of having a singular faulty RPC endpoint ruin their blockchain application by having multiple options to retry transactions with instead of retrying the same transaction on the same endpoint.

In the event of a faulty RPC endpoint, developers that use a list of alternative RPC providers can simply connect to a different endpoint on their approved list. 

How to set up a fallback RPC provider on Ethereum

Because setting up a list of alternative RPC endpoints can be challenging, a simpler option, depending on how your application is built, is to switch out your primary RPC endpoint with a more reliable backup provider such as Alchemy.

In this approach, instead of cycling through multiple different endpoints, or retrying transactions on the same endpoint, you can replace your RPC endpoint URL with a reliable backup entirely.

{{building-alchemy-ad}}

Contact Us

Talk to an expert at Alchemy to answer all of your product questions.
Valid number
Thank you! Your submission has been received!
Oops! Something went wrong while submitting the form.

Build blockchain magic with Alchemy

Alchemy combines the most powerful web3 developer products and tools with resources, community and legendary support.

Get started for free