Skip to content

Commit

Permalink
Typo in preinstalls.md (#376)
Browse files Browse the repository at this point in the history
  • Loading branch information
ScreamingHawk authored Sep 17, 2024
1 parent 1562b9a commit 3461a6b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions specs/protocol/preinstalls.md
Original file line number Diff line number Diff line change
Expand Up @@ -182,10 +182,10 @@ call will deploy a contract (like `CREATE` opcode) but instead of the address be
`keccak256(rlp([deployer_address, nonce]))` it instead uses the hash of the contract's bytecode and a salt.
This means that a given deployer address will deploy the
same code to the same address no matter when or where they issue the deployment. The deployer is deployed
ith a one-time-use-account, so no matter what chain the deployer is on, its address will always be the same. This
with a one-time-use account, so no matter what chain the deployer is on, its address will always be the same. This
means the only variables in determining the address of your contract are its bytecode hash and the provided salt.

Between the use of `CREATE2` opcode and the one-time-use-account for the deployer, this contracts ensures
Between the use of `CREATE2` opcode and the one-time-use account for the deployer, this contracts ensures
that a given contract will exist at the exact same address on every chain, but without having to use the
same gas pricing or limits every time.

Expand Down

0 comments on commit 3461a6b

Please sign in to comment.