2019-03-06 20:13:50 +00:00
|
|
|
syntax = "proto3";
|
|
|
|
|
|
|
|
import "google/api/annotations.proto";
|
|
|
|
|
2019-03-06 23:53:17 +00:00
|
|
|
package looprpc;
|
2019-03-06 20:13:50 +00:00
|
|
|
|
|
|
|
service SwapServer {
|
2019-10-08 20:28:20 +00:00
|
|
|
rpc LoopOutTerms(ServerLoopOutTermsRequest) returns (ServerLoopOutTerms);
|
|
|
|
|
2019-03-07 02:24:29 +00:00
|
|
|
rpc NewLoopOutSwap(ServerLoopOutRequest) returns (ServerLoopOutResponse);
|
2019-10-08 20:28:20 +00:00
|
|
|
|
2019-03-07 02:24:29 +00:00
|
|
|
rpc LoopOutQuote(ServerLoopOutQuoteRequest) returns (ServerLoopOutQuote);
|
2019-03-12 15:10:37 +00:00
|
|
|
|
2019-10-08 20:28:20 +00:00
|
|
|
rpc LoopInTerms(ServerLoopInTermsRequest) returns (ServerLoopInTerms);
|
|
|
|
|
2019-03-12 15:10:37 +00:00
|
|
|
rpc NewLoopInSwap(ServerLoopInRequest) returns (ServerLoopInResponse);
|
|
|
|
|
|
|
|
rpc LoopInQuote(ServerLoopInQuoteRequest) returns (ServerLoopInQuoteResponse);
|
2019-03-06 20:13:50 +00:00
|
|
|
}
|
|
|
|
|
2019-03-07 02:24:29 +00:00
|
|
|
message ServerLoopOutRequest {
|
2019-03-06 20:13:50 +00:00
|
|
|
bytes receiver_key = 1;
|
2019-03-07 02:24:29 +00:00
|
|
|
|
2019-03-06 20:13:50 +00:00
|
|
|
bytes swap_hash = 2;
|
2019-03-07 02:24:29 +00:00
|
|
|
|
2019-03-06 20:13:50 +00:00
|
|
|
uint64 amt = 3;
|
2019-11-14 09:35:32 +00:00
|
|
|
|
|
|
|
/// The unix time in seconds we want the on-chain swap to be published by.
|
|
|
|
int64 swap_publication_deadline = 4;
|
2019-03-06 20:13:50 +00:00
|
|
|
}
|
|
|
|
|
2019-03-07 02:24:29 +00:00
|
|
|
message ServerLoopOutResponse {
|
2019-03-06 20:13:50 +00:00
|
|
|
string swap_invoice= 1;
|
2019-03-07 02:24:29 +00:00
|
|
|
|
2019-03-06 20:13:50 +00:00
|
|
|
string prepay_invoice = 2;
|
2019-03-07 02:24:29 +00:00
|
|
|
|
2019-03-06 20:13:50 +00:00
|
|
|
bytes sender_key = 3;
|
2019-03-07 02:24:29 +00:00
|
|
|
|
2019-03-06 20:13:50 +00:00
|
|
|
int32 expiry = 4;
|
|
|
|
}
|
|
|
|
|
2019-03-07 02:24:29 +00:00
|
|
|
message ServerLoopOutQuoteRequest {
|
2019-10-08 20:28:20 +00:00
|
|
|
/// The swap amount. If zero, a quote for a maximum amt swap will be given.
|
|
|
|
uint64 amt = 1;
|
2020-01-07 12:28:22 +00:00
|
|
|
|
|
|
|
/// The unix time in seconds we want the on-chain swap to be published by.
|
|
|
|
int64 swap_publication_deadline = 2;
|
2019-03-06 20:13:50 +00:00
|
|
|
}
|
|
|
|
|
2019-03-07 02:24:29 +00:00
|
|
|
message ServerLoopOutQuote {
|
2019-03-06 20:13:50 +00:00
|
|
|
string swap_payment_dest = 1;
|
2019-03-07 02:24:29 +00:00
|
|
|
|
2019-10-08 20:28:20 +00:00
|
|
|
/// The total estimated swap fee given the quote amt.
|
|
|
|
int64 swap_fee = 2;
|
2019-03-07 02:24:29 +00:00
|
|
|
|
2019-10-08 20:28:20 +00:00
|
|
|
/// Deprecated, total swap fee given quote amt is calculated in swap_fee.
|
|
|
|
int64 swap_fee_rate = 3 [deprecated = true];
|
2019-03-07 02:24:29 +00:00
|
|
|
|
2019-03-06 20:13:50 +00:00
|
|
|
uint64 prepay_amt = 4;
|
2019-03-07 02:24:29 +00:00
|
|
|
|
2019-10-08 20:28:20 +00:00
|
|
|
uint64 min_swap_amount = 5 [deprecated = true];
|
2019-03-07 02:24:29 +00:00
|
|
|
|
2019-10-08 20:28:20 +00:00
|
|
|
uint64 max_swap_amount = 6 [deprecated = true];
|
2019-03-07 02:24:29 +00:00
|
|
|
|
2019-03-06 20:13:50 +00:00
|
|
|
int32 cltv_delta = 7;
|
|
|
|
}
|
2019-03-12 15:10:37 +00:00
|
|
|
|
2019-10-08 20:28:20 +00:00
|
|
|
message ServerLoopOutTermsRequest {
|
|
|
|
}
|
|
|
|
|
|
|
|
message ServerLoopOutTerms {
|
|
|
|
uint64 min_swap_amount = 1;
|
|
|
|
uint64 max_swap_amount = 2;
|
|
|
|
}
|
|
|
|
|
2019-03-12 15:10:37 +00:00
|
|
|
message ServerLoopInRequest {
|
|
|
|
bytes sender_key = 1;
|
|
|
|
bytes swap_hash = 2;
|
|
|
|
uint64 amt = 3;
|
|
|
|
string swap_invoice = 4;
|
|
|
|
}
|
|
|
|
|
|
|
|
message ServerLoopInResponse {
|
|
|
|
bytes receiver_key = 1;
|
|
|
|
int32 expiry = 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
message ServerLoopInQuoteRequest {
|
2019-10-08 20:28:20 +00:00
|
|
|
/// The swap amount. If zero, a quote for a maximum amt swap will be given.
|
|
|
|
uint64 amt = 1;
|
2019-03-12 15:10:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
message ServerLoopInQuoteResponse {
|
2019-10-08 20:28:20 +00:00
|
|
|
int64 swap_fee = 1;
|
|
|
|
int64 swap_fee_rate = 2 [deprecated=true];
|
|
|
|
uint64 min_swap_amount = 4 [deprecated=true];
|
|
|
|
uint64 max_swap_amount = 5 [deprecated=true];
|
2019-03-12 15:10:37 +00:00
|
|
|
int32 cltv_delta = 6;
|
2019-10-08 20:28:20 +00:00
|
|
|
}
|
2019-10-08 20:28:20 +00:00
|
|
|
|
|
|
|
message ServerLoopInTermsRequest {
|
|
|
|
}
|
|
|
|
|
|
|
|
message ServerLoopInTerms {
|
|
|
|
uint64 min_swap_amount = 1;
|
|
|
|
uint64 max_swap_amount = 2;
|
|
|
|
}
|