High capacity, high availability, well connected, fast lightning node.

Overview

LND Routing

High capacity, high availability, well connected, fast lightning node.

We aim to become a top liquidity provider for the lightning network.

  • Actively managed liquidity, virtually guaranteeing successful payments up to your channel size.
  • Large channels to popular destinations and major routing nodes.
  • Open channels to any node, for a friend, or to your favorite service provider.
  • Private LN-only interface via Tor, minimizing our attack surface and maintaining uptime.
  • Fast clustered servers for reliability.
  • Up to 1.5BTC channels, minimum 100k sats. Larger available on request with proven routing history.
  • Competitive pricing and fees.

Quick and easy

Use request_channel.py to request an incoming channel.

wget https://raw.githubusercontent.com/lnd-routing/lnd-routing/master/request_channel.py
python3 request_channel.py

Channel open requests

We have developed a keysend based protocol for paid channel requests. It is based on the keysend messaging protocol.

To request a channel opening, send us a keysend of (desired_channel_value * 0.0025) + 500 sats with custom records 1667785070=01 (for a public channel) or 1667785070=02 (for a private channel) and 34349339= . You can optionally include a message in record 34349334 as a hex encoded UTF-8 string. Our node will attempt to connect to yours and open a channel within a few seconds.

  • Minimum channel size is 100,000 sats.
  • Maxmimum channel size is 1.5 btc.
  • Channels remain open as long as they are active.
  • Minimum 1 month of inactivity before closing, only if liquidity is needed elsewhere.

Automatic refunds for failed channel openings are issued via keysend to the specified node.

Please check your data carefully, refunds are only automatically issued for failed channel openings, not invalid inputs. We highly suggest using request_channel.py.

Our node will attempt to look up and connect to yours, but for best results, connect to us as a peer prior to requesting a channel.

lncli connect 02ab583d430015f3b6b41730434b5fac264901b50199f0b9becc0a98a365f581a9@lndroutekytme3xds6cmbxaniretdgox2hk4cpu4k27jnub3gkfeuhqd.onion:9735

lightning-cli connect 02ab583d430015f3b6b41730434b5fac264901b50199f0b9becc0a98a365f581a9@lndroutekytme3xds6cmbxaniretdgox2hk4cpu4k27jnub3gkfeuhqd.onion:9735

eclair-cli connect --uri=02ab583d430015f3b6b41730434b5fac264901b50199f0b9becc0a98a365f581a9@lndroutekytme3xds6cmbxaniretdgox2hk4cpu4k27jnub3gkfeuhqd.onion:9735

We currently only have instructions for paying for channel requests from LND, but the destination node can be running any implementation.

Template:

Replace the parts containing brackets. We have received several channel requests to the non-existant example nodes.

lncli sendpayment --keysend  --amt <(desired_channel_value * 0.0025) + 500> \
--dest 02ab583d430015f3b6b41730434b5fac264901b50199f0b9becc0a98a365f581a9 \
--data 1667785070=01,34349339=
   

   

Please make sure you edit the examples before using. We are still getting invalid requests. From our logs:

Received channel open request to 0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f2021, received: 250500sat
Attempting to connect to peer: 0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f2021
Error getting node info: 0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f2021
Error sending refund to 0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f2021 of 250500sat: no_route

Examples:

To request a 0.1btc public channel from us to node 0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f2021:

lncli sendpayment --keysend  --amt 25500 \
--dest 02ab583d430015f3b6b41730434b5fac264901b50199f0b9becc0a98a365f581a9 \
--data 1667785070=01,34349339=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f2021

To request a 0.1btc private channel from us to node 0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f2021:

lncli sendpayment --keysend  --amt 25500 \
--dest 02ab583d430015f3b6b41730434b5fac264901b50199f0b9becc0a98a365f581a9 \
--data 1667785070=02,34349339=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f2021

To request a 0.2btc public channel from us to node 22232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f404142 with "Hello LND.Routing" as a message to us:

