mirror of
https://github.com/alexgo-io/stacks-blockchain-api.git
synced 2026-06-14 08:29:57 +08:00
18 lines
528 B
JSON
18 lines
528 B
JSON
{
|
|
"$schema": "http://json-schema.org/draft-07/schema",
|
|
"$id": "rosetta-construction-submit-request",
|
|
"type": "object",
|
|
"title": "RosettaConstructionSubmitRequest",
|
|
"description": "Submit the transaction in blockchain",
|
|
"required": ["network_identifier", "signed_transaction"],
|
|
"properties": {
|
|
"network_identifier": {
|
|
"$ref": "./../../entities/rosetta/rosetta-network-identifier.schema.json"
|
|
},
|
|
"signed_transaction": {
|
|
"type": "string",
|
|
"description": "Signed transaction"
|
|
}
|
|
}
|
|
}
|