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
Solana
SOLANA DEVNET OVERVIEW

Everything You Need to Know About Solana's Devnet

What it is, How it Works, and How to Start Deploying Smart Contracts to the Solana Devnet
Last Updated:
July 21, 2022

Solana’s fast transaction speeds, low transaction costs, and developer-friendly environment make it an excellent chain for both dApp developers and users. If you're looking to start building on Solana, this article explains Solana's Devnet, an essential developer resource for testing smart contracts on a test network that mimics Solana's mainnet.

What is a cluster?

A cluster is a set of nodes which are responsible for evaluating the validity of incoming transactions to be added to the blockchain. 

In each cluster one node is designated the ‘leader’ (the leader changes roughly every two days), which suggests which transactions should be added to the blockchain’s ledger and signs the suggested transactions with their signature. The other nodes within the cluster are ‘validators’, who double check whether the transactions are valid.

What is the Solana Devnet?

The Solana Devnet is an environment that replicates the actual Solana network (i.e. Mainnet) environment, but uses test SOL tokens to complete transactions so web3 developers don’t need to spend actual money to test their smart contracts.

The Solana Devnet is a safe playground for developers, users, and validators to test applications at no risk.

What is a Solana Devnet faucet?

To prevent network congestion from malicious actors while keeping the network free to use, the Solana Devnet uses a different token than mainnet. 

Devnet tokens can be acquired either through the Solana Devnet faucet or from the following airdrop command you can enter in the Command Line Interface (CLI).

solana airdrop 2 <RECIPIENT_ACCOUNT_ADDRESS> --url https://api.devnet.solana.com

What is the Solana Devnet Explorer?

The Solana Devnet explorer allows web3 developers to search for any block, transaction, program, or token on the devnet. This tool helps developers get information about their transactions, debug transactions that aren’t working properly, and explore program details.

What is the difference between Solana’s testnet and devnet?

The difference between Solana’s Devnet and the Solana Testnet is that the testnet is a network meant to be used by Solana’s core developer team to test planned updates to the main network while Devnet is a testing environment for the general public to use.

How to Connect to Solana's Devnet

Before connecting to Solana's Devnet, it's important to make sure you install the essential Solana developer tools in your local environment. If you're starting from scratch, you can install the basic tools using the following instructions.

1. Install the Solana Tool Suite

First, will need the Solana Tool Suite to connect to the Devnet. How you install the tool suite will depend on whether or not you're running a MacOS, Linux, or Windows operating system. Here are instructions for each development environment.

Mac Users

If your operating system is MacOS or Linux, open your favorite terminal application and copy-paste the below command.

sh -c "$(curl -sSfL https://release.solana.com/v1.10.31/install)"

The version number can be replaced with any version which you wish to install

Windows Users

If Windows is your operating system, copy paste the below into Command Prompt instead.

curl https://release.solana.com/v1.10.31/solana-install-init-x86_64-pc-windows-msvc.exe --output C:\solana-install-tmp\solana-install-init.exe --create-dirs

Run this command to install the Tool Suite:

C:\solana-install-tmp\solana-install-init.exe v1.10.31

2. Check Your Version of Solana

Afterwards for all operating systems, run this to double check you have the desired version of Solana.

solana --version

3. Connect to the Devnet Cluster

Lastly, execute this command to connect to the Devnet cluster, and you will have connected to Devnet.

solana config set --url https://api.devnet.solana.com

How to Deploy a Solana Smart Contract to Devnet

In this tutorial we’re going to deploy the HelloWorld program that the Solana team developed. It creates a count for the account it is called on which represents the number of times that this program has been called on this account historically.

For example, the first execution will increase the count to 1 but return a count of 0. The second will return a count of 1 and increase it to 2. 

Because we have already installed the Solana Tool Suite, we just need to install the following dependencies:

  1. NodeJS
  2. Rust
  3. Git

Once the dependencies are installed, we'll clone the HelloWorld repo and follow the required steps to deploy it on Solana's Devnet.

1. Install NodeJS

To install NodeJS (you’ll need v14 or higher for this tutorial) - select the installer that matches your operating system.

After following the steps shown from running the installer NodeJS will automatically execute the node commands below in your terminal.

2. Install Rust

To install Rust, run this command if your operating system is MacOS, Linux, or other Unix-like operating systems, and your command line is ready.

curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh

On Windows, download and install rustup-init.exe.

3. Install Git

To install Git on Windows, select an installer to match your Windows version and follow the instructions.

