A Telegram Lightning ⚡️ Bitcoin wallet and tip bot for group chats.
This repository contains everything you need to set up and run your own tip bot. If you simply want to use this bot in your group chat without having to install anything just start a conversation with @LightningTipBot and invite it into your group chat.
To build the bot from source, clone the repository and compile the source code.
git clone https://github.com/LightningTipBot/LightningTipBot.git
cd LightningTipBot
go build .
cp config.yaml-example config.yaml
After the configuration (see below), start it using the command
./LightningTipBot
You need to edit config.yaml
before you can start the bot.
First, create a new Telegram bot by starting a conversation with the @BotFather. After you have created your bot, you will get an Api Token which you need to add to telegram_api_key
in config.yaml accordingly.
You can either use your own LNbits instance (recommended) or create an account at lnbits.com to use their custodial service (easy).
- Create a wallet in LNbits (reachable by the bot via
lnbits_url
). - Get the Admin key in the API Info tab of your user (
lnbits_admin_key
). - Enable the User Manager extension.
- Get the Admin ID of the User Manager (
lnbits_admin_id
).
db_path
: User database file path.transactions_path
: Transaction database file path.buntdb_path
: Object storage database file path.lnbits_webhook_server
: URL that lnbits can reach the bot with. This is used for creating webhooks from LNbits to receive notifications about payments (optional).message_dispose_duration
: Duration in seconds after which/tip
are deleted from a channel (only if the bot is channel admin).http_proxy
uses a proxy for all LNURL-related outbound requests (optional).lnurl_public_host_name
is the public URL of your lnbits/LndHub (for BlueWallet/Zeus support, optional).lnurl_server
is the public URL for inbound LNURL payments and your lightning address host (optional).
/tip 🏅 Reply to a message to tip it: /tip <amount> [<memo>]
/balance 👑 Check your balance: /balance
/send 💸 Send funds to a user: /send <amount> <@user> or <[email protected]> [<memo>]
/invoice ⚡️ Receive over Lightning: /invoice <amount> [<memo>]
/pay ⚡️ Pay over Lightning: /pay <invoice>
/help 📖 Read this help.
/advanced 🤖 Read the advanced help.
/basics 📚 More info.
/donate ❤️ Donate to the project: /donate <amount>
/link 🔗 Link your wallet to BlueWallet or Zeus
/lnurl ⚡️ Lnurl receive or pay: /lnurl or /lnurl <lnurl>
send 💸 Send sats to chat: @LightningTipBot send <amount> [<memo>]
📖 You can use inline commands in every chat, even in private conversations. Wait a second after entering an inline command and click the result, don't press enter.
You can use inline commands to send payments to anyone who can read your messages, even inside private chats and group chat in which the bot isn't part of. For that, you need to trigger an inline command. Here is how it works: Enter the name of the bot (@LightningTipBot
) and the command you want to trigger (send 13 Hi friend!
). When the result pops up above the text field, click it to send it to the chat. Do not press enter.
The bot replies to a tipped message to indicate to all participants how many and what amount of tips a post has received. This tooltip will be updated as new tips are given to a post.
Users can send and receive via . For this to work, you need to set the lnurl_public_server
in config.yaml
. The bot will then host a LNURL endpoint at .well-known/lnurlp/username
which handles the data exchange with other wallets. You can set http_proxy
in config.yaml
to send outbound requests only via an HTTP proxy.
Every user has a Lightning Address a la [email protected]
with which they can send to via /send <amount> <[email protected]>
and receive from other wallets.
Every user can link their wallet to an external app like Bluewallet or Zeus by using the command /link
. If you host the bot, you will have to enable the LndHub extension in LNbits. You also need to edit the lnbits_public_url
entry in config.yaml
accordingly to an address that can be reached by the user's wallet (Tor should be fine as well).
To pay a Lightning invoice, you can snap a photo of a QR code and send it directly to the bot. Note that you might need to zoom in, center the QR code, or crop the image if the bot fails to decode the QR code from the photo. By the way, you can also just send an the invoice as a string, the bot will automatically detect it and initiate a payment.
To minimize the clutter all the heavy tipping can cause in a group chat, the bot will remove all failed commands (for example due to a syntax error) from the chat immediately. All successful commands will stay visible for message_dispose_duration
seconds (default 10s) and then be removed. The tips will sill be visible for everyone in the Live tooltip. This feature only works, if the bot is made admin of the group.
- LNbits – Free and open-source lightning-network wallet/accounts system.
- telebot – A Telegram bot framework in Go.
- gozxing – barcode image processing library in Go.
- ln-decodepay – Lightning Network BOLT11 invoice decoder.
- go-lnurl - Helpers for building lnurl support into services.