core-lightning/doc/schemas/notification/channel_opened.json

51 lines
1.2 KiB
JSON
Raw Normal View History

{
"$schema": "../../rpc-schema-draft.json",
"type": "object",
"additionalProperties": false,
"notification": "channel_opened",
"title": "Notification for channel opening",
"description": [
"The **channel_opened** notification is sent whenever the channel opened successfully."
],
"added": "pre-v0.10.1",
"request": {},
"response": {
"required": [
"id",
"funding_msat",
"funding_txid",
"channel_ready"
],
"properties": {
"id": {
"type": "pubkey",
"description": [
"The id of the peer which opened the channel"
],
"added": "pre-v0.10.1"
},
"funding_msat": {
"type": "msat",
"description": [
"The amount of the funding transaction"
],
"added": "pre-v0.10.1"
},
"funding_txid": {
"type": "txid",
"description": [
"The transaction id of the funding transaction"
],
"added": "pre-v0.10.1"
},
"channel_ready": {
"type": "boolean",
"description": [
"true if the channel is ready"
],
"added": "pre-v0.10.1"
}
}
}
}