To install Git on MacOS and Linux, first install Homebrew with the following command in your terminal of choice. 

/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"

Then run the following command in the terminal to install Git with Homebrew.

$ brew install git

4. Clone the Solana HelloWorld Repo

With the dependencies installed, next, clone the HelloWorld repository in your environment.

git clone https://github.com/solana-labs/example-helloworld
cd example-helloworld

5. Connect to Devnet

Double check if you are connected to the Devnet cluster by running the following command. 

solana config get

If you are not connected to the Devnet cluster, connect to the Devnet using this command:

solana config set --url https://api.devnet.solana.com

6. Generate a Keypair

Now, generate a keypair, which consists of a public key (your wallet address) and a private seed phrase. This keypair allows you to create an account on-chain and interact with Solana programs.

solana-keygen new --force

7. Get Devnet SOL Tokens

You’re going to need Devnet SOL tokens in order to run our program on the Devnet. You can request tokens through the following command. 

solana airdrop 2 <RECIPIENT_ACCOUNT_ADDRESS> --url https://api.devnet.solana.com

8. Build and Deploy it to Devnet

Now, build the program and deploy it to Devnet.

npm run build:program-rust

At the bottom of the output that the console provides from building the program should be the command for deploying the program.

If you can’t find it, copy paste the command below to deploy the program to Solana’s Devnet.

solana program deploy dist/program/helloworld.so

Start Building on Solana

Using the Solana Devnet, web3 developers can build dApps on one of the highest performance layer 1 blockchains in the world. To start building, signup for access to Alchemy's Solana API.

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
Solana
SOLANA DEVNET OVERVIEW

Everything You Need to Know About Solana's Devnet

What it is, How it Works, and How to Start Deploying Smart Contracts to the Solana Devnet
Last Updated:
July 21, 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.

{{get-started-solana}}

Table of Contents

Solana’s fast transaction speeds, low transaction costs, and developer-friendly environment make it an excellent chain for both dApp developers and users. If you're looking to start building on Solana, this article explains Solana's Devnet, an essential developer resource for testing smart contracts on a test network that mimics Solana's mainnet.

What is a cluster?

A cluster is a set of nodes which are responsible for evaluating the validity of incoming transactions to be added to the blockchain. 

In each cluster one node is designated the ‘leader’ (the leader changes roughly every two days), which suggests which transactions should be added to the blockchain’s ledger and signs the suggested transactions with their signature. The other nodes within the cluster are ‘validators’, who double check whether the transactions are valid.

What is the Solana Devnet?

The Solana Devnet is an environment that replicates the actual Solana network (i.e. Mainnet) environment, but uses test SOL tokens to complete transactions so web3 developers don’t need to spend actual money to test their smart contracts.

The Solana Devnet is a safe playground for developers, users, and validators to test applications at no risk.

What is a Solana Devnet faucet?

To prevent network congestion from malicious actors while keeping the network free to use, the Solana Devnet uses a different token than mainnet. 

Devnet tokens can be acquired either through the Solana Devnet faucet or from the following airdrop command you can enter in the Command Line Interface (CLI).

solana airdrop 2 <RECIPIENT_ACCOUNT_ADDRESS> --url https://api.devnet.solana.com

What is the Solana Devnet Explorer?

The Solana Devnet explorer allows web3 developers to search for any block, transaction, program, or token on the devnet. This tool helps developers get information about their transactions, debug transactions that aren’t working properly, and explore program details.

What is the difference between Solana’s testnet and devnet?

The difference between Solana’s Devnet and the Solana Testnet is that the testnet is a network meant to be used by Solana’s core developer team to test planned updates to the main network while Devnet is a testing environment for the general public to use.

How to Connect to Solana's Devnet

Before connecting to Solana's Devnet, it's important to make sure you install the essential Solana developer tools in your local environment. If you're starting from scratch, you can install the basic tools using the following instructions.

1. Install the Solana Tool Suite

First, will need the Solana Tool Suite to connect to the Devnet. How you install the tool suite will depend on whether or not you're running a MacOS, Linux, or Windows operating system. Here are instructions for each development environment.

Mac Users

If your operating system is MacOS or Linux, open your favorite terminal application and copy-paste the below command.

sh -c "$(curl -sSfL https://release.solana.com/v1.10.31/install)"

The version number can be replaced with any version which you wish to install

Windows Users

If Windows is your operating system, copy paste the below into Command Prompt instead.

