-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfig_msgs.py
146 lines (128 loc) · 4.17 KB
/
config_msgs.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""
File : config_msgs.py
Author : GraphLinq Chain
Email : [email protected]
Website : https://graphlinq.io
Repository : https://github.com/jrbgit/GraphLinq.TelegramBot
Date : 2023-06-20
Default
Version : 1.2
Description : Msgs Config - Telegram bot for GraphLinq
"""
# Version Info
version_msg = '[STARTING] GraphLinq Telegram Bot v'
# Bot Start Msg
sheduler_start_msg = '[SCHEDULE] Starting Scheduler'
# /start
start_msg = [
['Welcome to the GraphLinq Telegram Bot.'],
['Tip: Type /help to get started.']
]
# /setaddress
set_address_msg = 'First use /setmyaddress to store your address.'
# /help
help_msg = [
['Command', 'Description']
]
help_msg_private = [
['/setmyaddress', 'Set your address'],
['/myaddress', 'View your address'],
['/mytotal', 'View your total staked'],
['/myrank', 'View your current rank'],
['/mytier', 'View your current tier'],
['/myrewards', 'View your rewards']
]
help_msg_public = [
['/help', 'Display this menu'],
['/totalstakers', 'View total stakers'],
['/totalstaked', 'View total staked'],
['/tiers', 'View total staked/tier'],
['/apy', 'View current APY'],
###['/top', 'View top 3 stakers'],
['/websites', 'List GraphLinq websites'],
['/socials', 'List social media links'],
['/staking', 'View staking info'],
['/documentation', 'View documentation'],
['/listings', 'View where to trade GLQ'],
['/status', 'Monitor status'],
['/apply', 'Developer Application'],
['/shortcuts', 'View shortcut commands']
]
# Private Command Response In Public Chat
private_msg = 'This is a private command. Please interact directly with me here @GraphLinqBot'
# /websites
websites = [
['Home', 'https://glq.link/home'],
['AI', 'https://glq.link/ai'],
['Analytics', 'https://glq.link/analytics'],
['App', 'https://glq.link/app'],
['Explorer', 'https://glq.link/explorer'],
['Status', 'https://glq.link/network'],
['Docs', 'https://glq.link/docs'],
['IDE', 'https://glq.link/ide'],
['MarketPlace', 'https://glq.link/marketplace']
]
# /socials
socials = [
['Twitter', 'https://glq.link/twitter'],
['Discord', 'https://glq.link/discord'],
['LinkedIn', 'https://glq.link/linkedin'],
['YouTube', 'https://glq.link/youtube'],
['Reddit', 'https://glq.link/reddit']
]
# /staking
staking = [
['Website', 'https://glq.link/staking'],
['How-to', 'https://glq.link/stakingdocs']
]
# /documentation
documentation = [
['Docs','https://glq.link/docs']
]
# /shortcuts
shortcuts = [
['/setmyaddress', '/setaddress /set'],
['/myaddress', '/address'],
['/mytotal', '/total'],
['/myrank', '/rank'],
['/mytier', '/tier'],
['/myrewards', '/rewards'],
['/totalstakers', '/stakers'],
['/totalstaked', '/staked'],
['/documentation', '/docs /doc'],
['/listings', '/buy /exchanges']
]
# /buy cex
cex_listings = [
['KuCoin', 'USDT', 'https://glq.link/kucoinGLQ_USDT'],
['KuCoin', 'BTC', 'https://glq.link/kucoinGLQ_BTC'],
['Gate io', 'ETH', 'https://glq.link/gateioGLQ_ETH'],
['Gate io', 'USDT', 'https://glq.link/gateioGLQ_USDT'],
['Bilaxy', 'ETH', 'https://glq.link/bilaxyGLQ_ETH'],
['MEXC', 'USDT', 'https://glq.link/mexcGLQ_USDT'],
['BitGet', 'USDT', 'https://glq.link/bitgetGLQ_USDT'],
['CoinEx', 'USDT', 'https://glq.link/coinexGLQ_USDT'],
['CoinTide', 'USDT', 'https://glq.link/cointideGLQ_USDT']
]
# /buy dex
dex_listings = [
['Uniswap v3', 'WETH', 'https://glq.link/uniswapv3'],
['QuickSwap v3)', 'MATIC', 'https://glq.link/quickswapGLQ_MATICv3'],
['QuickSwap v3)', 'ETH', 'https://glq.link/quickswapGLQ_ETHv3'],
['QuickSwap v2)', 'ETH', 'https://glq.link/quickswapGLQ_ETHv2']
#['Uniswap v3 (Polygon)', 'MATIC', ''],
#['Uniswap v3 (Polygon)', 'ETH', '']
]
# /buy GLQ dex
glq_dex_listings = [
['GLQ Hub', 'WETH', 'https://glq.link/GLQ_HUB']
]
# status websites
status = [
['Server Status','https://glq.link/status'],
['Chain Status','https://glq.link/network']
]
# Developer Application
apply = 'Interested in working for GraphLinq? Apply here: https://glq.link/apply'