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
Learn
Solidity at
Alchemy
University
Get started today
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
Ethereum
EVM Overview

What is the Ethereum Virtual Machine (EVM)?

A breakdown of all things EVM
Last Updated:
March 2, 2022

The EVM - A Machine With Many Names

The World's Computer. The Unstoppable Machine. The Heart of Ethereum. The Ethereum Virtual Machine (EVM) has many names which highlights its importance to the Ethereum Network. It is the core feature that makes it not just a 'distributed ledger' like Bitcoin but a 'distributed state machine'. 

The EVM allows developers to create smart contracts in a programming language called Solidity. A popular application of smart contracts is to manage the generation and exchanging of tokens. Many applications and protocols use tokens to reward users for actions that are important to its goal. Without the EVM, none of this would be possible. 

To get a better understanding of the power of the EVM, let’s look at some of its core components: 

Virtual Machines - The Platform of the EVM

If you have ever downloaded a movie, song, or software (legally, of course) from BitTorrent then you can understand the benefits of a decentralized network. Even if you are the most powerful authority in the world, taking down a decentralized network is hard as it would require shutting down each member of the network. 

Source: https://hub.packtpub.com/are-distributed-networks-decentralized-systems-same/

A good way to get a decentralized network to scale is by using virtual machines (VM).This is because VMs can be run on different operating systems and hardware and from any geographical location. VMs operate as an abstraction layer between the code and the machine executing the code. 

VMs function in a similar way to a physical machine with storage, memory, and CPU but they operate purely as code. In theory, anyone can run a VM which makes it a highly portable platform for a decentralized network. With the EVM, it uses a decentralized network of nodes to execute smart contracts. 

Smart Contracts - The App of the EVM

Smart contracts are self-executing lines of code that allow for parties to transact with each other without the need for any central authority. Within a smart contract is a list of defined operations that are executed when certain conditions, on or off-chain are met. Some operations could be to transfer funds to a certain address, communicate with another contract or even create a new contract.  Rather than a third party executing the transaction, any sender can send funds to the address of the smart contract to trigger these operations.

Source: https://cryptotaxcalculator.io/blog/what-are-smart-contracts/

What makes smart contracts a secure method of transacting is the fact the code cannot be altered or changed. There is always an expected outcome from the smart contract which is the built-in trust of the code.  Anytime a contract is executed, it is said to alter the state of the EVM. 

The EVM can be described as a "state machine" because it is responsible for computing the state changes that are a result of executing the code of smart contracts. What this means is that it maintains the account ether balances, data storage of smart contracts, and transactions on both account and contract levels as they are completed. All of these actions are what change the 'state' of the network. 

Source :https://ethereum.org/en/developers/docs/transactions/

Smart contracts are primarily written in the language of Solidity. The EVM cannot directly execute Solidity so first the code must be compiled to lower level machine instructions called opcodes. 

Opcodes - The Language of the EVM

The EVM is labeled widely as being Turing Complete or more accurately quasi-Turing Complete. What this means is that the EVM can in theory solve any computational problem. This is done by executing machine-level instructions called EVM opcodes. 

EVM opcodes assist the EVM to complete the specific tasks of a smart contract or transaction. Currently, there are roughly 150 opcodes that the EVM can execute. They cover a range of operations including: arithmetic, stopping, logging, duplication, push, memory, comparison, and exchange. As well as for retrieving block and environment information. You can find a list of opcodes here


Source: https://hackernoon.com/ethernaut-lvl-0-walkthrough-abis-web3-and-how-to-abuse-them-d92a8842d71b

For efficiency, EVM converts its bytecode to opcode where each opcode is assigned one byte in bytecode. Each opcode operation requires a certain amount of gas to be executed by the EVM.  You have probably heard about gas, but what is it?  

Gas - The Fuel of the EVM

Gas is probably the most talked-about and least understood topic regarding the EVM. At the time of writing, gas prices can be extremely high but some there are efforts to improve this. High gas prices can be a major barrier to the mainstream embracing Ethereum. But why do we have to pay gas prices and what causes the price to be so high? 

The purpose of gas is to act as a fee for computing the operations of a smart contract done by each Ethereum node. There needs to be a fee for computation in order to prevent an attacker from bringing the network to a halt by deploying a large amount of complex contracts that require long computation times. This type of DDoDS attack is discouraged because it would be so expensive to run. 

Each opcode has a gas cost assigned to it with the more complex opcodes having higher costs. For example, simple addition costs 3 gas and every transaction starts at a cost of 21,000 gas. Most of the complaints are not about gas itself but the gas limit to complete a successful transaction.  

