2016-11-09 13:46:59 +00:00
|
|
|
from trezor.messages.CoinType import CoinType
|
|
|
|
|
2016-10-20 15:07:56 +00:00
|
|
|
# the following list is generated using tools/coins-gen.py
|
2016-11-09 13:46:59 +00:00
|
|
|
# do not edit manually!
|
2016-10-20 14:40:46 +00:00
|
|
|
_coins = [
|
2016-11-09 13:46:59 +00:00
|
|
|
CoinType(
|
|
|
|
coin_name='Bitcoin',
|
|
|
|
coin_shortcut='BTC',
|
|
|
|
address_type=0,
|
|
|
|
maxfee_kb=100000,
|
|
|
|
address_type_p2sh=5,
|
|
|
|
address_type_p2wpkh=6,
|
|
|
|
address_type_p2wsh=10,
|
|
|
|
signed_message_header='Bitcoin Signed Message:\n',
|
|
|
|
),
|
|
|
|
CoinType(
|
|
|
|
coin_name='Testnet',
|
|
|
|
coin_shortcut='TEST',
|
|
|
|
address_type=111,
|
|
|
|
maxfee_kb=10000000,
|
|
|
|
address_type_p2sh=196,
|
|
|
|
address_type_p2wpkh=3,
|
|
|
|
address_type_p2wsh=40,
|
|
|
|
signed_message_header='Bitcoin Signed Message:\n',
|
|
|
|
),
|
|
|
|
CoinType(
|
|
|
|
coin_name='Namecoin',
|
|
|
|
coin_shortcut='NMC',
|
|
|
|
address_type=52,
|
|
|
|
maxfee_kb=10000000,
|
|
|
|
address_type_p2sh=5,
|
|
|
|
address_type_p2wpkh=None,
|
|
|
|
address_type_p2wsh=None,
|
|
|
|
signed_message_header='Namecoin Signed Message:\n',
|
|
|
|
),
|
|
|
|
CoinType(
|
|
|
|
coin_name='Litecoin',
|
|
|
|
coin_shortcut='LTC',
|
|
|
|
address_type=48,
|
|
|
|
maxfee_kb=1000000,
|
|
|
|
address_type_p2sh=5,
|
|
|
|
address_type_p2wpkh=None,
|
|
|
|
address_type_p2wsh=None,
|
|
|
|
signed_message_header='Litecoin Signed Message:\n',
|
|
|
|
),
|
|
|
|
CoinType(
|
|
|
|
coin_name='Dogecoin',
|
|
|
|
coin_shortcut='DOGE',
|
|
|
|
address_type=30,
|
|
|
|
maxfee_kb=1000000000,
|
|
|
|
address_type_p2sh=22,
|
|
|
|
address_type_p2wpkh=None,
|
|
|
|
address_type_p2wsh=None,
|
|
|
|
signed_message_header='Dogecoin Signed Message:\n',
|
|
|
|
),
|
|
|
|
CoinType(
|
|
|
|
coin_name='Dash',
|
|
|
|
coin_shortcut='DASH',
|
|
|
|
address_type=76,
|
|
|
|
maxfee_kb=100000,
|
|
|
|
address_type_p2sh=16,
|
|
|
|
address_type_p2wpkh=None,
|
|
|
|
address_type_p2wsh=None,
|
|
|
|
signed_message_header='DarkCoin Signed Message:\n',
|
|
|
|
),
|
|
|
|
CoinType(
|
|
|
|
coin_name='Zcash',
|
|
|
|
coin_shortcut='ZEC',
|
|
|
|
address_type=7352,
|
|
|
|
maxfee_kb=1000000,
|
|
|
|
address_type_p2sh=7357,
|
|
|
|
address_type_p2wpkh=None,
|
|
|
|
address_type_p2wsh=None,
|
|
|
|
signed_message_header='Zcash Signed Message:\n',
|
|
|
|
),
|
|
|
|
CoinType(
|
|
|
|
coin_name='Zcash Testnet',
|
|
|
|
coin_shortcut='TAZ',
|
|
|
|
address_type=7461,
|
|
|
|
maxfee_kb=10000000,
|
|
|
|
address_type_p2sh=7354,
|
|
|
|
address_type_p2wpkh=None,
|
|
|
|
address_type_p2wsh=None,
|
|
|
|
signed_message_header='Zcash Signed Message:\n',
|
|
|
|
),
|
2016-10-20 14:40:46 +00:00
|
|
|
]
|
|
|
|
|
2016-11-08 17:49:58 +00:00
|
|
|
|
2016-10-20 14:40:46 +00:00
|
|
|
def by_shortcut(shortcut):
|
2016-11-08 17:49:58 +00:00
|
|
|
for c in _coins:
|
2016-11-09 13:46:59 +00:00
|
|
|
if c.coin_shortcut == shortcut:
|
2016-10-20 14:40:46 +00:00
|
|
|
return c
|
2016-10-24 16:26:53 +00:00
|
|
|
raise Exception('Unknown coin shortcut "%s"' % shortcut)
|
2016-10-20 14:40:46 +00:00
|
|
|
|
2016-11-08 17:49:58 +00:00
|
|
|
|
2016-10-20 14:40:46 +00:00
|
|
|
def by_name(name):
|
2016-11-08 17:49:58 +00:00
|
|
|
for c in _coins:
|
2016-11-09 13:46:59 +00:00
|
|
|
if c.coin_name == name:
|
2016-10-20 14:40:46 +00:00
|
|
|
return c
|
2016-10-24 16:26:53 +00:00
|
|
|
raise Exception('Unknown coin name "%s"' % name)
|
2016-10-20 14:40:46 +00:00
|
|
|
|
2016-11-08 17:49:58 +00:00
|
|
|
|
2016-10-20 14:40:46 +00:00
|
|
|
def by_address_type(version):
|
2016-11-08 17:49:58 +00:00
|
|
|
for c in _coins:
|
2016-11-09 13:46:59 +00:00
|
|
|
if c.address_type == version:
|
2016-10-20 14:40:46 +00:00
|
|
|
return c
|
2016-10-24 16:26:53 +00:00
|
|
|
raise Exception('Unknown coin address type %d' % version)
|