2019-05-07 05:12:30 +00:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
2019-05-11 03:44:28 +00:00
|
|
|
'''
|
|
|
|
Copyright (c) 2014-2019, The Monero Project
|
|
|
|
|
|
|
|
All rights reserved.
|
|
|
|
|
|
|
|
Redistribution and use in source and binary forms, with or without
|
|
|
|
modification, are permitted provided that the following conditions are met:
|
|
|
|
|
|
|
|
1. Redistributions of source code must retain the above copyright notice, this
|
|
|
|
list of conditions and the following disclaimer.
|
|
|
|
|
|
|
|
2. Redistributions in binary form must reproduce the above copyright notice,
|
|
|
|
this list of conditions and the following disclaimer in the documentation
|
|
|
|
and/or other materials provided with the distribution.
|
|
|
|
|
|
|
|
3. Neither the name of the copyright holder nor the names of its contributors
|
|
|
|
may be used to endorse or promote products derived from this software without
|
|
|
|
specific prior written permission.
|
|
|
|
|
|
|
|
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
|
|
|
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
|
|
|
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
|
|
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
|
|
|
|
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
|
|
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
|
|
|
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
|
|
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
|
|
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
|
|
|
|
Parts of the project are originally copyright (c) 2012-2013 The Cryptonote
|
|
|
|
developers.
|
|
|
|
'''
|
|
|
|
|
2019-05-07 05:12:30 +00:00
|
|
|
import argparse
|
|
|
|
import lmdb
|
|
|
|
from ctypes import *
|
|
|
|
from datetime import datetime
|
|
|
|
|
2019-05-12 02:31:26 +00:00
|
|
|
class share_t(Structure):
|
|
|
|
_fields_ = [('height', c_longlong),
|
|
|
|
('difficulty', c_longlong),
|
|
|
|
('address', c_char*128),
|
|
|
|
('timestamp', c_longlong)]
|
|
|
|
|
|
|
|
class payment_t(Structure):
|
|
|
|
_fields_ = [('amount', c_longlong),
|
|
|
|
('timestamp', c_longlong),
|
|
|
|
('address', c_char*128)]
|
|
|
|
|
|
|
|
class block_t(Structure):
|
|
|
|
_fields_ = [('height', c_longlong),
|
|
|
|
('hash', c_char*64),
|
|
|
|
('prev_hash', c_char*64),
|
|
|
|
('difficulty', c_longlong),
|
|
|
|
('status', c_long),
|
|
|
|
('reward', c_longlong),
|
|
|
|
('timestamp', c_longlong)]
|
|
|
|
|
|
|
|
def format_block_status(status):
|
|
|
|
s = ["LOCKED", "UNLOCKED", "ORPHANED"]
|
|
|
|
return s[status]
|
|
|
|
|
|
|
|
def format_timestamp(timestamp):
|
|
|
|
dt = datetime.fromtimestamp(timestamp)
|
|
|
|
return dt.strftime('%Y-%m-%d %H:%M:%S')
|
|
|
|
|
|
|
|
def format_amount(amount):
|
|
|
|
return '{0:.6f}'.format(amount/1e12)
|
|
|
|
|
|
|
|
def format_address(address):
|
|
|
|
return '{}...{}'.format(address[:8], address[-8:])
|
|
|
|
|
|
|
|
def address_from_key(key):
|
|
|
|
return key.decode('utf-8').rstrip('\0')
|
|
|
|
|
2019-05-07 05:12:30 +00:00
|
|
|
def print_balance(path):
|
|
|
|
env = lmdb.open(path, readonly=True, max_dbs=1, create=False)
|
|
|
|
balance = env.open_db('balance'.encode())
|
|
|
|
with env.begin(db=balance) as txn:
|
|
|
|
with txn.cursor() as curs:
|
|
|
|
for key, value in curs:
|
2019-05-12 02:31:26 +00:00
|
|
|
address = format_address(address_from_key(key))
|
2019-05-07 05:12:30 +00:00
|
|
|
amount = c_longlong.from_buffer_copy(value).value
|
2019-05-12 02:31:26 +00:00
|
|
|
amount = format_amount(amount)
|
2019-05-07 05:12:30 +00:00
|
|
|
print('{}\t{}'.format(address, amount))
|
|
|
|
env.close()
|
|
|
|
|
|
|
|
def print_payements(path):
|
|
|
|
env = lmdb.open(path, readonly=True, max_dbs=1, create=False)
|
|
|
|
payments = env.open_db('payments'.encode())
|
|
|
|
with env.begin(db=payments) as txn:
|
|
|
|
with txn.cursor() as curs:
|
|
|
|
for key, value in curs:
|
2019-05-12 02:31:26 +00:00
|
|
|
address = format_address(address_from_key(key))
|
|
|
|
p = payment_t.from_buffer_copy(value)
|
|
|
|
amount = format_amount(p.amount)
|
|
|
|
dt = format_timestamp(p.timestamp)
|
|
|
|
print('{}\t{}\t{}'.format(address, amount, dt))
|
|
|
|
env.close()
|
|
|
|
|
|
|
|
def print_mined(path):
|
|
|
|
env = lmdb.open(path, readonly=True, max_dbs=1, create=False)
|
|
|
|
blocks = env.open_db('blocks'.encode())
|
|
|
|
with env.begin(db=blocks) as txn:
|
|
|
|
with txn.cursor() as curs:
|
|
|
|
for key, value in curs:
|
|
|
|
height = c_longlong.from_buffer_copy(key).value
|
|
|
|
b = block_t.from_buffer_copy(value)
|
|
|
|
dt = format_timestamp(b.timestamp)
|
|
|
|
reward = format_amount(b.reward)
|
|
|
|
status = format_block_status(b.status)
|
|
|
|
print('{}\t{}\t{}\t{}'.format(height, status, reward, dt))
|
2019-05-07 05:12:30 +00:00
|
|
|
env.close()
|
|
|
|
|
|
|
|
def main():
|
|
|
|
parser = argparse.ArgumentParser()
|
|
|
|
group = parser.add_mutually_exclusive_group(required=True)
|
2019-05-11 03:44:28 +00:00
|
|
|
group.add_argument('-b', '--balances', action='store_true',
|
|
|
|
help='list miner balances')
|
|
|
|
group.add_argument('-p', '--payments', action='store_true',
|
|
|
|
help='list payments made')
|
2019-05-12 02:31:26 +00:00
|
|
|
group.add_argument('-m', '--mined', action='store_true',
|
|
|
|
help='list mined blocks')
|
2019-05-07 05:12:30 +00:00
|
|
|
parser.add_argument('database', help='path to database')
|
|
|
|
args = parser.parse_args()
|
|
|
|
if args.balances:
|
|
|
|
print_balance(args.database)
|
|
|
|
elif args.payments:
|
|
|
|
print_payements(args.database)
|
2019-05-12 02:31:26 +00:00
|
|
|
elif args.mined:
|
|
|
|
print_mined(args.database)
|
2019-05-07 05:12:30 +00:00
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
main()
|
|
|
|
|