forked from c29r3/cosmos-discord-faucet
-
Notifications
You must be signed in to change notification settings - Fork 2
/
discord_faucet_bot.py
191 lines (157 loc) · 8.05 KB
/
discord_faucet_bot.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
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
from asyncio import sleep
import aiofiles as aiof
import aiohttp
import discord
from cosmospy import privkey_to_address, seed_to_privkey
import configparser
import logging
import time
import datetime
import sys
import cosmos_api as api
# Turn Down Discord Logging
disc_log = logging.getLogger('discord')
disc_log.setLevel(logging.CRITICAL)
# Configure Logging
logging.basicConfig(stream=sys.stdout, level=logging.CRITICAL)
logger = logging.getLogger(__name__)
# Load config
c = configparser.ConfigParser()
c.read("config.ini")
VERBOSE_MODE = str(c["DEFAULT"]["verbose"])
BECH32_HRP = str(c["CHAIN"]["BECH32_HRP"])
DECIMAL = float(c["CHAIN"]["decimal"])
DENOMINATION_LST = c["TX"]["denomination_list"].split(",")
AMOUNT_TO_SEND_LST = c["TX"]["amount_to_send"].split(",")
FAUCET_SEED = str(c["FAUCET"]["seed"])
FAUCET_PRIVKEY = str(c["FAUCET"]["private_key"])
if FAUCET_PRIVKEY == "":
FAUCET_PRIVKEY = str(seed_to_privkey(FAUCET_SEED).hex())
FAUCET_ADDRESS = str(c["FAUCET"]["faucet_address"])
EXPLORER_URL = str(c["OPTIONAL"]["explorer_url"])
if EXPLORER_URL != "":
EXPLORER_URL = f'{EXPLORER_URL}/transactions/'
REQUEST_TIMEOUT = int(c["FAUCET"]["request_timeout"])
TOKEN = str(c["FAUCET"]["discord_bot_token"])
LISTENING_CHANNELS = list(c["FAUCET"]["channels_to_listen"].split(","))
APPROVE_EMOJI = "✅"
REJECT_EMOJI = "🚫"
ACTIVE_REQUESTS = {}
client = discord.Client()
with open("help-msg.txt", "r", encoding="utf-8") as help_file:
help_msg = help_file.read()
async def save_transaction_statistics(some_string: str):
# with open("transactions.csv", "a") as csv_file:
async with aiof.open("transactions.csv", "a") as csv_file:
await csv_file.write(f'{some_string}\n')
await csv_file.flush()
@client.event
async def on_ready():
logger.info(f'Logged in as {client.user}')
@client.event
async def on_message(message):
session = aiohttp.ClientSession()
message_timestamp = time.time()
requester = message.author
# Do not listen to your own messages
if message.author == client.user:
return
if message.content.startswith('$balance'):
address = str(message.content).replace("$balance", "").replace(" ", "").lower()
if address[:len(BECH32_HRP)] == BECH32_HRP:
seq, acc_num, coins = await api.get_address_info(session, address)
if str(acc_num) != '0':
await message.channel.send(f'{message.author.mention}\n'
f'```{api.coins_dict_to_string(coins, "grid")}```')
else:
await message.channel.send(f'{message.author.mention} account is not initialized (balance is empty)')
if message.content.startswith('$help'):
await message.channel.send(help_msg)
# Show node synchronization settings
if message.content.startswith('$faucet_status'):
print(requester.name, "status request")
try:
s = await api.get_node_status(session)
print(s)
seq, acc_num, coins = await api.get_address_info(session, FAUCET_ADDRESS)
if "node_info" in str(s) and "error" not in str(s):
s = f'```' \
f'Moniker: {s["result"]["node_info"]["moniker"]}\n' \
f'Address: {FAUCET_ADDRESS}\n' \
f'Syncs?: {s["result"]["sync_info"]["catching_up"]}\n' \
f'Last block: {s["result"]["sync_info"]["latest_block_height"]}\n' \
f'Voting power: {s["result"]["validator_info"]["voting_power"]}\n' \
f'Faucet balance:\n{api.coins_dict_to_string(coins, "")}```'
await message.channel.send(s)
except Exception as statusErr:
print(statusErr)
if message.content.startswith('$faucet_address') or message.content.startswith('$tap_address') and message.channel.name in LISTENING_CHANNELS:
try:
await message.channel.send(FAUCET_ADDRESS)
except:
print("Can't send message $faucet_address")
if message.content.startswith('$tx_info') and message.channel.name in LISTENING_CHANNELS:
try:
hash_id = str(message.content).replace("$tx_info", "").replace(" ", "")
if len(hash_id) == 64:
tx = await api.get_transaction_info(session, hash_id)
print(tx)
if "amount" and "fee" in str(tx):
from_ = tx["tx"]["value"]["msg"][0]["value"]["from_address"]
to_ = tx["tx"]["value"]["msg"][0]["value"]["to_address"]
sended_coins = '\n'
for tx_ in tx["tx"]["value"]["msg"]:
sended_coins = sended_coins + f'{tx_["value"]["amount"][0]["denom"]}: {tx_["value"]["amount"][0]["amount"]}\n'
tx = f'```' \
f'From: {from_}\n' \
f'To: {to_}\n' \
f'Amount: {sended_coins}```'
await message.channel.send(tx)
else:
await message.channel.send(f'{requester.mention}, `{tx}`')
else:
await message.channel.send(f'Incorrect length hash id: {len(hash_id)} instead 64')
except Exception as tx_infoErr:
print(tx_infoErr)
await message.channel.send(f"Can't get transaction info {tx}")
if message.content.startswith('$request') and message.channel.name in LISTENING_CHANNELS:
channel = message.channel
requester_address = str(message.content).replace("$request", "").replace(" ", "").lower()
faucet_address_length = len(FAUCET_ADDRESS)
if len(requester_address) != faucet_address_length or requester_address[:len(BECH32_HRP)] != BECH32_HRP:
await channel.send(f'{requester.mention}, Invalid address format `{requester_address}`\n'
f'Address length must be equal {faucet_address_length} and the suffix must be `{BECH32_HRP}`')
return
if requester.id in ACTIVE_REQUESTS:
check_time = ACTIVE_REQUESTS[requester.id]["next_request"]
if check_time > message_timestamp:
timeout_in_hours = int(REQUEST_TIMEOUT) / 60 / 60
please_wait_text = f'{requester.mention}, You can request coins no more than once every {timeout_in_hours} hours.' \
f'The next attempt is possible after ' \
f'{round((check_time - message_timestamp) / 60, 2)} minutes'
await channel.send(please_wait_text)
return
else:
del ACTIVE_REQUESTS[requester.id]
if requester.id not in ACTIVE_REQUESTS and requester_address not in ACTIVE_REQUESTS:
ACTIVE_REQUESTS[requester.id] = {
"address": requester_address,
"requester": requester,
"next_request": message_timestamp + REQUEST_TIMEOUT}
print(ACTIVE_REQUESTS)
transaction = await api.send_tx(session, recipient=requester_address,
denom_lst=DENOMINATION_LST, amount=AMOUNT_TO_SEND_LST)
logger.info(f'Transaction result:\n{transaction}')
with open('tx_log.csv', 'a') as csv_log:
csv_log.write(f'{requester.id};{requester.name};{requester_address};{message_timestamp}\n')
print(transaction)
if 'code' not in str(transaction) and "txhash" in str(transaction):
await channel.send(f'{requester.mention}, `$tx_info` {EXPLORER_URL}{transaction["txhash"]}\n')
else:
await channel.send(f'{requester.mention}, Can\'t send transaction. Try making another one request'
f'\n{transaction}')
del ACTIVE_REQUESTS[requester.id]
now = datetime.datetime.now()
await save_transaction_statistics(f'{transaction};{now.strftime("%Y-%m-%d %H:%M:%S")}')
await session.close()
client.run(TOKEN)