trezor-core/tools/codegen/gen_coins.py

43 lines
878 B
Python
Raw Normal View History

#!/usr/bin/env python3
import json
2016-11-09 05:52:43 -08:00
fields = [
'coin_name',
'coin_shortcut',
2017-11-09 06:37:22 -08:00
'coin_label',
2016-11-09 05:52:43 -08:00
'address_type',
'address_type_p2sh',
2017-05-12 13:51:07 -07:00
'maxfee_kb',
2017-11-09 06:37:22 -08:00
'minfee_kb',
2016-11-09 05:52:43 -08:00
'signed_message_header',
2017-11-09 06:37:22 -08:00
'hash_genesis_block',
'xprv_magic',
2017-11-09 06:37:22 -08:00
'xpub_magic',
'bech32_prefix',
'bip44',
2017-04-26 06:46:08 -07:00
'segwit',
2017-11-09 06:37:22 -08:00
'forkid',
2018-02-08 09:58:03 -08:00
'force_bip143',
2017-11-09 06:37:22 -08:00
'default_fee_b',
'dust_limit',
'blocktime_minutes',
'firmware',
'address_prefix',
'min_address_length',
'max_address_length',
'bitcore',
2016-11-09 05:52:43 -08:00
]
2017-11-09 06:37:22 -08:00
coins = json.load(open('../../vendor/trezor-common/coins.json', 'r'))
2016-11-11 09:11:37 -08:00
print('COINS = [')
for c in coins:
print(' CoinType(')
2016-11-09 05:52:43 -08:00
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')