mirror of
https://github.com/Xahau/xahau.js.git
synced 2025-11-28 16:15:49 +00:00
20 lines
607 B
JSON
20 lines
607 B
JSON
{
|
|
"$schema": "http://json-schema.org/draft-04/schema#",
|
|
"title": "combineParameters",
|
|
"type": "object",
|
|
"properties": {
|
|
"signedTransactions": {
|
|
"type": "array",
|
|
"description": "An array of signed transactions (from the output of [sign](#sign)) to combine.",
|
|
"items": {
|
|
"type": "string",
|
|
"pattern": "^[A-F0-9]+$",
|
|
"description": "A single-signed transaction represented as an uppercase hexadecimal string (from the output of [sign](#sign))"
|
|
},
|
|
"minLength": 1
|
|
}
|
|
},
|
|
"additionalProperties": false,
|
|
"required": ["signedTransactions"]
|
|
}
|