Files
stacks-blockchain-api/docs/api/rosetta/rosetta-construction-hash-request.schema.json
2020-09-25 20:02:45 +02:00

18 lines
575 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "rosetta-construction-hash-request",
"type": "object",
"title": "RosettaConstructionHashRequest",
"description": "TransactionHash returns the network-specific transaction hash for a signed transaction.",
"required": ["network_identifier", "signed_transaction"],
"properties": {
"network_identifier": {
"$ref": "./../../entities/rosetta/rosetta-network-identifier.schema.json"
},
"signed_transaction": {
"type": "string",
"description": "Signed transaction"
}
}
}