Skip to content

Commit

Permalink
create2-tutorial.md - fix typo (#1145)
Browse files Browse the repository at this point in the history
  • Loading branch information
Schrubitteflau authored Mar 17, 2024
1 parent 76529b0 commit f4217f2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tutorials/create2-tutorial.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

### Introduction

Enshrined into the EVM as part of the [Constantinople fork](https://ethereum.org/en/history/#constantinople) of 2019, `CREATE2` is an opcode that started it's journey as [EIP-1014](https://eips.ethereum.org/EIPS/eip-1014).
Enshrined into the EVM as part of the [Constantinople fork](https://ethereum.org/en/history/#constantinople) of 2019, `CREATE2` is an opcode that started its journey as [EIP-1014](https://eips.ethereum.org/EIPS/eip-1014).
`CREATE2` allows you to deploy smart contracts to deterministic addresses, based on parameters controlled by the deployer.
As a result, it's often mentioned as enabling "counterfactual" deployments, where you can interact with an addresses that haven't been created yet because CREATE2 guarantees known code can be placed at that address.
This is in contrast to the `CREATE` opcode, where the address of the deployed contract is a function of the deployer's nonce.
Expand Down

0 comments on commit f4217f2

Please sign in to comment.