wownero-python/utils/walletdump.py

94 lines
3.3 KiB
Python
Raw Normal View History

2017-12-26 19:25:49 +00:00
import argparse
from decimal import Decimal
import logging
2018-01-06 21:19:09 +00:00
import operator
2017-12-26 19:25:49 +00:00
import random
2018-01-06 21:19:09 +00:00
import re
2017-12-26 19:25:49 +00:00
2017-12-26 21:02:17 +00:00
from monero.backends.jsonrpc import JSONRPCWallet
2017-12-26 19:25:49 +00:00
from monero import exceptions
from monero import Address, Wallet, as_monero
2018-01-06 21:19:09 +00:00
def url_data(url):
gs = re.compile(
r'^(?:(?P<user>[a-z0-9_-]+)?(?::(?P<password>[^@]+))?@)?(?P<host>[^:\s]+)(?::(?P<port>[0-9]+))?$'
).match(url).groupdict()
return dict(filter(operator.itemgetter(1), gs.items()))
2017-12-26 19:25:49 +00:00
def get_wallet():
argsparser = argparse.ArgumentParser(description="Display wallet contents")
2018-01-06 21:19:09 +00:00
argsparser.add_argument('daemon_url', nargs='?', type=url_data, default='127.0.0.1:18082',
help="Daemon URL [user[:password]@]host[:port]")
2017-12-26 21:14:05 +00:00
argsparser.add_argument('-v', dest='verbosity', action='count', default=0,
help="Verbosity (repeat to increase; -v for INFO, -vv for DEBUG")
2017-12-26 19:25:49 +00:00
args = argsparser.parse_args()
2017-12-26 21:14:05 +00:00
level = logging.WARNING
if args.verbosity == 1:
level = logging.INFO
elif args.verbosity > 1:
level = logging.DEBUG
logging.basicConfig(level=level, format="%(asctime)-15s %(message)s")
2018-01-06 21:19:09 +00:00
return Wallet(JSONRPCWallet(**args.daemon_url))
2017-12-26 19:25:49 +00:00
_TXHDR = "timestamp height id/hash " \
2018-01-06 22:12:42 +00:00
" amount fee {dir:95s} payment_id"
2017-12-26 19:25:49 +00:00
def tx2str(tx):
2018-01-06 22:12:42 +00:00
return "{time} {height} {hash} {amount:17.12f} {fee:13.12f} {addr} {payment_id}".format(
2017-12-27 00:49:59 +00:00
time=tx.timestamp.strftime("%d-%m-%y %H:%M:%S") if getattr(tx, 'timestamp', None) else None,
height=tx.height,
hash=tx.hash,
amount=tx.amount,
fee=tx.fee or 0,
payment_id=tx.payment_id,
2018-01-06 15:44:38 +00:00
addr=getattr(tx, 'local_address', None) or '')
2017-12-26 19:25:49 +00:00
def a2str(a):
return "{addr} {label}".format(
addr=a,
label=a.label or "")
2017-12-26 19:25:49 +00:00
w = get_wallet()
print(
"Master address: {addr}\n" \
"Balance: {total:16.12f} ({unlocked:16.12f} unlocked)".format(
addr=a2str(w.get_address()),
2017-12-26 19:25:49 +00:00
total=w.get_balance(),
unlocked=w.get_balance(unlocked=True)))
if len(w.accounts) > 1:
print("\nWallet has {num} account(s):".format(num=len(w.accounts)))
for acc in w.accounts:
print("\nAccount {idx:02d}:".format(idx=acc.index))
print("Balance: {total:16.12f} ({unlocked:16.12f} unlocked)".format(
total=acc.get_balance(),
unlocked=acc.get_balance(unlocked=True)))
addresses = acc.get_addresses()
print("{num:2d} address(es):".format(num=len(addresses)))
print("\n".join(map(a2str, addresses)))
2017-12-27 00:49:59 +00:00
ins = acc.get_transactions_in()
2017-12-26 19:25:49 +00:00
if ins:
2017-12-27 00:49:59 +00:00
print("\nIncoming transactions:")
2018-01-06 15:44:38 +00:00
print(_TXHDR.format(dir='received by'))
2017-12-26 19:25:49 +00:00
for tx in ins:
print(tx2str(tx))
2017-12-27 00:49:59 +00:00
outs = acc.get_transactions_out()
2017-12-26 19:25:49 +00:00
if outs:
2017-12-27 00:49:59 +00:00
print("\nOutgoing transactions:")
2018-01-06 15:44:38 +00:00
print(_TXHDR.format(dir='sent from'))
2017-12-26 19:25:49 +00:00
for tx in outs:
print(tx2str(tx))
else:
2017-12-27 00:49:59 +00:00
ins = w.get_transactions_in()
2017-12-26 19:25:49 +00:00
if ins:
2017-12-27 00:49:59 +00:00
print("\nIncoming transactions:")
2018-01-06 15:44:38 +00:00
print(_TXHDR.format(dir='received by'))
2017-12-26 19:25:49 +00:00
for tx in ins:
print(tx2str(tx))
2017-12-27 00:49:59 +00:00
outs = w.get_transactions_out()
2017-12-26 19:25:49 +00:00
if outs:
2017-12-27 00:49:59 +00:00
print("\nOutgoing transactions:")
2018-01-06 15:44:38 +00:00
print(_TXHDR.format(dir='sent from'))
2017-12-26 19:25:49 +00:00
for tx in outs:
print(tx2str(tx))