DOGE
POST
GET
Last updated on January 1, 1970
1 min read
Method signrawtransaction undefined ()
connect with JSON-RPC protocol
signrawtransaction
Sign inputs for raw transaction (serialized, hex-encoded).
Parameters
hexstring
- string
A hex string of the transaction to sign.
previous_transactions
- list of dict
Optional
list of dictionaries of the form: { “txid”: txid, “vout”: n, “scriptPubKey”: hex, “redeemScript”: hex } representing previous transaction outputs that this transaction depends on but may not yet be in the block chain.
private_keys
- list of string
Optional
A list of base58-encoded private keys that, if given, will be the only keys used to sign the transaction.
Request
curl --location --request POST 'https://doge.getblock.io/mainnet/' \
--header 'x-api-key: YOUR-API-KEY' \
--header 'Content-Type: application/json' \
--data-raw '{"jsonrpc": "2.0",
"method": "signrawtransaction",
"params": [null, [{"txid": "10c03013c4feadd7d2e0d948240771dbbc220152d12c3ab7628a40a7f827f658", "vout": 10, "scriptPubKey": "hexencodedscriptpubkey", "redeemscript": "hexencodedredeemscript"}, {"txid": "10c01013c4feadd7d2e0d948240771dbbc220152d12c3ab7628a40a7f827f658", "vout": 1, "scriptPubKey": "hexencodedscriptpubkey", "redeemscript": "hexencodedredeemscript"}], null],
"id": "getblock.io"}'
Response
{
"error": null,
"id": "getblock.io",
"result": null
}
Start Building with GetBlock RPCs for Free
Previous
{ "overview": "Overview", "guides": "Guides", "get-started": "Get Started", "rpc-service": "Nodes Methods", "getblock-explorer": "Explorer API", "getblock-tracker": "Tracker API", "nodes-endpoints": "Nodes Endpoints" }
Next
{ "overview": "Overview", "guides": "Guides", "get-started": "Get Started", "rpc-service": "Nodes Methods", "getblock-explorer": "Explorer API", "getblock-tracker": "Tracker API", "nodes-endpoints": "Nodes Endpoints" }