Gas limit is the maximum amount of gas that the sender is willing to pay for the transaction to be executed and validated. To get the gas fee, you can multiply the total gas cost (the base values of the operations)  by the gas price (the cost of completing those operations). Much like when filling your car with actual gas, there is the cost of the gas itself and the amount of gas needed to get to your destination. 

Gas Fee = Total Gas Cost x Gas Price 

The gas fee is to compensate the validator who is responsible for making sure the information in the transaction is valid, there are no errors/exceptions from the EVM, and that the sender does as the required funds needed to pay for the computation. When a sender sets a high gas limit it indicates that the operation is complex which incentives validators to pick up the transactions for a high reward. 

Source: https://ethereum.org/en/developers/docs/gas/

When network activity is high, validators can simply choose from the pool of pending transactions with higher gas limits. Gas fees are thus influenced by supply and demand. The good thing is that any gas not consumed is refunded to the sender.

If the pre-paid gas limit is hit, the validator is still compensated for their work but the transaction is not completed. In this way, the EVM is quasi-Turing Complete as the computations it can complete are limited to the amount a sender is willing to pay to be completed. 

Use Cases of the EVM

Now that we have covered each of the elements of the EVM, let’s look at how these parts come together to help power the projects in Ethereum: 

ERC-20 Tokens

ERC-20 tokens are tokens that can be transferred between addresses, have a fixed amount and their value is the same across the network. Smart contracts that follow a defined data structure on the EVM are used to create ERC-20 tokens. This data structure controls the naming, distribution, supply amount and monitoring of the token.

Several applications and projects use ERC-20 tokens to incentivize users. Livepeer, a decentralized video streaming network, uses the Livepeer token (LPT) to incentivize those who supply resources to the network. Nexus Mutual, decentralized insurance on smart contracts, uses the NXM token to allow users to purchase coverage and make claims. 

Decentralized Exchanges 

A decentralized exchange deploys smart contracts to allow users to exchange ERC-20 tokens. These smart contracts are called Automated Market Makers (AMM) because they allow users to contribute to liquidity pools of certain tokens without any third party controlling it. Some of the popular exchanges like Uniswap and SushiSwap are applications of this AMM model. 


Source: https://changelly.com/blog/automated-market-maker/

ERC-721 Tokens

The other widely popular token standard is ERC-20’s non-fungible cousin ERC-721. These smart contracts are used for minting NFT’s (Non-fungible tokens) which are tokens with unique value across the blockchain. Creating unique works of art is the biggest use-case for these types of tokens. Other projects in the gaming space like Axie Infinity and God Unchained use these tokens for collectables in-game.

The EVM and Beyond 

The EVM makes Ethereum a platform and not just a blockchain. However, the EVM is not a perfect system. There are many challenges around transaction speed and network throughput. This is an area of focus for the development community and the roadmap for Ethereum. If Ethereum is to fulfill its promises of revolutionizing how we transact amongst each other, it will be on the back of improvements to the EVM. 

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
Ethereum
EVM Overview

What is the Ethereum Virtual Machine (EVM)?

A breakdown of all things EVM
Last Updated:
March 2, 2022
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.
Table of Contents

{{building-on-ethereum}}

The EVM - A Machine With Many Names

The World's Computer. The Unstoppable Machine. The Heart of Ethereum. The Ethereum Virtual Machine (EVM) has many names which highlights its importance to the Ethereum Network. It is the core feature that makes it not just a 'distributed ledger' like Bitcoin but a 'distributed state machine'. 

The EVM allows developers to create smart contracts in a programming language called Solidity. A popular application of smart contracts is to manage the generation and exchanging of tokens. Many applications and protocols use tokens to reward users for actions that are important to its goal. Without the EVM, none of this would be possible. 

To get a better understanding of the power of the EVM, let’s look at some of its core components: 

Virtual Machines - The Platform of the EVM

If you have ever downloaded a movie, song, or software (legally, of course) from BitTorrent then you can understand the benefits of a decentralized network. Even if you are the most powerful authority in the world, taking down a decentralized network is hard as it would require shutting down each member of the network. 

Source: https://hub.packtpub.com/are-distributed-networks-decentralized-systems-same/

A good way to get a decentralized network to scale is by using virtual machines (VM).This is because VMs can be run on different operating systems and hardware and from any geographical location. VMs operate as an abstraction layer between the code and the machine executing the code. 

