You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
export const title = "Introduction to Antara Framework";
16145
-
export const description = "This guide is intended for developers learning about, building, and interacting with the Antara framework.";
16145
+
export const description =
16146
+
"This guide is intended for developers learning about, building, and interacting with the Antara framework.";
16146
16147
16147
16148
# Introduction to Antara
16148
16149
@@ -16152,10 +16153,6 @@ Welcome to the Antara technical documentation.
16152
16153
16153
16154
This documentation is intended for developers learning about, building, and interacting with the Antara framework.
16154
16155
16155
-
Users who are not interested in these activities, but are searching for documentation assistance, can find support in the Komodo Support Center.
16156
-
16157
-
[<b>Link to Komodo Support Center</b>](https://support.komodoplatform.com/support/home)
16158
-
16159
16156
#### Conceptual Overview
16160
16157
16161
16158
A brief conceptual overview of the Antara framework can be found in the <b>Start Here</b> > <b>Product Introductions</b> > <b>Smart Chains & Antara </b> section.
@@ -22519,7 +22516,7 @@ Make sure that the total `ac_supply` of this Smart Chain is fairly large. `77777
22519
22516
22520
22517
Recall also that a user must have a `pubkey` enabled when interacting with an Antara-related Smart Chain. [View this linked material for an explanation.](/antara/tutorials/understanding-antara-addresses/)
22521
22518
22522
-
If desired, the reader may use an existing Smart Chain instead of a temporary educational chain. [Follow this link](https://github.com/jl777/komodo/blob/master/src/assetchains.old) for a list of asset-chain launch parameters.
22519
+
If desired, the reader may use an existing Smart Chain instead of a temporary educational chain. [Follow this link](https://github.com/komodoplatform/komodo/blob/master/src/assetchains.old) for a list of asset-chain launch parameters.
22523
22520
22524
22521
#### Create a Token to Represent an External Cryptocurrency
Copy file name to clipboardexpand all lines: data-for-gpts/atomicdex-content.txt
+172-5
Original file line number
Diff line number
Diff line change
@@ -21947,7 +21947,8 @@ Version 0.2.8 of the AtomicDEX API includes the following changes.
21947
21947
* optimise FTC integration
21948
21948
* update log tags
21949
21949
export const title = "Introduction to AtomicDEX";
21950
-
export const description = "Explore the technical documentation for AtomicDEX, the decentralized exchange powered by atomic swaps, and learn about the AtomicDEX API.";
21950
+
export const description =
21951
+
"Explore the technical documentation for AtomicDEX, the decentralized exchange powered by atomic swaps, and learn about the AtomicDEX API.";
21951
21952
21952
21953
# Introduction to AtomicDEX
21953
21954
@@ -21957,10 +21958,6 @@ Welcome to the AtomicDEX technical documentation.
21957
21958
21958
21959
This documentation is intended for developers utilizing the AtomicDEX API.
21959
21960
21960
-
Users who are not interested in development-related activities, but are searching for documentation assistance, can find support in the Komodo Support Center.
21961
-
21962
-
[<b>Link to Komodo Support Center</b>](https://support.komodoplatform.com/support/home)
21963
-
21964
21961
#### Conceptual Overview
21965
21962
21966
21963
A brief conceptual overview of AtomicDEX can be found in the <b>Start Here</b> > <b>Product Introductions</b> > <b>AtomicDEX </b> section.
@@ -22712,6 +22709,176 @@ AtomicDEX also enables a feature known as Liquidity Multiplication, a protocol t
22712
22709
Liquidity Multiplication therefore allows an initial amount of funding to create an exponentially higher amount of liquidity on the exchange. This also provides a special advantage for traders that like to wait for below-market dumps. While this feature is something that any other exchange could implement, few do.
22713
22710
22714
22711
On AtomicDEX, all orderbook entries are 100% backed by real funds, as opposed to a centralized exchange’s vouchers, which may be one reason why AtomicDEX can more readily offer this feature.
22712
+
export const title = "Get telegram notifications for your AtomicDEX LP";
22713
+
export const description =
22714
+
"This document describes how to become a Liquidity Provider for AtomicDEX with telegram notifications using docker.";
22715
+
22716
+
import rickmorty from "@/public/images/atomicdex-api/tg-bot-rickmorty.png";
22717
+
import passphrase from "@/public/images/atomicdex-api/tg-bot-passphrase.png";
22718
+
import orderbook from "@/public/images/atomicdex-api/tg-RICKMORTYorderbook.png";
22719
+
22720
+
# How To Become a Liquidity Provider for AtomicDEX with Telegram Notifications using Docker
* Search for the bot named `@BotFather` and start a chat with it
22804
+
* Send the message `/help` to receive a list of commands available
22805
+
* Send the message `/newbot` to create a new bot
22806
+
* Send a message containing the required name of the bot. It must end in `bot`. Like this, for example: TetrisBot or tetris\_bot.
22807
+
* Once the bot is created, take note of the username (hereby referred as `BOT_USERNAME`) and bot token (hereby referred as `BOT_TOKEN`) from the message sent to you.
22808
+
* Start a chat with the new bot created
22809
+
* Go to the url: `https://api.telegram.org/bot<YourBOTToken>/getUpdates`. Replace the `<YourBOTToken>` with the `BOT_TOKEN`
22810
+
* In the response, look for the key: `chat`
22811
+
22812
+
```json
22813
+
"chat": {
22814
+
"id": 7xxxxxxxxxx,
22815
+
"first_name": "gxxxxxxx",
22816
+
"type": "private"
22817
+
},
22818
+
```
22819
+
22820
+
* the id in the above json is hereby referred as `BOT_CHATID`
22821
+
22822
+
Now we have all the details needed to start our Marketmaker with Telegram bot notifications enabled!
22823
+
22824
+
## Usage
22825
+
22826
+
### Start Container With Telegram Bot Notification
22827
+
22828
+
Command:
22829
+
22830
+
```bash
22831
+
docker run -it -e BOT_TOKEN='989XXXXXX:AAXXXXXXXXXXXXeso' -e BOT_CHATID='93XXXXX6' -e BOT_USERNAME='mymarketmakerbot' komodohowto/dev-marketmaker2
22832
+
```
22833
+
22834
+
Replace the values `BOT_TOKEN='989XXXXXX:AAXXXXXXXXXXXXeso' -e BOT_CHATID='93XXXXX6' -e BOT_USERNAME='mymarketmakerbot'` with the ones belonging to your bot
0 commit comments