lncli sendpayment --keysend --amt 50500 \
--dest 02ab583d430015f3b6b41730434b5fac264901b50199f0b9becc0a98a365f581a9 \
--data 1667785070=01,34349339=22232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f404142,34349334=48656c6c6f204c4e442e526f7574696e67`

To simply send us a message:

lncli sendpayment --keysend --amt 1 \
--dest 02ab583d430015f3b6b41730434b5fac264901b50199f0b9becc0a98a365f581a9 \
--data 34349334=48656c6c6f204c4e442e526f7574696e67`

If you have any issues, open one on this repo.

Comments
  • Channel was never opened

    Channel was never opened

    I used the following keysend command and never received a channel opened in return. I also never received a refund for my payment.

    lncli sendpayment --keysend --amt 25500
    --dest 02ab583d430015f3b6b41730434b5fac264901b50199f0b9becc0a98a365f581a9
    --data 1667785070=01,34349339=03cd502dee15bb9859a6d9c56a5608c1f76894736ec4cfec906eb025b7623293dc

    opened by deepy420 2
  • Default answer for private in script

    Default answer for private in script

    https://github.com/lnd-routing/lnd-routing/blob/8b51cb4a71a909297052006d48bd25d99b0c3879/request_channel.py#L149 should be:

    if pub_chan == 'Y' or pub_chan == '': request_code = '01' else: request_code = '02'

    or better

    if pub_chan == 'N': request_code = '02' else: request_code = '01'

    otherwise, the script sets 02 when the default response is selected

    opened by ztankoz 1
  • Seems down? Temporary or permanent?

    Seems down? Temporary or permanent?

    I tried the request script several times and connecting directly with lncli, both with tor active and via proxy clearnet. Couldn't get a connection any way I tried. Is this service now defunct or just temporarily down?

    opened by neocogent 0
  • Request incoming channel from Zap Desktop wallet.

    Request incoming channel from Zap Desktop wallet.

    I don't have a full node, nor do I have full knowledge of the command line, and because of that, I use Zap Wallet 0.7.6 on Windows. I would like to know how I can request an incoming channel between 0.003 BTC to 0.01 BTC to my private node. Zap wallet uses the LND and Centrino SIPs to create private channels, so if someone could give me a how-to, I could start a request.

    opened by fjdone 0
  • unknown error host unreachable

    unknown error host unreachable

    Hi,

    i tried to connect to your peer before sending a request for opening an inbound channel but it seems your peer is not reachable. Could you please help me ?

    Request: lncli connect 02ab583d430015f3b6b41730434b5fac264901b50199f0b9becc0a98a365f581a9@lndroutekytme3xds6cmbxaniretdgox2hk4cpu4k27jnub3gkfeuhqd.onion:9735

    Result: [lncli] rpc error: code = Unknown desc = dial proxy failed: socks connect tcp 10.21.21.11:9050->lndroutekytme3xds6cmbxaniretdgox2hk4cpu4k27jnub3gkfeuhqd.onion:9735: unknown error host unreachable

    thanks in advance.

    opened by patman1706 1
  • LND Node offline

    LND Node offline

    Hey guys, I can't find another way to reach out to you. So I am asking here, if your Lightning node is offline? Our common channel is set inactive for almost 48 hours :/

    opened by Surenic 9
Owner
null
PoC code for stealing the WiFi password of a network with a Lovebox IOT device connected

LoveBoxer PoC code for stealing the WiFi password of a network with a Lovebox IOT device connected. This PoC was is what I used in this blogpost Usage

Graham Helton 10 May 24, 2022
This tool will scans your wi-fi/wlan and show you the connected clients

This tool will scans your wi-fi/wlan and show you the connected clients

VENKAT SAI SAGAR 3 Mar 24, 2022
A simple python script that parses the MSFT Teams log file for the users current Teams status and then outputs the status color to a MQTT connected light.

Description A simple python script that parses the MSFT Teams log file for the users current Teams status and then outputs the status color to a MQTT

Lorentz Factr 8 Dec 16, 2022
IP Pinger - This tool allows you to enter an IP and check if its currently connected to a host

