mirror of
https://github.com/ElementsProject/lightning.git
synced 2024-11-20 02:27:51 +01:00
3bc5d47aa2
addgossip, check, createinvoice, createonion. Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
23 lines
542 B
JSON
23 lines
542 B
JSON
{
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"type": "object",
|
|
"additionalProperties": false,
|
|
"required": [ "onion", "shared_secrets" ],
|
|
"properties": {
|
|
"onion": {
|
|
"type": "hex",
|
|
"description": "the onion packet (*onion_size* bytes)"
|
|
},
|
|
"shared_secrets": {
|
|
"type": "array",
|
|
"description": "one shared secret for each node in the *hops* parameter",
|
|
"items": {
|
|
"type": "hex",
|
|
"description": "the shared secret with this hop",
|
|
"maxLength": 64,
|
|
"minLength": 64
|
|
}
|
|
}
|
|
}
|
|
}
|