Files
stacks-blockchain-api/docs/api/rosetta/rosetta-construction-derive-request.schema.json
2020-09-16 13:18:28 +02:00

20 lines
635 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "construction-derive-request",
"type": "object",
"title": "RosettaConstructionDeriveRequest",
"description": "Network is provided in the request because some blockchains have different address formats for different networks",
"required": ["network_identifier", "public_key"],
"properties": {
"network_identifier": {
"$ref": "./../../entities/rosetta/rosetta-network-identifier.schema.json"
},
"public_key": {
"$ref": "./../../entities/rosetta/rosetta-public-key.schema.json"
},
"metadata": {
"type": "object"
}
}
}