mirror of
https://github.com/alexgo-io/stacks-blockchain-api.git
synced 2026-05-07 12:55:11 +08:00
For consistency, rename RosettaMempoolTransactionListRequest -> RosettaMempoolRequest as well.
17 lines
515 B
JSON
17 lines
515 B
JSON
{
|
|
"$schema": "http://json-schema.org/draft-07/schema",
|
|
"type": "object",
|
|
"title": "RosettaMempoolRequest",
|
|
"description": "Get all Transaction Identifiers in the mempool",
|
|
"required": ["network_identifier"],
|
|
"properties": {
|
|
"network_identifier": {
|
|
"description": "The network_identifier specifies which network a particular object is associated with.",
|
|
"$ref": "./../../entities/rosetta/rosetta-network-identifier.schema.json"
|
|
},
|
|
"metadata": {
|
|
"type": "object"
|
|
}
|
|
}
|
|
}
|