mirror of
https://github.com/lalanza808/monero.fail.git
synced 2025-03-29 13:18:05 -04:00
13 lines
439 B
Python
13 lines
439 B
Python
from requests import get as r_get
|
|
|
|
def is_monero(url):
|
|
data = {"method": "get_block_header_by_height", "params": {"height": 0}}
|
|
try:
|
|
r = r_get(url + "/json_rpc", json=data)
|
|
r.raise_for_status()
|
|
assert "result" in r.json()
|
|
is_xmr = r.json()["result"]["block_header"]["hash"] == "418015bb9ae982a1975da7d79277c2705727a56894ba0fb246adaabb1f4632e3"
|
|
return is_xmr
|
|
except:
|
|
return False
|