python-trezor/trezorlib/coins.py

27 lines
588 B
Python
Raw Normal View History

2017-12-17 05:30:30 -08:00
from .tx_api import TxApiBitcoin, TxApiTestnet, TxApiLitecoin, TxApiZcash, TxApiDash, TxApiBcash, TxApiDecredTestnet
coins_slip44 = {
'Bitcoin': 0,
'Testnet': 1,
2017-12-17 05:30:30 -08:00
'Decred Testnet': 1,
'Litecoin': 2,
'Dogecoin': 3,
'Dash': 5,
'Namecoin': 7,
'Decred': 42,
'Ether': 60,
'EtherClassic': 61,
'Zcash': 133,
'Bcash': 145,
}
coins_txapi = {
'Bitcoin': TxApiBitcoin,
'Testnet': TxApiTestnet,
'Litecoin': TxApiLitecoin,
'Dash': TxApiDash,
'Zcash': TxApiZcash,
'Bcash': TxApiBcash,
2017-12-17 05:30:30 -08:00
'Decred Testnet': TxApiDecredTestnet,
}