trezor-core/tools/codegen/gen_coins.py

29 lines
589 B
Python
Executable File

#!/usr/bin/env python3
import json
fields = [
'coin_name',
'coin_shortcut',
'address_type',
'address_type_p2sh',
'maxfee_kb',
'signed_message_header',
'xpub_magic',
'xprv_magic',
'bip44',
'segwit',
]
coins = json.load(open('../../../trezor-common/coins.json', 'r'))
print('COINS = [')
for c in coins:
print(' CoinType(')
for n in fields:
if n in ['xpub_magic', 'xprv_magic']:
print(' %s=0x%s,' % (n, c[n]))
else:
print(' %s=%s,' % (n, repr(c[n])))
print(' ),')
print(']\n')