mirror of
https://github.com/alexgo-io/stacks-blockchain-api.git
synced 2026-06-14 00:22:42 +08:00
14 lines
311 B
JSON
14 lines
311 B
JSON
{
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"description": "GET raw transaction",
|
|
"title": "GetRawTransactionResult",
|
|
"type": "object",
|
|
"required": ["raw_tx"],
|
|
"properties": {
|
|
"raw_tx": {
|
|
"type":"string",
|
|
"description": "A hex encoded serialized transaction"
|
|
}
|
|
}
|
|
}
|