mirror of
https://github.com/alexgo-io/stacks-blockchain-api.git
synced 2026-06-15 00:49:53 +08:00
18 lines
575 B
JSON
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"
|
|
}
|
|
}
|
|
}
|