core-lightning/cln-grpc/proto/primitives.proto
Christian Decker 1a1c0a38fc msggen: Map the extratlvs field of keysend
Changelog-Added: cln-rpc: `keysend` now exposes the `extratlvs` field
2022-11-01 17:05:30 +01:00

85 lines
1.2 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;
}
message TlvEntry {
uint64 type = 1;
bytes value = 2;
}
message TlvStream {
repeated TlvEntry entries = 1;
}