IP Pinger - This tool allows you to enter an IP and check if its currently connected to a host

invasion 3 Feb 18, 2022
ServerStatus with node management and monitor

ServerStatus with node management and monitor

lidalao 162 Jan 1, 2023
A database-based CDN node supporting PostgreSQL and MongoDB backends.

A simple to use database-based deployable CDN node for hobbyist developers who wish to have their own CDN!

Vish M 10 Nov 19, 2022
A non-custodial oracle and escrow system for the lightning network. Make LN contracts more expressive.

Hodl contracts A non-custodial oracle and escrow system for the lightning network. Make LN contracts more expressive. If you fire it up, be aware: (1)

null 31 Nov 30, 2022
Tool for pretty printing and optimizing Lightning Network channels.

Suez Tool for pretty printing and optimizing Lightning Network channels. Installation Install poetry poetry install poetry run ./suez Channel fee poli

Pavol Rusnak 69 Nov 3, 2022
msgspec is a fast and friendly implementation of the MessagePack protocol for Python 3.8+

msgspec msgspec is a fast and friendly implementation of the MessagePack protocol for Python 3.8+. In addition to serialization/deserializat

Jim Crist-Harif 414 Jan 6, 2023
Fast and configurable script to get and check free HTTP, SOCKS4 and SOCKS5 proxy lists from different sources and save them to files

Fast and configurable script to get and check free HTTP, SOCKS4 and SOCKS5 proxy lists from different sources and save them to files. It can also get geolocation for each proxy and check if proxies are anonymous.

Almaz 385 Dec 31, 2022
GlokyPortScannar is a really fast tool to scan TCP ports implemented in Python.

GlokyPortScannar is a really fast tool to scan TCP ports implemented in Python. Installation: This program requires Python 3.9. Linux

gl0ky 5 Jun 25, 2022
RollerScanner — Fast Port Scanner Written On Python

RollerScanner RollerScanner — Fast Port Scanner Written On Python Installation You should clone this repository using: git clone https://github.com/Ma

null 68 Nov 9, 2022
Use Fast Redirect to easily redirect your domains.

Fast Redirect Use Fast Redirect to easily redirect your domains. Fast Redirects expects a JSON 'database'. This JSON 'database' contains the domains t

Cyberfusion 1 Dec 20, 2021
JF⚡can - Super fast port scanning & service discovery using Masscan and Nmap. Scan large networks with Masscan and use Nmap's scripting abilities to discover information about services. Generate report.

Description Killing features Perform a large-scale scans using Nmap! Allows you to use Masscan to scan targets and execute Nmap on detected ports with

null 377 Jan 3, 2023
FIRM-AFL is the first high-throughput greybox fuzzer for IoT firmware.

FIRM-AFL is the first high-throughput greybox fuzzer for IoT firmware. FIRM-AFL addresses two fundamental problems in IoT fuzzing

null 356 Dec 23, 2022
A web-based app that allows easy, simple - and if desired high-throughput - analysis of qPCR data

qpcr-Analyser A web-based GUI for the qpcr package that allows easy, simple and high-throughput analysis of qPCR data. As is described in more detail

null 1 Sep 13, 2022
OptiPLANT is a cloud-based based system that empowers professional and non-professional data scientists to build high-quality predictive models

OptiPLANT OptiPLANT is a cloud-based based system that empowers professional and non-professional data scientists to build high-quality predictive mod

Intellia ICT 1 Jan 26, 2022
Automatically replace ONNX's RandomNormal node with Constant node.

onnx-remove-random-normal This is a script to replace RandomNormal node with Constant node. Example Imagine that we have something ONNX model like the

Masashi Shibata 1 Dec 11, 2021
Adds a Bake node to Blender's shader node system

Bake to Target This Blender Addon adds a new shader node type capable of reducing the texture-bake step to a single button press. Please note that thi

Thomas 8 Oct 4, 2022
Node editor view image node

A Blender addon to quickly view images from image nodes in Blender's image viewer.

null 5 Nov 27, 2022