Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
出于学习目的,我想直接在 Assembler 中编写以太坊智能合约。我的意思是我想在某处写黄纸上的操作码,然后将其转换为字节码。
然而,似乎没有用于 EVM 的纯汇编程序,只有各种语言的内联汇编或 LLL,它接近于汇编程序。
这样做是编写我自己的汇编程序的唯一方法吗?这似乎真的很令人惊讶,因为有很多在线反汇编程序。
您可以./evm compile从 Go Ethereum 项目中使用(确保下载 Geth & Tools 存档):
./evm compile
https://geth.ethereum.org/downloads/