Compare commits
No commits in common. "9589dae3b535ead92735a20efb82edab72b668be" and "853082588ab8c6e58ac41aa9daf4873fb2ff804f" have entirely different histories.
9589dae3b5
...
853082588a
18
network.py
18
network.py
|
@ -1,7 +1,6 @@
|
||||||
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"
|
||||||
|
@ -9,12 +8,6 @@ import time
|
||||||
# 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:
|
||||||
|
@ -65,17 +58,6 @@ 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,10 +18,6 @@ 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