2015-12-30 23:19:09 +03:00
|
|
|
syntax = "proto3";
|
|
|
|
|
2016-10-16 00:38:47 +03:00
|
|
|
import "google/api/annotations.proto";
|
|
|
|
|
2015-12-30 23:19:09 +03:00
|
|
|
package lnrpc;
|
|
|
|
|
|
|
|
service Lightning {
|
2016-10-16 00:38:47 +03:00
|
|
|
rpc WalletBalance(WalletBalanceRequest) returns (WalletBalanceResponse) {
|
|
|
|
option (google.api.http) = {
|
|
|
|
get: "/v1/balance/blockchain"
|
|
|
|
};
|
|
|
|
}
|
|
|
|
rpc ChannelBalance(ChannelBalanceRequest) returns (ChannelBalanceResponse) {
|
|
|
|
option (google.api.http) = {
|
|
|
|
get: "/v1/balance/channels"
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
rpc GetTransactions(GetTransactionsRequest) returns (TransactionDetails) {
|
|
|
|
option (google.api.http) = {
|
|
|
|
get: "/v1/transactions"
|
|
|
|
};
|
|
|
|
}
|
|
|
|
rpc SendCoins(SendCoinsRequest) returns (SendCoinsResponse) {
|
|
|
|
option (google.api.http) = {
|
|
|
|
post: "/v1/transactions"
|
|
|
|
body: "*"
|
|
|
|
};
|
|
|
|
}
|
|
|
|
rpc SubscribeTransactions(GetTransactionsRequest) returns (stream Transaction);
|
2016-09-15 21:59:51 +03:00
|
|
|
|
2015-12-31 05:58:15 +03:00
|
|
|
rpc SendMany(SendManyRequest) returns (SendManyResponse);
|
2015-12-31 06:02:24 +03:00
|
|
|
|
2016-10-16 00:38:47 +03:00
|
|
|
rpc NewAddress(NewAddressRequest) returns (NewAddressResponse);
|
|
|
|
rpc NewWitnessAddress(NewWitnessAddressRequest) returns (NewAddressResponse) {
|
|
|
|
option (google.api.http) = {
|
|
|
|
get: "/v1/newaddress"
|
|
|
|
};
|
|
|
|
}
|
2016-06-21 21:52:09 +03:00
|
|
|
|
2016-10-16 00:38:47 +03:00
|
|
|
rpc ConnectPeer(ConnectPeerRequest) returns (ConnectPeerResponse) {
|
|
|
|
option (google.api.http) = {
|
|
|
|
post: "/v1/peers"
|
|
|
|
body: "*"
|
|
|
|
};
|
|
|
|
}
|
|
|
|
rpc ListPeers(ListPeersRequest) returns (ListPeersResponse) {
|
|
|
|
option (google.api.http) = {
|
|
|
|
get: "/v1/peers"
|
|
|
|
};
|
|
|
|
}
|
|
|
|
rpc GetInfo(GetInfoRequest) returns (GetInfoResponse) {
|
|
|
|
option (google.api.http) = {
|
|
|
|
get: "/v1/getinfo"
|
|
|
|
};
|
|
|
|
}
|
2016-09-26 06:02:33 +03:00
|
|
|
|
2016-10-16 00:38:47 +03:00
|
|
|
// TODO(roasbeef): merge with below with bool?
|
|
|
|
rpc PendingChannels(PendingChannelRequest) returns (PendingChannelResponse) {
|
|
|
|
option (google.api.http) = {
|
|
|
|
get: "/v1/channels/pending"
|
|
|
|
};
|
|
|
|
}
|
|
|
|
rpc ListChannels(ListChannelsRequest) returns (ListChannelsResponse) {
|
|
|
|
option (google.api.http) = {
|
|
|
|
get: "/v1/channels"
|
|
|
|
};
|
|
|
|
}
|
2016-11-11 04:33:24 +03:00
|
|
|
rpc OpenChannelSync(OpenChannelRequest) returns (ChannelPoint) {
|
2016-10-16 00:38:47 +03:00
|
|
|
option (google.api.http) = {
|
|
|
|
post: "/v1/channels"
|
|
|
|
body: "*"
|
|
|
|
};
|
|
|
|
}
|
2016-11-11 04:33:24 +03:00
|
|
|
|
|
|
|
rpc OpenChannel(OpenChannelRequest) returns (stream OpenStatusUpdate);
|
|
|
|
|
2016-10-16 00:38:47 +03:00
|
|
|
rpc CloseChannel(CloseChannelRequest) returns (stream CloseStatusUpdate) {
|
|
|
|
option (google.api.http) = {
|
|
|
|
delete: "/v1/channels/{channel_point.funding_txid}/{channel_point.output_index}/{force}"
|
|
|
|
};
|
|
|
|
}
|
2016-07-13 03:36:34 +03:00
|
|
|
|
2016-11-11 04:33:24 +03:00
|
|
|
rpc SendPayment(stream SendRequest) returns (stream SendResponse);
|
|
|
|
|
|
|
|
rpc SendPaymentSync(SendRequest) returns (SendResponse) {
|
2016-10-16 00:38:47 +03:00
|
|
|
option (google.api.http) = {
|
|
|
|
post: "/v1/channels/transactions"
|
|
|
|
body: "*"
|
|
|
|
};
|
|
|
|
}
|
2016-09-19 21:52:23 +03:00
|
|
|
|
2016-10-16 00:38:47 +03:00
|
|
|
rpc AddInvoice(Invoice) returns (AddInvoiceResponse) {
|
|
|
|
option (google.api.http) = {
|
|
|
|
post: "/v1/invoices"
|
|
|
|
body: "*"
|
|
|
|
};
|
|
|
|
}
|
|
|
|
rpc ListInvoices(ListInvoiceRequest) returns (ListInvoiceResponse) {
|
|
|
|
option (google.api.http) = {
|
|
|
|
get: "/v1/invoices/{pending_only}"
|
|
|
|
};
|
|
|
|
}
|
|
|
|
rpc LookupInvoice(PaymentHash) returns (Invoice) {
|
|
|
|
option (google.api.http) = {
|
|
|
|
get: "/v1/invoices/{r_hash_str}"
|
|
|
|
};
|
|
|
|
}
|
|
|
|
rpc SubscribeInvoices(InvoiceSubscription) returns (stream Invoice) {
|
|
|
|
option (google.api.http) = {
|
|
|
|
get: "/v1/invoices/subscribe"
|
|
|
|
};
|
|
|
|
}
|
2017-01-18 00:24:55 +03:00
|
|
|
rpc DecodePayReq(PayReqString) returns (PayReq) {
|
|
|
|
option (google.api.http) = {
|
|
|
|
get: "/v1/payreq/{pay_req}"
|
|
|
|
};
|
|
|
|
}
|
2016-09-19 21:52:23 +03:00
|
|
|
|
2016-12-05 14:59:36 +03:00
|
|
|
rpc ListPayments(ListPaymentsRequest) returns (ListPaymentsResponse){
|
|
|
|
option (google.api.http) = {
|
|
|
|
get: "/v1/payments"
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
rpc DeleteAllPayments(DeleteAllPaymentsRequest) returns (DeleteAllPaymentsResponse) {
|
|
|
|
option (google.api.http) = {
|
|
|
|
delete: "/v1/payments"
|
|
|
|
};
|
|
|
|
};
|
2016-07-13 03:36:34 +03:00
|
|
|
|
2016-12-27 08:44:44 +03:00
|
|
|
rpc DescribeGraph(ChannelGraphRequest) returns (ChannelGraph) {
|
|
|
|
option (google.api.http) = {
|
|
|
|
get: "/v1/graph"
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
rpc GetChanInfo(ChanInfoRequest) returns (ChannelEdge) {
|
|
|
|
option (google.api.http) = {
|
|
|
|
get: "/v1/graph/edge/{chan_id}"
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
rpc GetNodeInfo(NodeInfoRequest) returns (NodeInfo) {
|
|
|
|
option (google.api.http) = {
|
|
|
|
get: "/v1/graph/node/{pub_key}"
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
rpc QueryRoute(RouteRequest) returns (Route) {
|
|
|
|
option (google.api.http) = {
|
|
|
|
get: "/v1/graph/route/{pub_key}/{amt}"
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
rpc GetNetworkInfo(NetworkInfoRequest) returns (NetworkInfo) {
|
|
|
|
option (google.api.http) = {
|
|
|
|
get: "/v1/graph/info"
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
rpc SetAlias(SetAliasRequest) returns (SetAliasResponse);
|
2017-01-15 05:14:03 +03:00
|
|
|
|
|
|
|
rpc DebugLevel(DebugLevelRequest) returns (DebugLevelResponse);
|
2016-12-27 08:44:44 +03:00
|
|
|
}
|
2016-10-16 00:38:47 +03:00
|
|
|
|
|
|
|
message Transaction {
|
|
|
|
string tx_hash = 1;
|
|
|
|
double amount = 2;
|
|
|
|
int32 num_confirmations = 3;
|
|
|
|
string block_hash = 4;
|
|
|
|
int32 block_height = 5;
|
|
|
|
int64 time_stamp = 6;
|
|
|
|
int64 total_fees = 7;
|
|
|
|
}
|
|
|
|
message GetTransactionsRequest {
|
|
|
|
}
|
|
|
|
message TransactionDetails {
|
|
|
|
repeated Transaction transactions = 1;
|
|
|
|
}
|
|
|
|
|
2016-07-13 03:36:34 +03:00
|
|
|
message SendRequest {
|
|
|
|
bytes dest = 1;
|
2016-11-11 04:33:24 +03:00
|
|
|
string dest_string = 2;
|
|
|
|
|
|
|
|
int64 amt = 3;
|
2016-07-13 03:36:34 +03:00
|
|
|
|
2016-11-11 04:33:24 +03:00
|
|
|
bytes payment_hash = 4;
|
|
|
|
string payment_hash_string = 5;
|
|
|
|
|
2017-01-03 02:31:38 +03:00
|
|
|
string payment_request = 6;
|
2016-07-13 03:36:34 +03:00
|
|
|
}
|
2016-10-16 00:38:47 +03:00
|
|
|
message SendResponse {
|
2017-02-21 10:54:52 +03:00
|
|
|
bytes payment_preimage = 1;
|
|
|
|
Route payment_route = 2;
|
2015-12-30 23:19:09 +03:00
|
|
|
}
|
|
|
|
|
2016-06-21 21:52:09 +03:00
|
|
|
message ChannelPoint {
|
|
|
|
bytes funding_txid = 1;
|
2016-10-16 00:38:47 +03:00
|
|
|
string funding_txid_str = 2;
|
|
|
|
uint32 output_index = 3;
|
2016-06-21 21:52:09 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
message LightningAddress {
|
2016-10-28 05:41:42 +03:00
|
|
|
string pubkey = 1;
|
2016-06-21 21:52:09 +03:00
|
|
|
string host = 2;
|
|
|
|
}
|
|
|
|
|
2015-12-30 23:19:09 +03:00
|
|
|
message SendManyRequest {
|
|
|
|
map<string, int64> AddrToAmount = 1;
|
|
|
|
}
|
|
|
|
message SendManyResponse {
|
|
|
|
string txid = 1;
|
|
|
|
}
|
|
|
|
|
2016-06-29 21:28:10 +03:00
|
|
|
message SendCoinsRequest {
|
|
|
|
string addr = 1;
|
|
|
|
int64 amount = 2;
|
|
|
|
}
|
|
|
|
message SendCoinsResponse {
|
|
|
|
string txid = 1;
|
|
|
|
}
|
|
|
|
|
2016-04-25 06:26:32 +03:00
|
|
|
message NewAddressRequest {
|
|
|
|
enum AddressType {
|
|
|
|
WITNESS_PUBKEY_HASH = 0;
|
|
|
|
NESTED_PUBKEY_HASH = 1;
|
|
|
|
PUBKEY_HASH = 2;
|
|
|
|
}
|
|
|
|
AddressType type = 1;
|
|
|
|
}
|
2016-10-16 00:38:47 +03:00
|
|
|
message NewWitnessAddressRequest {}
|
2015-12-30 23:19:09 +03:00
|
|
|
message NewAddressResponse {
|
|
|
|
string address = 1;
|
|
|
|
}
|
2015-12-31 05:58:15 +03:00
|
|
|
|
2016-01-17 06:03:47 +03:00
|
|
|
message ConnectPeerRequest {
|
2016-06-21 21:52:09 +03:00
|
|
|
LightningAddress addr = 1;
|
2017-01-10 05:58:21 +03:00
|
|
|
bool perm = 2;
|
2015-12-31 05:58:15 +03:00
|
|
|
}
|
2016-01-17 06:03:47 +03:00
|
|
|
message ConnectPeerResponse {
|
2016-06-21 21:52:09 +03:00
|
|
|
int32 peer_id = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
message HTLC {
|
2016-09-26 06:02:33 +03:00
|
|
|
bool incoming = 1;
|
2016-06-21 21:52:09 +03:00
|
|
|
int64 amount = 2;
|
|
|
|
bytes hash_lock = 3;
|
2016-09-26 06:02:33 +03:00
|
|
|
uint32 expiration_height = 4;
|
|
|
|
uint32 revocation_delay = 5;
|
2016-06-21 21:52:09 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
message ActiveChannel {
|
2016-09-26 06:02:33 +03:00
|
|
|
string remote_pubkey = 1;
|
2016-06-23 08:06:37 +03:00
|
|
|
string channel_point = 2;
|
2016-12-27 08:43:04 +03:00
|
|
|
uint64 chan_id = 3;
|
2016-06-21 21:52:09 +03:00
|
|
|
|
2016-12-27 08:43:04 +03:00
|
|
|
int64 capacity = 4;
|
|
|
|
int64 local_balance = 5;
|
|
|
|
int64 remote_balance = 6;
|
2016-06-21 21:52:09 +03:00
|
|
|
|
2016-12-27 08:43:04 +03:00
|
|
|
int64 unsettled_balance = 7;
|
|
|
|
int64 total_satoshis_sent = 8;
|
|
|
|
int64 total_satoshis_received = 9;
|
|
|
|
uint64 num_updates = 10;
|
2016-06-21 21:52:09 +03:00
|
|
|
|
2016-12-27 08:43:04 +03:00
|
|
|
repeated HTLC pending_htlcs = 11;
|
2016-06-21 21:52:09 +03:00
|
|
|
}
|
|
|
|
|
2016-09-26 06:02:33 +03:00
|
|
|
message ListChannelsRequest {}
|
|
|
|
message ListChannelsResponse {
|
2016-11-19 03:20:44 +03:00
|
|
|
repeated ActiveChannel channels = 11;
|
2016-09-26 06:02:33 +03:00
|
|
|
}
|
|
|
|
|
2016-06-21 21:52:09 +03:00
|
|
|
message Peer {
|
2016-10-27 00:31:41 +03:00
|
|
|
string pub_key = 1;
|
2016-06-21 21:52:09 +03:00
|
|
|
int32 peer_id = 2;
|
|
|
|
string address = 3;
|
|
|
|
|
|
|
|
uint64 bytes_sent = 4;
|
|
|
|
uint64 bytes_recv = 5;
|
|
|
|
|
|
|
|
int64 sat_sent = 6;
|
|
|
|
int64 sat_recv = 7;
|
|
|
|
|
|
|
|
bool inbound = 8;
|
2017-01-26 05:16:28 +03:00
|
|
|
|
|
|
|
int64 ping_time = 9;
|
2016-06-21 21:52:09 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
message ListPeersRequest {}
|
|
|
|
message ListPeersResponse {
|
|
|
|
repeated Peer peers = 1;
|
|
|
|
}
|
2016-06-21 22:32:32 +03:00
|
|
|
|
2016-07-06 04:52:05 +03:00
|
|
|
message GetInfoRequest{}
|
|
|
|
message GetInfoResponse {
|
2016-12-13 02:34:20 +03:00
|
|
|
string identity_pubkey = 1;
|
2016-12-22 23:34:51 +03:00
|
|
|
string alias = 2;
|
2016-07-06 04:52:05 +03:00
|
|
|
|
2016-12-22 23:34:51 +03:00
|
|
|
uint32 num_pending_channels = 3;
|
|
|
|
uint32 num_active_channels = 4;
|
2016-07-06 04:52:05 +03:00
|
|
|
|
2016-12-22 23:34:51 +03:00
|
|
|
uint32 num_peers = 5;
|
2016-11-15 02:54:47 +03:00
|
|
|
|
2016-12-22 23:34:51 +03:00
|
|
|
uint32 block_height = 6;
|
|
|
|
string block_hash = 8;
|
2016-12-13 02:34:20 +03:00
|
|
|
|
2016-12-22 23:34:51 +03:00
|
|
|
bool synced_to_chain = 9;
|
|
|
|
bool testnet = 10;
|
2016-07-06 04:52:05 +03:00
|
|
|
}
|
|
|
|
|
2016-07-08 01:23:29 +03:00
|
|
|
message ConfirmationUpdate {
|
|
|
|
bytes block_sha = 1;
|
|
|
|
int32 block_height = 2;
|
|
|
|
|
|
|
|
uint32 num_confs_left = 3;
|
|
|
|
}
|
|
|
|
|
|
|
|
message ChannelOpenUpdate {
|
|
|
|
ChannelPoint channel_point = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
message ChannelCloseUpdate {
|
|
|
|
bytes closing_txid = 1;
|
|
|
|
|
|
|
|
bool success = 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
message CloseChannelRequest {
|
|
|
|
ChannelPoint channel_point = 1;
|
|
|
|
int64 time_limit = 2;
|
2016-09-12 22:27:44 +03:00
|
|
|
bool force = 3;
|
2016-07-08 01:23:29 +03:00
|
|
|
}
|
|
|
|
message CloseStatusUpdate {
|
|
|
|
oneof update {
|
2016-08-31 02:42:23 +03:00
|
|
|
PendingUpdate close_pending = 1;
|
|
|
|
ConfirmationUpdate confirmation = 2;
|
|
|
|
ChannelCloseUpdate chan_close = 3;
|
2016-07-08 01:23:29 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-08-31 02:42:23 +03:00
|
|
|
message PendingUpdate {
|
|
|
|
bytes txid = 1;
|
|
|
|
}
|
|
|
|
|
2016-06-21 22:32:32 +03:00
|
|
|
message OpenChannelRequest {
|
|
|
|
int32 target_peer_id = 1;
|
2016-10-28 05:41:42 +03:00
|
|
|
bytes node_pubkey = 2;
|
2016-11-11 04:33:24 +03:00
|
|
|
string node_pubkey_string = 3;
|
|
|
|
|
|
|
|
int64 local_funding_amount = 4;
|
2017-01-10 06:00:21 +03:00
|
|
|
int64 push_sat = 5;
|
2016-06-21 22:32:32 +03:00
|
|
|
|
2017-01-10 06:00:21 +03:00
|
|
|
uint32 num_confs = 6;
|
2016-06-21 22:32:32 +03:00
|
|
|
}
|
2016-07-08 01:23:29 +03:00
|
|
|
message OpenStatusUpdate {
|
|
|
|
oneof update {
|
2016-08-31 02:42:23 +03:00
|
|
|
PendingUpdate chan_pending = 1;
|
|
|
|
ConfirmationUpdate confirmation = 2;
|
|
|
|
ChannelOpenUpdate chan_open = 3;
|
2016-07-08 01:23:29 +03:00
|
|
|
}
|
2016-06-21 22:32:32 +03:00
|
|
|
}
|
|
|
|
|
2016-07-08 01:24:52 +03:00
|
|
|
enum ChannelStatus {
|
|
|
|
ALL = 0;
|
|
|
|
OPENING = 1;
|
|
|
|
CLOSING = 2;
|
2016-06-21 22:32:32 +03:00
|
|
|
}
|
2016-07-08 01:24:52 +03:00
|
|
|
message PendingChannelRequest {
|
|
|
|
ChannelStatus status = 1;
|
|
|
|
}
|
|
|
|
message PendingChannelResponse {
|
|
|
|
message PendingChannel {
|
2017-01-13 06:40:38 +03:00
|
|
|
string identity_key = 1;
|
|
|
|
string channel_point = 2;
|
2016-07-08 01:24:52 +03:00
|
|
|
|
2017-01-13 06:40:38 +03:00
|
|
|
int64 capacity = 3;
|
|
|
|
int64 local_balance = 4;
|
|
|
|
int64 remote_balance = 5;
|
2016-07-08 01:24:52 +03:00
|
|
|
|
2017-01-13 06:40:38 +03:00
|
|
|
string closing_txid = 6;
|
2016-07-08 01:24:52 +03:00
|
|
|
|
2017-01-13 06:40:38 +03:00
|
|
|
ChannelStatus status = 7;
|
2016-07-08 01:24:52 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
repeated PendingChannel pending_channels = 1;
|
2016-06-21 22:32:32 +03:00
|
|
|
}
|
|
|
|
|
2016-06-21 21:46:27 +03:00
|
|
|
message WalletBalanceRequest {
|
|
|
|
bool witness_only = 1;
|
|
|
|
}
|
|
|
|
message WalletBalanceResponse {
|
|
|
|
double balance = 1;
|
2015-12-31 05:58:15 +03:00
|
|
|
}
|
2016-07-15 14:02:59 +03:00
|
|
|
|
2016-09-15 21:59:51 +03:00
|
|
|
message ChannelBalanceRequest {
|
|
|
|
}
|
|
|
|
message ChannelBalanceResponse {
|
|
|
|
int64 balance = 1;
|
|
|
|
}
|
|
|
|
|
2016-12-27 08:44:44 +03:00
|
|
|
message RouteRequest {
|
|
|
|
string pub_key = 1;
|
|
|
|
int64 amt = 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
message Hop {
|
|
|
|
uint64 chan_id = 1;
|
|
|
|
int64 chan_capacity = 2;
|
|
|
|
int64 amt_to_forward = 3;
|
|
|
|
int64 fee = 4;
|
|
|
|
}
|
|
|
|
|
|
|
|
message Route {
|
|
|
|
uint32 total_time_lock = 1;
|
|
|
|
int64 total_fees = 2;
|
|
|
|
int64 total_amt = 3;
|
|
|
|
|
|
|
|
repeated Hop hops = 4;
|
|
|
|
}
|
|
|
|
|
|
|
|
message NodeInfoRequest{
|
|
|
|
string pub_key = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
message NodeInfo {
|
|
|
|
LightningNode node = 1;
|
|
|
|
|
|
|
|
uint32 num_channels = 2;
|
|
|
|
int64 total_capacity = 3;
|
|
|
|
}
|
|
|
|
|
|
|
|
message LightningNode {
|
|
|
|
uint32 last_update = 1;
|
|
|
|
string pub_key = 2;
|
|
|
|
string address = 3;
|
|
|
|
string alias = 4;
|
|
|
|
}
|
|
|
|
|
|
|
|
message RoutingPolicy {
|
|
|
|
uint32 time_lock_delta = 1;
|
|
|
|
int64 min_htlc = 2;
|
|
|
|
int64 fee_base_msat = 3;
|
|
|
|
int64 fee_rate_milli_msat = 4;
|
|
|
|
}
|
|
|
|
|
|
|
|
message ChannelEdge {
|
|
|
|
uint64 channel_id = 1;
|
|
|
|
string chan_point = 2;
|
|
|
|
|
|
|
|
uint32 last_update = 3;
|
|
|
|
|
|
|
|
string node1_pub = 4;
|
|
|
|
string node2_pub = 5;
|
|
|
|
|
|
|
|
int64 capacity = 6;
|
|
|
|
|
|
|
|
RoutingPolicy node1_policy = 7;
|
|
|
|
RoutingPolicy node2_policy = 8;
|
|
|
|
}
|
|
|
|
|
|
|
|
message ChannelGraphRequest{}
|
|
|
|
|
|
|
|
message ChannelGraph {
|
|
|
|
repeated LightningNode nodes = 1;
|
|
|
|
repeated ChannelEdge edges = 2;
|
2016-08-20 23:49:35 +03:00
|
|
|
}
|
|
|
|
|
2016-12-27 08:44:44 +03:00
|
|
|
message ChanInfoRequest {
|
|
|
|
uint64 chan_id = 1;
|
2016-07-15 14:02:59 +03:00
|
|
|
}
|
|
|
|
|
2016-12-27 08:44:44 +03:00
|
|
|
message NetworkInfoRequest{}
|
|
|
|
message NetworkInfo {
|
|
|
|
uint32 graph_diameter = 1;
|
|
|
|
double avg_out_degree = 2;
|
|
|
|
uint32 max_out_degree = 3;
|
|
|
|
|
|
|
|
uint32 num_nodes = 4;
|
|
|
|
uint32 num_channels = 5;
|
|
|
|
|
|
|
|
int64 total_network_capacity = 6;
|
|
|
|
|
|
|
|
double avg_channel_size = 7;
|
|
|
|
int64 min_channel_size = 8;
|
|
|
|
int64 max_channel_size = 9;
|
|
|
|
|
|
|
|
// TODO(roasbeef): fee rate info, expiry
|
|
|
|
// * also additional RPC for tracking fee info once in
|
2016-07-15 14:02:59 +03:00
|
|
|
}
|
2016-09-19 21:52:23 +03:00
|
|
|
|
2016-12-27 08:44:44 +03:00
|
|
|
message SetAliasRequest {
|
|
|
|
string new_alias = 1;
|
|
|
|
}
|
|
|
|
message SetAliasResponse{}
|
|
|
|
|
2016-09-19 21:52:23 +03:00
|
|
|
message Invoice {
|
|
|
|
string memo = 1;
|
|
|
|
bytes receipt = 2;
|
|
|
|
|
|
|
|
bytes r_preimage = 3;
|
|
|
|
bytes r_hash = 4;
|
|
|
|
|
|
|
|
int64 value = 5;
|
2016-09-24 01:06:25 +03:00
|
|
|
|
|
|
|
bool settled = 6;
|
2016-11-13 05:03:19 +03:00
|
|
|
|
|
|
|
int64 creation_date = 7;
|
|
|
|
int64 settle_date = 8;
|
2017-01-13 05:51:41 +03:00
|
|
|
|
|
|
|
string payment_request = 9;
|
2016-09-19 21:52:23 +03:00
|
|
|
}
|
|
|
|
message AddInvoiceResponse {
|
|
|
|
bytes r_hash = 1;
|
2017-01-03 02:31:38 +03:00
|
|
|
|
|
|
|
string payment_request = 2;
|
2016-09-19 21:52:23 +03:00
|
|
|
}
|
|
|
|
message PaymentHash {
|
2016-10-16 00:38:47 +03:00
|
|
|
string r_hash_str = 1;
|
|
|
|
bytes r_hash = 2;
|
2016-09-19 21:52:23 +03:00
|
|
|
}
|
|
|
|
message ListInvoiceRequest {
|
|
|
|
bool pending_only = 1;
|
|
|
|
}
|
|
|
|
message ListInvoiceResponse {
|
|
|
|
repeated Invoice invoices = 1;
|
|
|
|
}
|
2016-10-16 00:38:47 +03:00
|
|
|
|
|
|
|
message InvoiceSubscription {}
|
2016-12-05 14:59:36 +03:00
|
|
|
|
|
|
|
|
|
|
|
message Payment {
|
2016-12-31 03:38:48 +03:00
|
|
|
string payment_hash = 1;
|
2016-12-05 14:59:36 +03:00
|
|
|
int64 value = 2;
|
|
|
|
|
|
|
|
int64 creation_date = 3;
|
2016-12-31 03:38:48 +03:00
|
|
|
|
2016-12-05 14:59:36 +03:00
|
|
|
repeated string path = 4;
|
2016-12-31 03:38:48 +03:00
|
|
|
|
2016-12-05 14:59:36 +03:00
|
|
|
int64 fee = 5;
|
|
|
|
}
|
|
|
|
|
|
|
|
message ListPaymentsRequest {
|
|
|
|
}
|
|
|
|
|
|
|
|
message ListPaymentsResponse {
|
|
|
|
repeated Payment payments = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
message DeleteAllPaymentsRequest {
|
|
|
|
}
|
|
|
|
|
|
|
|
message DeleteAllPaymentsResponse {
|
2016-12-27 08:44:44 +03:00
|
|
|
}
|
2017-01-15 05:14:03 +03:00
|
|
|
|
|
|
|
message DebugLevelRequest {
|
|
|
|
bool show = 1;
|
|
|
|
string level_spec = 2;
|
|
|
|
}
|
|
|
|
message DebugLevelResponse {
|
|
|
|
string sub_systems = 1;
|
|
|
|
}
|
2017-01-18 00:24:55 +03:00
|
|
|
|
|
|
|
message PayReqString {
|
|
|
|
string pay_req = 1;
|
|
|
|
}
|
|
|
|
message PayReq {
|
|
|
|
string destination = 1;
|
|
|
|
string payment_hash = 2;
|
|
|
|
int64 num_satoshis = 3;
|
|
|
|
}
|