createrawtransaction - Litecoin

Example code for the createrawtransaction JSON-RPC method. Complete guide on how to use createrawtransaction JSON-RPC in GetBlock Web3 documentation.

Create a transaction spending the given inputs and creating new outputs.

Parameters

Parameter
Type
Description

inputs

array

Array of inputs [{txid, vout}].

outputs

array

Array of outputs [{address: amount}].

Request

cURL
curl --location --request POST 'https://go.getblock.io/<ACCESS-TOKEN>/' \
--header 'Content-Type: application/json' \
--data-raw '{
    "jsonrpc": "2.0",
    "method": "createrawtransaction",
    "params": [[{"txid":"id","vout":0}], {"address":0.01}],
    "id": "getblock.io"
}'

Response

{
    "jsonrpc": "2.0",
    "id": "getblock.io",
    "result": "0100000001..."
}

Response Parameters

Field
Type
Description

result

string

Hex string of the transaction.

Use Case

The createrawtransaction method is essential for:

  • Transaction construction

  • Custom transactions

  • Multi-input transactions

  • Batch payments

Error Handling

Status Code
Error Message
Cause

403

Forbidden

Missing or invalid ACCESS-TOKEN.

Integration Notes

The createrawtransaction method helps developers build robust applications that interact with the Litecoin blockchain.

Last updated

Was this helpful?