up
This commit is contained in:
parent
c5fd454089
commit
4f550a937f
69 changed files with 8098 additions and 23341 deletions
|
|
@ -12,6 +12,73 @@ message EncryptionExchangeRequest {
|
|||
string device_id = 2;
|
||||
}
|
||||
|
||||
message LndGetInfoRequest {
|
||||
int64 node_id = 1;
|
||||
}
|
||||
|
||||
message LndGetInfoResponse {
|
||||
string alias = 1;
|
||||
}
|
||||
|
||||
message NewAddressResponse{
|
||||
string address = 1;
|
||||
}
|
||||
message PayAddressRequest{
|
||||
string address = 1;
|
||||
int64 amout_sats = 2;
|
||||
}
|
||||
|
||||
message PayAddressResponse{
|
||||
string tx_id = 1;
|
||||
}
|
||||
|
||||
message NewInvoiceRequest{
|
||||
int64 amount_sats = 1;
|
||||
}
|
||||
|
||||
message NewInvoiceResponse{
|
||||
string invoice = 1;
|
||||
}
|
||||
|
||||
message PayInvoiceRequest{
|
||||
string invoce = 1;
|
||||
}
|
||||
|
||||
message PayInvoiceResponse{
|
||||
string preimage = 1;
|
||||
}
|
||||
|
||||
message OpenChannelRequest{
|
||||
string destination = 1;
|
||||
int64 channel_balance = 2;
|
||||
int64 push_amount = 3;
|
||||
}
|
||||
|
||||
message OpenChannelResponse{
|
||||
string channel_id = 1;
|
||||
}
|
||||
|
||||
message GetOpenChannelLNURLResponse{
|
||||
string lnurl = 1;
|
||||
}
|
||||
|
||||
message AddUserRequest{
|
||||
string callback_url = 1;
|
||||
string name = 2;
|
||||
string secret = 3;
|
||||
}
|
||||
|
||||
message AddUserResponse{
|
||||
string user_id = 1;
|
||||
string auth_token = 2;
|
||||
}
|
||||
|
||||
message AuthUserRequest{
|
||||
string name = 2;
|
||||
string secret = 3;
|
||||
}
|
||||
|
||||
message AuthUserResponse{
|
||||
string user_id = 1;
|
||||
string auth_token = 2;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue