Skip to main content

sendrawtransaction

sendrawtransaction "hexstring" ( allowhighfees instantsend bypasslimits)

Submits raw transaction (serialized, hex-encoded) to local node and network.

Also see createrawtransaction and signrawtransaction calls.

# Create a transaction
yerbas-cli createrawtransaction "[{\"txid\" : \"mytxid\",\"vout\":0}]" "{\"myaddress\":0.01}"

# Sign the transaction, and get back the hex
yerbas-cli signrawtransaction "myhex"

# Send the transaction (signed hex)
yerbas-cli sendrawtransaction "signedhex"
Video Guide - credit @rocket

Arguments

ArgumentTypeDescription
"address"(string)The base58check encoded address
Arguments:
1. "hexstring" (string, required) The hex string of the raw transaction)
2. allowhighfees (boolean, optional, default=false) Allow high fees
3. instantsend (boolean, optional, default=false) Deprecated and ignored
4. bypasslimits (boolean, optional, default=false) Bypass transaction policy limits

Output

ResultTypeDescription
"hex"(string)The transaction hash in hex
Result:
"hex" (string) The transaction hash in hex

Examples

curl --user myusername --data-binary '{"jsonrpc": "1.0", "id":"curltest", "method": "sendrawtransaction", "params": ["signedhex"] }' -H 'content-type: text/plain;' http://127.0.0.1:9998/