Porting Ethereum Contract
Last updated
Last updated
In most cases, you can use Ethereum contracts on Klaytn without any modification. However, be aware of the following two issues.
Baobab network is currently compatible with London Ethereum Virtual Machine (EVM).
Cypress network is currently compatible with London Ethereum Virtual Machine (EVM).
v1.7.0 Protocol Upgrade - incompatible changes including Istanbul hard fork items and Klaytn's own items. It has been enabled from block number #75,373,312
in case of Baobab network and #86,816,005
for the Cypress network.
v1.7.3 Protocol Upgrade - incompatible changes including Base Fee from the London hard fork. It has been enabled from block number #80,295,291
in case of Baobab network and #86,816,005
for the Cypress network.
v1.8.0 Protocol Upgrade - incompatible changes including Base Fee from the London hard fork. It has been enabled from block number #86,513,895
in case of Baobab network and #86,816,005
for the Cypress network.
Backward compatibility is not guaranteed with other EVM versions on Klaytn. Thus, it is highly recommended compiling Solidity code with the correct target option according to the protocol upgrade status.
Baobab: --evm-version london
Cypress: --evm-version london
Others(private/service chain): determined according to the protocol upgrade status
Please refer to .
An example command is shown below:
Klaytn . If user , the private key for a specific account is replaced with another one. Most cases this will not affect your business logic. However if your business logic includes ecrecover, you should consider using validateSender. For more details, refer to .