Skip to content

flyq/evmgod

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

EVMGOD

Recently, I am learning the implementation details of evm, mainly looking at the implementation of revm. So here are some demos for debugging revm to help me understand, also some solidity smart contracts.

CodeIsNotLaw

There is a token called "CodeIsNotLaw", and its src code is here: https://goerli.etherscan.io/address/0x09c9d3c78797ff87aaee6db8aeb5c0a3227310c4#code

how to transfer 1 "CodeIsNotLaw" to any address?

  • When the constructor is executing, has the bytecode of the contract been deployed? nope, see solidity/test/Constructor.t.sol, but can call other contract corrently.
    • Can the function of its contract be called in the constructor? nope
    • Can the bytecode of its own contract be obtained in the constructor? nope

reference