1.9 KiB
eip | title | author | discussions-to | category | type | status | created | review-period-end |
---|---|---|---|---|---|---|---|---|
1344 | ChainID opcode | Richard Meissner (@rmeissner), Bryant Eisenbach (@fubuloubu) | https://ethereum-magicians.org/t/add-chain-id-opcode-for-replay-protection-when-handling-signed-messages-in-contracts/1131 | Core | Standards Track | Last Call | 2018-08-22 | 2019-04-30 |
Abstract
This EIP adds an opcode that returns the current chain's EIP-155 unique identifier.
Motivation
EIP-155 proposes to use the chain ID to prevent replay attacks between different chains. It would be a great benefit to have the same possibility inside smart contracts when handling signatures, especially for Layer 2 signature schemes using EIP-712.
Specification
Adds a new opcode CHAINID
at 0x46, which uses 0 stack arguments. It will push the current chain ID onto the stack. The operation costs G_base
to execute.
Rationale
The current approach proposed by EIP-712 is to specify the chain ID at compile time. Using this approach will result in problems after a hardfork, as well as human error that may lead to loss of funds or replay attacks on signed messages. By adding the proposed opcode it will be possible to access the current chain ID and validate signatures based on that.
Backwards Compatibility
This EIP is fully backwards compatible with all chains which implement EIP-155 chain ID domain separator for transaction signing.
References
This was previously suggested as part of EIP901.
Test Cases
TBD
Implementation
A sample implementation was attempted here: eaab5ffa21
Copyright
Copyright and related rights waived via CC0.