curl https://release.solana.com/v1.10.31/solana-install-init-x86_64-pc-windows-msvc.exe --output C:\solana-install-tmp\solana-install-init.exe --create-dirs

Run this command to install the Tool Suite:

C:\solana-install-tmp\solana-install-init.exe v1.10.31

2. Check Your Version of Solana

Afterwards for all operating systems, run this to double check you have the desired version of Solana.

solana --version

3. Connect to the Devnet Cluster

Lastly, execute this command to connect to the Devnet cluster, and you will have connected to Devnet.

solana config set --url https://api.devnet.solana.com

How to Deploy a Solana Smart Contract to Devnet

In this tutorial we’re going to deploy the HelloWorld program that the Solana team developed. It creates a count for the account it is called on which represents the number of times that this program has been called on this account historically.

For example, the first execution will increase the count to 1 but return a count of 0. The second will return a count of 1 and increase it to 2. 

Because we have already installed the Solana Tool Suite, we just need to install the following dependencies:

  1. NodeJS
  2. Rust
  3. Git

Once the dependencies are installed, we'll clone the HelloWorld repo and follow the required steps to deploy it on Solana's Devnet.

1. Install NodeJS

To install NodeJS (you’ll need v14 or higher for this tutorial) - select the installer that matches your operating system.

After following the steps shown from running the installer NodeJS will automatically execute the node commands below in your terminal.

2. Install Rust

To install Rust, run this command if your operating system is MacOS, Linux, or other Unix-like operating systems, and your command line is ready.

curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh

On Windows, download and install rustup-init.exe.

3. Install Git

To install Git on Windows, select an installer to match your Windows version and follow the instructions.

To install Git on MacOS and Linux, first install Homebrew with the following command in your terminal of choice. 

/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"

Then run the following command in the terminal to install Git with Homebrew.

$ brew install git

4. Clone the Solana HelloWorld Repo

With the dependencies installed, next, clone the HelloWorld repository in your environment.

git clone https://github.com/solana-labs/example-helloworld
cd example-helloworld

5. Connect to Devnet

Double check if you are connected to the Devnet cluster by running the following command. 

solana config get

If you are not connected to the Devnet cluster, connect to the Devnet using this command:

solana config set --url https://api.devnet.solana.com

6. Generate a Keypair

Now, generate a keypair, which consists of a public key (your wallet address) and a private seed phrase. This keypair allows you to create an account on-chain and interact with Solana programs.

solana-keygen new --force

7. Get Devnet SOL Tokens

You’re going to need Devnet SOL tokens in order to run our program on the Devnet. You can request tokens through the following command. 

solana airdrop 2 <RECIPIENT_ACCOUNT_ADDRESS> --url https://api.devnet.solana.com

8. Build and Deploy it to Devnet

Now, build the program and deploy it to Devnet.

npm run build:program-rust

At the bottom of the output that the console provides from building the program should be the command for deploying the program.

If you can’t find it, copy paste the command below to deploy the program to Solana’s Devnet.

solana program deploy dist/program/helloworld.so

Start Building on Solana

Using the Solana Devnet, web3 developers can build dApps on one of the highest performance layer 1 blockchains in the world. To start building, signup for access to Alchemy's Solana API.

Solana’s fast transaction speeds, low transaction costs, and developer-friendly environment make it an excellent chain for both dApp developers and users. If you're looking to start building on Solana, this article explains Solana's Devnet, an essential developer resource for testing smart contracts on a test network that mimics Solana's mainnet.

What is a cluster?

A cluster is a set of nodes which are responsible for evaluating the validity of incoming transactions to be added to the blockchain. 

In each cluster one node is designated the ‘leader’ (the leader changes roughly every two days), which suggests which transactions should be added to the blockchain’s ledger and signs the suggested transactions with their signature. The other nodes within the cluster are ‘validators’, who double check whether the transactions are valid.

What is the Solana Devnet?

The Solana Devnet is an environment that replicates the actual Solana network (i.e. Mainnet) environment, but uses test SOL tokens to complete transactions so web3 developers don’t need to spend actual money to test their smart contracts.

The Solana Devnet is a safe playground for developers, users, and validators to test applications at no risk.

What is a Solana Devnet faucet?

To prevent network congestion from malicious actors while keeping the network free to use, the Solana Devnet uses a different token than mainnet. 

Devnet tokens can be acquired either through the Solana Devnet faucet or from the following airdrop command you can enter in the Command Line Interface (CLI).

solana airdrop 2 <RECIPIENT_ACCOUNT_ADDRESS> --url https://api.devnet.solana.com

