mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-04-03 09:28:34 +02:00
lnrpc: add routerrpc doc tags to enable lncli api doc generation
This commit is contained in:
parent
305e27d7a1
commit
179295e441
@ -6,6 +6,24 @@ package routerrpc;
|
||||
|
||||
option go_package = "github.com/lightningnetwork/lnd/lnrpc/routerrpc";
|
||||
|
||||
/*
|
||||
* Comments in this file will be directly parsed into the API
|
||||
* Documentation as descriptions of the associated method, message, or field.
|
||||
* These descriptions should go right above the definition of the object, and
|
||||
* can be in either block or // comment format.
|
||||
*
|
||||
* An RPC method can be matched to an lncli command by placing a line in the
|
||||
* beginning of the description in exactly the following format:
|
||||
* lncli: `methodname`
|
||||
*
|
||||
* Failure to specify the exact name of the command will cause documentation
|
||||
* generation to fail.
|
||||
*
|
||||
* More information on how exactly the gRPC documentation is generated from
|
||||
* this proto file can be found here:
|
||||
* https://github.com/lightninglabs/lightning-api
|
||||
*/
|
||||
|
||||
// Router is a service that offers advanced interaction with the router
|
||||
// subsystem of the daemon.
|
||||
service Router {
|
||||
@ -57,21 +75,21 @@ service Router {
|
||||
*/
|
||||
rpc SendToRouteV2 (SendToRouteRequest) returns (lnrpc.HTLCAttempt);
|
||||
|
||||
/*
|
||||
/* lncli: `resetmc`
|
||||
ResetMissionControl clears all mission control state and starts with a clean
|
||||
slate.
|
||||
*/
|
||||
rpc ResetMissionControl (ResetMissionControlRequest)
|
||||
returns (ResetMissionControlResponse);
|
||||
|
||||
/*
|
||||
/* lncli: `querymc`
|
||||
QueryMissionControl exposes the internal mission control state to callers.
|
||||
It is a development feature.
|
||||
*/
|
||||
rpc QueryMissionControl (QueryMissionControlRequest)
|
||||
returns (QueryMissionControlResponse);
|
||||
|
||||
/*
|
||||
/* lncli: `importmc`
|
||||
XImportMissionControl is an experimental API that imports the state provided
|
||||
to the internal mission control's state, using all results which are more
|
||||
recent than our existing values. These values will only be imported
|
||||
@ -80,20 +98,20 @@ service Router {
|
||||
rpc XImportMissionControl (XImportMissionControlRequest)
|
||||
returns (XImportMissionControlResponse);
|
||||
|
||||
/*
|
||||
/* lncli: `getmccfg`
|
||||
GetMissionControlConfig returns mission control's current config.
|
||||
*/
|
||||
rpc GetMissionControlConfig (GetMissionControlConfigRequest)
|
||||
returns (GetMissionControlConfigResponse);
|
||||
|
||||
/*
|
||||
/* lncli: `setmccfg`
|
||||
SetMissionControlConfig will set mission control's config, if the config
|
||||
provided is valid.
|
||||
*/
|
||||
rpc SetMissionControlConfig (SetMissionControlConfigRequest)
|
||||
returns (SetMissionControlConfigResponse);
|
||||
|
||||
/*
|
||||
/* lncli: `queryprob`
|
||||
Deprecated. QueryProbability returns the current success probability
|
||||
estimate for a given node pair and amount. The call returns a zero success
|
||||
probability if no channel is available or if the amount violates min/max
|
||||
@ -102,7 +120,7 @@ service Router {
|
||||
rpc QueryProbability (QueryProbabilityRequest)
|
||||
returns (QueryProbabilityResponse);
|
||||
|
||||
/*
|
||||
/* lncli: `buildroute`
|
||||
BuildRoute builds a fully specified route based on a list of hop public
|
||||
keys. It retrieves the relevant channel policies from the graph in order to
|
||||
calculate the correct fees and time locks.
|
||||
@ -143,7 +161,7 @@ service Router {
|
||||
rpc HtlcInterceptor (stream ForwardHtlcInterceptResponse)
|
||||
returns (stream ForwardHtlcInterceptRequest);
|
||||
|
||||
/*
|
||||
/* lncli: `updatechanstatus`
|
||||
UpdateChanStatus attempts to manually set the state of a channel
|
||||
(enabled, disabled, or auto). A manual "disable" request will cause the
|
||||
channel to stay disabled until a subsequent manual request of either
|
||||
|
@ -93,7 +93,7 @@
|
||||
},
|
||||
"/v2/router/mc": {
|
||||
"get": {
|
||||
"summary": "QueryMissionControl exposes the internal mission control state to callers.\nIt is a development feature.",
|
||||
"summary": "lncli: `querymc`\nQueryMissionControl exposes the internal mission control state to callers.\nIt is a development feature.",
|
||||
"operationId": "Router_QueryMissionControl",
|
||||
"responses": {
|
||||
"200": {
|
||||
@ -116,7 +116,7 @@
|
||||
},
|
||||
"/v2/router/mc/probability/{from_node}/{to_node}/{amt_msat}": {
|
||||
"get": {
|
||||
"summary": "Deprecated. QueryProbability returns the current success probability\nestimate for a given node pair and amount. The call returns a zero success\nprobability if no channel is available or if the amount violates min/max\nHTLC constraints.",
|
||||
"summary": "lncli: `queryprob`\nDeprecated. QueryProbability returns the current success probability\nestimate for a given node pair and amount. The call returns a zero success\nprobability if no channel is available or if the amount violates min/max\nHTLC constraints.",
|
||||
"operationId": "Router_QueryProbability",
|
||||
"responses": {
|
||||
"200": {
|
||||
@ -165,7 +165,7 @@
|
||||
},
|
||||
"/v2/router/mc/reset": {
|
||||
"post": {
|
||||
"summary": "ResetMissionControl clears all mission control state and starts with a clean\nslate.",
|
||||
"summary": "lncli: `resetmc`\nResetMissionControl clears all mission control state and starts with a clean\nslate.",
|
||||
"operationId": "Router_ResetMissionControl",
|
||||
"responses": {
|
||||
"200": {
|
||||
@ -198,7 +198,7 @@
|
||||
},
|
||||
"/v2/router/mccfg": {
|
||||
"get": {
|
||||
"summary": "GetMissionControlConfig returns mission control's current config.",
|
||||
"summary": "lncli: `getmccfg`\nGetMissionControlConfig returns mission control's current config.",
|
||||
"operationId": "Router_GetMissionControlConfig",
|
||||
"responses": {
|
||||
"200": {
|
||||
@ -219,7 +219,7 @@
|
||||
]
|
||||
},
|
||||
"post": {
|
||||
"summary": "SetMissionControlConfig will set mission control's config, if the config\nprovided is valid.",
|
||||
"summary": "lncli: `setmccfg`\nSetMissionControlConfig will set mission control's config, if the config\nprovided is valid.",
|
||||
"operationId": "Router_SetMissionControlConfig",
|
||||
"responses": {
|
||||
"200": {
|
||||
@ -293,7 +293,7 @@
|
||||
},
|
||||
"/v2/router/route": {
|
||||
"post": {
|
||||
"summary": "BuildRoute builds a fully specified route based on a list of hop public\nkeys. It retrieves the relevant channel policies from the graph in order to\ncalculate the correct fees and time locks.",
|
||||
"summary": "lncli: `buildroute`\nBuildRoute builds a fully specified route based on a list of hop public\nkeys. It retrieves the relevant channel policies from the graph in order to\ncalculate the correct fees and time locks.",
|
||||
"operationId": "Router_BuildRoute",
|
||||
"responses": {
|
||||
"200": {
|
||||
@ -483,7 +483,7 @@
|
||||
},
|
||||
"/v2/router/updatechanstatus": {
|
||||
"post": {
|
||||
"summary": "UpdateChanStatus attempts to manually set the state of a channel\n(enabled, disabled, or auto). A manual \"disable\" request will cause the\nchannel to stay disabled until a subsequent manual request of either\n\"enable\" or \"auto\".",
|
||||
"summary": "lncli: `updatechanstatus`\nUpdateChanStatus attempts to manually set the state of a channel\n(enabled, disabled, or auto). A manual \"disable\" request will cause the\nchannel to stay disabled until a subsequent manual request of either\n\"enable\" or \"auto\".",
|
||||
"operationId": "Router_UpdateChanStatus",
|
||||
"responses": {
|
||||
"200": {
|
||||
@ -516,7 +516,7 @@
|
||||
},
|
||||
"/v2/router/x/importhistory": {
|
||||
"post": {
|
||||
"summary": "XImportMissionControl is an experimental API that imports the state provided\nto the internal mission control's state, using all results which are more\nrecent than our existing values. These values will only be imported\nin-memory, and will not be persisted across restarts.",
|
||||
"summary": "lncli: `importmc`\nXImportMissionControl is an experimental API that imports the state provided\nto the internal mission control's state, using all results which are more\nrecent than our existing values. These values will only be imported\nin-memory, and will not be persisted across restarts.",
|
||||
"operationId": "Router_XImportMissionControl",
|
||||
"responses": {
|
||||
"200": {
|
||||
|
@ -49,27 +49,34 @@ type RouterClient interface {
|
||||
// route manually. This can be used for things like rebalancing, and atomic
|
||||
// swaps.
|
||||
SendToRouteV2(ctx context.Context, in *SendToRouteRequest, opts ...grpc.CallOption) (*lnrpc.HTLCAttempt, error)
|
||||
// lncli: `resetmc`
|
||||
// ResetMissionControl clears all mission control state and starts with a clean
|
||||
// slate.
|
||||
ResetMissionControl(ctx context.Context, in *ResetMissionControlRequest, opts ...grpc.CallOption) (*ResetMissionControlResponse, error)
|
||||
// lncli: `querymc`
|
||||
// QueryMissionControl exposes the internal mission control state to callers.
|
||||
// It is a development feature.
|
||||
QueryMissionControl(ctx context.Context, in *QueryMissionControlRequest, opts ...grpc.CallOption) (*QueryMissionControlResponse, error)
|
||||
// lncli: `importmc`
|
||||
// XImportMissionControl is an experimental API that imports the state provided
|
||||
// to the internal mission control's state, using all results which are more
|
||||
// recent than our existing values. These values will only be imported
|
||||
// in-memory, and will not be persisted across restarts.
|
||||
XImportMissionControl(ctx context.Context, in *XImportMissionControlRequest, opts ...grpc.CallOption) (*XImportMissionControlResponse, error)
|
||||
// lncli: `getmccfg`
|
||||
// GetMissionControlConfig returns mission control's current config.
|
||||
GetMissionControlConfig(ctx context.Context, in *GetMissionControlConfigRequest, opts ...grpc.CallOption) (*GetMissionControlConfigResponse, error)
|
||||
// lncli: `setmccfg`
|
||||
// SetMissionControlConfig will set mission control's config, if the config
|
||||
// provided is valid.
|
||||
SetMissionControlConfig(ctx context.Context, in *SetMissionControlConfigRequest, opts ...grpc.CallOption) (*SetMissionControlConfigResponse, error)
|
||||
// lncli: `queryprob`
|
||||
// Deprecated. QueryProbability returns the current success probability
|
||||
// estimate for a given node pair and amount. The call returns a zero success
|
||||
// probability if no channel is available or if the amount violates min/max
|
||||
// HTLC constraints.
|
||||
QueryProbability(ctx context.Context, in *QueryProbabilityRequest, opts ...grpc.CallOption) (*QueryProbabilityResponse, error)
|
||||
// lncli: `buildroute`
|
||||
// BuildRoute builds a fully specified route based on a list of hop public
|
||||
// keys. It retrieves the relevant channel policies from the graph in order to
|
||||
// calculate the correct fees and time locks.
|
||||
@ -95,6 +102,7 @@ type RouterClient interface {
|
||||
// In case of interception, the htlc can be either settled, cancelled or
|
||||
// resumed later by using the ResolveHoldForward endpoint.
|
||||
HtlcInterceptor(ctx context.Context, opts ...grpc.CallOption) (Router_HtlcInterceptorClient, error)
|
||||
// lncli: `updatechanstatus`
|
||||
// UpdateChanStatus attempts to manually set the state of a channel
|
||||
// (enabled, disabled, or auto). A manual "disable" request will cause the
|
||||
// channel to stay disabled until a subsequent manual request of either
|
||||
@ -469,27 +477,34 @@ type RouterServer interface {
|
||||
// route manually. This can be used for things like rebalancing, and atomic
|
||||
// swaps.
|
||||
SendToRouteV2(context.Context, *SendToRouteRequest) (*lnrpc.HTLCAttempt, error)
|
||||
// lncli: `resetmc`
|
||||
// ResetMissionControl clears all mission control state and starts with a clean
|
||||
// slate.
|
||||
ResetMissionControl(context.Context, *ResetMissionControlRequest) (*ResetMissionControlResponse, error)
|
||||
// lncli: `querymc`
|
||||
// QueryMissionControl exposes the internal mission control state to callers.
|
||||
// It is a development feature.
|
||||
QueryMissionControl(context.Context, *QueryMissionControlRequest) (*QueryMissionControlResponse, error)
|
||||
// lncli: `importmc`
|
||||
// XImportMissionControl is an experimental API that imports the state provided
|
||||
// to the internal mission control's state, using all results which are more
|
||||
// recent than our existing values. These values will only be imported
|
||||
// in-memory, and will not be persisted across restarts.
|
||||
XImportMissionControl(context.Context, *XImportMissionControlRequest) (*XImportMissionControlResponse, error)
|
||||
// lncli: `getmccfg`
|
||||
// GetMissionControlConfig returns mission control's current config.
|
||||
GetMissionControlConfig(context.Context, *GetMissionControlConfigRequest) (*GetMissionControlConfigResponse, error)
|
||||
// lncli: `setmccfg`
|
||||
// SetMissionControlConfig will set mission control's config, if the config
|
||||
// provided is valid.
|
||||
SetMissionControlConfig(context.Context, *SetMissionControlConfigRequest) (*SetMissionControlConfigResponse, error)
|
||||
// lncli: `queryprob`
|
||||
// Deprecated. QueryProbability returns the current success probability
|
||||
// estimate for a given node pair and amount. The call returns a zero success
|
||||
// probability if no channel is available or if the amount violates min/max
|
||||
// HTLC constraints.
|
||||
QueryProbability(context.Context, *QueryProbabilityRequest) (*QueryProbabilityResponse, error)
|
||||
// lncli: `buildroute`
|
||||
// BuildRoute builds a fully specified route based on a list of hop public
|
||||
// keys. It retrieves the relevant channel policies from the graph in order to
|
||||
// calculate the correct fees and time locks.
|
||||
@ -515,6 +530,7 @@ type RouterServer interface {
|
||||
// In case of interception, the htlc can be either settled, cancelled or
|
||||
// resumed later by using the ResolveHoldForward endpoint.
|
||||
HtlcInterceptor(Router_HtlcInterceptorServer) error
|
||||
// lncli: `updatechanstatus`
|
||||
// UpdateChanStatus attempts to manually set the state of a channel
|
||||
// (enabled, disabled, or auto). A manual "disable" request will cause the
|
||||
// channel to stay disabled until a subsequent manual request of either
|
||||
|
Loading…
x
Reference in New Issue
Block a user