diff --git a/src/apps/common/coins.py b/src/apps/common/coins.py index 2eccdcc30..5954ce156 100644 --- a/src/apps/common/coins.py +++ b/src/apps/common/coins.py @@ -27,6 +27,30 @@ COINS = [ bip44=1, segwit=True, ), + CoinType( + coin_name='Bcash', + coin_shortcut='BCH', + address_type=0, + address_type_p2sh=5, + maxfee_kb=500000, + signed_message_header='Bitcoin Signed Message:\n', + xpub_magic=0x0488b21e, + xprv_magic=0x0488ade4, + bip44=145, + segwit=False, + ), + CoinType( + coin_name='Bcash Testnet', + coin_shortcut='TBCH', + address_type=111, + address_type_p2sh=196, + maxfee_kb=10000000, + signed_message_header='Bitcoin Signed Message:\n', + xpub_magic=0x043587cf, + xprv_magic=0x04358394, + bip44=1, + segwit=False, + ), CoinType( coin_name='Namecoin', coin_shortcut='NMC', @@ -44,7 +68,7 @@ COINS = [ coin_shortcut='LTC', address_type=48, address_type_p2sh=50, - maxfee_kb=1000000, + maxfee_kb=40000000, signed_message_header='Litecoin Signed Message:\n', xpub_magic=0x019da462, xprv_magic=0x019d9cfe,