66 lines
1.6 KiB
Python
66 lines
1.6 KiB
Python
|
#!python3
|
||
|
|
||
|
"""Decode raw transaction
|
||
|
|
||
|
.. moduleauthor:: Louis Holbrook <dev@holbrook.no>
|
||
|
.. pgp:: 0826EDA1702D1E87C6E2875121D2E7BB88C2A746
|
||
|
|
||
|
"""
|
||
|
|
||
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
||
|
|
||
|
# standard imports
|
||
|
import sys
|
||
|
import os
|
||
|
import json
|
||
|
import argparse
|
||
|
import logging
|
||
|
import select
|
||
|
|
||
|
# external imports
|
||
|
from chainlib.eth.tx import unpack
|
||
|
from chainlib.chain import ChainSpec
|
||
|
|
||
|
# local imports
|
||
|
from chainlib.eth.runnable.util import decode_for_puny_humans
|
||
|
|
||
|
|
||
|
logging.basicConfig(level=logging.WARNING)
|
||
|
logg = logging.getLogger()
|
||
|
|
||
|
def stdin_arg(t=0):
|
||
|
h = select.select([sys.stdin], [], [], t)
|
||
|
if len(h[0]) > 0:
|
||
|
v = h[0][0].read()
|
||
|
return v.rstrip()
|
||
|
return None
|
||
|
|
||
|
argparser = argparse.ArgumentParser()
|
||
|
argparser.add_argument('-i', '--chain-id', dest='i', default='evm:ethereum:1', type=str, help='Numeric network id')
|
||
|
argparser.add_argument('-v', action='store_true', help='Be verbose')
|
||
|
argparser.add_argument('-vv', action='store_true', help='Be more verbose')
|
||
|
argparser.add_argument('tx', type=str, nargs='?', default=stdin_arg(), help='hex-encoded signed raw transaction')
|
||
|
args = argparser.parse_args()
|
||
|
|
||
|
if args.vv:
|
||
|
logg.setLevel(logging.DEBUG)
|
||
|
elif args.v:
|
||
|
logg.setLevel(logging.INFO)
|
||
|
|
||
|
argp = args.tx
|
||
|
logg.debug('txxxx {}'.format(args.tx))
|
||
|
if argp == None:
|
||
|
argp = stdin_arg(t=3)
|
||
|
if argp == None:
|
||
|
argparser.error('need first positional argument or value from stdin')
|
||
|
|
||
|
chain_spec = ChainSpec.from_chain_str(args.i)
|
||
|
|
||
|
|
||
|
def main():
|
||
|
tx_raw = argp
|
||
|
decode_for_puny_humans(tx_raw, chain_spec, sys.stdout)
|
||
|
|
||
|
if __name__ == '__main__':
|
||
|
main()
|