README
lnrpc
This lnrpc package implements both a client and server for lnd
s RPC system
which is based off of the high-performance cross-platform
gRPC RPC framework. By default, only the Go
client+server libraries are compiled within the package. In order to compile
the client side libraries for other supported languages, the protoc
tool will
need to be used to generate the compiled protos for a specific language.
The following languages are supported as clients to lnrpc
: C++, Go, Node.js,
Java, Ruby, Android Java, PHP, Python, C#, Objective-C.
Service: Lightning
The list of defined RPCs on the service Lightning
are the following (with a brief
description):
- WalletBalance
- Returns the wallet's current confirmed balance in ACM.
- ChannelBalance
- Returns the daemons' available aggregate channel balance in ACM.
- GetTransactions
- Returns a list of on-chain transactions that pay to or are spends from
lnd
.
- Returns a list of on-chain transactions that pay to or are spends from
- SendCoins
- Sends an amount of satoshis to a specific address.
- ListUnspent
- Lists available utxos within a range of confirmations.
- SubscribeTransactions
- Returns a stream which sends async notifications each time a transaction is created or one is received that pays to us.
- SendMany
- Allows the caller to create a transaction with an arbitrary fan-out (many outputs).
- NewAddress
- Returns a new address, the following address types are supported: pay-to-witness-key-hash (p2wkh) and nested-pay-to-witness-key-hash (np2wkh).
- SignMessage
- Signs a message with the node's identity key and returns a zbase32 encoded signature.
- VerifyMessage
- Verifies a signature signed by another node on a message. The other node must be an active node in the channel database.
- ConnectPeer
- Connects to a peer identified by a public key and host.
- DisconnectPeer
- Disconnects a peer identified by a public key.
- ListPeers
- Lists all available connected peers.
- GetInfo
- Returns basic data concerning the daemon.
- PendingChannels
- List the number of pending (not fully confirmed) channels.
- ListChannels
- List all active channels the daemon manages.
- OpenChannelSync
- OpenChannelSync is a synchronous version of the OpenChannel RPC call.
- OpenChannel
- Attempts to open a channel to a target peer with a specific amount and push amount.
- CloseChannel
- Attempts to close a target channel. A channel can either be closed cooperatively if the channel peer is online, or using a "force" close to broadcast the latest channel state.
- SendPayment
- Send a payment over Lightning to a target peer.
- SendPaymentSync
- SendPaymentSync is the synchronous non-streaming version of SendPayment.
- SendToRoute
- Send a payment over Lightning to a target peer through a route explicitly defined by the user.
- SendToRouteSync
- SendToRouteSync is the synchronous non-streaming version of SendToRoute.
- AddInvoice
- Adds an invoice to the daemon. Invoices are automatically settled once seen as an incoming HTLC.
- ListInvoices
- Lists all stored invoices.
- LookupInvoice
- Attempts to look up an invoice by payment hash (r-hash).
- SubscribeInvoices
- Creates a uni-directional stream which receives async notifications as the daemon settles invoices
- DecodePayReq
- Decode a payment request, returning a full description of the conditions encoded within the payment request.
- ListPayments
- List all outgoing Lightning payments the daemon has made.
- DeleteAllPayments
- Deletes all outgoing payments from DB.
- DescribeGraph
- Returns a description of the known channel graph from the PoV of the node.
- GetChanInfo
- Returns information for a specific channel identified by channel ID.
- GetNodeInfo
- Returns information for a particular node identified by its identity public key.
- QueryRoutes
- Queries for a possible route to a target peer which can carry a certain amount of payment.
- GetNetworkInfo
- Returns some network level statistics.
- StopDaemon
- Sends a shutdown request to the interrupt handler, triggering a graceful shutdown of the daemon.
- SubscribeChannelGraph
- Creates a stream which receives async notifications upon any changes to the channel graph topology from the point of view of the responding node.
- DebugLevel
- Set logging verbosity of lnd programmatically
- FeeReport
- Allows the caller to obtain a report detailing the current fee schedule enforced by the node globally for each channel.
- UpdateChannelPolicy
- Allows the caller to update the fee schedule and channel policies for all channels globally, or a particular channel
Service: WalletUnlocker
The list of defined RPCs on the service WalletUnlocker
are the following (with a brief
description):
- CreateWallet
- Set encryption password for the wallet database.
- UnlockWallet
- Provide a password to unlock the wallet database.
Installation and Updating
$ go get -u github.com/Actinium-project/lnd/lnrpc
Generate protobuf definitions
- Download v.3.4.0 of
protoc
for your operating system and add it to yourPATH
. For example, if using macOS:
$ curl -LO https://github.com/google/protobuf/releases/download/v3.4.0/protoc-3.4.0-osx-x86_64.zip
$ unzip protoc-3.4.0-osx-x86_64.zip -d protoc
$ export PATH=$PWD/protoc/bin:$PATH
- Install
golang/protobuf
at commitaa810b61a9c79d51363740d207bb46cf8e620ed5
(v1.2.0).
$ git clone https://github.com/golang/protobuf $GOPATH/src/github.com/golang/protobuf
$ cd $GOPATH/src/github.com/golang/protobuf
$ git reset --hard aa810b61a9c79d51363740d207bb46cf8e620ed5
$ make
- Install 'genproto' at commit
a8101f21cf983e773d0c1133ebc5424792003214
.
$ go get google.golang.org/genproto
$ cd $GOPATH/src/google.golang.org/genproto
$ git reset --hard a8101f21cf983e773d0c1133ebc5424792003214
- Install
grpc-ecosystem/grpc-gateway
at commitf2862b476edcef83412c7af8687c9cd8e4097c0f
.
$ git clone https://github.com/grpc-ecosystem/grpc-gateway $GOPATH/src/github.com/grpc-ecosystem/grpc-gateway
$ cd $GOPATH/src/github.com/grpc-ecosystem/grpc-gateway
$ git reset --hard f2862b476edcef83412c7af8687c9cd8e4097c0f
$ go install ./protoc-gen-grpc-gateway ./protoc-gen-swagger
- Run
gen_protos.sh
to generate new protobuf definitions.
Documentation
Overview ¶
Package lnrpc is a reverse proxy.
It translates gRPC into RESTful JSON APIs.
Index ¶
- Variables
- func FileExists(name string) bool
- func RegisterLightningHandler(ctx context.Context, mux *runtime.ServeMux, conn *grpc.ClientConn) error
- func RegisterLightningHandlerFromEndpoint(ctx context.Context, mux *runtime.ServeMux, endpoint string, ...) (err error)
- func RegisterLightningServer(s *grpc.Server, srv LightningServer)
- func RegisterSubServer(driver *SubServerDriver) error
- func RegisterWalletUnlockerHandler(ctx context.Context, mux *runtime.ServeMux, conn *grpc.ClientConn) error
- func RegisterWalletUnlockerHandlerFromEndpoint(ctx context.Context, mux *runtime.ServeMux, endpoint string, ...) (err error)
- func RegisterWalletUnlockerServer(s *grpc.Server, srv WalletUnlockerServer)
- func SupportedServers() []string
- type AbandonChannelRequest
- func (*AbandonChannelRequest) Descriptor() ([]byte, []int)
- func (m *AbandonChannelRequest) GetChannelPoint() *ChannelPoint
- func (*AbandonChannelRequest) ProtoMessage()
- func (m *AbandonChannelRequest) Reset()
- func (m *AbandonChannelRequest) String() string
- func (m *AbandonChannelRequest) XXX_DiscardUnknown()
- func (m *AbandonChannelRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
- func (dst *AbandonChannelRequest) XXX_Merge(src proto.Message)
- func (m *AbandonChannelRequest) XXX_Size() int
- func (m *AbandonChannelRequest) XXX_Unmarshal(b []byte) error
- type AbandonChannelResponse
- func (*AbandonChannelResponse) Descriptor() ([]byte, []int)
- func (*AbandonChannelResponse) ProtoMessage()
- func (m *AbandonChannelResponse) Reset()
- func (m *AbandonChannelResponse) String() string
- func (m *AbandonChannelResponse) XXX_DiscardUnknown()
- func (m *AbandonChannelResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
- func (dst *AbandonChannelResponse) XXX_Merge(src proto.Message)
- func (m *AbandonChannelResponse) XXX_Size() int
- func (m *AbandonChannelResponse) XXX_Unmarshal(b []byte) error
- type AddInvoiceResponse
- func (*AddInvoiceResponse) Descriptor() ([]byte, []int)
- func (m *AddInvoiceResponse) GetAddIndex() uint64
- func (m *AddInvoiceResponse) GetPaymentRequest() string
- func (m *AddInvoiceResponse) GetRHash() []byte
- func (*AddInvoiceResponse) ProtoMessage()
- func (m *AddInvoiceResponse) Reset()
- func (m *AddInvoiceResponse) String() string
- func (m *AddInvoiceResponse) XXX_DiscardUnknown()
- func (m *AddInvoiceResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
- func (dst *AddInvoiceResponse) XXX_Merge(src proto.Message)
- func (m *AddInvoiceResponse) XXX_Size() int
- func (m *AddInvoiceResponse) XXX_Unmarshal(b []byte) error
- type AddressType
- type Chain
- func (*Chain) Descriptor() ([]byte, []int)
- func (m *Chain) GetChain() string
- func (m *Chain) GetNetwork() string
- func (*Chain) ProtoMessage()
- func (m *Chain) Reset()
- func (m *Chain) String() string
- func (m *Chain) XXX_DiscardUnknown()
- func (m *Chain) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
- func (dst *Chain) XXX_Merge(src proto.Message)
- func (m *Chain) XXX_Size() int
- func (m *Chain) XXX_Unmarshal(b []byte) error
- type ChanInfoRequest
- func (*ChanInfoRequest) Descriptor() ([]byte, []int)
- func (m *ChanInfoRequest) GetChanId() uint64
- func (*ChanInfoRequest) ProtoMessage()
- func (m *ChanInfoRequest) Reset()
- func (m *ChanInfoRequest) String() string
- func (m *ChanInfoRequest) XXX_DiscardUnknown()
- func (m *ChanInfoRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
- func (dst *ChanInfoRequest) XXX_Merge(src proto.Message)
- func (m *ChanInfoRequest) XXX_Size() int
- func (m *ChanInfoRequest) XXX_Unmarshal(b []byte) error
- type ChangePasswordRequest
- func (*ChangePasswordRequest) Descriptor() ([]byte, []int)
- func (m *ChangePasswordRequest) GetCurrentPassword() []byte
- func (m *ChangePasswordRequest) GetNewPassword() []byte
- func (*ChangePasswordRequest) ProtoMessage()
- func (m *ChangePasswordRequest) Reset()
- func (m *ChangePasswordRequest) String() string
- func (m *ChangePasswordRequest) XXX_DiscardUnknown()
- func (m *ChangePasswordRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
- func (dst *ChangePasswordRequest) XXX_Merge(src proto.Message)
- func (m *ChangePasswordRequest) XXX_Size() int
- func (m *ChangePasswordRequest) XXX_Unmarshal(b []byte) error
- type ChangePasswordResponse
- func (*ChangePasswordResponse) Descriptor() ([]byte, []int)
- func (*ChangePasswordResponse) ProtoMessage()
- func (m *ChangePasswordResponse) Reset()
- func (m *ChangePasswordResponse) String() string
- func (m *ChangePasswordResponse) XXX_DiscardUnknown()
- func (m *ChangePasswordResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
- func (dst *ChangePasswordResponse) XXX_Merge(src proto.Message)
- func (m *ChangePasswordResponse) XXX_Size() int
- func (m *ChangePasswordResponse) XXX_Unmarshal(b []byte) error
- type Channel
- func (*Channel) Descriptor() ([]byte, []int)
- func (m *Channel) GetActive() bool
- func (m *Channel) GetCapacity() int64
- func (m *Channel) GetChanId() uint64
- func (m *Channel) GetChannelPoint() string
- func (m *Channel) GetCommitFee() int64
- func (m *Channel) GetCommitWeight() int64
- func (m *Channel) GetCsvDelay() uint32
- func (m *Channel) GetFeePerKw() int64
- func (m *Channel) GetInitiator() bool
- func (m *Channel) GetLocalBalance() int64
- func (m *Channel) GetNumUpdates() uint64
- func (m *Channel) GetPendingHtlcs() []*HTLC
- func (m *Channel) GetPrivate() bool
- func (m *Channel) GetRemoteBalance() int64
- func (m *Channel) GetRemotePubkey() string
- func (m *Channel) GetTotalSatoshisReceived() int64
- func (m *Channel) GetTotalSatoshisSent() int64
- func (m *Channel) GetUnsettledBalance() int64
- func (*Channel) ProtoMessage()
- func (m *Channel) Reset()
- func (m *Channel) String() string
- func (m *Channel) XXX_DiscardUnknown()
- func (m *Channel) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
- func (dst *Channel) XXX_Merge(src proto.Message)
- func (m *Channel) XXX_Size() int
- func (m *Channel) XXX_Unmarshal(b []byte) error
- type ChannelBalanceRequest
- func (*ChannelBalanceRequest) Descriptor() ([]byte, []int)
- func (*ChannelBalanceRequest) ProtoMessage()
- func (m *ChannelBalanceRequest) Reset()
- func (m *ChannelBalanceRequest) String() string
- func (m *ChannelBalanceRequest) XXX_DiscardUnknown()
- func (m *ChannelBalanceRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
- func (dst *ChannelBalanceRequest) XXX_Merge(src proto.Message)
- func (m *ChannelBalanceRequest) XXX_Size() int
- func (m *ChannelBalanceRequest) XXX_Unmarshal(b []byte) error
- type ChannelBalanceResponse
- func (*ChannelBalanceResponse) Descriptor() ([]byte, []int)
- func (m *ChannelBalanceResponse) GetBalance() int64
- func (m *ChannelBalanceResponse) GetPendingOpenBalance() int64
- func (*ChannelBalanceResponse) ProtoMessage()
- func (m *ChannelBalanceResponse) Reset()
- func (m *ChannelBalanceResponse) String() string
- func (m *ChannelBalanceResponse) XXX_DiscardUnknown()
- func (m *ChannelBalanceResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
- func (dst *ChannelBalanceResponse) XXX_Merge(src proto.Message)
- func (m *ChannelBalanceResponse) XXX_Size() int
- func (m *ChannelBalanceResponse) XXX_Unmarshal(b []byte) error
- type ChannelCloseSummary
- func (*ChannelCloseSummary) Descriptor() ([]byte, []int)
- func (m *ChannelCloseSummary) GetCapacity() int64
- func (m *ChannelCloseSummary) GetChainHash() string
- func (m *ChannelCloseSummary) GetChanId() uint64
- func (m *ChannelCloseSummary) GetChannelPoint() string
- func (m *ChannelCloseSummary) GetCloseHeight() uint32
- func (m *ChannelCloseSummary) GetCloseType() ChannelCloseSummary_ClosureType
- func (m *ChannelCloseSummary) GetClosingTxHash() string
- func (m *ChannelCloseSummary) GetRemotePubkey() string
- func (m *ChannelCloseSummary) GetSettledBalance() int64
- func (m *ChannelCloseSummary) GetTimeLockedBalance() int64
- func (*ChannelCloseSummary) ProtoMessage()
- func (m *ChannelCloseSummary) Reset()
- func (m *ChannelCloseSummary) String() string
- func (m *ChannelCloseSummary) XXX_DiscardUnknown()
- func (m *ChannelCloseSummary) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
- func (dst *ChannelCloseSummary) XXX_Merge(src proto.Message)
- func (m *ChannelCloseSummary) XXX_Size() int
- func (m *ChannelCloseSummary) XXX_Unmarshal(b []byte) error
- type ChannelCloseSummary_ClosureType
- type ChannelCloseUpdate
- func (*ChannelCloseUpdate) Descriptor() ([]byte, []int)
- func (m *ChannelCloseUpdate) GetClosingTxid() []byte
- func (m *ChannelCloseUpdate) GetSuccess() bool
- func (*ChannelCloseUpdate) ProtoMessage()
- func (m *ChannelCloseUpdate) Reset()
- func (m *ChannelCloseUpdate) String() string
- func (m *ChannelCloseUpdate) XXX_DiscardUnknown()
- func (m *ChannelCloseUpdate) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
- func (dst *ChannelCloseUpdate) XXX_Merge(src proto.Message)
- func (m *ChannelCloseUpdate) XXX_Size() int
- func (m *ChannelCloseUpdate) XXX_Unmarshal(b []byte) error
- type ChannelEdge
- func (*ChannelEdge) Descriptor() ([]byte, []int)
- func (m *ChannelEdge) GetCapacity() int64
- func (m *ChannelEdge) GetChanPoint() string
- func (m *ChannelEdge) GetChannelId() uint64
- func (m *ChannelEdge) GetLastUpdate() uint32
- func (m *ChannelEdge) GetNode1Policy() *RoutingPolicy
- func (m *ChannelEdge) GetNode1Pub() string
- func (m *ChannelEdge) GetNode2Policy() *RoutingPolicy
- func (m *ChannelEdge) GetNode2Pub() string
- func (*ChannelEdge) ProtoMessage()
- func (m *ChannelEdge) Reset()
- func (m *ChannelEdge) String() string
- func (m *ChannelEdge) XXX_DiscardUnknown()
- func (m *ChannelEdge) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
- func (dst *ChannelEdge) XXX_Merge(src proto.Message)
- func (m *ChannelEdge) XXX_Size() int
- func (m *ChannelEdge) XXX_Unmarshal(b []byte) error
- type ChannelEdgeUpdate
- func (*ChannelEdgeUpdate) Descriptor() ([]byte, []int)
- func (m *ChannelEdgeUpdate) GetAdvertisingNode() string
- func (m *ChannelEdgeUpdate) GetCapacity() int64
- func (m *ChannelEdgeUpdate) GetChanId() uint64
- func (m *ChannelEdgeUpdate) GetChanPoint() *ChannelPoint
- func (m *ChannelEdgeUpdate) GetConnectingNode() string
- func (m *ChannelEdgeUpdate) GetRoutingPolicy() *RoutingPolicy
- func (*ChannelEdgeUpdate) ProtoMessage()
- func (m *ChannelEdgeUpdate) Reset()
- func (m *ChannelEdgeUpdate) String() string
- func (m *ChannelEdgeUpdate) XXX_DiscardUnknown()
- func (m *ChannelEdgeUpdate) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
- func (dst *ChannelEdgeUpdate) XXX_Merge(src proto.Message)
- func (m *ChannelEdgeUpdate) XXX_Size() int
- func (m *ChannelEdgeUpdate) XXX_Unmarshal(b []byte) error
- type ChannelEventSubscription
- func (*ChannelEventSubscription) Descriptor() ([]byte, []int)
- func (*ChannelEventSubscription) ProtoMessage()
- func (m *ChannelEventSubscription) Reset()
- func (m *ChannelEventSubscription) String() string
- func (m *ChannelEventSubscription) XXX_DiscardUnknown()
- func (m *ChannelEventSubscription) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
- func (dst *ChannelEventSubscription) XXX_Merge(src proto.Message)
- func (m *ChannelEventSubscription) XXX_Size() int
- func (m *ChannelEventSubscription) XXX_Unmarshal(b []byte) error
- type ChannelEventUpdate
- func (*ChannelEventUpdate) Descriptor() ([]byte, []int)
- func (m *ChannelEventUpdate) GetActiveChannel() *ChannelPoint
- func (m *ChannelEventUpdate) GetChannel() isChannelEventUpdate_Channel
- func (m *ChannelEventUpdate) GetClosedChannel() *ChannelCloseSummary
- func (m *ChannelEventUpdate) GetInactiveChannel() *ChannelPoint
- func (m *ChannelEventUpdate) GetOpenChannel() *Channel
- func (m *ChannelEventUpdate) GetType() ChannelEventUpdate_UpdateType
- func (*ChannelEventUpdate) ProtoMessage()
- func (m *ChannelEventUpdate) Reset()
- func (m *ChannelEventUpdate) String() string
- func (m *ChannelEventUpdate) XXX_DiscardUnknown()
- func (m *ChannelEventUpdate) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
- func (dst *ChannelEventUpdate) XXX_Merge(src proto.Message)
- func (*ChannelEventUpdate) XXX_OneofFuncs() (func(msg proto.Message, b *proto.Buffer) error, ...)
- func (m *ChannelEventUpdate) XXX_Size() int
- func (m *ChannelEventUpdate) XXX_Unmarshal(b []byte) error
- type ChannelEventUpdate_ActiveChannel
- type ChannelEventUpdate_ClosedChannel
- type ChannelEventUpdate_InactiveChannel
- type ChannelEventUpdate_OpenChannel
- type ChannelEventUpdate_UpdateType
- type ChannelFeeReport
- func (*ChannelFeeReport) Descriptor() ([]byte, []int)
- func (m *ChannelFeeReport) GetBaseFeeMsat() int64
- func (m *ChannelFeeReport) GetChanPoint() string
- func (m *ChannelFeeReport) GetFeePerMil() int64
- func (m *ChannelFeeReport) GetFeeRate() float64
- func (*ChannelFeeReport) ProtoMessage()
- func (m *ChannelFeeReport) Reset()
- func (m *ChannelFeeReport) String() string
- func (m *ChannelFeeReport) XXX_DiscardUnknown()
- func (m *ChannelFeeReport) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
- func (dst *ChannelFeeReport) XXX_Merge(src proto.Message)
- func (m *ChannelFeeReport) XXX_Size() int
- func (m *ChannelFeeReport) XXX_Unmarshal(b []byte) error
- type ChannelGraph
- func (*ChannelGraph) Descriptor() ([]byte, []int)
- func (m *ChannelGraph) GetEdges() []*ChannelEdge
- func (m *ChannelGraph) GetNodes() []*LightningNode
- func (*ChannelGraph) ProtoMessage()
- func (m *ChannelGraph) Reset()
- func (m *ChannelGraph) String() string
- func (m *ChannelGraph) XXX_DiscardUnknown()
- func (m *ChannelGraph) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
- func (dst *ChannelGraph) XXX_Merge(src proto.Message)
- func (m *ChannelGraph) XXX_Size() int
- func (m *ChannelGraph) XXX_Unmarshal(b []byte) error
- type ChannelGraphRequest
- func (*ChannelGraphRequest) Descriptor() ([]byte, []int)
- func (m *ChannelGraphRequest) GetIncludeUnannounced() bool
- func (*ChannelGraphRequest) ProtoMessage()
- func (m *ChannelGraphRequest) Reset()
- func (m *ChannelGraphRequest) String() string
- func (m *ChannelGraphRequest) XXX_DiscardUnknown()
- func (m *ChannelGraphRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
- func (dst *ChannelGraphRequest) XXX_Merge(src proto.Message)
- func (m *ChannelGraphRequest) XXX_Size() int
- func (m *ChannelGraphRequest) XXX_Unmarshal(b []byte) error
- type ChannelOpenUpdate
- func (*ChannelOpenUpdate) Descriptor() ([]byte, []int)
- func (m *ChannelOpenUpdate) GetChannelPoint() *ChannelPoint
- func (*ChannelOpenUpdate) ProtoMessage()
- func (m *ChannelOpenUpdate) Reset()
- func (m *ChannelOpenUpdate) String() string
- func (m *ChannelOpenUpdate) XXX_DiscardUnknown()
- func (m *ChannelOpenUpdate) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
- func (dst *ChannelOpenUpdate) XXX_Merge(src proto.Message)
- func (m *ChannelOpenUpdate) XXX_Size() int
- func (m *ChannelOpenUpdate) XXX_Unmarshal(b []byte) error
- type ChannelPoint
- func (*ChannelPoint) Descriptor() ([]byte, []int)
- func (m *ChannelPoint) GetFundingTxid() isChannelPoint_FundingTxid
- func (m *ChannelPoint) GetFundingTxidBytes() []byte
- func (m *ChannelPoint) GetFundingTxidStr() string
- func (m *ChannelPoint) GetOutputIndex() uint32
- func (*ChannelPoint) ProtoMessage()
- func (m *ChannelPoint) Reset()
- func (m *ChannelPoint) String() string
- func (m *ChannelPoint) XXX_DiscardUnknown()
- func (m *ChannelPoint) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
- func (dst *ChannelPoint) XXX_Merge(src proto.Message)
- func (*ChannelPoint) XXX_OneofFuncs() (func(msg proto.Message, b *proto.Buffer) error, ...)
- func (m *ChannelPoint) XXX_Size() int
- func (m *ChannelPoint) XXX_Unmarshal(b []byte) error
- type ChannelPoint_FundingTxidBytes
- type ChannelPoint_FundingTxidStr
- type CloseChannelRequest
- func (*CloseChannelRequest) Descriptor() ([]byte, []int)
- func (m *CloseChannelRequest) GetChannelPoint() *ChannelPoint
- func (m *CloseChannelRequest) GetForce() bool
- func (m *CloseChannelRequest) GetSatPerByte() int64
- func (m *CloseChannelRequest) GetTargetConf() int32
- func (*CloseChannelRequest) ProtoMessage()
- func (m *CloseChannelRequest) Reset()
- func (m *CloseChannelRequest) String() string
- func (m *CloseChannelRequest) XXX_DiscardUnknown()
- func (m *CloseChannelRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
- func (dst *CloseChannelRequest) XXX_Merge(src proto.Message)
- func (m *CloseChannelRequest) XXX_Size() int
- func (m *CloseChannelRequest) XXX_Unmarshal(b []byte) error
- type CloseStatusUpdate
- func (*CloseStatusUpdate) Descriptor() ([]byte, []int)
- func (m *CloseStatusUpdate) GetChanClose() *ChannelCloseUpdate
- func (m *CloseStatusUpdate) GetClosePending() *PendingUpdate
- func (m *CloseStatusUpdate) GetUpdate() isCloseStatusUpdate_Update
- func (*CloseStatusUpdate) ProtoMessage()
- func (m *CloseStatusUpdate) Reset()
- func (m *CloseStatusUpdate) String() string
- func (m *CloseStatusUpdate) XXX_DiscardUnknown()
- func (m *CloseStatusUpdate) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
- func (dst *CloseStatusUpdate) XXX_Merge(src proto.Message)
- func (*CloseStatusUpdate) XXX_OneofFuncs() (func(msg proto.Message, b *proto.Buffer) error, ...)
- func (m *CloseStatusUpdate) XXX_Size() int
- func (m *CloseStatusUpdate) XXX_Unmarshal(b []byte) error
- type CloseStatusUpdate_ChanClose
- type CloseStatusUpdate_ClosePending
- type ClosedChannelUpdate
- func (*ClosedChannelUpdate) Descriptor() ([]byte, []int)
- func (m *ClosedChannelUpdate) GetCapacity() int64
- func (m *ClosedChannelUpdate) GetChanId() uint64
- func (m *ClosedChannelUpdate) GetChanPoint() *ChannelPoint
- func (m *ClosedChannelUpdate) GetClosedHeight() uint32
- func (*ClosedChannelUpdate) ProtoMessage()
- func (m *ClosedChannelUpdate) Reset()
- func (m *ClosedChannelUpdate) String() string
- func (m *ClosedChannelUpdate) XXX_DiscardUnknown()
- func (m *ClosedChannelUpdate) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
- func (dst *ClosedChannelUpdate) XXX_Merge(src proto.Message)
- func (m *ClosedChannelUpdate) XXX_Size() int
- func (m *ClosedChannelUpdate) XXX_Unmarshal(b []byte) error
- type ClosedChannelsRequest
- func (*ClosedChannelsRequest) Descriptor() ([]byte, []int)
- func (m *ClosedChannelsRequest) GetAbandoned() bool
- func (m *ClosedChannelsRequest) GetBreach() bool
- func (m *ClosedChannelsRequest) GetCooperative() bool
- func (m *ClosedChannelsRequest) GetFundingCanceled() bool
- func (m *ClosedChannelsRequest) GetLocalForce() bool
- func (m *ClosedChannelsRequest) GetRemoteForce() bool
- func (*ClosedChannelsRequest) ProtoMessage()
- func (m *ClosedChannelsRequest) Reset()
- func (m *ClosedChannelsRequest) String() string
- func (m *ClosedChannelsRequest) XXX_DiscardUnknown()
- func (m *ClosedChannelsRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
- func (dst *ClosedChannelsRequest) XXX_Merge(src proto.Message)
- func (m *ClosedChannelsRequest) XXX_Size() int
- func (m *ClosedChannelsRequest) XXX_Unmarshal(b []byte) error
- type ClosedChannelsResponse
- func (*ClosedChannelsResponse) Descriptor() ([]byte, []int)
- func (m *ClosedChannelsResponse) GetChannels() []*ChannelCloseSummary
- func (*ClosedChannelsResponse) ProtoMessage()
- func (m *ClosedChannelsResponse) Reset()
- func (m *ClosedChannelsResponse) String() string
- func (m *ClosedChannelsResponse) XXX_DiscardUnknown()
- func (m *ClosedChannelsResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
- func (dst *ClosedChannelsResponse) XXX_Merge(src proto.Message)
- func (m *ClosedChannelsResponse) XXX_Size() int
- func (m *ClosedChannelsResponse) XXX_Unmarshal(b []byte) error
- type ConfirmationUpdate
- func (*ConfirmationUpdate) Descriptor() ([]byte, []int)
- func (m *ConfirmationUpdate) GetBlockHeight() int32
- func (m *ConfirmationUpdate) GetBlockSha() []byte
- func (m *ConfirmationUpdate) GetNumConfsLeft() uint32
- func (*ConfirmationUpdate) ProtoMessage()
- func (m *ConfirmationUpdate) Reset()
- func (m *ConfirmationUpdate) String() string
- func (m *ConfirmationUpdate) XXX_DiscardUnknown()
- func (m *ConfirmationUpdate) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
- func (dst *ConfirmationUpdate) XXX_Merge(src proto.Message)
- func (m *ConfirmationUpdate) XXX_Size() int
- func (m *ConfirmationUpdate) XXX_Unmarshal(b []byte) error
- type ConnectPeerRequest
- func (*ConnectPeerRequest) Descriptor() ([]byte, []int)
- func (m *ConnectPeerRequest) GetAddr() *LightningAddress
- func (m *ConnectPeerRequest) GetPerm() bool
- func (*ConnectPeerRequest) ProtoMessage()
- func (m *ConnectPeerRequest) Reset()
- func (m *ConnectPeerRequest) String() string
- func (m *ConnectPeerRequest) XXX_DiscardUnknown()
- func (m *ConnectPeerRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
- func (dst *ConnectPeerRequest) XXX_Merge(src proto.Message)
- func (m *ConnectPeerRequest) XXX_Size() int
- func (m *ConnectPeerRequest) XXX_Unmarshal(b []byte) error
- type ConnectPeerResponse
- func (*ConnectPeerResponse) Descriptor() ([]byte, []int)
- func (*ConnectPeerResponse) ProtoMessage()
- func (m *ConnectPeerResponse) Reset()
- func (m *ConnectPeerResponse) String() string
- func (m *ConnectPeerResponse) XXX_DiscardUnknown()
- func (m *ConnectPeerResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
- func (dst *ConnectPeerResponse) XXX_Merge(src proto.Message)
- func (m *ConnectPeerResponse) XXX_Size() int
- func (m *ConnectPeerResponse) XXX_Unmarshal(b []byte) error
- type DebugLevelRequest
- func (*DebugLevelRequest) Descriptor() ([]byte, []int)
- func (m *DebugLevelRequest) GetLevelSpec() string
- func (m *DebugLevelRequest) GetShow() bool
- func (*DebugLevelRequest) ProtoMessage()
- func (m *DebugLevelRequest) Reset()
- func (m *DebugLevelRequest) String() string
- func (m *DebugLevelRequest) XXX_DiscardUnknown()
- func (m *DebugLevelRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
- func (dst *DebugLevelRequest) XXX_Merge(src proto.Message)
- func (m *DebugLevelRequest) XXX_Size() int
- func (m *DebugLevelRequest) XXX_Unmarshal(b []byte) error
- type DebugLevelResponse
- func (*DebugLevelResponse) Descriptor() ([]byte, []int)
- func (m *DebugLevelResponse) GetSubSystems() string
- func (*DebugLevelResponse) ProtoMessage()
- func (m *DebugLevelResponse) Reset()
- func (m *DebugLevelResponse) String() string
- func (m *DebugLevelResponse) XXX_DiscardUnknown()
- func (m *DebugLevelResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
- func (dst *DebugLevelResponse) XXX_Merge(src proto.Message)
- func (m *DebugLevelResponse) XXX_Size() int
- func (m *DebugLevelResponse) XXX_Unmarshal(b []byte) error
- type DeleteAllPaymentsRequest
- func (*DeleteAllPaymentsRequest) Descriptor() ([]byte, []int)
- func (*DeleteAllPaymentsRequest) ProtoMessage()
- func (m *DeleteAllPaymentsRequest) Reset()
- func (m *DeleteAllPaymentsRequest) String() string
- func (m *DeleteAllPaymentsRequest) XXX_DiscardUnknown()
- func (m *DeleteAllPaymentsRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
- func (dst *DeleteAllPaymentsRequest) XXX_Merge(src proto.Message)
- func (m *DeleteAllPaymentsRequest) XXX_Size() int
- func (m *DeleteAllPaymentsRequest) XXX_Unmarshal(b []byte) error
- type DeleteAllPaymentsResponse
- func (*DeleteAllPaymentsResponse) Descriptor() ([]byte, []int)
- func (*DeleteAllPaymentsResponse) ProtoMessage()
- func (m *DeleteAllPaymentsResponse) Reset()
- func (m *DeleteAllPaymentsResponse) String() string
- func (m *DeleteAllPaymentsResponse) XXX_DiscardUnknown()
- func (m *DeleteAllPaymentsResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
- func (dst *DeleteAllPaymentsResponse) XXX_Merge(src proto.Message)
- func (m *DeleteAllPaymentsResponse) XXX_Size() int
- func (m *DeleteAllPaymentsResponse) XXX_Unmarshal(b []byte) error
- type DisconnectPeerRequest
- func (*DisconnectPeerRequest) Descriptor() ([]byte, []int)
- func (m *DisconnectPeerRequest) GetPubKey() string
- func (*DisconnectPeerRequest) ProtoMessage()
- func (m *DisconnectPeerRequest) Reset()
- func (m *DisconnectPeerRequest) String() string
- func (m *DisconnectPeerRequest) XXX_DiscardUnknown()
- func (m *DisconnectPeerRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
- func (dst *DisconnectPeerRequest) XXX_Merge(src proto.Message)
- func (m *DisconnectPeerRequest) XXX_Size() int
- func (m *DisconnectPeerRequest) XXX_Unmarshal(b []byte) error
- type DisconnectPeerResponse
- func (*DisconnectPeerResponse) Descriptor() ([]byte, []int)
- func (*DisconnectPeerResponse) ProtoMessage()
- func (m *DisconnectPeerResponse) Reset()
- func (m *DisconnectPeerResponse) String() string
- func (m *DisconnectPeerResponse) XXX_DiscardUnknown()
- func (m *DisconnectPeerResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
- func (dst *DisconnectPeerResponse) XXX_Merge(src proto.Message)
- func (m *DisconnectPeerResponse) XXX_Size() int
- func (m *DisconnectPeerResponse) XXX_Unmarshal(b []byte) error
- type FeeLimit
- func (*FeeLimit) Descriptor() ([]byte, []int)
- func (m *FeeLimit) GetFixed() int64
- func (m *FeeLimit) GetLimit() isFeeLimit_Limit
- func (m *FeeLimit) GetPercent() int64
- func (*FeeLimit) ProtoMessage()
- func (m *FeeLimit) Reset()
- func (m *FeeLimit) String() string
- func (m *FeeLimit) XXX_DiscardUnknown()
- func (m *FeeLimit) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
- func (dst *FeeLimit) XXX_Merge(src proto.Message)
- func (*FeeLimit) XXX_OneofFuncs() (func(msg proto.Message, b *proto.Buffer) error, ...)
- func (m *FeeLimit) XXX_Size() int
- func (m *FeeLimit) XXX_Unmarshal(b []byte) error
- type FeeLimit_Fixed
- type FeeLimit_Percent
- type FeeReportRequest
- func (*FeeReportRequest) Descriptor() ([]byte, []int)
- func (*FeeReportRequest) ProtoMessage()
- func (m *FeeReportRequest) Reset()
- func (m *FeeReportRequest) String() string
- func (m *FeeReportRequest) XXX_DiscardUnknown()
- func (m *FeeReportRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
- func (dst *FeeReportRequest) XXX_Merge(src proto.Message)
- func (m *FeeReportRequest) XXX_Size() int
- func (m *FeeReportRequest) XXX_Unmarshal(b []byte) error
- type FeeReportResponse
- func (*FeeReportResponse) Descriptor() ([]byte, []int)
- func (m *FeeReportResponse) GetChannelFees() []*ChannelFeeReport
- func (m *FeeReportResponse) GetDayFeeSum() uint64
- func (m *FeeReportResponse) GetMonthFeeSum() uint64
- func (m *FeeReportResponse) GetWeekFeeSum() uint64
- func (*FeeReportResponse) ProtoMessage()
- func (m *FeeReportResponse) Reset()
- func (m *FeeReportResponse) String() string
- func (m *FeeReportResponse) XXX_DiscardUnknown()
- func (m *FeeReportResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
- func (dst *FeeReportResponse) XXX_Merge(src proto.Message)
- func (m *FeeReportResponse) XXX_Size() int
- func (m *FeeReportResponse) XXX_Unmarshal(b []byte) error
- type ForwardingEvent
- func (*ForwardingEvent) Descriptor() ([]byte, []int)
- func (m *ForwardingEvent) GetAmtIn() uint64
- func (m *ForwardingEvent) GetAmtOut() uint64
- func (m *ForwardingEvent) GetChanIdIn() uint64
- func (m *ForwardingEvent) GetChanIdOut() uint64
- func (m *ForwardingEvent) GetFee() uint64
- func (m *ForwardingEvent) GetFeeMsat() uint64
- func (m *ForwardingEvent) GetTimestamp() uint64
- func (*ForwardingEvent) ProtoMessage()
- func (m *ForwardingEvent) Reset()
- func (m *ForwardingEvent) String() string
- func (m *ForwardingEvent) XXX_DiscardUnknown()
- func (m *ForwardingEvent) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
- func (dst *ForwardingEvent) XXX_Merge(src proto.Message)
- func (m *ForwardingEvent) XXX_Size() int
- func (m *ForwardingEvent) XXX_Unmarshal(b []byte) error
- type ForwardingHistoryRequest
- func (*ForwardingHistoryRequest) Descriptor() ([]byte, []int)
- func (m *ForwardingHistoryRequest) GetEndTime() uint64
- func (m *ForwardingHistoryRequest) GetIndexOffset() uint32
- func (m *ForwardingHistoryRequest) GetNumMaxEvents() uint32
- func (m *ForwardingHistoryRequest) GetStartTime() uint64
- func (*ForwardingHistoryRequest) ProtoMessage()
- func (m *ForwardingHistoryRequest) Reset()
- func (m *ForwardingHistoryRequest) String() string
- func (m *ForwardingHistoryRequest) XXX_DiscardUnknown()
- func (m *ForwardingHistoryRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
- func (dst *ForwardingHistoryRequest) XXX_Merge(src proto.Message)
- func (m *ForwardingHistoryRequest) XXX_Size() int
- func (m *ForwardingHistoryRequest) XXX_Unmarshal(b []byte) error
- type ForwardingHistoryResponse
- func (*ForwardingHistoryResponse) Descriptor() ([]byte, []int)
- func (m *ForwardingHistoryResponse) GetForwardingEvents() []*ForwardingEvent
- func (m *ForwardingHistoryResponse) GetLastOffsetIndex() uint32
- func (*ForwardingHistoryResponse) ProtoMessage()
- func (m *ForwardingHistoryResponse) Reset()
- func (m *ForwardingHistoryResponse) String() string
- func (m *ForwardingHistoryResponse) XXX_DiscardUnknown()
- func (m *ForwardingHistoryResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
- func (dst *ForwardingHistoryResponse) XXX_Merge(src proto.Message)
- func (m *ForwardingHistoryResponse) XXX_Size() int
- func (m *ForwardingHistoryResponse) XXX_Unmarshal(b []byte) error
- type GenSeedRequest
- func (*GenSeedRequest) Descriptor() ([]byte, []int)
- func (m *GenSeedRequest) GetAezeedPassphrase() []byte
- func (m *GenSeedRequest) GetSeedEntropy() []byte
- func (*GenSeedRequest) ProtoMessage()
- func (m *GenSeedRequest) Reset()
- func (m *GenSeedRequest) String() string
- func (m *GenSeedRequest) XXX_DiscardUnknown()
- func (m *GenSeedRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
- func (dst *GenSeedRequest) XXX_Merge(src proto.Message)
- func (m *GenSeedRequest) XXX_Size() int
- func (m *GenSeedRequest) XXX_Unmarshal(b []byte) error
- type GenSeedResponse
- func (*GenSeedResponse) Descriptor() ([]byte, []int)
- func (m *GenSeedResponse) GetCipherSeedMnemonic() []string
- func (m *GenSeedResponse) GetEncipheredSeed() []byte
- func (*GenSeedResponse) ProtoMessage()
- func (m *GenSeedResponse) Reset()
- func (m *GenSeedResponse) String() string
- func (m *GenSeedResponse) XXX_DiscardUnknown()
- func (m *GenSeedResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
- func (dst *GenSeedResponse) XXX_Merge(src proto.Message)
- func (m *GenSeedResponse) XXX_Size() int
- func (m *GenSeedResponse) XXX_Unmarshal(b []byte) error
- type GetInfoRequest
- func (*GetInfoRequest) Descriptor() ([]byte, []int)
- func (*GetInfoRequest) ProtoMessage()
- func (m *GetInfoRequest) Reset()
- func (m *GetInfoRequest) String() string
- func (m *GetInfoRequest) XXX_DiscardUnknown()
- func (m *GetInfoRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
- func (dst *GetInfoRequest) XXX_Merge(src proto.Message)
- func (m *GetInfoRequest) XXX_Size() int
- func (m *GetInfoRequest) XXX_Unmarshal(b []byte) error
- type GetInfoResponse
- func (*GetInfoResponse) Descriptor() ([]byte, []int)
- func (m *GetInfoResponse) GetAlias() string
- func (m *GetInfoResponse) GetBestHeaderTimestamp() int64
- func (m *GetInfoResponse) GetBlockHash() string
- func (m *GetInfoResponse) GetBlockHeight() uint32
- func (m *GetInfoResponse) GetChains() []*Chain
- func (m *GetInfoResponse) GetIdentityPubkey() string
- func (m *GetInfoResponse) GetNumActiveChannels() uint32
- func (m *GetInfoResponse) GetNumInactiveChannels() uint32
- func (m *GetInfoResponse) GetNumPeers() uint32
- func (m *GetInfoResponse) GetNumPendingChannels() uint32
- func (m *GetInfoResponse) GetSyncedToChain() bool
- func (m *GetInfoResponse) GetTestnet() bool
- func (m *GetInfoResponse) GetUris() []string
- func (m *GetInfoResponse) GetVersion() string
- func (*GetInfoResponse) ProtoMessage()
- func (m *GetInfoResponse) Reset()
- func (m *GetInfoResponse) String() string
- func (m *GetInfoResponse) XXX_DiscardUnknown()
- func (m *GetInfoResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
- func (dst *GetInfoResponse) XXX_Merge(src proto.Message)
- func (m *GetInfoResponse) XXX_Size() int
- func (m *GetInfoResponse) XXX_Unmarshal(b []byte) error
- type GetTransactionsRequest
- func (*GetTransactionsRequest) Descriptor() ([]byte, []int)
- func (*GetTransactionsRequest) ProtoMessage()
- func (m *GetTransactionsRequest) Reset()
- func (m *GetTransactionsRequest) String() string
- func (m *GetTransactionsRequest) XXX_DiscardUnknown()
- func (m *GetTransactionsRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
- func (dst *GetTransactionsRequest) XXX_Merge(src proto.Message)
- func (m *GetTransactionsRequest) XXX_Size() int
- func (m *GetTransactionsRequest) XXX_Unmarshal(b []byte) error
- type GraphTopologySubscription
- func (*GraphTopologySubscription) Descriptor() ([]byte, []int)
- func (*GraphTopologySubscription) ProtoMessage()
- func (m *GraphTopologySubscription) Reset()
- func (m *GraphTopologySubscription) String() string
- func (m *GraphTopologySubscription) XXX_DiscardUnknown()
- func (m *GraphTopologySubscription) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
- func (dst *GraphTopologySubscription) XXX_Merge(src proto.Message)
- func (m *GraphTopologySubscription) XXX_Size() int
- func (m *GraphTopologySubscription) XXX_Unmarshal(b []byte) error
- type GraphTopologyUpdate
- func (*GraphTopologyUpdate) Descriptor() ([]byte, []int)
- func (m *GraphTopologyUpdate) GetChannelUpdates() []*ChannelEdgeUpdate
- func (m *GraphTopologyUpdate) GetClosedChans() []*ClosedChannelUpdate
- func (m *GraphTopologyUpdate) GetNodeUpdates() []*NodeUpdate
- func (*GraphTopologyUpdate) ProtoMessage()
- func (m *GraphTopologyUpdate) Reset()
- func (m *GraphTopologyUpdate) String() string
- func (m *GraphTopologyUpdate) XXX_DiscardUnknown()
- func (m *GraphTopologyUpdate) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
- func (dst *GraphTopologyUpdate) XXX_Merge(src proto.Message)
- func (m *GraphTopologyUpdate) XXX_Size() int
- func (m *GraphTopologyUpdate) XXX_Unmarshal(b []byte) error
- type HTLC
- func (*HTLC) Descriptor() ([]byte, []int)
- func (m *HTLC) GetAmount() int64
- func (m *HTLC) GetExpirationHeight() uint32
- func (m *HTLC) GetHashLock() []byte
- func (m *HTLC) GetIncoming() bool
- func (*HTLC) ProtoMessage()
- func (m *HTLC) Reset()
- func (m *HTLC) String() string
- func (m *HTLC) XXX_DiscardUnknown()
- func (m *HTLC) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
- func (dst *HTLC) XXX_Merge(src proto.Message)
- func (m *HTLC) XXX_Size() int
- func (m *HTLC) XXX_Unmarshal(b []byte) error
- type Hop
- func (*Hop) Descriptor() ([]byte, []int)
- func (m *Hop) GetAmtToForward() int64
- func (m *Hop) GetAmtToForwardMsat() int64
- func (m *Hop) GetChanCapacity() int64
- func (m *Hop) GetChanId() uint64
- func (m *Hop) GetExpiry() uint32
- func (m *Hop) GetFee() int64
- func (m *Hop) GetFeeMsat() int64
- func (m *Hop) GetPubKey() string
- func (*Hop) ProtoMessage()
- func (m *Hop) Reset()
- func (m *Hop) String() string
- func (m *Hop) XXX_DiscardUnknown()
- func (m *Hop) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
- func (dst *Hop) XXX_Merge(src proto.Message)
- func (m *Hop) XXX_Size() int
- func (m *Hop) XXX_Unmarshal(b []byte) error
- type HopHint
- func (*HopHint) Descriptor() ([]byte, []int)
- func (m *HopHint) GetChanId() uint64
- func (m *HopHint) GetCltvExpiryDelta() uint32
- func (m *HopHint) GetFeeBaseMsat() uint32
- func (m *HopHint) GetFeeProportionalMillionths() uint32
- func (m *HopHint) GetNodeId() string
- func (*HopHint) ProtoMessage()
- func (m *HopHint) Reset()
- func (m *HopHint) String() string
- func (m *HopHint) XXX_DiscardUnknown()
- func (m *HopHint) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
- func (dst *HopHint) XXX_Merge(src proto.Message)
- func (m *HopHint) XXX_Size() int
- func (m *HopHint) XXX_Unmarshal(b []byte) error
- type InitWalletRequest
- func (*InitWalletRequest) Descriptor() ([]byte, []int)
- func (m *InitWalletRequest) GetAezeedPassphrase() []byte
- func (m *InitWalletRequest) GetCipherSeedMnemonic() []string
- func (m *InitWalletRequest) GetRecoveryWindow() int32
- func (m *InitWalletRequest) GetWalletPassword() []byte
- func (*InitWalletRequest) ProtoMessage()
- func (m *InitWalletRequest) Reset()
- func (m *InitWalletRequest) String() string
- func (m *InitWalletRequest) XXX_DiscardUnknown()
- func (m *InitWalletRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
- func (dst *InitWalletRequest) XXX_Merge(src proto.Message)
- func (m *InitWalletRequest) XXX_Size() int
- func (m *InitWalletRequest) XXX_Unmarshal(b []byte) error
- type InitWalletResponse
- func (*InitWalletResponse) Descriptor() ([]byte, []int)
- func (*InitWalletResponse) ProtoMessage()
- func (m *InitWalletResponse) Reset()
- func (m *InitWalletResponse) String() string
- func (m *InitWalletResponse) XXX_DiscardUnknown()
- func (m *InitWalletResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
- func (dst *InitWalletResponse) XXX_Merge(src proto.Message)
- func (m *InitWalletResponse) XXX_Size() int
- func (m *InitWalletResponse) XXX_Unmarshal(b []byte) error
- type Invoice
- func (*Invoice) Descriptor() ([]byte, []int)
- func (m *Invoice) GetAddIndex() uint64
- func (m *Invoice) GetAmtPaid() int64
- func (m *Invoice) GetAmtPaidMsat() int64
- func (m *Invoice) GetAmtPaidSat() int64
- func (m *Invoice) GetCltvExpiry() uint64
- func (m *Invoice) GetCreationDate() int64
- func (m *Invoice) GetDescriptionHash() []byte
- func (m *Invoice) GetExpiry() int64
- func (m *Invoice) GetFallbackAddr() string
- func (m *Invoice) GetMemo() string
- func (m *Invoice) GetPaymentRequest() string
- func (m *Invoice) GetPrivate() bool
- func (m *Invoice) GetRHash() []byte
- func (m *Invoice) GetRPreimage() []byte
- func (m *Invoice) GetReceipt() []byte
- func (m *Invoice) GetRouteHints() []*RouteHint
- func (m *Invoice) GetSettleDate() int64
- func (m *Invoice) GetSettleIndex() uint64
- func (m *Invoice) GetSettled() bool
- func (m *Invoice) GetState() Invoice_InvoiceState
- func (m *Invoice) GetValue() int64
- func (*Invoice) ProtoMessage()
- func (m *Invoice) Reset()
- func (m *Invoice) String() string
- func (m *Invoice) XXX_DiscardUnknown()
- func (m *Invoice) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
- func (dst *Invoice) XXX_Merge(src proto.Message)
- func (m *Invoice) XXX_Size() int
- func (m *Invoice) XXX_Unmarshal(b []byte) error
- type InvoiceSubscription
- func (*InvoiceSubscription) Descriptor() ([]byte, []int)
- func (m *InvoiceSubscription) GetAddIndex() uint64
- func (m *InvoiceSubscription) GetSettleIndex() uint64
- func (*InvoiceSubscription) ProtoMessage()
- func (m *InvoiceSubscription) Reset()
- func (m *InvoiceSubscription) String() string
- func (m *InvoiceSubscription) XXX_DiscardUnknown()
- func (m *InvoiceSubscription) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
- func (dst *InvoiceSubscription) XXX_Merge(src proto.Message)
- func (m *InvoiceSubscription) XXX_Size() int
- func (m *InvoiceSubscription) XXX_Unmarshal(b []byte) error
- type Invoice_InvoiceState
- type LightningAddress
- func (*LightningAddress) Descriptor() ([]byte, []int)
- func (m *LightningAddress) GetHost() string
- func (m *LightningAddress) GetPubkey() string
- func (*LightningAddress) ProtoMessage()
- func (m *LightningAddress) Reset()
- func (m *LightningAddress) String() string
- func (m *LightningAddress) XXX_DiscardUnknown()
- func (m *LightningAddress) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
- func (dst *LightningAddress) XXX_Merge(src proto.Message)
- func (m *LightningAddress) XXX_Size() int
- func (m *LightningAddress) XXX_Unmarshal(b []byte) error
- type LightningClient
- type LightningNode
- func (*LightningNode) Descriptor() ([]byte, []int)
- func (m *LightningNode) GetAddresses() []*NodeAddress
- func (m *LightningNode) GetAlias() string
- func (m *LightningNode) GetColor() string
- func (m *LightningNode) GetLastUpdate() uint32
- func (m *LightningNode) GetPubKey() string
- func (*LightningNode) ProtoMessage()
- func (m *LightningNode) Reset()
- func (m *LightningNode) String() string
- func (m *LightningNode) XXX_DiscardUnknown()
- func (m *LightningNode) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
- func (dst *LightningNode) XXX_Merge(src proto.Message)
- func (m *LightningNode) XXX_Size() int
- func (m *LightningNode) XXX_Unmarshal(b []byte) error
- type LightningServer
- type Lightning_CloseChannelClient
- type Lightning_CloseChannelServer
- type Lightning_OpenChannelClient
- type Lightning_OpenChannelServer
- type Lightning_SendPaymentClient
- type Lightning_SendPaymentServer
- type Lightning_SendToRouteClient
- type Lightning_SendToRouteServer
- type Lightning_SubscribeChannelEventsClient
- type Lightning_SubscribeChannelEventsServer
- type Lightning_SubscribeChannelGraphClient
- type Lightning_SubscribeChannelGraphServer
- type Lightning_SubscribeInvoicesClient
- type Lightning_SubscribeInvoicesServer
- type Lightning_SubscribeTransactionsClient
- type Lightning_SubscribeTransactionsServer
- type ListChannelsRequest
- func (*ListChannelsRequest) Descriptor() ([]byte, []int)
- func (m *ListChannelsRequest) GetActiveOnly() bool
- func (m *ListChannelsRequest) GetInactiveOnly() bool
- func (m *ListChannelsRequest) GetPrivateOnly() bool
- func (m *ListChannelsRequest) GetPublicOnly() bool
- func (*ListChannelsRequest) ProtoMessage()
- func (m *ListChannelsRequest) Reset()
- func (m *ListChannelsRequest) String() string
- func (m *ListChannelsRequest) XXX_DiscardUnknown()
- func (m *ListChannelsRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
- func (dst *ListChannelsRequest) XXX_Merge(src proto.Message)
- func (m *ListChannelsRequest) XXX_Size() int
- func (m *ListChannelsRequest) XXX_Unmarshal(b []byte) error
- type ListChannelsResponse
- func (*ListChannelsResponse) Descriptor() ([]byte, []int)
- func (m *ListChannelsResponse) GetChannels() []*Channel
- func (*ListChannelsResponse) ProtoMessage()
- func (m *ListChannelsResponse) Reset()
- func (m *ListChannelsResponse) String() string
- func (m *ListChannelsResponse) XXX_DiscardUnknown()
- func (m *ListChannelsResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
- func (dst *ListChannelsResponse) XXX_Merge(src proto.Message)
- func (m *ListChannelsResponse) XXX_Size() int
- func (m *ListChannelsResponse) XXX_Unmarshal(b []byte) error
- type ListInvoiceRequest
- func (*ListInvoiceRequest) Descriptor() ([]byte, []int)
- func (m *ListInvoiceRequest) GetIndexOffset() uint64
- func (m *ListInvoiceRequest) GetNumMaxInvoices() uint64
- func (m *ListInvoiceRequest) GetPendingOnly() bool
- func (m *ListInvoiceRequest) GetReversed() bool
- func (*ListInvoiceRequest) ProtoMessage()
- func (m *ListInvoiceRequest) Reset()
- func (m *ListInvoiceRequest) String() string
- func (m *ListInvoiceRequest) XXX_DiscardUnknown()
- func (m *ListInvoiceRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
- func (dst *ListInvoiceRequest) XXX_Merge(src proto.Message)
- func (m *ListInvoiceRequest) XXX_Size() int
- func (m *ListInvoiceRequest) XXX_Unmarshal(b []byte) error
- type ListInvoiceResponse
- func (*ListInvoiceResponse) Descriptor() ([]byte, []int)
- func (m *ListInvoiceResponse) GetFirstIndexOffset() uint64
- func (m *ListInvoiceResponse) GetInvoices() []*Invoice
- func (m *ListInvoiceResponse) GetLastIndexOffset() uint64
- func (*ListInvoiceResponse) ProtoMessage()
- func (m *ListInvoiceResponse) Reset()
- func (m *ListInvoiceResponse) String() string
- func (m *ListInvoiceResponse) XXX_DiscardUnknown()
- func (m *ListInvoiceResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
- func (dst *ListInvoiceResponse) XXX_Merge(src proto.Message)
- func (m *ListInvoiceResponse) XXX_Size() int
- func (m *ListInvoiceResponse) XXX_Unmarshal(b []byte) error
- type ListPaymentsRequest
- func (*ListPaymentsRequest) Descriptor() ([]byte, []int)
- func (*ListPaymentsRequest) ProtoMessage()
- func (m *ListPaymentsRequest) Reset()
- func (m *ListPaymentsRequest) String() string
- func (m *ListPaymentsRequest) XXX_DiscardUnknown()
- func (m *ListPaymentsRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
- func (dst *ListPaymentsRequest) XXX_Merge(src proto.Message)
- func (m *ListPaymentsRequest) XXX_Size() int
- func (m *ListPaymentsRequest) XXX_Unmarshal(b []byte) error
- type ListPaymentsResponse
- func (*ListPaymentsResponse) Descriptor() ([]byte, []int)
- func (m *ListPaymentsResponse) GetPayments() []*Payment
- func (*ListPaymentsResponse) ProtoMessage()
- func (m *ListPaymentsResponse) Reset()
- func (m *ListPaymentsResponse) String() string
- func (m *ListPaymentsResponse) XXX_DiscardUnknown()
- func (m *ListPaymentsResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
- func (dst *ListPaymentsResponse) XXX_Merge(src proto.Message)
- func (m *ListPaymentsResponse) XXX_Size() int
- func (m *ListPaymentsResponse) XXX_Unmarshal(b []byte) error
- type ListPeersRequest
- func (*ListPeersRequest) Descriptor() ([]byte, []int)
- func (*ListPeersRequest) ProtoMessage()
- func (m *ListPeersRequest) Reset()
- func (m *ListPeersRequest) String() string
- func (m *ListPeersRequest) XXX_DiscardUnknown()
- func (m *ListPeersRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
- func (dst *ListPeersRequest) XXX_Merge(src proto.Message)
- func (m *ListPeersRequest) XXX_Size() int
- func (m *ListPeersRequest) XXX_Unmarshal(b []byte) error
- type ListPeersResponse
- func (*ListPeersResponse) Descriptor() ([]byte, []int)
- func (m *ListPeersResponse) GetPeers() []*Peer
- func (*ListPeersResponse) ProtoMessage()
- func (m *ListPeersResponse) Reset()
- func (m *ListPeersResponse) String() string
- func (m *ListPeersResponse) XXX_DiscardUnknown()
- func (m *ListPeersResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
- func (dst *ListPeersResponse) XXX_Merge(src proto.Message)
- func (m *ListPeersResponse) XXX_Size() int
- func (m *ListPeersResponse) XXX_Unmarshal(b []byte) error
- type ListUnspentRequest
- func (*ListUnspentRequest) Descriptor() ([]byte, []int)
- func (m *ListUnspentRequest) GetMaxConfs() int32
- func (m *ListUnspentRequest) GetMinConfs() int32
- func (*ListUnspentRequest) ProtoMessage()
- func (m *ListUnspentRequest) Reset()
- func (m *ListUnspentRequest) String() string
- func (m *ListUnspentRequest) XXX_DiscardUnknown()
- func (m *ListUnspentRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
- func (dst *ListUnspentRequest) XXX_Merge(src proto.Message)
- func (m *ListUnspentRequest) XXX_Size() int
- func (m *ListUnspentRequest) XXX_Unmarshal(b []byte) error
- type ListUnspentResponse
- func (*ListUnspentResponse) Descriptor() ([]byte, []int)
- func (m *ListUnspentResponse) GetUtxos() []*Utxo
- func (*ListUnspentResponse) ProtoMessage()
- func (m *ListUnspentResponse) Reset()
- func (m *ListUnspentResponse) String() string
- func (m *ListUnspentResponse) XXX_DiscardUnknown()
- func (m *ListUnspentResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
- func (dst *ListUnspentResponse) XXX_Merge(src proto.Message)
- func (m *ListUnspentResponse) XXX_Size() int
- func (m *ListUnspentResponse) XXX_Unmarshal(b []byte) error
- type MacaroonPerms
- type NetworkInfo
- func (*NetworkInfo) Descriptor() ([]byte, []int)
- func (m *NetworkInfo) GetAvgChannelSize() float64
- func (m *NetworkInfo) GetAvgOutDegree() float64
- func (m *NetworkInfo) GetGraphDiameter() uint32
- func (m *NetworkInfo) GetMaxChannelSize() int64
- func (m *NetworkInfo) GetMaxOutDegree() uint32
- func (m *NetworkInfo) GetMinChannelSize() int64
- func (m *NetworkInfo) GetNumChannels() uint32
- func (m *NetworkInfo) GetNumNodes() uint32
- func (m *NetworkInfo) GetTotalNetworkCapacity() int64
- func (*NetworkInfo) ProtoMessage()
- func (m *NetworkInfo) Reset()
- func (m *NetworkInfo) String() string
- func (m *NetworkInfo) XXX_DiscardUnknown()
- func (m *NetworkInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
- func (dst *NetworkInfo) XXX_Merge(src proto.Message)
- func (m *NetworkInfo) XXX_Size() int
- func (m *NetworkInfo) XXX_Unmarshal(b []byte) error
- type NetworkInfoRequest
- func (*NetworkInfoRequest) Descriptor() ([]byte, []int)
- func (*NetworkInfoRequest) ProtoMessage()
- func (m *NetworkInfoRequest) Reset()
- func (m *NetworkInfoRequest) String() string
- func (m *NetworkInfoRequest) XXX_DiscardUnknown()
- func (m *NetworkInfoRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
- func (dst *NetworkInfoRequest) XXX_Merge(src proto.Message)
- func (m *NetworkInfoRequest) XXX_Size() int
- func (m *NetworkInfoRequest) XXX_Unmarshal(b []byte) error
- type NewAddressRequest
- func (*NewAddressRequest) Descriptor() ([]byte, []int)
- func (m *NewAddressRequest) GetType() AddressType
- func (*NewAddressRequest) ProtoMessage()
- func (m *NewAddressRequest) Reset()
- func (m *NewAddressRequest) String() string
- func (m *NewAddressRequest) XXX_DiscardUnknown()
- func (m *NewAddressRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
- func (dst *NewAddressRequest) XXX_Merge(src proto.Message)
- func (m *NewAddressRequest) XXX_Size() int
- func (m *NewAddressRequest) XXX_Unmarshal(b []byte) error
- type NewAddressResponse
- func (*NewAddressResponse) Descriptor() ([]byte, []int)
- func (m *NewAddressResponse) GetAddress() string
- func (*NewAddressResponse) ProtoMessage()
- func (m *NewAddressResponse) Reset()
- func (m *NewAddressResponse) String() string
- func (m *NewAddressResponse) XXX_DiscardUnknown()
- func (m *NewAddressResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
- func (dst *NewAddressResponse) XXX_Merge(src proto.Message)
- func (m *NewAddressResponse) XXX_Size() int
- func (m *NewAddressResponse) XXX_Unmarshal(b []byte) error
- type NodeAddress
- func (*NodeAddress) Descriptor() ([]byte, []int)
- func (m *NodeAddress) GetAddr() string
- func (m *NodeAddress) GetNetwork() string
- func (*NodeAddress) ProtoMessage()
- func (m *NodeAddress) Reset()
- func (m *NodeAddress) String() string
- func (m *NodeAddress) XXX_DiscardUnknown()
- func (m *NodeAddress) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
- func (dst *NodeAddress) XXX_Merge(src proto.Message)
- func (m *NodeAddress) XXX_Size() int
- func (m *NodeAddress) XXX_Unmarshal(b []byte) error
- type NodeInfo
- func (*NodeInfo) Descriptor() ([]byte, []int)
- func (m *NodeInfo) GetNode() *LightningNode
- func (m *NodeInfo) GetNumChannels() uint32
- func (m *NodeInfo) GetTotalCapacity() int64
- func (*NodeInfo) ProtoMessage()
- func (m *NodeInfo) Reset()
- func (m *NodeInfo) String() string
- func (m *NodeInfo) XXX_DiscardUnknown()
- func (m *NodeInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
- func (dst *NodeInfo) XXX_Merge(src proto.Message)
- func (m *NodeInfo) XXX_Size() int
- func (m *NodeInfo) XXX_Unmarshal(b []byte) error
- type NodeInfoRequest
- func (*NodeInfoRequest) Descriptor() ([]byte, []int)
- func (m *NodeInfoRequest) GetPubKey() string
- func (*NodeInfoRequest) ProtoMessage()
- func (m *NodeInfoRequest) Reset()
- func (m *NodeInfoRequest) String() string
- func (m *NodeInfoRequest) XXX_DiscardUnknown()
- func (m *NodeInfoRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
- func (dst *NodeInfoRequest) XXX_Merge(src proto.Message)
- func (m *NodeInfoRequest) XXX_Size() int
- func (m *NodeInfoRequest) XXX_Unmarshal(b []byte) error
- type NodeUpdate
- func (*NodeUpdate) Descriptor() ([]byte, []int)
- func (m *NodeUpdate) GetAddresses() []string
- func (m *NodeUpdate) GetAlias() string
- func (m *NodeUpdate) GetGlobalFeatures() []byte
- func (m *NodeUpdate) GetIdentityKey() string
- func (*NodeUpdate) ProtoMessage()
- func (m *NodeUpdate) Reset()
- func (m *NodeUpdate) String() string
- func (m *NodeUpdate) XXX_DiscardUnknown()
- func (m *NodeUpdate) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
- func (dst *NodeUpdate) XXX_Merge(src proto.Message)
- func (m *NodeUpdate) XXX_Size() int
- func (m *NodeUpdate) XXX_Unmarshal(b []byte) error
- type OpenChannelRequest
- func (*OpenChannelRequest) Descriptor() ([]byte, []int)
- func (m *OpenChannelRequest) GetLocalFundingAmount() int64
- func (m *OpenChannelRequest) GetMinConfs() int32
- func (m *OpenChannelRequest) GetMinHtlcMsat() int64
- func (m *OpenChannelRequest) GetNodePubkey() []byte
- func (m *OpenChannelRequest) GetNodePubkeyString() string
- func (m *OpenChannelRequest) GetPrivate() bool
- func (m *OpenChannelRequest) GetPushSat() int64
- func (m *OpenChannelRequest) GetRemoteCsvDelay() uint32
- func (m *OpenChannelRequest) GetSatPerByte() int64
- func (m *OpenChannelRequest) GetSpendUnconfirmed() bool
- func (m *OpenChannelRequest) GetTargetConf() int32
- func (*OpenChannelRequest) ProtoMessage()
- func (m *OpenChannelRequest) Reset()
- func (m *OpenChannelRequest) String() string
- func (m *OpenChannelRequest) XXX_DiscardUnknown()
- func (m *OpenChannelRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
- func (dst *OpenChannelRequest) XXX_Merge(src proto.Message)
- func (m *OpenChannelRequest) XXX_Size() int
- func (m *OpenChannelRequest) XXX_Unmarshal(b []byte) error
- type OpenStatusUpdate
- func (*OpenStatusUpdate) Descriptor() ([]byte, []int)
- func (m *OpenStatusUpdate) GetChanOpen() *ChannelOpenUpdate
- func (m *OpenStatusUpdate) GetChanPending() *PendingUpdate
- func (m *OpenStatusUpdate) GetUpdate() isOpenStatusUpdate_Update
- func (*OpenStatusUpdate) ProtoMessage()
- func (m *OpenStatusUpdate) Reset()
- func (m *OpenStatusUpdate) String() string
- func (m *OpenStatusUpdate) XXX_DiscardUnknown()
- func (m *OpenStatusUpdate) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
- func (dst *OpenStatusUpdate) XXX_Merge(src proto.Message)
- func (*OpenStatusUpdate) XXX_OneofFuncs() (func(msg proto.Message, b *proto.Buffer) error, ...)
- func (m *OpenStatusUpdate) XXX_Size() int
- func (m *OpenStatusUpdate) XXX_Unmarshal(b []byte) error
- type OpenStatusUpdate_ChanOpen
- type OpenStatusUpdate_ChanPending
- type OutPoint
- func (*OutPoint) Descriptor() ([]byte, []int)
- func (m *OutPoint) GetOutputIndex() uint32
- func (m *OutPoint) GetTxidBytes() []byte
- func (m *OutPoint) GetTxidStr() string
- func (*OutPoint) ProtoMessage()
- func (m *OutPoint) Reset()
- func (m *OutPoint) String() string
- func (m *OutPoint) XXX_DiscardUnknown()
- func (m *OutPoint) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
- func (dst *OutPoint) XXX_Merge(src proto.Message)
- func (m *OutPoint) XXX_Size() int
- func (m *OutPoint) XXX_Unmarshal(b []byte) error
- type PayReq
- func (*PayReq) Descriptor() ([]byte, []int)
- func (m *PayReq) GetCltvExpiry() int64
- func (m *PayReq) GetDescription() string
- func (m *PayReq) GetDescriptionHash() string
- func (m *PayReq) GetDestination() string
- func (m *PayReq) GetExpiry() int64
- func (m *PayReq) GetFallbackAddr() string
- func (m *PayReq) GetNumSatoshis() int64
- func (m *PayReq) GetPaymentHash() string
- func (m *PayReq) GetRouteHints() []*RouteHint
- func (m *PayReq) GetTimestamp() int64
- func (*PayReq) ProtoMessage()
- func (m *PayReq) Reset()
- func (m *PayReq) String() string
- func (m *PayReq) XXX_DiscardUnknown()
- func (m *PayReq) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
- func (dst *PayReq) XXX_Merge(src proto.Message)
- func (m *PayReq) XXX_Size() int
- func (m *PayReq) XXX_Unmarshal(b []byte) error
- type PayReqString
- func (*PayReqString) Descriptor() ([]byte, []int)
- func (m *PayReqString) GetPayReq() string
- func (*PayReqString) ProtoMessage()
- func (m *PayReqString) Reset()
- func (m *PayReqString) String() string
- func (m *PayReqString) XXX_DiscardUnknown()
- func (m *PayReqString) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
- func (dst *PayReqString) XXX_Merge(src proto.Message)
- func (m *PayReqString) XXX_Size() int
- func (m *PayReqString) XXX_Unmarshal(b []byte) error
- type Payment
- func (*Payment) Descriptor() ([]byte, []int)
- func (m *Payment) GetCreationDate() int64
- func (m *Payment) GetFee() int64
- func (m *Payment) GetPath() []string
- func (m *Payment) GetPaymentHash() string
- func (m *Payment) GetPaymentPreimage() string
- func (m *Payment) GetValue() int64
- func (m *Payment) GetValueMsat() int64
- func (m *Payment) GetValueSat() int64
- func (*Payment) ProtoMessage()
- func (m *Payment) Reset()
- func (m *Payment) String() string
- func (m *Payment) XXX_DiscardUnknown()
- func (m *Payment) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
- func (dst *Payment) XXX_Merge(src proto.Message)
- func (m *Payment) XXX_Size() int
- func (m *Payment) XXX_Unmarshal(b []byte) error
- type PaymentHash
- func (*PaymentHash) Descriptor() ([]byte, []int)
- func (m *PaymentHash) GetRHash() []byte
- func (m *PaymentHash) GetRHashStr() string
- func (*PaymentHash) ProtoMessage()
- func (m *PaymentHash) Reset()
- func (m *PaymentHash) String() string
- func (m *PaymentHash) XXX_DiscardUnknown()
- func (m *PaymentHash) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
- func (dst *PaymentHash) XXX_Merge(src proto.Message)
- func (m *PaymentHash) XXX_Size() int
- func (m *PaymentHash) XXX_Unmarshal(b []byte) error
- type Peer
- func (*Peer) Descriptor() ([]byte, []int)
- func (m *Peer) GetAddress() string
- func (m *Peer) GetBytesRecv() uint64
- func (m *Peer) GetBytesSent() uint64
- func (m *Peer) GetInbound() bool
- func (m *Peer) GetPingTime() int64
- func (m *Peer) GetPubKey() string
- func (m *Peer) GetSatRecv() int64
- func (m *Peer) GetSatSent() int64
- func (*Peer) ProtoMessage()
- func (m *Peer) Reset()
- func (m *Peer) String() string
- func (m *Peer) XXX_DiscardUnknown()
- func (m *Peer) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
- func (dst *Peer) XXX_Merge(src proto.Message)
- func (m *Peer) XXX_Size() int
- func (m *Peer) XXX_Unmarshal(b []byte) error
- type PendingChannelsRequest
- func (*PendingChannelsRequest) Descriptor() ([]byte, []int)
- func (*PendingChannelsRequest) ProtoMessage()
- func (m *PendingChannelsRequest) Reset()
- func (m *PendingChannelsRequest) String() string
- func (m *PendingChannelsRequest) XXX_DiscardUnknown()
- func (m *PendingChannelsRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
- func (dst *PendingChannelsRequest) XXX_Merge(src proto.Message)
- func (m *PendingChannelsRequest) XXX_Size() int
- func (m *PendingChannelsRequest) XXX_Unmarshal(b []byte) error
- type PendingChannelsResponse
- func (*PendingChannelsResponse) Descriptor() ([]byte, []int)
- func (m *PendingChannelsResponse) GetPendingClosingChannels() []*PendingChannelsResponse_ClosedChannel
- func (m *PendingChannelsResponse) GetPendingForceClosingChannels() []*PendingChannelsResponse_ForceClosedChannel
- func (m *PendingChannelsResponse) GetPendingOpenChannels() []*PendingChannelsResponse_PendingOpenChannel
- func (m *PendingChannelsResponse) GetTotalLimboBalance() int64
- func (m *PendingChannelsResponse) GetWaitingCloseChannels() []*PendingChannelsResponse_WaitingCloseChannel
- func (*PendingChannelsResponse) ProtoMessage()
- func (m *PendingChannelsResponse) Reset()
- func (m *PendingChannelsResponse) String() string
- func (m *PendingChannelsResponse) XXX_DiscardUnknown()
- func (m *PendingChannelsResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
- func (dst *PendingChannelsResponse) XXX_Merge(src proto.Message)
- func (m *PendingChannelsResponse) XXX_Size() int
- func (m *PendingChannelsResponse) XXX_Unmarshal(b []byte) error
- type PendingChannelsResponse_ClosedChannel
- func (*PendingChannelsResponse_ClosedChannel) Descriptor() ([]byte, []int)
- func (m *PendingChannelsResponse_ClosedChannel) GetChannel() *PendingChannelsResponse_PendingChannel
- func (m *PendingChannelsResponse_ClosedChannel) GetClosingTxid() string
- func (*PendingChannelsResponse_ClosedChannel) ProtoMessage()
- func (m *PendingChannelsResponse_ClosedChannel) Reset()
- func (m *PendingChannelsResponse_ClosedChannel) String() string
- func (m *PendingChannelsResponse_ClosedChannel) XXX_DiscardUnknown()
- func (m *PendingChannelsResponse_ClosedChannel) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
- func (dst *PendingChannelsResponse_ClosedChannel) XXX_Merge(src proto.Message)
- func (m *PendingChannelsResponse_ClosedChannel) XXX_Size() int
- func (m *PendingChannelsResponse_ClosedChannel) XXX_Unmarshal(b []byte) error
- type PendingChannelsResponse_ForceClosedChannel
- func (*PendingChannelsResponse_ForceClosedChannel) Descriptor() ([]byte, []int)
- func (m *PendingChannelsResponse_ForceClosedChannel) GetBlocksTilMaturity() int32
- func (m *PendingChannelsResponse_ForceClosedChannel) GetChannel() *PendingChannelsResponse_PendingChannel
- func (m *PendingChannelsResponse_ForceClosedChannel) GetClosingTxid() string
- func (m *PendingChannelsResponse_ForceClosedChannel) GetLimboBalance() int64
- func (m *PendingChannelsResponse_ForceClosedChannel) GetMaturityHeight() uint32
- func (m *PendingChannelsResponse_ForceClosedChannel) GetPendingHtlcs() []*PendingHTLC
- func (m *PendingChannelsResponse_ForceClosedChannel) GetRecoveredBalance() int64
- func (*PendingChannelsResponse_ForceClosedChannel) ProtoMessage()
- func (m *PendingChannelsResponse_ForceClosedChannel) Reset()
- func (m *PendingChannelsResponse_ForceClosedChannel) String() string
- func (m *PendingChannelsResponse_ForceClosedChannel) XXX_DiscardUnknown()
- func (m *PendingChannelsResponse_ForceClosedChannel) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
- func (dst *PendingChannelsResponse_ForceClosedChannel) XXX_Merge(src proto.Message)
- func (m *PendingChannelsResponse_ForceClosedChannel) XXX_Size() int
- func (m *PendingChannelsResponse_ForceClosedChannel) XXX_Unmarshal(b []byte) error
- type PendingChannelsResponse_PendingChannel
- func (*PendingChannelsResponse_PendingChannel) Descriptor() ([]byte, []int)
- func (m *PendingChannelsResponse_PendingChannel) GetCapacity() int64
- func (m *PendingChannelsResponse_PendingChannel) GetChannelPoint() string
- func (m *PendingChannelsResponse_PendingChannel) GetLocalBalance() int64
- func (m *PendingChannelsResponse_PendingChannel) GetRemoteBalance() int64
- func (m *PendingChannelsResponse_PendingChannel) GetRemoteNodePub() string
- func (*PendingChannelsResponse_PendingChannel) ProtoMessage()
- func (m *PendingChannelsResponse_PendingChannel) Reset()
- func (m *PendingChannelsResponse_PendingChannel) String() string
- func (m *PendingChannelsResponse_PendingChannel) XXX_DiscardUnknown()
- func (m *PendingChannelsResponse_PendingChannel) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
- func (dst *PendingChannelsResponse_PendingChannel) XXX_Merge(src proto.Message)
- func (m *PendingChannelsResponse_PendingChannel) XXX_Size() int
- func (m *PendingChannelsResponse_PendingChannel) XXX_Unmarshal(b []byte) error
- type PendingChannelsResponse_PendingOpenChannel
- func (*PendingChannelsResponse_PendingOpenChannel) Descriptor() ([]byte, []int)
- func (m *PendingChannelsResponse_PendingOpenChannel) GetChannel() *PendingChannelsResponse_PendingChannel
- func (m *PendingChannelsResponse_PendingOpenChannel) GetCommitFee() int64
- func (m *PendingChannelsResponse_PendingOpenChannel) GetCommitWeight() int64
- func (m *PendingChannelsResponse_PendingOpenChannel) GetConfirmationHeight() uint32
- func (m *PendingChannelsResponse_PendingOpenChannel) GetFeePerKw() int64
- func (*PendingChannelsResponse_PendingOpenChannel) ProtoMessage()
- func (m *PendingChannelsResponse_PendingOpenChannel) Reset()
- func (m *PendingChannelsResponse_PendingOpenChannel) String() string
- func (m *PendingChannelsResponse_PendingOpenChannel) XXX_DiscardUnknown()
- func (m *PendingChannelsResponse_PendingOpenChannel) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
- func (dst *PendingChannelsResponse_PendingOpenChannel) XXX_Merge(src proto.Message)
- func (m *PendingChannelsResponse_PendingOpenChannel) XXX_Size() int
- func (m *PendingChannelsResponse_PendingOpenChannel) XXX_Unmarshal(b []byte) error
- type PendingChannelsResponse_WaitingCloseChannel
- func (*PendingChannelsResponse_WaitingCloseChannel) Descriptor() ([]byte, []int)
- func (m *PendingChannelsResponse_WaitingCloseChannel) GetChannel() *PendingChannelsResponse_PendingChannel
- func (m *PendingChannelsResponse_WaitingCloseChannel) GetLimboBalance() int64
- func (*PendingChannelsResponse_WaitingCloseChannel) ProtoMessage()
- func (m *PendingChannelsResponse_WaitingCloseChannel) Reset()
- func (m *PendingChannelsResponse_WaitingCloseChannel) String() string
- func (m *PendingChannelsResponse_WaitingCloseChannel) XXX_DiscardUnknown()
- func (m *PendingChannelsResponse_WaitingCloseChannel) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
- func (dst *PendingChannelsResponse_WaitingCloseChannel) XXX_Merge(src proto.Message)
- func (m *PendingChannelsResponse_WaitingCloseChannel) XXX_Size() int
- func (m *PendingChannelsResponse_WaitingCloseChannel) XXX_Unmarshal(b []byte) error
- type PendingHTLC
- func (*PendingHTLC) Descriptor() ([]byte, []int)
- func (m *PendingHTLC) GetAmount() int64
- func (m *PendingHTLC) GetBlocksTilMaturity() int32
- func (m *PendingHTLC) GetIncoming() bool
- func (m *PendingHTLC) GetMaturityHeight() uint32
- func (m *PendingHTLC) GetOutpoint() string
- func (m *PendingHTLC) GetStage() uint32
- func (*PendingHTLC) ProtoMessage()
- func (m *PendingHTLC) Reset()
- func (m *PendingHTLC) String() string
- func (m *PendingHTLC) XXX_DiscardUnknown()
- func (m *PendingHTLC) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
- func (dst *PendingHTLC) XXX_Merge(src proto.Message)
- func (m *PendingHTLC) XXX_Size() int
- func (m *PendingHTLC) XXX_Unmarshal(b []byte) error
- type PendingUpdate
- func (*PendingUpdate) Descriptor() ([]byte, []int)
- func (m *PendingUpdate) GetOutputIndex() uint32
- func (m *PendingUpdate) GetTxid() []byte
- func (*PendingUpdate) ProtoMessage()
- func (m *PendingUpdate) Reset()
- func (m *PendingUpdate) String() string
- func (m *PendingUpdate) XXX_DiscardUnknown()
- func (m *PendingUpdate) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
- func (dst *PendingUpdate) XXX_Merge(src proto.Message)
- func (m *PendingUpdate) XXX_Size() int
- func (m *PendingUpdate) XXX_Unmarshal(b []byte) error
- type PolicyUpdateRequest
- func (*PolicyUpdateRequest) Descriptor() ([]byte, []int)
- func (m *PolicyUpdateRequest) GetBaseFeeMsat() int64
- func (m *PolicyUpdateRequest) GetChanPoint() *ChannelPoint
- func (m *PolicyUpdateRequest) GetFeeRate() float64
- func (m *PolicyUpdateRequest) GetGlobal() bool
- func (m *PolicyUpdateRequest) GetScope() isPolicyUpdateRequest_Scope
- func (m *PolicyUpdateRequest) GetTimeLockDelta() uint32
- func (*PolicyUpdateRequest) ProtoMessage()
- func (m *PolicyUpdateRequest) Reset()
- func (m *PolicyUpdateRequest) String() string
- func (m *PolicyUpdateRequest) XXX_DiscardUnknown()
- func (m *PolicyUpdateRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
- func (dst *PolicyUpdateRequest) XXX_Merge(src proto.Message)
- func (*PolicyUpdateRequest) XXX_OneofFuncs() (func(msg proto.Message, b *proto.Buffer) error, ...)
- func (m *PolicyUpdateRequest) XXX_Size() int
- func (m *PolicyUpdateRequest) XXX_Unmarshal(b []byte) error
- type PolicyUpdateRequest_ChanPoint
- type PolicyUpdateRequest_Global
- type PolicyUpdateResponse
- func (*PolicyUpdateResponse) Descriptor() ([]byte, []int)
- func (*PolicyUpdateResponse) ProtoMessage()
- func (m *PolicyUpdateResponse) Reset()
- func (m *PolicyUpdateResponse) String() string
- func (m *PolicyUpdateResponse) XXX_DiscardUnknown()
- func (m *PolicyUpdateResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
- func (dst *PolicyUpdateResponse) XXX_Merge(src proto.Message)
- func (m *PolicyUpdateResponse) XXX_Size() int
- func (m *PolicyUpdateResponse) XXX_Unmarshal(b []byte) error
- type QueryRoutesRequest
- func (*QueryRoutesRequest) Descriptor() ([]byte, []int)
- func (m *QueryRoutesRequest) GetAmt() int64
- func (m *QueryRoutesRequest) GetFeeLimit() *FeeLimit
- func (m *QueryRoutesRequest) GetFinalCltvDelta() int32
- func (m *QueryRoutesRequest) GetNumRoutes() int32
- func (m *QueryRoutesRequest) GetPubKey() string
- func (*QueryRoutesRequest) ProtoMessage()
- func (m *QueryRoutesRequest) Reset()
- func (m *QueryRoutesRequest) String() string
- func (m *QueryRoutesRequest) XXX_DiscardUnknown()
- func (m *QueryRoutesRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
- func (dst *QueryRoutesRequest) XXX_Merge(src proto.Message)
- func (m *QueryRoutesRequest) XXX_Size() int
- func (m *QueryRoutesRequest) XXX_Unmarshal(b []byte) error
- type QueryRoutesResponse
- func (*QueryRoutesResponse) Descriptor() ([]byte, []int)
- func (m *QueryRoutesResponse) GetRoutes() []*Route
- func (*QueryRoutesResponse) ProtoMessage()
- func (m *QueryRoutesResponse) Reset()
- func (m *QueryRoutesResponse) String() string
- func (m *QueryRoutesResponse) XXX_DiscardUnknown()
- func (m *QueryRoutesResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
- func (dst *QueryRoutesResponse) XXX_Merge(src proto.Message)
- func (m *QueryRoutesResponse) XXX_Size() int
- func (m *QueryRoutesResponse) XXX_Unmarshal(b []byte) error
- type Route
- func (*Route) Descriptor() ([]byte, []int)
- func (m *Route) GetHops() []*Hop
- func (m *Route) GetTotalAmt() int64
- func (m *Route) GetTotalAmtMsat() int64
- func (m *Route) GetTotalFees() int64
- func (m *Route) GetTotalFeesMsat() int64
- func (m *Route) GetTotalTimeLock() uint32
- func (*Route) ProtoMessage()
- func (m *Route) Reset()
- func (m *Route) String() string
- func (m *Route) XXX_DiscardUnknown()
- func (m *Route) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
- func (dst *Route) XXX_Merge(src proto.Message)
- func (m *Route) XXX_Size() int
- func (m *Route) XXX_Unmarshal(b []byte) error
- type RouteHint
- func (*RouteHint) Descriptor() ([]byte, []int)
- func (m *RouteHint) GetHopHints() []*HopHint
- func (*RouteHint) ProtoMessage()
- func (m *RouteHint) Reset()
- func (m *RouteHint) String() string
- func (m *RouteHint) XXX_DiscardUnknown()
- func (m *RouteHint) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
- func (dst *RouteHint) XXX_Merge(src proto.Message)
- func (m *RouteHint) XXX_Size() int
- func (m *RouteHint) XXX_Unmarshal(b []byte) error
- type RoutingPolicy
- func (*RoutingPolicy) Descriptor() ([]byte, []int)
- func (m *RoutingPolicy) GetDisabled() bool
- func (m *RoutingPolicy) GetFeeBaseMsat() int64
- func (m *RoutingPolicy) GetFeeRateMilliMsat() int64
- func (m *RoutingPolicy) GetMinHtlc() int64
- func (m *RoutingPolicy) GetTimeLockDelta() uint32
- func (*RoutingPolicy) ProtoMessage()
- func (m *RoutingPolicy) Reset()
- func (m *RoutingPolicy) String() string
- func (m *RoutingPolicy) XXX_DiscardUnknown()
- func (m *RoutingPolicy) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
- func (dst *RoutingPolicy) XXX_Merge(src proto.Message)
- func (m *RoutingPolicy) XXX_Size() int
- func (m *RoutingPolicy) XXX_Unmarshal(b []byte) error
- type SendCoinsRequest
- func (*SendCoinsRequest) Descriptor() ([]byte, []int)
- func (m *SendCoinsRequest) GetAddr() string
- func (m *SendCoinsRequest) GetAmount() int64
- func (m *SendCoinsRequest) GetSatPerByte() int64
- func (m *SendCoinsRequest) GetSendAll() bool
- func (m *SendCoinsRequest) GetTargetConf() int32
- func (*SendCoinsRequest) ProtoMessage()
- func (m *SendCoinsRequest) Reset()
- func (m *SendCoinsRequest) String() string
- func (m *SendCoinsRequest) XXX_DiscardUnknown()
- func (m *SendCoinsRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
- func (dst *SendCoinsRequest) XXX_Merge(src proto.Message)
- func (m *SendCoinsRequest) XXX_Size() int
- func (m *SendCoinsRequest) XXX_Unmarshal(b []byte) error
- type SendCoinsResponse
- func (*SendCoinsResponse) Descriptor() ([]byte, []int)
- func (m *SendCoinsResponse) GetTxid() string
- func (*SendCoinsResponse) ProtoMessage()
- func (m *SendCoinsResponse) Reset()
- func (m *SendCoinsResponse) String() string
- func (m *SendCoinsResponse) XXX_DiscardUnknown()
- func (m *SendCoinsResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
- func (dst *SendCoinsResponse) XXX_Merge(src proto.Message)
- func (m *SendCoinsResponse) XXX_Size() int
- func (m *SendCoinsResponse) XXX_Unmarshal(b []byte) error
- type SendManyRequest
- func (*SendManyRequest) Descriptor() ([]byte, []int)
- func (m *SendManyRequest) GetAddrToAmount() map[string]int64
- func (m *SendManyRequest) GetSatPerByte() int64
- func (m *SendManyRequest) GetTargetConf() int32
- func (*SendManyRequest) ProtoMessage()
- func (m *SendManyRequest) Reset()
- func (m *SendManyRequest) String() string
- func (m *SendManyRequest) XXX_DiscardUnknown()
- func (m *SendManyRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
- func (dst *SendManyRequest) XXX_Merge(src proto.Message)
- func (m *SendManyRequest) XXX_Size() int
- func (m *SendManyRequest) XXX_Unmarshal(b []byte) error
- type SendManyResponse
- func (*SendManyResponse) Descriptor() ([]byte, []int)
- func (m *SendManyResponse) GetTxid() string
- func (*SendManyResponse) ProtoMessage()
- func (m *SendManyResponse) Reset()
- func (m *SendManyResponse) String() string
- func (m *SendManyResponse) XXX_DiscardUnknown()
- func (m *SendManyResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
- func (dst *SendManyResponse) XXX_Merge(src proto.Message)
- func (m *SendManyResponse) XXX_Size() int
- func (m *SendManyResponse) XXX_Unmarshal(b []byte) error
- type SendRequest
- func (*SendRequest) Descriptor() ([]byte, []int)
- func (m *SendRequest) GetAmt() int64
- func (m *SendRequest) GetDest() []byte
- func (m *SendRequest) GetDestString() string
- func (m *SendRequest) GetFeeLimit() *FeeLimit
- func (m *SendRequest) GetFinalCltvDelta() int32
- func (m *SendRequest) GetOutgoingChanId() uint64
- func (m *SendRequest) GetPaymentHash() []byte
- func (m *SendRequest) GetPaymentHashString() string
- func (m *SendRequest) GetPaymentRequest() string
- func (*SendRequest) ProtoMessage()
- func (m *SendRequest) Reset()
- func (m *SendRequest) String() string
- func (m *SendRequest) XXX_DiscardUnknown()
- func (m *SendRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
- func (dst *SendRequest) XXX_Merge(src proto.Message)
- func (m *SendRequest) XXX_Size() int
- func (m *SendRequest) XXX_Unmarshal(b []byte) error
- type SendResponse
- func (*SendResponse) Descriptor() ([]byte, []int)
- func (m *SendResponse) GetPaymentError() string
- func (m *SendResponse) GetPaymentHash() []byte
- func (m *SendResponse) GetPaymentPreimage() []byte
- func (m *SendResponse) GetPaymentRoute() *Route
- func (*SendResponse) ProtoMessage()
- func (m *SendResponse) Reset()
- func (m *SendResponse) String() string
- func (m *SendResponse) XXX_DiscardUnknown()
- func (m *SendResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
- func (dst *SendResponse) XXX_Merge(src proto.Message)
- func (m *SendResponse) XXX_Size() int
- func (m *SendResponse) XXX_Unmarshal(b []byte) error
- type SendToRouteRequest
- func (*SendToRouteRequest) Descriptor() ([]byte, []int)
- func (m *SendToRouteRequest) GetPaymentHash() []byte
- func (m *SendToRouteRequest) GetPaymentHashString() string
- func (m *SendToRouteRequest) GetRoute() *Route
- func (m *SendToRouteRequest) GetRoutes() []*Route
- func (*SendToRouteRequest) ProtoMessage()
- func (m *SendToRouteRequest) Reset()
- func (m *SendToRouteRequest) String() string
- func (m *SendToRouteRequest) XXX_DiscardUnknown()
- func (m *SendToRouteRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
- func (dst *SendToRouteRequest) XXX_Merge(src proto.Message)
- func (m *SendToRouteRequest) XXX_Size() int
- func (m *SendToRouteRequest) XXX_Unmarshal(b []byte) error
- type SignMessageRequest
- func (*SignMessageRequest) Descriptor() ([]byte, []int)
- func (m *SignMessageRequest) GetMsg() []byte
- func (*SignMessageRequest) ProtoMessage()
- func (m *SignMessageRequest) Reset()
- func (m *SignMessageRequest) String() string
- func (m *SignMessageRequest) XXX_DiscardUnknown()
- func (m *SignMessageRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
- func (dst *SignMessageRequest) XXX_Merge(src proto.Message)
- func (m *SignMessageRequest) XXX_Size() int
- func (m *SignMessageRequest) XXX_Unmarshal(b []byte) error
- type SignMessageResponse
- func (*SignMessageResponse) Descriptor() ([]byte, []int)
- func (m *SignMessageResponse) GetSignature() string
- func (*SignMessageResponse) ProtoMessage()
- func (m *SignMessageResponse) Reset()
- func (m *SignMessageResponse) String() string
- func (m *SignMessageResponse) XXX_DiscardUnknown()
- func (m *SignMessageResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
- func (dst *SignMessageResponse) XXX_Merge(src proto.Message)
- func (m *SignMessageResponse) XXX_Size() int
- func (m *SignMessageResponse) XXX_Unmarshal(b []byte) error
- type StopRequest
- func (*StopRequest) Descriptor() ([]byte, []int)
- func (*StopRequest) ProtoMessage()
- func (m *StopRequest) Reset()
- func (m *StopRequest) String() string
- func (m *StopRequest) XXX_DiscardUnknown()
- func (m *StopRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
- func (dst *StopRequest) XXX_Merge(src proto.Message)
- func (m *StopRequest) XXX_Size() int
- func (m *StopRequest) XXX_Unmarshal(b []byte) error
- type StopResponse
- func (*StopResponse) Descriptor() ([]byte, []int)
- func (*StopResponse) ProtoMessage()
- func (m *StopResponse) Reset()
- func (m *StopResponse) String() string
- func (m *StopResponse) XXX_DiscardUnknown()
- func (m *StopResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
- func (dst *StopResponse) XXX_Merge(src proto.Message)
- func (m *StopResponse) XXX_Size() int
- func (m *StopResponse) XXX_Unmarshal(b []byte) error
- type SubServer
- type SubServerConfigDispatcher
- type SubServerDriver
- type Transaction
- func (*Transaction) Descriptor() ([]byte, []int)
- func (m *Transaction) GetAmount() int64
- func (m *Transaction) GetBlockHash() string
- func (m *Transaction) GetBlockHeight() int32
- func (m *Transaction) GetDestAddresses() []string
- func (m *Transaction) GetNumConfirmations() int32
- func (m *Transaction) GetTimeStamp() int64
- func (m *Transaction) GetTotalFees() int64
- func (m *Transaction) GetTxHash() string
- func (*Transaction) ProtoMessage()
- func (m *Transaction) Reset()
- func (m *Transaction) String() string
- func (m *Transaction) XXX_DiscardUnknown()
- func (m *Transaction) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
- func (dst *Transaction) XXX_Merge(src proto.Message)
- func (m *Transaction) XXX_Size() int
- func (m *Transaction) XXX_Unmarshal(b []byte) error
- type TransactionDetails
- func (*TransactionDetails) Descriptor() ([]byte, []int)
- func (m *TransactionDetails) GetTransactions() []*Transaction
- func (*TransactionDetails) ProtoMessage()
- func (m *TransactionDetails) Reset()
- func (m *TransactionDetails) String() string
- func (m *TransactionDetails) XXX_DiscardUnknown()
- func (m *TransactionDetails) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
- func (dst *TransactionDetails) XXX_Merge(src proto.Message)
- func (m *TransactionDetails) XXX_Size() int
- func (m *TransactionDetails) XXX_Unmarshal(b []byte) error
- type UnlockWalletRequest
- func (*UnlockWalletRequest) Descriptor() ([]byte, []int)
- func (m *UnlockWalletRequest) GetRecoveryWindow() int32
- func (m *UnlockWalletRequest) GetWalletPassword() []byte
- func (*UnlockWalletRequest) ProtoMessage()
- func (m *UnlockWalletRequest) Reset()
- func (m *UnlockWalletRequest) String() string
- func (m *UnlockWalletRequest) XXX_DiscardUnknown()
- func (m *UnlockWalletRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
- func (dst *UnlockWalletRequest) XXX_Merge(src proto.Message)
- func (m *UnlockWalletRequest) XXX_Size() int
- func (m *UnlockWalletRequest) XXX_Unmarshal(b []byte) error
- type UnlockWalletResponse
- func (*UnlockWalletResponse) Descriptor() ([]byte, []int)
- func (*UnlockWalletResponse) ProtoMessage()
- func (m *UnlockWalletResponse) Reset()
- func (m *UnlockWalletResponse) String() string
- func (m *UnlockWalletResponse) XXX_DiscardUnknown()
- func (m *UnlockWalletResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
- func (dst *UnlockWalletResponse) XXX_Merge(src proto.Message)
- func (m *UnlockWalletResponse) XXX_Size() int
- func (m *UnlockWalletResponse) XXX_Unmarshal(b []byte) error
- type Utxo
- func (*Utxo) Descriptor() ([]byte, []int)
- func (m *Utxo) GetAddress() string
- func (m *Utxo) GetAmountSat() int64
- func (m *Utxo) GetConfirmations() int64
- func (m *Utxo) GetOutpoint() *OutPoint
- func (m *Utxo) GetPkScript() string
- func (m *Utxo) GetType() AddressType
- func (*Utxo) ProtoMessage()
- func (m *Utxo) Reset()
- func (m *Utxo) String() string
- func (m *Utxo) XXX_DiscardUnknown()
- func (m *Utxo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
- func (dst *Utxo) XXX_Merge(src proto.Message)
- func (m *Utxo) XXX_Size() int
- func (m *Utxo) XXX_Unmarshal(b []byte) error
- type VerifyMessageRequest
- func (*VerifyMessageRequest) Descriptor() ([]byte, []int)
- func (m *VerifyMessageRequest) GetMsg() []byte
- func (m *VerifyMessageRequest) GetSignature() string
- func (*VerifyMessageRequest) ProtoMessage()
- func (m *VerifyMessageRequest) Reset()
- func (m *VerifyMessageRequest) String() string
- func (m *VerifyMessageRequest) XXX_DiscardUnknown()
- func (m *VerifyMessageRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
- func (dst *VerifyMessageRequest) XXX_Merge(src proto.Message)
- func (m *VerifyMessageRequest) XXX_Size() int
- func (m *VerifyMessageRequest) XXX_Unmarshal(b []byte) error
- type VerifyMessageResponse
- func (*VerifyMessageResponse) Descriptor() ([]byte, []int)
- func (m *VerifyMessageResponse) GetPubkey() string
- func (m *VerifyMessageResponse) GetValid() bool
- func (*VerifyMessageResponse) ProtoMessage()
- func (m *VerifyMessageResponse) Reset()
- func (m *VerifyMessageResponse) String() string
- func (m *VerifyMessageResponse) XXX_DiscardUnknown()
- func (m *VerifyMessageResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
- func (dst *VerifyMessageResponse) XXX_Merge(src proto.Message)
- func (m *VerifyMessageResponse) XXX_Size() int
- func (m *VerifyMessageResponse) XXX_Unmarshal(b []byte) error
- type WalletBalanceRequest
- func (*WalletBalanceRequest) Descriptor() ([]byte, []int)
- func (*WalletBalanceRequest) ProtoMessage()
- func (m *WalletBalanceRequest) Reset()
- func (m *WalletBalanceRequest) String() string
- func (m *WalletBalanceRequest) XXX_DiscardUnknown()
- func (m *WalletBalanceRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
- func (dst *WalletBalanceRequest) XXX_Merge(src proto.Message)
- func (m *WalletBalanceRequest) XXX_Size() int
- func (m *WalletBalanceRequest) XXX_Unmarshal(b []byte) error
- type WalletBalanceResponse
- func (*WalletBalanceResponse) Descriptor() ([]byte, []int)
- func (m *WalletBalanceResponse) GetConfirmedBalance() int64
- func (m *WalletBalanceResponse) GetTotalBalance() int64
- func (m *WalletBalanceResponse) GetUnconfirmedBalance() int64
- func (*WalletBalanceResponse) ProtoMessage()
- func (m *WalletBalanceResponse) Reset()
- func (m *WalletBalanceResponse) String() string
- func (m *WalletBalanceResponse) XXX_DiscardUnknown()
- func (m *WalletBalanceResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
- func (dst *WalletBalanceResponse) XXX_Merge(src proto.Message)
- func (m *WalletBalanceResponse) XXX_Size() int
- func (m *WalletBalanceResponse) XXX_Unmarshal(b []byte) error
- type WalletUnlockerClient
- type WalletUnlockerServer
Constants ¶
Variables ¶
var AddressType_name = map[int32]string{
0: "WITNESS_PUBKEY_HASH",
1: "NESTED_PUBKEY_HASH",
}
var AddressType_value = map[string]int32{
"WITNESS_PUBKEY_HASH": 0,
"NESTED_PUBKEY_HASH": 1,
}
var ChannelCloseSummary_ClosureType_name = map[int32]string{
0: "COOPERATIVE_CLOSE",
1: "LOCAL_FORCE_CLOSE",
2: "REMOTE_FORCE_CLOSE",
3: "BREACH_CLOSE",
4: "FUNDING_CANCELED",
5: "ABANDONED",
}
var ChannelCloseSummary_ClosureType_value = map[string]int32{
"COOPERATIVE_CLOSE": 0,
"LOCAL_FORCE_CLOSE": 1,
"REMOTE_FORCE_CLOSE": 2,
"BREACH_CLOSE": 3,
"FUNDING_CANCELED": 4,
"ABANDONED": 5,
}
var ChannelEventUpdate_UpdateType_name = map[int32]string{
0: "OPEN_CHANNEL",
1: "CLOSED_CHANNEL",
2: "ACTIVE_CHANNEL",
3: "INACTIVE_CHANNEL",
}
var ChannelEventUpdate_UpdateType_value = map[string]int32{
"OPEN_CHANNEL": 0,
"CLOSED_CHANNEL": 1,
"ACTIVE_CHANNEL": 2,
"INACTIVE_CHANNEL": 3,
}
var Invoice_InvoiceState_name = map[int32]string{
0: "OPEN",
1: "SETTLED",
2: "CANCELED",
}
var Invoice_InvoiceState_value = map[string]int32{
"OPEN": 0,
"SETTLED": 1,
"CANCELED": 2,
}
Functions ¶
func FileExists ¶
FileExists reports whether the named file or directory exists.
func RegisterLightningHandler ¶
func RegisterLightningHandler(ctx context.Context, mux *runtime.ServeMux, conn *grpc.ClientConn) error
RegisterLightningHandler registers the http handlers for service Lightning to "mux". The handlers forward requests to the grpc endpoint over "conn".
func RegisterLightningHandlerFromEndpoint ¶
func RegisterLightningHandlerFromEndpoint(ctx context.Context, mux *runtime.ServeMux, endpoint string, opts []grpc.DialOption) (err error)
RegisterLightningHandlerFromEndpoint is same as RegisterLightningHandler but automatically dials to "endpoint" and closes the connection when "ctx" gets done.
func RegisterLightningServer ¶
func RegisterLightningServer(s *grpc.Server, srv LightningServer)
func RegisterSubServer ¶
func RegisterSubServer(driver *SubServerDriver) error
RegisterSubServer should be called by a sub-server within its package's init() method to register its existence with the main sub-server map. Each sub-server, if active, is meant to register via this method in their init() method. This allows callers to easily initialize and register all sub-servers without knowing any details beyond that the fact that they satisfy the necessary interfaces.
NOTE: This function is safe for concurrent access.
func RegisterWalletUnlockerHandler ¶
func RegisterWalletUnlockerHandler(ctx context.Context, mux *runtime.ServeMux, conn *grpc.ClientConn) error
RegisterWalletUnlockerHandler registers the http handlers for service WalletUnlocker to "mux". The handlers forward requests to the grpc endpoint over "conn".
func RegisterWalletUnlockerHandlerFromEndpoint ¶
func RegisterWalletUnlockerHandlerFromEndpoint(ctx context.Context, mux *runtime.ServeMux, endpoint string, opts []grpc.DialOption) (err error)
RegisterWalletUnlockerHandlerFromEndpoint is same as RegisterWalletUnlockerHandler but automatically dials to "endpoint" and closes the connection when "ctx" gets done.
func RegisterWalletUnlockerServer ¶
func RegisterWalletUnlockerServer(s *grpc.Server, srv WalletUnlockerServer)
func SupportedServers ¶
func SupportedServers() []string
SupportedServers returns slice of the names of all registered sub-servers.
NOTE: This function is safe for concurrent access.
Types ¶
type AbandonChannelRequest ¶
type AbandonChannelRequest struct { ChannelPoint *ChannelPoint `protobuf:"bytes,1,opt,name=channel_point,json=channelPoint,proto3" json:"channel_point,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` }
func (*AbandonChannelRequest) Descriptor ¶
func (*AbandonChannelRequest) Descriptor() ([]byte, []int)
func (*AbandonChannelRequest) GetChannelPoint ¶
func (m *AbandonChannelRequest) GetChannelPoint() *ChannelPoint
func (*AbandonChannelRequest) ProtoMessage ¶
func (*AbandonChannelRequest) ProtoMessage()
func (*AbandonChannelRequest) Reset ¶
func (m *AbandonChannelRequest) Reset()
func (*AbandonChannelRequest) String ¶
func (m *AbandonChannelRequest) String() string
func (*AbandonChannelRequest) XXX_DiscardUnknown ¶
func (m *AbandonChannelRequest) XXX_DiscardUnknown()
func (*AbandonChannelRequest) XXX_Marshal ¶
func (m *AbandonChannelRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
func (*AbandonChannelRequest) XXX_Merge ¶
func (dst *AbandonChannelRequest) XXX_Merge(src proto.Message)
func (*AbandonChannelRequest) XXX_Size ¶
func (m *AbandonChannelRequest) XXX_Size() int
func (*AbandonChannelRequest) XXX_Unmarshal ¶
func (m *AbandonChannelRequest) XXX_Unmarshal(b []byte) error
type AbandonChannelResponse ¶
type AbandonChannelResponse struct { XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` }
func (*AbandonChannelResponse) Descriptor ¶
func (*AbandonChannelResponse) Descriptor() ([]byte, []int)
func (*AbandonChannelResponse) ProtoMessage ¶
func (*AbandonChannelResponse) ProtoMessage()
func (*AbandonChannelResponse) Reset ¶
func (m *AbandonChannelResponse) Reset()
func (*AbandonChannelResponse) String ¶
func (m *AbandonChannelResponse) String() string
func (*AbandonChannelResponse) XXX_DiscardUnknown ¶
func (m *AbandonChannelResponse) XXX_DiscardUnknown()
func (*AbandonChannelResponse) XXX_Marshal ¶
func (m *AbandonChannelResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
func (*AbandonChannelResponse) XXX_Merge ¶
func (dst *AbandonChannelResponse) XXX_Merge(src proto.Message)
func (*AbandonChannelResponse) XXX_Size ¶
func (m *AbandonChannelResponse) XXX_Size() int
func (*AbandonChannelResponse) XXX_Unmarshal ¶
func (m *AbandonChannelResponse) XXX_Unmarshal(b []byte) error
type AddInvoiceResponse ¶
type AddInvoiceResponse struct { RHash []byte `protobuf:"bytes,1,opt,name=r_hash,proto3" json:"r_hash,omitempty"` // * // A bare-bones invoice for a payment within the Lightning Network. With the // details of the invoice, the sender has all the data necessary to send a // payment to the recipient. PaymentRequest string `protobuf:"bytes,2,opt,name=payment_request,proto3" json:"payment_request,omitempty"` // * // The "add" index of this invoice. Each newly created invoice will increment // this index making it monotonically increasing. Callers to the // SubscribeInvoices call can use this to instantly get notified of all added // invoices with an add_index greater than this one. AddIndex uint64 `protobuf:"varint,16,opt,name=add_index,proto3" json:"add_index,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` }
func (*AddInvoiceResponse) Descriptor ¶
func (*AddInvoiceResponse) Descriptor() ([]byte, []int)
func (*AddInvoiceResponse) GetAddIndex ¶
func (m *AddInvoiceResponse) GetAddIndex() uint64
func (*AddInvoiceResponse) GetPaymentRequest ¶
func (m *AddInvoiceResponse) GetPaymentRequest() string
func (*AddInvoiceResponse) GetRHash ¶
func (m *AddInvoiceResponse) GetRHash() []byte
func (*AddInvoiceResponse) ProtoMessage ¶
func (*AddInvoiceResponse) ProtoMessage()
func (*AddInvoiceResponse) Reset ¶
func (m *AddInvoiceResponse) Reset()
func (*AddInvoiceResponse) String ¶
func (m *AddInvoiceResponse) String() string
func (*AddInvoiceResponse) XXX_DiscardUnknown ¶
func (m *AddInvoiceResponse) XXX_DiscardUnknown()
func (*AddInvoiceResponse) XXX_Marshal ¶
func (m *AddInvoiceResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
func (*AddInvoiceResponse) XXX_Merge ¶
func (dst *AddInvoiceResponse) XXX_Merge(src proto.Message)
func (*AddInvoiceResponse) XXX_Size ¶
func (m *AddInvoiceResponse) XXX_Size() int
func (*AddInvoiceResponse) XXX_Unmarshal ¶
func (m *AddInvoiceResponse) XXX_Unmarshal(b []byte) error
type AddressType ¶
type AddressType int32
* `AddressType` has to be one of:
- `p2wkh`: Pay to witness key hash (`WITNESS_PUBKEY_HASH` = 0) - `np2wkh`: Pay to nested witness key hash (`NESTED_PUBKEY_HASH` = 1)
const ( AddressType_WITNESS_PUBKEY_HASH AddressType = 0 AddressType_NESTED_PUBKEY_HASH AddressType = 1 )
func (AddressType) EnumDescriptor ¶
func (AddressType) EnumDescriptor() ([]byte, []int)
func (AddressType) String ¶
func (x AddressType) String() string
type Chain ¶
type Chain struct { // / The blockchain the node is on (eg bitcoin, actinium) Chain string `protobuf:"bytes,1,opt,name=chain,proto3" json:"chain,omitempty"` // / The network the node is on (eg regtest, testnet, mainnet) Network string `protobuf:"bytes,2,opt,name=network,proto3" json:"network,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` }
func (*Chain) Descriptor ¶
func (*Chain) GetNetwork ¶
func (*Chain) ProtoMessage ¶
func (*Chain) ProtoMessage()
func (*Chain) XXX_DiscardUnknown ¶
func (m *Chain) XXX_DiscardUnknown()
func (*Chain) XXX_Marshal ¶
func (*Chain) XXX_Unmarshal ¶
type ChanInfoRequest ¶
type ChanInfoRequest struct { // * // The unique channel ID for the channel. The first 3 bytes are the block // height, the next 3 the index within the block, and the last 2 bytes are the // output index for the channel. ChanId uint64 `protobuf:"varint,1,opt,name=chan_id,json=chanId,proto3" json:"chan_id,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` }
func (*ChanInfoRequest) Descriptor ¶
func (*ChanInfoRequest) Descriptor() ([]byte, []int)
func (*ChanInfoRequest) GetChanId ¶
func (m *ChanInfoRequest) GetChanId() uint64
func (*ChanInfoRequest) ProtoMessage ¶
func (*ChanInfoRequest) ProtoMessage()
func (*ChanInfoRequest) Reset ¶
func (m *ChanInfoRequest) Reset()
func (*ChanInfoRequest) String ¶
func (m *ChanInfoRequest) String() string
func (*ChanInfoRequest) XXX_DiscardUnknown ¶
func (m *ChanInfoRequest) XXX_DiscardUnknown()
func (*ChanInfoRequest) XXX_Marshal ¶
func (m *ChanInfoRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
func (*ChanInfoRequest) XXX_Merge ¶
func (dst *ChanInfoRequest) XXX_Merge(src proto.Message)
func (*ChanInfoRequest) XXX_Size ¶
func (m *ChanInfoRequest) XXX_Size() int
func (*ChanInfoRequest) XXX_Unmarshal ¶
func (m *ChanInfoRequest) XXX_Unmarshal(b []byte) error
type ChangePasswordRequest ¶
type ChangePasswordRequest struct { // * // current_password should be the current valid passphrase used to unlock the // daemon. CurrentPassword []byte `protobuf:"bytes,1,opt,name=current_password,json=currentPassword,proto3" json:"current_password,omitempty"` // * // new_password should be the new passphrase that will be needed to unlock the // daemon. NewPassword []byte `protobuf:"bytes,2,opt,name=new_password,json=newPassword,proto3" json:"new_password,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` }
func (*ChangePasswordRequest) Descriptor ¶
func (*ChangePasswordRequest) Descriptor() ([]byte, []int)
func (*ChangePasswordRequest) GetCurrentPassword ¶
func (m *ChangePasswordRequest) GetCurrentPassword() []byte
func (*ChangePasswordRequest) GetNewPassword ¶
func (m *ChangePasswordRequest) GetNewPassword() []byte
func (*ChangePasswordRequest) ProtoMessage ¶
func (*ChangePasswordRequest) ProtoMessage()
func (*ChangePasswordRequest) Reset ¶
func (m *ChangePasswordRequest) Reset()
func (*ChangePasswordRequest) String ¶
func (m *ChangePasswordRequest) String() string
func (*ChangePasswordRequest) XXX_DiscardUnknown ¶
func (m *ChangePasswordRequest) XXX_DiscardUnknown()
func (*ChangePasswordRequest) XXX_Marshal ¶
func (m *ChangePasswordRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
func (*ChangePasswordRequest) XXX_Merge ¶
func (dst *ChangePasswordRequest) XXX_Merge(src proto.Message)
func (*ChangePasswordRequest) XXX_Size ¶
func (m *ChangePasswordRequest) XXX_Size() int
func (*ChangePasswordRequest) XXX_Unmarshal ¶
func (m *ChangePasswordRequest) XXX_Unmarshal(b []byte) error
type ChangePasswordResponse ¶
type ChangePasswordResponse struct { XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` }
func (*ChangePasswordResponse) Descriptor ¶
func (*ChangePasswordResponse) Descriptor() ([]byte, []int)
func (*ChangePasswordResponse) ProtoMessage ¶
func (*ChangePasswordResponse) ProtoMessage()
func (*ChangePasswordResponse) Reset ¶
func (m *ChangePasswordResponse) Reset()
func (*ChangePasswordResponse) String ¶
func (m *ChangePasswordResponse) String() string
func (*ChangePasswordResponse) XXX_DiscardUnknown ¶
func (m *ChangePasswordResponse) XXX_DiscardUnknown()
func (*ChangePasswordResponse) XXX_Marshal ¶
func (m *ChangePasswordResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
func (*ChangePasswordResponse) XXX_Merge ¶
func (dst *ChangePasswordResponse) XXX_Merge(src proto.Message)
func (*ChangePasswordResponse) XXX_Size ¶
func (m *ChangePasswordResponse) XXX_Size() int
func (*ChangePasswordResponse) XXX_Unmarshal ¶
func (m *ChangePasswordResponse) XXX_Unmarshal(b []byte) error
type Channel ¶
type Channel struct { // / Whether this channel is active or not Active bool `protobuf:"varint,1,opt,name=active,proto3" json:"active,omitempty"` // / The identity pubkey of the remote node RemotePubkey string `protobuf:"bytes,2,opt,name=remote_pubkey,proto3" json:"remote_pubkey,omitempty"` // * // The outpoint (txid:index) of the funding transaction. With this value, Bob // will be able to generate a signature for Alice's version of the commitment // transaction. ChannelPoint string `protobuf:"bytes,3,opt,name=channel_point,proto3" json:"channel_point,omitempty"` // * // The unique channel ID for the channel. The first 3 bytes are the block // height, the next 3 the index within the block, and the last 2 bytes are the // output index for the channel. ChanId uint64 `protobuf:"varint,4,opt,name=chan_id,proto3" json:"chan_id,omitempty"` // / The total amount of funds held in this channel Capacity int64 `protobuf:"varint,5,opt,name=capacity,proto3" json:"capacity,omitempty"` // / This node's current balance in this channel LocalBalance int64 `protobuf:"varint,6,opt,name=local_balance,proto3" json:"local_balance,omitempty"` // / The counterparty's current balance in this channel RemoteBalance int64 `protobuf:"varint,7,opt,name=remote_balance,proto3" json:"remote_balance,omitempty"` // * // The amount calculated to be paid in fees for the current set of commitment // transactions. The fee amount is persisted with the channel in order to // allow the fee amount to be removed and recalculated with each channel state // update, including updates that happen after a system restart. CommitFee int64 `protobuf:"varint,8,opt,name=commit_fee,proto3" json:"commit_fee,omitempty"` // / The weight of the commitment transaction CommitWeight int64 `protobuf:"varint,9,opt,name=commit_weight,proto3" json:"commit_weight,omitempty"` // * // The required number of satoshis per kilo-weight that the requester will pay // at all times, for both the funding transaction and commitment transaction. // This value can later be updated once the channel is open. FeePerKw int64 `protobuf:"varint,10,opt,name=fee_per_kw,proto3" json:"fee_per_kw,omitempty"` // / The unsettled balance in this channel UnsettledBalance int64 `protobuf:"varint,11,opt,name=unsettled_balance,proto3" json:"unsettled_balance,omitempty"` // * // The total number of satoshis we've sent within this channel. TotalSatoshisSent int64 `protobuf:"varint,12,opt,name=total_satoshis_sent,proto3" json:"total_satoshis_sent,omitempty"` // * // The total number of satoshis we've received within this channel. TotalSatoshisReceived int64 `protobuf:"varint,13,opt,name=total_satoshis_received,proto3" json:"total_satoshis_received,omitempty"` // * // The total number of updates conducted within this channel. NumUpdates uint64 `protobuf:"varint,14,opt,name=num_updates,proto3" json:"num_updates,omitempty"` // * // The list of active, uncleared HTLCs currently pending within the channel. PendingHtlcs []*HTLC `protobuf:"bytes,15,rep,name=pending_htlcs,proto3" json:"pending_htlcs,omitempty"` // * // The CSV delay expressed in relative blocks. If the channel is force // closed, we'll need to wait for this many blocks before we can regain our // funds. CsvDelay uint32 `protobuf:"varint,16,opt,name=csv_delay,proto3" json:"csv_delay,omitempty"` // / Whether this channel is advertised to the network or not. Private bool `protobuf:"varint,17,opt,name=private,proto3" json:"private,omitempty"` // / True if we were the ones that creted the channel. Initiator bool `protobuf:"varint,18,opt,name=initiator,proto3" json:"initiator,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` }
func (*Channel) Descriptor ¶
func (*Channel) GetCapacity ¶
func (*Channel) GetChannelPoint ¶
func (*Channel) GetCommitFee ¶
func (*Channel) GetCommitWeight ¶
func (*Channel) GetCsvDelay ¶
func (*Channel) GetFeePerKw ¶
func (*Channel) GetInitiator ¶
func (*Channel) GetLocalBalance ¶
func (*Channel) GetNumUpdates ¶
func (*Channel) GetPendingHtlcs ¶
func (*Channel) GetPrivate ¶
func (*Channel) GetRemoteBalance ¶
func (*Channel) GetRemotePubkey ¶
func (*Channel) GetTotalSatoshisReceived ¶
func (*Channel) GetTotalSatoshisSent ¶
func (*Channel) GetUnsettledBalance ¶
func (*Channel) ProtoMessage ¶
func (*Channel) ProtoMessage()
func (*Channel) XXX_DiscardUnknown ¶
func (m *Channel) XXX_DiscardUnknown()
func (*Channel) XXX_Marshal ¶
func (*Channel) XXX_Unmarshal ¶
type ChannelBalanceRequest ¶
type ChannelBalanceRequest struct { XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` }
func (*ChannelBalanceRequest) Descriptor ¶
func (*ChannelBalanceRequest) Descriptor() ([]byte, []int)
func (*ChannelBalanceRequest) ProtoMessage ¶
func (*ChannelBalanceRequest) ProtoMessage()
func (*ChannelBalanceRequest) Reset ¶
func (m *ChannelBalanceRequest) Reset()
func (*ChannelBalanceRequest) String ¶
func (m *ChannelBalanceRequest) String() string
func (*ChannelBalanceRequest) XXX_DiscardUnknown ¶
func (m *ChannelBalanceRequest) XXX_DiscardUnknown()
func (*ChannelBalanceRequest) XXX_Marshal ¶
func (m *ChannelBalanceRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
func (*ChannelBalanceRequest) XXX_Merge ¶
func (dst *ChannelBalanceRequest) XXX_Merge(src proto.Message)
func (*ChannelBalanceRequest) XXX_Size ¶
func (m *ChannelBalanceRequest) XXX_Size() int
func (*ChannelBalanceRequest) XXX_Unmarshal ¶
func (m *ChannelBalanceRequest) XXX_Unmarshal(b []byte) error
type ChannelBalanceResponse ¶
type ChannelBalanceResponse struct { // / Sum of channels balances denominated in satoshis Balance int64 `protobuf:"varint,1,opt,name=balance,proto3" json:"balance,omitempty"` // / Sum of channels pending balances denominated in satoshis PendingOpenBalance int64 `protobuf:"varint,2,opt,name=pending_open_balance,proto3" json:"pending_open_balance,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` }
func (*ChannelBalanceResponse) Descriptor ¶
func (*ChannelBalanceResponse) Descriptor() ([]byte, []int)
func (*ChannelBalanceResponse) GetBalance ¶
func (m *ChannelBalanceResponse) GetBalance() int64
func (*ChannelBalanceResponse) GetPendingOpenBalance ¶
func (m *ChannelBalanceResponse) GetPendingOpenBalance() int64
func (*ChannelBalanceResponse) ProtoMessage ¶
func (*ChannelBalanceResponse) ProtoMessage()
func (*ChannelBalanceResponse) Reset ¶
func (m *ChannelBalanceResponse) Reset()
func (*ChannelBalanceResponse) String ¶
func (m *ChannelBalanceResponse) String() string
func (*ChannelBalanceResponse) XXX_DiscardUnknown ¶
func (m *ChannelBalanceResponse) XXX_DiscardUnknown()
func (*ChannelBalanceResponse) XXX_Marshal ¶
func (m *ChannelBalanceResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
func (*ChannelBalanceResponse) XXX_Merge ¶
func (dst *ChannelBalanceResponse) XXX_Merge(src proto.Message)
func (*ChannelBalanceResponse) XXX_Size ¶
func (m *ChannelBalanceResponse) XXX_Size() int
func (*ChannelBalanceResponse) XXX_Unmarshal ¶
func (m *ChannelBalanceResponse) XXX_Unmarshal(b []byte) error
type ChannelCloseSummary ¶
type ChannelCloseSummary struct { // / The outpoint (txid:index) of the funding transaction. ChannelPoint string `protobuf:"bytes,1,opt,name=channel_point,proto3" json:"channel_point,omitempty"` // / The unique channel ID for the channel. ChanId uint64 `protobuf:"varint,2,opt,name=chan_id,proto3" json:"chan_id,omitempty"` // / The hash of the genesis block that this channel resides within. ChainHash string `protobuf:"bytes,3,opt,name=chain_hash,proto3" json:"chain_hash,omitempty"` // / The txid of the transaction which ultimately closed this channel. ClosingTxHash string `protobuf:"bytes,4,opt,name=closing_tx_hash,proto3" json:"closing_tx_hash,omitempty"` // / Public key of the remote peer that we formerly had a channel with. RemotePubkey string `protobuf:"bytes,5,opt,name=remote_pubkey,proto3" json:"remote_pubkey,omitempty"` // / Total capacity of the channel. Capacity int64 `protobuf:"varint,6,opt,name=capacity,proto3" json:"capacity,omitempty"` // / Height at which the funding transaction was spent. CloseHeight uint32 `protobuf:"varint,7,opt,name=close_height,proto3" json:"close_height,omitempty"` // / Settled balance at the time of channel closure SettledBalance int64 `protobuf:"varint,8,opt,name=settled_balance,proto3" json:"settled_balance,omitempty"` // / The sum of all the time-locked outputs at the time of channel closure TimeLockedBalance int64 `protobuf:"varint,9,opt,name=time_locked_balance,proto3" json:"time_locked_balance,omitempty"` // / Details on how the channel was closed. CloseType ChannelCloseSummary_ClosureType `protobuf:"varint,10,opt,name=close_type,proto3,enum=lnrpc.ChannelCloseSummary_ClosureType" json:"close_type,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` }
func (*ChannelCloseSummary) Descriptor ¶
func (*ChannelCloseSummary) Descriptor() ([]byte, []int)
func (*ChannelCloseSummary) GetCapacity ¶
func (m *ChannelCloseSummary) GetCapacity() int64
func (*ChannelCloseSummary) GetChainHash ¶
func (m *ChannelCloseSummary) GetChainHash() string
func (*ChannelCloseSummary) GetChanId ¶
func (m *ChannelCloseSummary) GetChanId() uint64
func (*ChannelCloseSummary) GetChannelPoint ¶
func (m *ChannelCloseSummary) GetChannelPoint() string
func (*ChannelCloseSummary) GetCloseHeight ¶
func (m *ChannelCloseSummary) GetCloseHeight() uint32
func (*ChannelCloseSummary) GetCloseType ¶
func (m *ChannelCloseSummary) GetCloseType() ChannelCloseSummary_ClosureType
func (*ChannelCloseSummary) GetClosingTxHash ¶
func (m *ChannelCloseSummary) GetClosingTxHash() string
func (*ChannelCloseSummary) GetRemotePubkey ¶
func (m *ChannelCloseSummary) GetRemotePubkey() string
func (*ChannelCloseSummary) GetSettledBalance ¶
func (m *ChannelCloseSummary) GetSettledBalance() int64
func (*ChannelCloseSummary) GetTimeLockedBalance ¶
func (m *ChannelCloseSummary) GetTimeLockedBalance() int64
func (*ChannelCloseSummary) ProtoMessage ¶
func (*ChannelCloseSummary) ProtoMessage()
func (*ChannelCloseSummary) Reset ¶
func (m *ChannelCloseSummary) Reset()
func (*ChannelCloseSummary) String ¶
func (m *ChannelCloseSummary) String() string
func (*ChannelCloseSummary) XXX_DiscardUnknown ¶
func (m *ChannelCloseSummary) XXX_DiscardUnknown()
func (*ChannelCloseSummary) XXX_Marshal ¶
func (m *ChannelCloseSummary) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
func (*ChannelCloseSummary) XXX_Merge ¶
func (dst *ChannelCloseSummary) XXX_Merge(src proto.Message)
func (*ChannelCloseSummary) XXX_Size ¶
func (m *ChannelCloseSummary) XXX_Size() int
func (*ChannelCloseSummary) XXX_Unmarshal ¶
func (m *ChannelCloseSummary) XXX_Unmarshal(b []byte) error
type ChannelCloseSummary_ClosureType ¶
type ChannelCloseSummary_ClosureType int32
const ( ChannelCloseSummary_COOPERATIVE_CLOSE ChannelCloseSummary_ClosureType = 0 ChannelCloseSummary_LOCAL_FORCE_CLOSE ChannelCloseSummary_ClosureType = 1 ChannelCloseSummary_REMOTE_FORCE_CLOSE ChannelCloseSummary_ClosureType = 2 ChannelCloseSummary_BREACH_CLOSE ChannelCloseSummary_ClosureType = 3 ChannelCloseSummary_FUNDING_CANCELED ChannelCloseSummary_ClosureType = 4 ChannelCloseSummary_ABANDONED ChannelCloseSummary_ClosureType = 5 )
func (ChannelCloseSummary_ClosureType) EnumDescriptor ¶
func (ChannelCloseSummary_ClosureType) EnumDescriptor() ([]byte, []int)
func (ChannelCloseSummary_ClosureType) String ¶
func (x ChannelCloseSummary_ClosureType) String() string
type ChannelCloseUpdate ¶
type ChannelCloseUpdate struct { ClosingTxid []byte `protobuf:"bytes,1,opt,name=closing_txid,proto3" json:"closing_txid,omitempty"` Success bool `protobuf:"varint,2,opt,name=success,proto3" json:"success,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` }
func (*ChannelCloseUpdate) Descriptor ¶
func (*ChannelCloseUpdate) Descriptor() ([]byte, []int)
func (*ChannelCloseUpdate) GetClosingTxid ¶
func (m *ChannelCloseUpdate) GetClosingTxid() []byte
func (*ChannelCloseUpdate) GetSuccess ¶
func (m *ChannelCloseUpdate) GetSuccess() bool
func (*ChannelCloseUpdate) ProtoMessage ¶
func (*ChannelCloseUpdate) ProtoMessage()
func (*ChannelCloseUpdate) Reset ¶
func (m *ChannelCloseUpdate) Reset()
func (*ChannelCloseUpdate) String ¶
func (m *ChannelCloseUpdate) String() string
func (*ChannelCloseUpdate) XXX_DiscardUnknown ¶
func (m *ChannelCloseUpdate) XXX_DiscardUnknown()
func (*ChannelCloseUpdate) XXX_Marshal ¶
func (m *ChannelCloseUpdate) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
func (*ChannelCloseUpdate) XXX_Merge ¶
func (dst *ChannelCloseUpdate) XXX_Merge(src proto.Message)
func (*ChannelCloseUpdate) XXX_Size ¶
func (m *ChannelCloseUpdate) XXX_Size() int
func (*ChannelCloseUpdate) XXX_Unmarshal ¶
func (m *ChannelCloseUpdate) XXX_Unmarshal(b []byte) error
type ChannelEdge ¶
type ChannelEdge struct { // * // The unique channel ID for the channel. The first 3 bytes are the block // height, the next 3 the index within the block, and the last 2 bytes are the // output index for the channel. ChannelId uint64 `protobuf:"varint,1,opt,name=channel_id,proto3" json:"channel_id,omitempty"` ChanPoint string `protobuf:"bytes,2,opt,name=chan_point,proto3" json:"chan_point,omitempty"` LastUpdate uint32 `protobuf:"varint,3,opt,name=last_update,proto3" json:"last_update,omitempty"` Node1Pub string `protobuf:"bytes,4,opt,name=node1_pub,proto3" json:"node1_pub,omitempty"` Node2Pub string `protobuf:"bytes,5,opt,name=node2_pub,proto3" json:"node2_pub,omitempty"` Capacity int64 `protobuf:"varint,6,opt,name=capacity,proto3" json:"capacity,omitempty"` Node1Policy *RoutingPolicy `protobuf:"bytes,7,opt,name=node1_policy,proto3" json:"node1_policy,omitempty"` Node2Policy *RoutingPolicy `protobuf:"bytes,8,opt,name=node2_policy,proto3" json:"node2_policy,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` }
* A fully authenticated channel along with all its unique attributes. Once an authenticated channel announcement has been processed on the network, then an instance of ChannelEdgeInfo encapsulating the channels attributes is stored. The other portions relevant to routing policy of a channel are stored within a ChannelEdgePolicy for each direction of the channel.
func (*ChannelEdge) Descriptor ¶
func (*ChannelEdge) Descriptor() ([]byte, []int)
func (*ChannelEdge) GetCapacity ¶
func (m *ChannelEdge) GetCapacity() int64
func (*ChannelEdge) GetChanPoint ¶
func (m *ChannelEdge) GetChanPoint() string
func (*ChannelEdge) GetChannelId ¶
func (m *ChannelEdge) GetChannelId() uint64
func (*ChannelEdge) GetLastUpdate ¶
func (m *ChannelEdge) GetLastUpdate() uint32
func (*ChannelEdge) GetNode1Policy ¶
func (m *ChannelEdge) GetNode1Policy() *RoutingPolicy
func (*ChannelEdge) GetNode1Pub ¶
func (m *ChannelEdge) GetNode1Pub() string
func (*ChannelEdge) GetNode2Policy ¶
func (m *ChannelEdge) GetNode2Policy() *RoutingPolicy
func (*ChannelEdge) GetNode2Pub ¶
func (m *ChannelEdge) GetNode2Pub() string
func (*ChannelEdge) ProtoMessage ¶
func (*ChannelEdge) ProtoMessage()
func (*ChannelEdge) Reset ¶
func (m *ChannelEdge) Reset()
func (*ChannelEdge) String ¶
func (m *ChannelEdge) String() string
func (*ChannelEdge) XXX_DiscardUnknown ¶
func (m *ChannelEdge) XXX_DiscardUnknown()
func (*ChannelEdge) XXX_Marshal ¶
func (m *ChannelEdge) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
func (*ChannelEdge) XXX_Merge ¶
func (dst *ChannelEdge) XXX_Merge(src proto.Message)
func (*ChannelEdge) XXX_Size ¶
func (m *ChannelEdge) XXX_Size() int
func (*ChannelEdge) XXX_Unmarshal ¶
func (m *ChannelEdge) XXX_Unmarshal(b []byte) error
type ChannelEdgeUpdate ¶
type ChannelEdgeUpdate struct { // * // The unique channel ID for the channel. The first 3 bytes are the block // height, the next 3 the index within the block, and the last 2 bytes are the // output index for the channel. ChanId uint64 `protobuf:"varint,1,opt,name=chan_id,json=chanId,proto3" json:"chan_id,omitempty"` ChanPoint *ChannelPoint `protobuf:"bytes,2,opt,name=chan_point,json=chanPoint,proto3" json:"chan_point,omitempty"` Capacity int64 `protobuf:"varint,3,opt,name=capacity,proto3" json:"capacity,omitempty"` RoutingPolicy *RoutingPolicy `protobuf:"bytes,4,opt,name=routing_policy,json=routingPolicy,proto3" json:"routing_policy,omitempty"` AdvertisingNode string `protobuf:"bytes,5,opt,name=advertising_node,json=advertisingNode,proto3" json:"advertising_node,omitempty"` ConnectingNode string `protobuf:"bytes,6,opt,name=connecting_node,json=connectingNode,proto3" json:"connecting_node,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` }
func (*ChannelEdgeUpdate) Descriptor ¶
func (*ChannelEdgeUpdate) Descriptor() ([]byte, []int)
func (*ChannelEdgeUpdate) GetAdvertisingNode ¶
func (m *ChannelEdgeUpdate) GetAdvertisingNode() string
func (*ChannelEdgeUpdate) GetCapacity ¶
func (m *ChannelEdgeUpdate) GetCapacity() int64
func (*ChannelEdgeUpdate) GetChanId ¶
func (m *ChannelEdgeUpdate) GetChanId() uint64
func (*ChannelEdgeUpdate) GetChanPoint ¶
func (m *ChannelEdgeUpdate) GetChanPoint() *ChannelPoint
func (*ChannelEdgeUpdate) GetConnectingNode ¶
func (m *ChannelEdgeUpdate) GetConnectingNode() string
func (*ChannelEdgeUpdate) GetRoutingPolicy ¶
func (m *ChannelEdgeUpdate) GetRoutingPolicy() *RoutingPolicy
func (*ChannelEdgeUpdate) ProtoMessage ¶
func (*ChannelEdgeUpdate) ProtoMessage()
func (*ChannelEdgeUpdate) Reset ¶
func (m *ChannelEdgeUpdate) Reset()
func (*ChannelEdgeUpdate) String ¶
func (m *ChannelEdgeUpdate) String() string
func (*ChannelEdgeUpdate) XXX_DiscardUnknown ¶
func (m *ChannelEdgeUpdate) XXX_DiscardUnknown()
func (*ChannelEdgeUpdate) XXX_Marshal ¶
func (m *ChannelEdgeUpdate) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
func (*ChannelEdgeUpdate) XXX_Merge ¶
func (dst *ChannelEdgeUpdate) XXX_Merge(src proto.Message)
func (*ChannelEdgeUpdate) XXX_Size ¶
func (m *ChannelEdgeUpdate) XXX_Size() int
func (*ChannelEdgeUpdate) XXX_Unmarshal ¶
func (m *ChannelEdgeUpdate) XXX_Unmarshal(b []byte) error
type ChannelEventSubscription ¶
type ChannelEventSubscription struct { XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` }
func (*ChannelEventSubscription) Descriptor ¶
func (*ChannelEventSubscription) Descriptor() ([]byte, []int)
func (*ChannelEventSubscription) ProtoMessage ¶
func (*ChannelEventSubscription) ProtoMessage()
func (*ChannelEventSubscription) Reset ¶
func (m *ChannelEventSubscription) Reset()
func (*ChannelEventSubscription) String ¶
func (m *ChannelEventSubscription) String() string
func (*ChannelEventSubscription) XXX_DiscardUnknown ¶
func (m *ChannelEventSubscription) XXX_DiscardUnknown()