Sendrawtransaction
sendrawtransaction
Submits raw transaction (serialized, hex-encoded) to local node and network.
Arguments
| Position | Name | Type | Required | Default | Description |
|---|---|---|---|---|---|
| 2 | maxfeerate |
numeric or string | Optional | 0.10 | See CLI help for details |
| 4 | bypasslimits |
boolean | Optional | false | See CLI help for details |
Result
"hex" (string) The transaction hash in hex
Examples
Create a transaction
raptoreum-cli createrawtransaction "[{\"txid\" : \"mytxid\",\"vout\":0}]" "{\"myaddress\":0.01}"
Sign the transaction, and get back the hex
raptoreum-cli signrawtransactionwithwallet "myhex"
Send the transaction (signed hex)
raptoreum-cli sendrawtransaction "signedhex"
As a json rpc call
curl --user myusername --data-binary '{"jsonrpc": "1.0", "id":"curltest", "method": "sendrawtransaction", "params": ["signedhex"] }' -H 'content-type: text/plain;' http://127.0.0.1:10225/