sendrawtransaction - Okcash RPC

sendrawtransaction "hexstring" 

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

Arguments:
1. "hexstring"    (string, required) The hex string of the raw transaction)

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

Examples:

Create a transaction
> okcashd createrawtransaction "[{\"txid\" : \"mytxid\",\"vout\":0}]" "{\"myaddress\":0.01}"
Sign the transaction, and get back the hex
> okcashd signrawtransaction "myhex"

Send the transaction (signed hex)
> okcashd 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:6969/


Okcash Core RPC documentation.

Okcash version: 5.0.0.3

OK RPC docs at:Github