mirror of
https://github.com/ElementsProject/lightning.git
synced 2025-02-22 14:42:40 +01:00
34 lines
No EOL
825 B
JSON
34 lines
No EOL
825 B
JSON
{
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"type": "object",
|
|
"additionalProperties": false,
|
|
"added": "v24.05",
|
|
"required" : [
|
|
"pubkey",
|
|
"funding_msat",
|
|
"funding_txid",
|
|
"channel_ready"
|
|
],
|
|
"properties": {
|
|
"id": {
|
|
"type": "pubkey",
|
|
"added" : "v24.05",
|
|
"description" : "The id of the peer which opened the channel"
|
|
},
|
|
"funding_msat": {
|
|
"type": "msat",
|
|
"added" : "v24.05",
|
|
"description" : "The amount of the funding transaction"
|
|
},
|
|
"funding_txid" : {
|
|
"type" : "txid",
|
|
"added" : "v24.05",
|
|
"description" : "The transaction id of the funding transaction"
|
|
},
|
|
"channel_ready" : {
|
|
"type" : "boolean",
|
|
"added" : "v24.05",
|
|
"description" : "true if the channel is ready"
|
|
}
|
|
}
|
|
} |