1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-11-22 07:28:10 +00:00

common/defs: remove MTNS - maintainer not reachable

website does not exist, backends don't work
This commit is contained in:
Pavol Rusnak 2019-10-16 10:13:51 +00:00
parent 74bc28b3cb
commit 3e20c51dbf
No known key found for this signature in database
GPG Key ID: 91F3B339B9A02A3D
4 changed files with 1 additions and 71 deletions

View File

@ -1,45 +0,0 @@
{
"coin_name": "OmotenashiCoin",
"coin_shortcut": "MTNS",
"coin_label": "OmotenashiCoin",
"website": "https://www.omotenashicoin.site",
"github": "https://github.com/omotenashicoin-project/OmotenashiCoin",
"maintainer": "nakkie <git@omotenashiocin.site>",
"curve_name": "secp256k1",
"address_type": 63,
"address_type_p2sh": 18,
"maxfee_kb": 100000,
"minfee_kb": 100,
"signed_message_header": "MtnsNet Signed Message:\n",
"hash_genesis_block": "00000e04317329056e236da90ebbd1cafacf2cbe1337509231289677cec3f192",
"xprv_magic": 61052378,
"xpub_magic": 61052245,
"xpub_magic_segwit_p2sh": null,
"xpub_magic_segwit_native": null,
"bech32_prefix": null,
"cashaddr_prefix": null,
"slip44": 341,
"segwit": false,
"decred": false,
"fork_id": null,
"force_bip143": false,
"bip115": false,
"default_fee_b": {
"Normal": 10
},
"dust_limit": 546,
"blocktime_seconds": 90,
"uri_prefix": "omotenashicoin",
"min_address_length": 27,
"max_address_length": 34,
"bitcore": [
"https://mtns.hashexplorer.net:8015"
],
"blockbook": [
"https://mtns.hashexplorer.net"
],
"negative_fee": false,
"cooldown": 100,
"consensus_branch_id": null,
"confidential_assets": null
}

View File

@ -132,7 +132,6 @@
"bitcoin:LTC": "1.5.2",
"bitcoin:MEC": "1.7.2",
"bitcoin:MONA": "1.6.0",
"bitcoin:MTNS": "1.8.3",
"bitcoin:MUE": "1.7.1",
"bitcoin:NIX": "1.7.2",
"bitcoin:NMC": "1.5.2",
@ -1498,7 +1497,6 @@
"bitcoin:LTC": "2.0.5",
"bitcoin:MEC": "2.0.10",
"bitcoin:MONA": "2.0.5",
"bitcoin:MTNS": "2.1.5",
"bitcoin:MUE": "2.0.8",
"bitcoin:NIX": "2.0.11",
"bitcoin:NMC": "2.0.5",

View File

@ -1254,29 +1254,6 @@ def by_name(name: str) -> CoinInfo:
curve_name='secp256k1',
confidential_assets=None,
)
elif name == "OmotenashiCoin":
return CoinInfo(
coin_name=name,
coin_shortcut="MTNS",
address_type=63,
address_type_p2sh=18,
maxfee_kb=100000,
signed_message_header="MtnsNet Signed Message:\n",
xpub_magic=0x03a39555,
xpub_magic_segwit_p2sh=None,
xpub_magic_segwit_native=None,
bech32_prefix=None,
cashaddr_prefix=None,
slip44=341,
segwit=False,
fork_id=None,
force_bip143=False,
bip115=False,
decred=False,
negative_fee=False,
curve_name='secp256k1',
confidential_assets=None,
)
elif name == "PIVX":
return CoinInfo(
coin_name=name,

File diff suppressed because one or more lines are too long