mirror of
https://github.com/trezor/trezor-firmware.git
synced 2025-02-02 02:41:28 +00:00
Support monacoin (#215)
This commit is contained in:
parent
1c3b05a44b
commit
4cbf74f789
@ -1,4 +1,4 @@
|
|||||||
from .tx_api import TxApiBitcoin, TxApiTestnet, TxApiLitecoin, TxApiZcash, TxApiDash, TxApiBcash, TxApiDecredTestnet, TxApiDogecoin
|
from .tx_api import TxApiBitcoin, TxApiTestnet, TxApiLitecoin, TxApiZcash, TxApiDash, TxApiBcash, TxApiDecredTestnet, TxApiDogecoin, TxApiMonacoin
|
||||||
|
|
||||||
coins_slip44 = {
|
coins_slip44 = {
|
||||||
'Bitcoin': 0,
|
'Bitcoin': 0,
|
||||||
@ -8,6 +8,7 @@ coins_slip44 = {
|
|||||||
'Dogecoin': 3,
|
'Dogecoin': 3,
|
||||||
'Dash': 5,
|
'Dash': 5,
|
||||||
'Namecoin': 7,
|
'Namecoin': 7,
|
||||||
|
'Monacoin': 22,
|
||||||
'Decred': 42,
|
'Decred': 42,
|
||||||
'Ether': 60,
|
'Ether': 60,
|
||||||
'EtherClassic': 61,
|
'EtherClassic': 61,
|
||||||
@ -24,4 +25,5 @@ coins_txapi = {
|
|||||||
'Bcash': TxApiBcash,
|
'Bcash': TxApiBcash,
|
||||||
'Decred Testnet': TxApiDecredTestnet,
|
'Decred Testnet': TxApiDecredTestnet,
|
||||||
'Dogecoin': TxApiDogecoin,
|
'Dogecoin': TxApiDogecoin,
|
||||||
|
'Monacoin': TxApiMonacoin,
|
||||||
}
|
}
|
||||||
|
@ -193,3 +193,4 @@ TxApiBcash = TxApiInsight(network='insight_bcash', url='https://bch-bitcore2.tre
|
|||||||
TxApiDecredTestnet = TxApiInsight(network='insight_decred_testnet', url='https://testnet.decred.org/api/')
|
TxApiDecredTestnet = TxApiInsight(network='insight_decred_testnet', url='https://testnet.decred.org/api/')
|
||||||
TxApiDogecoin = TxApiBlockCypher(network='blockcypher_dogecoin', url='https://api.blockcypher.com/v1/doge/main/')
|
TxApiDogecoin = TxApiBlockCypher(network='blockcypher_dogecoin', url='https://api.blockcypher.com/v1/doge/main/')
|
||||||
TxApiSegnet = TxApiSmartbit(network='smartbit_segnet', url='https://segnet-api.smartbit.com.au/v1/blockchain/')
|
TxApiSegnet = TxApiSmartbit(network='smartbit_segnet', url='https://segnet-api.smartbit.com.au/v1/blockchain/')
|
||||||
|
TxApiMonacoin = TxApiInsight(network='insight_monacoin', url='https://mona.insight.monaco-ex.org/insight-api-monacoin/')
|
||||||
|
Loading…
Reference in New Issue
Block a user