HomeEIPs
EIPsEIP-3338
EIP-3338

Limit account nonce to 2^52

WithdrawnStandards Track: Core
Created: 2021-03-07
Micah Zoltu (@MicahZoltu), Alex Beregszaszi (@axic)
DiscussionsOriginal linkEdit
1 min read

EIP-3338 proposes to limit account nonces to be between 0 and 2^52 in order to optimize state witnesses and facilitate minor optimizations in clients. This change should not have any visible effect as there are currently no accounts with nonces exceeding this limit. The proposal also introduces two new restrictions for transactions and the CREATE instruction. This change does not have any significant security considerations and is backward compatible.

Video
Anyone may contribute to propose contents.
Go propose
Original

Abstract

Limit account nonce to be between 0 and 2^52.

Motivation

Account nonces are currently specified to be arbitrarily long unsigned integers. Dealing with arbitrary length data in the state witnesses is not optimal, therefore this EIP will allow proofs to represent the nonce in a more optimized way.

Additionally it could prove beneficial to transaction formats, where some improvements are potentially sought by at least three other proposals.

Lastly, this facilitates a minor optimisation in clients, because the nonce no longer needs to be kept as a 256-bit number.

Specification

If block.number >= FORK_BLOCK introduce two new restrictions:

  1. Consider any transaction invalid, where the nonce exceeds 2^52.
  2. The CREATE instruction to abort with an exceptional halt, where the account nonce is 2^52.

Rationale

  1. It is unlikely for any nonce to reach or exceed the proposed limit. If one would want to reach that limit via external transactions, it would cost at least 21000 * (2^64-1) = 387_381_625_547_900_583_915_000 gas.

  2. It must be noted that in the past, in the Morden testnet, each new account had a starting nonce of 2^20 in order to differentiate transactions from mainnet transactions. This mode of replay protection is out of fashion since EIP-155 introduced a more elegant way using chain identifiers.

  3. Most clients already consider the nonce field to be 64-bit, such as go-ethereum.

  4. All integer values <= 2^52 can be encoded in a 64-bit floating point without any loss of precision, making this value easy to work with in languages that only have floating point number support.

Backwards Compatibility

While this is a breaking change, no actual effect should be visible:

  1. There is no account in the state currently which would have a nonce exceeding that value. As of November 2020, the account 0xea674fdde714fd979de3edf0f56aa9716b898ec8 is responsible for the highest account nonce at approximately 29 million.

Security Considerations

None.

Copyright and related rights waived via CC0.

Further reading
Anyone may contribute to propose contents.
Go propose
Adopted by projects
Anyone may contribute to propose contents.
Go propose

Not miss a beat of EIPs' update?

Subscribe EIPs Fun to receive the latest updates of EIPs Good for Buidlers to follow up.

View all
Serve Ethereum Builders, Scale the Community.
Resources
GitHub
Supported by