Wallet Communication

This section will answer some questions in regards to how the ATM communicates with the wallets that you connect it to. We'll be looking into API calls and what actually happens "under the hood".

To ATM doesn't have any satoshis "on it". It will always have to "communicate" to a Lightning Wallet over a network and tell the wallet to send the satoshis. This communication is happening over an API (Application Programming Interface) of a Lightning Wallet.

  1. The API might be accessed at https://my-lightning-wallet.com/api

  2. To prove that the ATM is allowed to use this API, it will have to provide a username and a password

It's therefore clear that we have to store this information (URL, username and password) on the ATM. The easiest way to do this, is by encoding all that information into a QR code and showing it to the camera of the ATM (as explained here).

The ATM will then read the content of the QR code and store those three pieces of information in a configuration file. From then on, it uses that information to talk to that Lightning Wallet to facilitate payouts and other communication like requesting the current state of the Lightning Wallet such as "balance" or "channel information".

Let's take a closer look at the kind of information that is needed to talk to the API of a Lightning Wallet. Be aware that these pieces of information come in various shapes and encodings.

The URL to access an API might contain an IP address or a domain and can have a multitude of different paths (called "API endpoints"). Some examples:

The URL to which your ATM will be talking to, depends on the software of the Lightning Wallet and the location where the wallet is "run" or operated (maybe a LND Lightning Node/Wallet on a RaspiBlitz or a BTCPayServer).

The username and password might need to be supplied as you're used to it from logging into websites but could as well be encoded in a hexadecimal or base64 string.

Now, let's get a little bit more practical and actually talk to an API. For this example, I'll be using the API of the Lntxbot because it is available to everyone with Telegram no their phone and can easily be followed along (more information on how to install Lntxbot can be found here).

First, let's find out what the URL, username and password of the API is, so we can talk to it. Send the command /lightningatm to your Lntxbot and you will get back a QR code and some text. The text comes back in the following format:

  • <username:password>@<url_of_lntxbot>

<username:password>

You won't be able to distinguish here between username and password because it has already been encoded in the base64 format. However, before that, it was actually a separate username and password.

If you type /bluewallet into your Lntxbot, you will get to see your username and password (don't get confused about the command "bluewallet", this is just because Lntxbots API is compatible with a piece of software from bluewallet called LndHUB.

The 5 digit number between lndhub:// an the : is your username. The long string between the : and the @ symbol is your password.

Let's take the username and the password and convert it into the base64 string from the /lightningatm command and we'll see that they match. Log into your Raspberry Pi and execute the following command:

echo -ne "<username:password>" | base64 --wrap 0

Now you can go back to the result that you've gotten from the /lightningatm command and you will see that this result is the same. You just manually encoded your username and password in base64 with the above command.

<url_of_lntxbot>

What follows after the @ symbol from the /bluewallet command is the base URL. This URL needs to be appended with the API endpoint that we want to call. This might be /balance or /payinvoice depending on the action that we want to execute.

We will now request the balance from our Lntxbot through the command line with the /balance endpoint. Your base URL is most likely https://lntxbot.bigsun.xyz so the final URL the we want to call is https://lntxbot.bigsun.xyz/balance.

We are going to do that with the command line tool called cURL (client for URLs). Not only do we need to call the correct URL but we also have to supply the username and password. Username and password will be sent in the base64 encoded format (as you've done above and can get from the /lightningatm command). It will be sent in what is called the http header of this request.

curl -H "Authorization: Basic <BASE64_ENCODED_PASS_AND_USERNAME>" https://lntxbot.bigsun.xyz/balance

This command will make a request to the URL at the end and supply your username and password in the http header and back comes - your current balance in the Lntxbot (in json format).

Summary

As mentioned above: When you show the QR code with your wallet information to the ATMs camera and it scans it, it will use that information later in various API calls as you or others interact with the ATM. It stores these details in the configuration file of your ATM, which you can take a look at when you run the command nano ~/.lightningATM/config.ini.

Take a look at the source code of the ATM where we request the balance for the ATM in python rather than through the command line here: Requesting Lntxbot balance in python

Last updated