VMs function in a similar way to a physical machine with storage, memory, and CPU but they operate purely as code. In theory, anyone can run a VM which makes it a highly portable platform for a decentralized network. With the EVM, it uses a decentralized network of nodes to execute smart contracts. 

Smart Contracts - The App of the EVM

Smart contracts are self-executing lines of code that allow for parties to transact with each other without the need for any central authority. Within a smart contract is a list of defined operations that are executed when certain conditions, on or off-chain are met. Some operations could be to transfer funds to a certain address, communicate with another contract or even create a new contract.  Rather than a third party executing the transaction, any sender can send funds to the address of the smart contract to trigger these operations.

Source: https://cryptotaxcalculator.io/blog/what-are-smart-contracts/

What makes smart contracts a secure method of transacting is the fact the code cannot be altered or changed. There is always an expected outcome from the smart contract which is the built-in trust of the code.  Anytime a contract is executed, it is said to alter the state of the EVM. 

The EVM can be described as a "state machine" because it is responsible for computing the state changes that are a result of executing the code of smart contracts. What this means is that it maintains the account ether balances, data storage of smart contracts, and transactions on both account and contract levels as they are completed. All of these actions are what change the 'state' of the network. 

Source :https://ethereum.org/en/developers/docs/transactions/

Smart contracts are primarily written in the language of Solidity. The EVM cannot directly execute Solidity so first the code must be compiled to lower level machine instructions called opcodes. 

Opcodes - The Language of the EVM

The EVM is labeled widely as being Turing Complete or more accurately quasi-Turing Complete. What this means is that the EVM can in theory solve any computational problem. This is done by executing machine-level instructions called EVM opcodes. 

EVM opcodes assist the EVM to complete the specific tasks of a smart contract or transaction. Currently, there are roughly 150 opcodes that the EVM can execute. They cover a range of operations including: arithmetic, stopping, logging, duplication, push, memory, comparison, and exchange. As well as for retrieving block and environment information. You can find a list of opcodes here


Source: https://hackernoon.com/ethernaut-lvl-0-walkthrough-abis-web3-and-how-to-abuse-them-d92a8842d71b

For efficiency, EVM converts its bytecode to opcode where each opcode is assigned one byte in bytecode. Each opcode operation requires a certain amount of gas to be executed by the EVM.  You have probably heard about gas, but what is it?  

Gas - The Fuel of the EVM

Gas is probably the most talked-about and least understood topic regarding the EVM. At the time of writing, gas prices can be extremely high but some there are efforts to improve this. High gas prices can be a major barrier to the mainstream embracing Ethereum. But why do we have to pay gas prices and what causes the price to be so high? 

The purpose of gas is to act as a fee for computing the operations of a smart contract done by each Ethereum node. There needs to be a fee for computation in order to prevent an attacker from bringing the network to a halt by deploying a large amount of complex contracts that require long computation times. This type of DDoDS attack is discouraged because it would be so expensive to run. 

Each opcode has a gas cost assigned to it with the more complex opcodes having higher costs. For example, simple addition costs 3 gas and every transaction starts at a cost of 21,000 gas. Most of the complaints are not about gas itself but the gas limit to complete a successful transaction.  

Gas limit is the maximum amount of gas that the sender is willing to pay for the transaction to be executed and validated. To get the gas fee, you can multiply the total gas cost (the base values of the operations)  by the gas price (the cost of completing those operations). Much like when filling your car with actual gas, there is the cost of the gas itself and the amount of gas needed to get to your destination. 

Gas Fee = Total Gas Cost x Gas Price 

The gas fee is to compensate the validator who is responsible for making sure the information in the transaction is valid, there are no errors/exceptions from the EVM, and that the sender does as the required funds needed to pay for the computation. When a sender sets a high gas limit it indicates that the operation is complex which incentives validators to pick up the transactions for a high reward. 

Source: https://ethereum.org/en/developers/docs/gas/

When network activity is high, validators can simply choose from the pool of pending transactions with higher gas limits. Gas fees are thus influenced by supply and demand. The good thing is that any gas not consumed is refunded to the sender.

If the pre-paid gas limit is hit, the validator is still compensated for their work but the transaction is not completed. In this way, the EVM is quasi-Turing Complete as the computations it can complete are limited to the amount a sender is willing to pay to be completed. 

Use Cases of the EVM

Now that we have covered each of the elements of the EVM, let’s look at how these parts come together to help power the projects in Ethereum: 

ERC-20 Tokens

