mirror of
https://github.com/ElementsProject/lightning.git
synced 2024-11-20 10:39:49 +01:00
75 lines
1.1 KiB
Protocol Buffer
75 lines
1.1 KiB
Protocol Buffer
syntax = "proto3";
|
|
package cln;
|
|
|
|
message Amount {
|
|
uint64 msat = 1;
|
|
}
|
|
|
|
message AmountOrAll {
|
|
oneof value {
|
|
Amount amount = 1;
|
|
bool all = 2;
|
|
}
|
|
}
|
|
|
|
message AmountOrAny {
|
|
oneof value {
|
|
Amount amount = 1;
|
|
bool any = 2;
|
|
}
|
|
}
|
|
|
|
enum ChannelSide {
|
|
IN = 0;
|
|
OUT = 1;
|
|
}
|
|
|
|
enum ChannelState {
|
|
Openingd = 0;
|
|
ChanneldAwaitingLockin = 1;
|
|
ChanneldNormal = 2;
|
|
ChanneldShuttingDown = 3;
|
|
ClosingdSigexchange = 4;
|
|
ClosingdComplete = 5;
|
|
AwaitingUnilateral = 6;
|
|
FundingSpendSeen = 7;
|
|
Onchain = 8;
|
|
DualopendOpenInit = 9;
|
|
DualopendAwaitingLockin = 10;
|
|
}
|
|
|
|
message ChannelStateChangeCause {}
|
|
|
|
message Outpoint {
|
|
bytes txid = 1;
|
|
uint32 outnum = 2;
|
|
}
|
|
|
|
message Feerate {
|
|
oneof style {
|
|
bool slow = 1;
|
|
bool normal = 2;
|
|
bool urgent = 3;
|
|
uint32 perkb = 4;
|
|
uint32 perkw = 5;
|
|
}
|
|
}
|
|
|
|
message OutputDesc {
|
|
string address = 1;
|
|
Amount amount = 2;
|
|
}
|
|
|
|
message RouteHop {
|
|
bytes id = 1;
|
|
string short_channel_id = 2;
|
|
Amount feebase = 3;
|
|
uint32 feeprop = 4;
|
|
uint32 expirydelta = 5;
|
|
}
|
|
message Routehint {
|
|
repeated RouteHop hops = 1;
|
|
}
|
|
message RoutehintList {
|
|
repeated Routehint hints = 2;
|
|
} |