eth_sendTransaction

Creates new message call transaction or a contract creation, if the data field contains code.

Parameters

Object - The transaction object

KeyRequiredTypeDetail
fromStringAddress the transaction is sent from.
toStringAddress the transaction is directed to.
gasStringA hex code of an integer that represents the gas provided for the transaction execution.
gasPriceIntegerA hex code of an integer that represents the price used for each paid gas.
valueIntegerA hex code of an integer that represents the value sent with this transaction.
dataStringHash of the method signature and encoded parameters. Learn more here.
nonceIntegerA hex code of an integer that represents the nonce. Allows to overwrite your own pending transactions that use the same nonce.
"params": [
    "unknown"
]

Result

The transaction hash, or the zero hash if the transaction is not yet available.

Example

Request

curl <your-endpoint> \
    -X POST \
    -H "Content-Type: application/json" \
    -d '{"jsonrpc":"2.0","method":"eth_sendTransaction","params": ["unknown"],"id":1}'

Return

unknown
Language
Click Try It! to start a request and see the response here!