package wrapper import ( "context" "crypto/tls" "crypto/x509" "encoding/hex" "errors" "github.com/lightningnetwork/lnd/lnrpc" "github.com/lightningnetwork/lnd/lnrpc/invoicesrpc" "github.com/lightningnetwork/lnd/lnrpc/routerrpc" "github.com/lightningnetwork/lnd/macaroons" "google.golang.org/grpc" "google.golang.org/grpc/credentials" "gopkg.in/macaroon.v2" ) type SubscribeInvoicesWrapper interface { Recv() (*lnrpc.Invoice, error) } type SubscribeSingleInvoiceWrapper interface { Recv() (*lnrpc.Invoice, error) } type SubscribePaymentWrapper interface { Recv() (*lnrpc.Payment, error) } // LNDoptions are the options for the connection to the lnd node. type LNDoptions struct { Address string CertFile string CertHex string MacaroonFile string MacaroonHex string } type LNDWrapper struct { client lnrpc.LightningClient routerClient routerrpc.RouterClient stateClient lnrpc.StateClient invoicesClient invoicesrpc.InvoicesClient IdentityPubkey string } func NewLNDclient(lndOptions LNDoptions) (result *LNDWrapper, err error) { // Get credentials either from a hex string, a file or the system's certificate store var creds credentials.TransportCredentials // if a hex string is provided if lndOptions.CertHex != "" { cp := x509.NewCertPool() cert, err := hex.DecodeString(lndOptions.CertHex) if err != nil { return nil, err } if !cp.AppendCertsFromPEM(cert) { return nil, errors.New("failed to append certificate") } creds = credentials.NewClientTLSFromCert(cp, "") // if a path to a cert file is provided } else { creds = credentials.NewTLS(&tls.Config{InsecureSkipVerify: true}) } opts := []grpc.DialOption{ grpc.WithTransportCredentials(creds), } var macaroonData []byte if lndOptions.MacaroonHex != "" { macBytes, err := hex.DecodeString(lndOptions.MacaroonHex) if err != nil { return nil, err } macaroonData = macBytes } else { return nil, errors.New("LND macaroon is missing") } mac := &macaroon.Macaroon{} if err := mac.UnmarshalBinary(macaroonData); err != nil { return nil, err } macCred, err := macaroons.NewMacaroonCredential(mac) if err != nil { return nil, err } opts = append(opts, grpc.WithPerRPCCredentials(macCred)) conn, err := grpc.NewClient(lndOptions.Address, opts...) if err != nil { return nil, err } lnClient := lnrpc.NewLightningClient(conn) return &LNDWrapper{ client: lnClient, routerClient: routerrpc.NewRouterClient(conn), stateClient: lnrpc.NewStateClient(conn), invoicesClient: invoicesrpc.NewInvoicesClient(conn), }, nil } func (wrapper *LNDWrapper) ListChannels(ctx context.Context, req *lnrpc.ListChannelsRequest, options ...grpc.CallOption) (*lnrpc.ListChannelsResponse, error) { return wrapper.client.ListChannels(ctx, req, options...) } func (wrapper *LNDWrapper) GetTransactions(ctx context.Context, req *lnrpc.GetTransactionsRequest, options ...grpc.CallOption) (*lnrpc.TransactionDetails, error) { return wrapper.client.GetTransactions(ctx, req, options...) } func (wrapper *LNDWrapper) PendingChannels(ctx context.Context, req *lnrpc.PendingChannelsRequest, options ...grpc.CallOption) (*lnrpc.PendingChannelsResponse, error) { return wrapper.client.PendingChannels(ctx, req, options...) } func (wrapper *LNDWrapper) SendPayment(ctx context.Context, req *routerrpc.SendPaymentRequest, options ...grpc.CallOption) (routerrpc.Router_SendPaymentV2Client, error) { return wrapper.routerClient.SendPaymentV2(ctx, req, options...) } func (wrapper *LNDWrapper) AddInvoice(ctx context.Context, req *lnrpc.Invoice, options ...grpc.CallOption) (*lnrpc.AddInvoiceResponse, error) { return wrapper.client.AddInvoice(ctx, req, options...) } func (wrapper *LNDWrapper) AddHoldInvoice(ctx context.Context, req *invoicesrpc.AddHoldInvoiceRequest, options ...grpc.CallOption) (*invoicesrpc.AddHoldInvoiceResp, error) { return wrapper.invoicesClient.AddHoldInvoice(ctx, req, options...) } func (wrapper *LNDWrapper) SettleInvoice(ctx context.Context, req *invoicesrpc.SettleInvoiceMsg, options ...grpc.CallOption) (*invoicesrpc.SettleInvoiceResp, error) { return wrapper.invoicesClient.SettleInvoice(ctx, req, options...) } func (wrapper *LNDWrapper) CancelInvoice(ctx context.Context, req *invoicesrpc.CancelInvoiceMsg, options ...grpc.CallOption) (*invoicesrpc.CancelInvoiceResp, error) { return wrapper.invoicesClient.CancelInvoice(ctx, req, options...) } func (wrapper *LNDWrapper) SubscribeInvoices(ctx context.Context, req *lnrpc.InvoiceSubscription, options ...grpc.CallOption) (SubscribeInvoicesWrapper, error) { return wrapper.client.SubscribeInvoices(ctx, req, options...) } func (wrapper *LNDWrapper) SubscribeSingleInvoice(ctx context.Context, req *invoicesrpc.SubscribeSingleInvoiceRequest, options ...grpc.CallOption) (SubscribeSingleInvoiceWrapper, error) { return wrapper.invoicesClient.SubscribeSingleInvoice(ctx, req, options...) } func (wrapper *LNDWrapper) SubscribePayments(ctx context.Context, req *routerrpc.TrackPaymentsRequest, options ...grpc.CallOption) (routerrpc.Router_TrackPaymentsClient, error) { return wrapper.routerClient.TrackPayments(ctx, req, options...) } func (wrapper *LNDWrapper) ListInvoices(ctx context.Context, req *lnrpc.ListInvoiceRequest, options ...grpc.CallOption) (*lnrpc.ListInvoiceResponse, error) { return wrapper.client.ListInvoices(ctx, req, options...) } func (wrapper *LNDWrapper) LookupInvoice(ctx context.Context, req *lnrpc.PaymentHash, options ...grpc.CallOption) (*lnrpc.Invoice, error) { return wrapper.client.LookupInvoice(ctx, req, options...) } func (wrapper *LNDWrapper) GetDebugInfo(ctx context.Context, req *lnrpc.GetDebugInfoRequest, options ...grpc.CallOption) (*lnrpc.GetDebugInfoResponse, error) { return wrapper.client.GetDebugInfo(ctx, req, options...) } func (wrapper *LNDWrapper) GetInfo(ctx context.Context, req *lnrpc.GetInfoRequest, options ...grpc.CallOption) (*lnrpc.GetInfoResponse, error) { return wrapper.client.GetInfo(ctx, req, options...) } func (wrapper *LNDWrapper) DescribeGraph(ctx context.Context, req *lnrpc.ChannelGraphRequest, options ...grpc.CallOption) (*lnrpc.ChannelGraph, error) { return wrapper.client.DescribeGraph(ctx, req, options...) } func (wrapper *LNDWrapper) GetState(ctx context.Context, req *lnrpc.GetStateRequest, options ...grpc.CallOption) (*lnrpc.GetStateResponse, error) { return wrapper.stateClient.GetState(ctx, req, options...) } func (wrapper *LNDWrapper) GetNodeInfo(ctx context.Context, req *lnrpc.NodeInfoRequest, options ...grpc.CallOption) (*lnrpc.NodeInfo, error) { return wrapper.client.GetNodeInfo(ctx, req, options...) } func (wrapper *LNDWrapper) SignMessage(ctx context.Context, req *lnrpc.SignMessageRequest, options ...grpc.CallOption) (*lnrpc.SignMessageResponse, error) { return wrapper.client.SignMessage(ctx, req, options...) } func (wrapper *LNDWrapper) ConnectPeer(ctx context.Context, req *lnrpc.ConnectPeerRequest, options ...grpc.CallOption) (*lnrpc.ConnectPeerResponse, error) { return wrapper.client.ConnectPeer(ctx, req, options...) } func (wrapper *LNDWrapper) ListPeers(ctx context.Context, req *lnrpc.ListPeersRequest, options ...grpc.CallOption) (*lnrpc.ListPeersResponse, error) { return wrapper.client.ListPeers(ctx, req, options...) } func (wrapper *LNDWrapper) OpenChannelSync(ctx context.Context, req *lnrpc.OpenChannelRequest, options ...grpc.CallOption) (*lnrpc.ChannelPoint, error) { return wrapper.client.OpenChannelSync(ctx, req, options...) } func (wrapper *LNDWrapper) CloseChannel(ctx context.Context, req *lnrpc.CloseChannelRequest, options ...grpc.CallOption) (lnrpc.Lightning_CloseChannelClient, error) { return wrapper.client.CloseChannel(ctx, req, options...) } func (wrapper *LNDWrapper) WalletBalance(ctx context.Context, req *lnrpc.WalletBalanceRequest, options ...grpc.CallOption) (*lnrpc.WalletBalanceResponse, error) { return wrapper.client.WalletBalance(ctx, req, options...) } func (wrapper *LNDWrapper) SendCoins(ctx context.Context, req *lnrpc.SendCoinsRequest, options ...grpc.CallOption) (*lnrpc.SendCoinsResponse, error) { return wrapper.client.SendCoins(ctx, req, options...) } func (wrapper *LNDWrapper) NewAddress(ctx context.Context, req *lnrpc.NewAddressRequest, options ...grpc.CallOption) (*lnrpc.NewAddressResponse, error) { return wrapper.client.NewAddress(ctx, req, options...) } func (wrapper *LNDWrapper) GetChanInfo(ctx context.Context, req *lnrpc.ChanInfoRequest, options ...grpc.CallOption) (*lnrpc.ChannelEdge, error) { return wrapper.client.GetChanInfo(ctx, req, options...) } func (wrapper *LNDWrapper) UpdateChannel(ctx context.Context, req *lnrpc.PolicyUpdateRequest, options ...grpc.CallOption) (*lnrpc.PolicyUpdateResponse, error) { return wrapper.client.UpdateChannelPolicy(ctx, req, options...) } func (wrapper *LNDWrapper) DisconnectPeer(ctx context.Context, req *lnrpc.DisconnectPeerRequest, options ...grpc.CallOption) (*lnrpc.DisconnectPeerResponse, error) { return wrapper.client.DisconnectPeer(ctx, req, options...) } func (wrapper *LNDWrapper) SubscribeChannelEvents(ctx context.Context, in *lnrpc.ChannelEventSubscription, options ...grpc.CallOption) (lnrpc.Lightning_SubscribeChannelEventsClient, error) { return wrapper.client.SubscribeChannelEvents(ctx, in, options...) } func (wrapper *LNDWrapper) ForwardingHistory(ctx context.Context, in *lnrpc.ForwardingHistoryRequest, options ...grpc.CallOption) (*lnrpc.ForwardingHistoryResponse, error) { return wrapper.client.ForwardingHistory(ctx, in, options...) }