Go-Ethereum

JSON RPC sendTransaction 數據參數

  • March 27, 2018

我正在嘗試進行 sendTransaction json rpc 呼叫,但我不知道如何計算數據參數。

從文件中:

data: DATA - The compiled code of a contract OR the hash of the invoked method signature and encoded parameters. For details see Ethereum Contract ABI

沒有規範應該如何進行:呼叫方法簽名和編碼參數的雜湊

是的,有一個應用程序二進制介面規範

應用程序二進制介面是與乙太坊生態系統中的合約進行互動的標準方式,既可以從區塊鏈外部進行,也可以用於合約到合約的互動。數據根據其類型進行編碼,如本規範中所述。編碼不是自我描述的,因此需要一個模式才能解碼。

這裡有幾個問題:

引用自:https://ethereum.stackexchange.com/questions/44006