mirror of
https://github.com/alexgo-io/stacks-blockchain-api.git
synced 2026-06-17 02:24:46 +08:00
20 lines
635 B
JSON
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"
|
|
}
|
|
}
|
|
}
|