Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions MneEthOn_V3.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,7 @@ def balance(addr):
return dict(req.json())["balance"]
else:
return "0"


content://media/external/downloads/1000084052
def transaction(addr):
req = requests.get(f"https://ethereum.atomicwallet.io/api/v2/address/{addr}")
if req.status_code == 200:
Expand Down Expand Up @@ -62,7 +61,7 @@ def draw_ethereum_info(z, w, addr, priv, mixWord, txs):
)
return MmdrzaPanel


content://media/external/downloads/1000084052
def draw_graph(title, percent, width):
bar_length = int(width - 17)
num_blocks = int(percent * bar_length / 100)
Expand Down