mirror of
https://github.com/ElementsProject/lightning.git
synced 2024-11-19 18:11:28 +01:00
bd3c0ef85c
Signed-off-by: Vincenzo Palazzo <vincenzopalazzodev@gmail.com>
29 lines
695 B
JSON
29 lines
695 B
JSON
{
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"type": "object",
|
|
"additionalProperties": false,
|
|
"required": [
|
|
"signature",
|
|
"recid",
|
|
"zbase"
|
|
],
|
|
"properties": {
|
|
"signature": {
|
|
"type": "hex",
|
|
"description": "The signature",
|
|
"minLength": 128,
|
|
"maxLength": 128
|
|
},
|
|
"recid": {
|
|
"type": "hex",
|
|
"description": "The recovery id (0, 1, 2 or 3)",
|
|
"minLength": 2,
|
|
"maxLength": 2
|
|
},
|
|
"zbase": {
|
|
"type": "string",
|
|
"description": "*signature* and *recid* encoded in a style compatible with **lnd**'s [SignMessageRequest](https://api.lightning.community/#grpc-request-signmessagerequest)"
|
|
}
|
|
}
|
|
}
|