Send PrivateTransaction

接口說明

本接口用於接收用戶提交的隱私交易,方法名為eth_sendPrivateTransaction

流控說明

不限

請求參數

参数必选格式示例描述

transaction

String

"0x…4b"

經過簽名的raw transaction

請求示例

{
  "jsonrpc": "2.0",
  "id": "1",
  "method": "eth_sendPrivateTransaction",
  "params": ["0x…9c"],      // 經過簽名的raw transaction
}

返回示例

{
 "jsonrpc":"2.0",
 "id":"1",
 "result":"0xa06b……f7e8ec"  // 交易哈希
}‍
{
  "jsonrpc":"2.0",
  "id":"1",
  "error":{
    "code":-32000,
    "message":"nonce too low: next nonce 57, tx nonce 56"
    }
}

Last updated