ERC-20 tokens are tokens that can be transferred between addresses, have a fixed amount and their value is the same across the network. Smart contracts that follow a defined data structure on the EVM are used to create ERC-20 tokens. This data structure controls the naming, distribution, supply amount and monitoring of the token.

Several applications and projects use ERC-20 tokens to incentivize users. Livepeer, a decentralized video streaming network, uses the Livepeer token (LPT) to incentivize those who supply resources to the network. Nexus Mutual, decentralized insurance on smart contracts, uses the NXM token to allow users to purchase coverage and make claims. 

Decentralized Exchanges 

A decentralized exchange deploys smart contracts to allow users to exchange ERC-20 tokens. These smart contracts are called Automated Market Makers (AMM) because they allow users to contribute to liquidity pools of certain tokens without any third party controlling it. Some of the popular exchanges like Uniswap and SushiSwap are applications of this AMM model. 


Source: https://changelly.com/blog/automated-market-maker/

ERC-721 Tokens

The other widely popular token standard is ERC-20’s non-fungible cousin ERC-721. These smart contracts are used for minting NFT’s (Non-fungible tokens) which are tokens with unique value across the blockchain. Creating unique works of art is the biggest use-case for these types of tokens. Other projects in the gaming space like Axie Infinity and God Unchained use these tokens for collectables in-game.

The EVM and Beyond 

The EVM makes Ethereum a platform and not just a blockchain. However, the EVM is not a perfect system. There are many challenges around transaction speed and network throughput. This is an area of focus for the development community and the roadmap for Ethereum. If Ethereum is to fulfill its promises of revolutionizing how we transact amongst each other, it will be on the back of improvements to the EVM. 

The EVM - A Machine With Many Names

The World's Computer. The Unstoppable Machine. The Heart of Ethereum. The Ethereum Virtual Machine (EVM) has many names which highlights its importance to the Ethereum Network. It is the core feature that makes it not just a 'distributed ledger' like Bitcoin but a 'distributed state machine'. 

The EVM allows developers to create smart contracts in a programming language called Solidity. A popular application of smart contracts is to manage the generation and exchanging of tokens. Many applications and protocols use tokens to reward users for actions that are important to its goal. Without the EVM, none of this would be possible. 

To get a better understanding of the power of the EVM, let’s look at some of its core components: 

Virtual Machines - The Platform of the EVM

If you have ever downloaded a movie, song, or software (legally, of course) from BitTorrent then you can understand the benefits of a decentralized network. Even if you are the most powerful authority in the world, taking down a decentralized network is hard as it would require shutting down each member of the network. 

Source: https://hub.packtpub.com/are-distributed-networks-decentralized-systems-same/

A good way to get a decentralized network to scale is by using virtual machines (VM).This is because VMs can be run on different operating systems and hardware and from any geographical location. VMs operate as an abstraction layer between the code and the machine executing the code. 

VMs function in a similar way to a physical machine with storage, memory, and CPU but they operate purely as code. In theory, anyone can run a VM which makes it a highly portable platform for a decentralized network. With the EVM, it uses a decentralized network of nodes to execute smart contracts. 

Smart Contracts - The App of the EVM

Smart contracts are self-executing lines of code that allow for parties to transact with each other without the need for any central authority. Within a smart contract is a list of defined operations that are executed when certain conditions, on or off-chain are met. Some operations could be to transfer funds to a certain address, communicate with another contract or even create a new contract.  Rather than a third party executing the transaction, any sender can send funds to the address of the smart contract to trigger these operations.

Source: https://cryptotaxcalculator.io/blog/what-are-smart-contracts/

What makes smart contracts a secure method of transacting is the fact the code cannot be altered or changed. There is always an expected outcome from the smart contract which is the built-in trust of the code.  Anytime a contract is executed, it is said to alter the state of the EVM. 

The EVM can be described as a "state machine" because it is responsible for computing the state changes that are a result of executing the code of smart contracts. What this means is that it maintains the account ether balances, data storage of smart contracts, and transactions on both account and contract levels as they are completed. All of these actions are what change the 'state' of the network. 

Source :https://ethereum.org/en/developers/docs/transactions/

Smart contracts are primarily written in the language of Solidity. The EVM cannot directly execute Solidity so first the code must be compiled to lower level machine instructions called opcodes. 

Opcodes - The Language of the EVM

The EVM is labeled widely as being Turing Complete or more accurately quasi-Turing Complete. What this means is that the EVM can in theory solve any computational problem. This is done by executing machine-level instructions called EVM opcodes. 

