1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-10-11 18:39:05 +00:00
trezor-firmware/tools/coins_gen

24 lines
462 B
Plaintext
Raw Normal View History

#!/usr/bin/env python3
import json
2016-11-09 13:52:43 +00:00
fields = [
'coin_name',
'coin_shortcut',
'address_type',
'maxfee_kb',
'address_type_p2sh',
'address_type_p2wpkh',
'address_type_p2wsh',
'signed_message_header',
]
2016-10-20 15:07:56 +00:00
coins = json.load(open('../../trezor-common/coins.json', 'r'))
2016-11-11 17:11:37 +00:00
print('COINS = [')
for c in coins:
print(' CoinType(')
2016-11-09 13:52:43 +00:00
for n in fields:
print(' %s=%s,' % (n, repr(c[n])))
print(' ),')
print(']\n')