Solc
solc 中的“clone-bin”輸出是什麼?
當談到字節碼時,它
solc
有三種類型的輸出:--bin Binary of the contracts in hex. --bin-runtime Binary of the runtime part of the contracts in hex. --clone-bin Binary of the clone contracts in hex.
前兩個很清楚,並在此處進行了詳細說明,但我找不到任何關於
clone-bin
. 它是乾什麼用的?
我認為它與 –bin 相同,但用於複製契約。複製合約是基於另一個合約的字節碼創建的複製。查看這個複製工廠:https ://github.com/optionality/clone-factory了解一下。