EVM opcodes assist the EVM to complete the specific tasks of a smart contract or transaction. Currently, there are roughly 150 opcodes that the EVM can execute. They cover a range of operations including: arithmetic, stopping, logging, duplication, push, memory, comparison, and exchange. As well as for retrieving block and environment information. You can find a list of opcodes here


Source: https://hackernoon.com/ethernaut-lvl-0-walkthrough-abis-web3-and-how-to-abuse-them-d92a8842d71b

For efficiency, EVM converts its bytecode to opcode where each opcode is assigned one byte in bytecode. Each opcode operation requires a certain amount of gas to be executed by the EVM.  You have probably heard about gas, but what is it?  

Gas - The Fuel of the EVM

Gas is probably the most talked-about and least understood topic regarding the EVM. At the time of writing, gas prices can be extremely high but some there are efforts to improve this. High gas prices can be a major barrier to the mainstream embracing Ethereum. But why do we have to pay gas prices and what causes the price to be so high? 

The purpose of gas is to act as a fee for computing the operations of a smart contract done by each Ethereum node. There needs to be a fee for computation in order to prevent an attacker from bringing the network to a halt by deploying a large amount of complex contracts that require long computation times. This type of DDoDS attack is discouraged because it would be so expensive to run. 

Each opcode has a gas cost assigned to it with the more complex opcodes having higher costs. For example, simple addition costs 3 gas and every transaction starts at a cost of 21,000 gas. Most of the complaints are not about gas itself but the gas limit to complete a successful transaction.  

Gas limit is the maximum amount of gas that the sender is willing to pay for the transaction to be executed and validated. To get the gas fee, you can multiply the total gas cost (the base values of the operations)  by the gas price (the cost of completing those operations). Much like when filling your car with actual gas, there is the cost of the gas itself and the amount of gas needed to get to your destination. 

Gas Fee = Total Gas Cost x Gas Price 

The gas fee is to compensate the validator who is responsible for making sure the information in the transaction is valid, there are no errors/exceptions from the EVM, and that the sender does as the required funds needed to pay for the computation. When a sender sets a high gas limit it indicates that the operation is complex which incentives validators to pick up the transactions for a high reward. 

Source: https://ethereum.org/en/developers/docs/gas/

When network activity is high, validators can simply choose from the pool of pending transactions with higher gas limits. Gas fees are thus influenced by supply and demand. The good thing is that any gas not consumed is refunded to the sender.

If the pre-paid gas limit is hit, the validator is still compensated for their work but the transaction is not completed. In this way, the EVM is quasi-Turing Complete as the computations it can complete are limited to the amount a sender is willing to pay to be completed. 

Use Cases of the EVM

Now that we have covered each of the elements of the EVM, let’s look at how these parts come together to help power the projects in Ethereum: 

ERC-20 Tokens

ERC-20 tokens are tokens that can be transferred between addresses, have a fixed amount and their value is the same across the network. Smart contracts that follow a defined data structure on the EVM are used to create ERC-20 tokens. This data structure controls the naming, distribution, supply amount and monitoring of the token.

Several applications and projects use ERC-20 tokens to incentivize users. Livepeer, a decentralized video streaming network, uses the Livepeer token (LPT) to incentivize those who supply resources to the network. Nexus Mutual, decentralized insurance on smart contracts, uses the NXM token to allow users to purchase coverage and make claims. 

Decentralized Exchanges 

A decentralized exchange deploys smart contracts to allow users to exchange ERC-20 tokens. These smart contracts are called Automated Market Makers (AMM) because they allow users to contribute to liquidity pools of certain tokens without any third party controlling it. Some of the popular exchanges like Uniswap and SushiSwap are applications of this AMM model. 


Source: https://changelly.com/blog/automated-market-maker/

ERC-721 Tokens

The other widely popular token standard is ERC-20’s non-fungible cousin ERC-721. These smart contracts are used for minting NFT’s (Non-fungible tokens) which are tokens with unique value across the blockchain. Creating unique works of art is the biggest use-case for these types of tokens. Other projects in the gaming space like Axie Infinity and God Unchained use these tokens for collectables in-game.

The EVM and Beyond 

The EVM makes Ethereum a platform and not just a blockchain. However, the EVM is not a perfect system. There are many challenges around transaction speed and network throughput. This is an area of focus for the development community and the roadmap for Ethereum. If Ethereum is to fulfill its promises of revolutionizing how we transact amongst each other, it will be on the back of improvements to the EVM. 

Build web3 with Alchemy

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

 Start building