Share the TON Bridge Mini App link with an inline button in Telegram chats. Works in DMs, groups, and channels.
TON Bridge works with support from TONBANKCARD.
| Tool | Description | Category |
|---|---|---|
ton_bridge_open |
Send a message with a TON Bridge Mini App button | action |
ton_bridge_about |
Send info about TON Bridge with a Mini App button | data-bearing |
ton_bridge_custom_message |
Send a custom message alongside a TON Bridge button | action |
mkdir -p ~/.teleton/plugins
cp -r plugins/ton-bridge ~/.teleton/plugins/Restart Teleton — the plugin is auto-loaded from ~/.teleton/plugins/. No changes to config.yaml are required.
- "Open TON Bridge" → sends message with
[TON Bridge No1]button - "Open TON Bridge, emoji on the button" → sends message with
[🚀 TON Bridge]button - "Open TON Bridge, no emoji on the button" → sends message with
[TON Bridge]button - "Tell me about TON Bridge" → info message with inline button
- "Send a message about TON Bridge with a button" → custom message with inline button
- "Share a TON Bridge link with the text: Transfer your assets seamlessly" → custom text + inline button
Configuration is optional — the plugin works out of the box with defaults. Override in config.yaml only if needed:
# ~/.teleton/config.yaml
plugins:
ton_bridge:
buttonText: "TON Bridge No1" # Default button label (default: "TON Bridge No1")
startParam: "" # Optional start parameter appended to the Mini App URLNote: Button emoji is controlled by the agent at call time via the
buttonTextparameter, not by config. This allows the agent to include or omit emoji as requested by the user.
Send a message with a TON Bridge Mini App button. Use when the user asks to open or access TON Bridge.
| Param | Type | Required | Default | Description |
|---|---|---|---|---|
message |
string | No | — | Optional message text to show with the button |
buttonText |
string | No | config default | Button label. Do not include emoji unless user requested it. |
Send an info message about TON Bridge with a Mini App button. Use when the user asks about TON Bridge.
| Param | Type | Required | Default | Description |
|---|---|---|---|---|
buttonText |
string | No | config default | Button label. Do not include emoji unless user requested it. |
Send a custom message alongside a TON Bridge button.
| Param | Type | Required | Default | Description |
|---|---|---|---|---|
customMessage |
string | Yes | — | Custom message text to display with the button |
buttonText |
string | No | config default | Button label. Do not include emoji unless user requested it. |
Developer: xlabtg