Compare commits
6 Commits
853082588a
...
9589dae3b5
Author | SHA1 | Date |
---|---|---|
root | 9589dae3b5 | |
jw | 4d4272971d | |
donkeydonkey | 8457c35304 | |
jw | 7ae267ace2 | |
donkeydonkey | 799f8d7dd0 | |
donkeydonkey | a10e4c32cb |
18
network.py
18
network.py
|
@ -1,6 +1,7 @@
|
||||||
import sopel.module
|
import sopel.module
|
||||||
import requests
|
import requests
|
||||||
import re
|
import re
|
||||||
|
import time
|
||||||
|
|
||||||
# networkurl = "http://node.marty.cf:18019/getinfo"
|
# networkurl = "http://node.marty.cf:18019/getinfo"
|
||||||
# networkurl = "http://node.xmrbackb.one:18081/getinfo"
|
# networkurl = "http://node.xmrbackb.one:18081/getinfo"
|
||||||
|
@ -8,6 +9,12 @@ import re
|
||||||
# networkurl = "http://node.xmr.pt:18081/getinfo"
|
# networkurl = "http://node.xmr.pt:18081/getinfo"
|
||||||
networkurl = "http://node.supportxmr.com:18081/getinfo"
|
networkurl = "http://node.supportxmr.com:18081/getinfo"
|
||||||
|
|
||||||
|
jsonurl = "http://node1.keepitmonero.com:18089/json_rpc"
|
||||||
|
headers = {
|
||||||
|
'Content-Type': 'application/json',
|
||||||
|
}
|
||||||
|
requestdata = '{"jsonrpc":"2.0","id":"0","method":"get_last_block_header"}'
|
||||||
|
|
||||||
@sopel.module.commands('fork', 'forkening')
|
@sopel.module.commands('fork', 'forkening')
|
||||||
def fork(bot, trigger):
|
def fork(bot, trigger):
|
||||||
try:
|
try:
|
||||||
|
@ -58,6 +65,17 @@ def mempool(bot, trigger):
|
||||||
except:
|
except:
|
||||||
bot.say("Something borked o_O")
|
bot.say("Something borked o_O")
|
||||||
|
|
||||||
|
@sopel.module.commands('lastblock')
|
||||||
|
def lastblock(bot, trigger):
|
||||||
|
#try:
|
||||||
|
# r=requests.get(lastblock)
|
||||||
|
r=requests.post(jsonurl, headers=headers, data=requestdata)
|
||||||
|
j=r.json()
|
||||||
|
block=j['result']['block_header']
|
||||||
|
bot.say("Last block found {0:.2f} minutes ago with height {1} included {2} transactions".format((time.time() - float(block['timestamp']))/60, block['height'], block['num_txes']))
|
||||||
|
#except:
|
||||||
|
# bot.say("Something borked o_O")
|
||||||
|
|
||||||
@sopel.module.commands('blocksize')
|
@sopel.module.commands('blocksize')
|
||||||
def blocksize(bot, trigger):
|
def blocksize(bot, trigger):
|
||||||
try:
|
try:
|
||||||
|
|
|
@ -18,6 +18,10 @@ def fourmatter(bot, trigger):
|
||||||
# bot.say('sun is not doing allah is doing')
|
# bot.say('sun is not doing allah is doing')
|
||||||
# bot.say('to accept Islam say that i bear witness that there is no deity worthy of worship except Allah and Muhammad peace be upon him is his slave and messenger')
|
# bot.say('to accept Islam say that i bear witness that there is no deity worthy of worship except Allah and Muhammad peace be upon him is his slave and messenger')
|
||||||
|
|
||||||
|
@sopel.module.commands('_.')
|
||||||
|
def faceflip(bot, trigger):
|
||||||
|
bot.say(':| .¯. |: ._. :| .¯. |: ._. :| .¯. |: ._.')
|
||||||
|
|
||||||
@sopel.module.commands('ada', 'hoskinson')
|
@sopel.module.commands('ada', 'hoskinson')
|
||||||
def ada(bot, trigger):
|
def ada(bot, trigger):
|
||||||
bot.say('DO YOU KNOW WHO I AM?')
|
bot.say('DO YOU KNOW WHO I AM?')
|
||||||
|
|
Loading…
Reference in New Issue