What is the Solana Devnet Explorer?

The Solana Devnet explorer allows web3 developers to search for any block, transaction, program, or token on the devnet. This tool helps developers get information about their transactions, debug transactions that aren’t working properly, and explore program details.

What is the difference between Solana’s testnet and devnet?

The difference between Solana’s Devnet and the Solana Testnet is that the testnet is a network meant to be used by Solana’s core developer team to test planned updates to the main network while Devnet is a testing environment for the general public to use.

How to Connect to Solana's Devnet

Before connecting to Solana's Devnet, it's important to make sure you install the essential Solana developer tools in your local environment. If you're starting from scratch, you can install the basic tools using the following instructions.

1. Install the Solana Tool Suite

First, will need the Solana Tool Suite to connect to the Devnet. How you install the tool suite will depend on whether or not you're running a MacOS, Linux, or Windows operating system. Here are instructions for each development environment.

Mac Users

If your operating system is MacOS or Linux, open your favorite terminal application and copy-paste the below command.

sh -c "$(curl -sSfL https://release.solana.com/v1.10.31/install)"

The version number can be replaced with any version which you wish to install

Windows Users

If Windows is your operating system, copy paste the below into Command Prompt instead.

curl https://release.solana.com/v1.10.31/solana-install-init-x86_64-pc-windows-msvc.exe --output C:\solana-install-tmp\solana-install-init.exe --create-dirs

Run this command to install the Tool Suite:

C:\solana-install-tmp\solana-install-init.exe v1.10.31

2. Check Your Version of Solana

Afterwards for all operating systems, run this to double check you have the desired version of Solana.

solana --version

3. Connect to the Devnet Cluster

Lastly, execute this command to connect to the Devnet cluster, and you will have connected to Devnet.

solana config set --url https://api.devnet.solana.com

How to Deploy a Solana Smart Contract to Devnet

In this tutorial we’re going to deploy the HelloWorld program that the Solana team developed. It creates a count for the account it is called on which represents the number of times that this program has been called on this account historically.

For example, the first execution will increase the count to 1 but return a count of 0. The second will return a count of 1 and increase it to 2. 

Because we have already installed the Solana Tool Suite, we just need to install the following dependencies:

  1. NodeJS
  2. Rust
  3. Git

Once the dependencies are installed, we'll clone the HelloWorld repo and follow the required steps to deploy it on Solana's Devnet.

1. Install NodeJS

To install NodeJS (you’ll need v14 or higher for this tutorial) - select the installer that matches your operating system.

After following the steps shown from running the installer NodeJS will automatically execute the node commands below in your terminal.

2. Install Rust

To install Rust, run this command if your operating system is MacOS, Linux, or other Unix-like operating systems, and your command line is ready.

curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh

On Windows, download and install rustup-init.exe.

3. Install Git

To install Git on Windows, select an installer to match your Windows version and follow the instructions.

To install Git on MacOS and Linux, first install Homebrew with the following command in your terminal of choice. 

/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"

Then run the following command in the terminal to install Git with Homebrew.

$ brew install git

4. Clone the Solana HelloWorld Repo

With the dependencies installed, next, clone the HelloWorld repository in your environment.

git clone https://github.com/solana-labs/example-helloworld
cd example-helloworld

5. Connect to Devnet

Double check if you are connected to the Devnet cluster by running the following command. 

solana config get

If you are not connected to the Devnet cluster, connect to the Devnet using this command:

solana config set --url https://api.devnet.solana.com

6. Generate a Keypair

Now, generate a keypair, which consists of a public key (your wallet address) and a private seed phrase. This keypair allows you to create an account on-chain and interact with Solana programs.

solana-keygen new --force

7. Get Devnet SOL Tokens

You’re going to need Devnet SOL tokens in order to run our program on the Devnet. You can request tokens through the following command. 

solana airdrop 2 <RECIPIENT_ACCOUNT_ADDRESS> --url https://api.devnet.solana.com

8. Build and Deploy it to Devnet

Now, build the program and deploy it to Devnet.

npm run build:program-rust

At the bottom of the output that the console provides from building the program should be the command for deploying the program.

If you can’t find it, copy paste the command below to deploy the program to Solana’s Devnet.

solana program deploy dist/program/helloworld.so

Start Building on Solana

Using the Solana Devnet, web3 developers can build dApps on one of the highest performance layer 1 blockchains in the world. To start building, signup for access to Alchemy's Solana API.

{{get-started-solana}}

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