sendrawtransaction "hexstring" ( maxfeerate )
Submit a raw transaction (serialized, hex-encoded) to local node and network.
Note that the transaction will be sent unconditionally to all peers, so using this for manual rebroadcast may degrade privacy by leaking the transaction's origin, as nodes will normally not rebroadcast non-wallet transactions already in their mempool.
Also see createrawtransaction and signrawtransactionwithkey calls.
Type: string, required
The hex string of the raw transaction
Type: numeric or string, optional, default=0.10
Name | Type | Description |
---|---|---|
hex | string | The transaction hash in hex |
Create a transaction:
digibyte-cli createrawtransaction "[{\"txid\" : \"mytxid\",\"vout\":0}]" "{\"myaddress\":0.01}"
Sign the transaction, and get back the hex:
digibyte-cli signrawtransactionwithwallet "myhex"
Send the transaction (signed hex):
digibyte-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:14022/