mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-22 07:28:10 +00:00
common/defs: remove BSD - website does not exist, maintainer not reachable
This commit is contained in:
parent
3e20c51dbf
commit
d28bc3c3a6
@ -1,41 +0,0 @@
|
|||||||
{
|
|
||||||
"coin_name": "Bitsend",
|
|
||||||
"coin_shortcut": "BSD",
|
|
||||||
"coin_label": "Bitsend",
|
|
||||||
"website": "https://bitsend.info",
|
|
||||||
"github": "https://github.com/LIMXTEC/BitSend",
|
|
||||||
"maintainer": "limxdev <info@bitsend.info>",
|
|
||||||
"curve_name": "secp256k1",
|
|
||||||
"address_type": 102,
|
|
||||||
"address_type_p2sh": 5,
|
|
||||||
"maxfee_kb": 1000000,
|
|
||||||
"minfee_kb": 10000,
|
|
||||||
"signed_message_header": "Bitsend Signed Message:\n",
|
|
||||||
"hash_genesis_block": "0000012e1b8843ac9ce8c18603658eaf8895f99d3f5e7e1b7b1686f35e3c087a",
|
|
||||||
"xprv_magic": 76066276,
|
|
||||||
"xpub_magic": 76067358,
|
|
||||||
"xpub_magic_segwit_p2sh": 77429938,
|
|
||||||
"xpub_magic_segwit_native": 78792518,
|
|
||||||
"bech32_prefix": "bsd",
|
|
||||||
"cashaddr_prefix": null,
|
|
||||||
"slip44": 91,
|
|
||||||
"segwit": true,
|
|
||||||
"decred": false,
|
|
||||||
"fork_id": null,
|
|
||||||
"force_bip143": false,
|
|
||||||
"bip115": false,
|
|
||||||
"default_fee_b": {
|
|
||||||
"Normal": 10
|
|
||||||
},
|
|
||||||
"dust_limit": 5460,
|
|
||||||
"blocktime_seconds": 200,
|
|
||||||
"uri_prefix": "bitsend",
|
|
||||||
"min_address_length": 27,
|
|
||||||
"max_address_length": 34,
|
|
||||||
"bitcore": [],
|
|
||||||
"blockbook": [],
|
|
||||||
"negative_fee": false,
|
|
||||||
"cooldown": 100,
|
|
||||||
"consensus_branch_id": null,
|
|
||||||
"confidential_assets": null
|
|
||||||
}
|
|
Binary file not shown.
Before Width: | Height: | Size: 23 KiB |
Binary file not shown.
Before Width: | Height: | Size: 33 KiB |
@ -5,7 +5,6 @@
|
|||||||
"bitcoin:AXE": true,
|
"bitcoin:AXE": true,
|
||||||
"bitcoin:BCH": true,
|
"bitcoin:BCH": true,
|
||||||
"bitcoin:BITC": true,
|
"bitcoin:BITC": true,
|
||||||
"bitcoin:BSD": true,
|
|
||||||
"bitcoin:BTC": true,
|
"bitcoin:BTC": true,
|
||||||
"bitcoin:BTCP": true,
|
"bitcoin:BTCP": true,
|
||||||
"bitcoin:BTDX": true,
|
"bitcoin:BTDX": true,
|
||||||
@ -104,7 +103,6 @@
|
|||||||
"bitcoin:BELL": "1.8.2",
|
"bitcoin:BELL": "1.8.2",
|
||||||
"bitcoin:BITC": "1.7.2",
|
"bitcoin:BITC": "1.7.2",
|
||||||
"bitcoin:BITG": "1.8.3",
|
"bitcoin:BITG": "1.8.3",
|
||||||
"bitcoin:BSD": "1.7.2",
|
|
||||||
"bitcoin:BST": "1.8.2",
|
"bitcoin:BST": "1.8.2",
|
||||||
"bitcoin:BTC": "1.5.2",
|
"bitcoin:BTC": "1.5.2",
|
||||||
"bitcoin:BTCP": "1.6.2",
|
"bitcoin:BTCP": "1.6.2",
|
||||||
@ -1468,7 +1466,6 @@
|
|||||||
"bitcoin:BELL": "2.1.1",
|
"bitcoin:BELL": "2.1.1",
|
||||||
"bitcoin:BITC": "2.0.10",
|
"bitcoin:BITC": "2.0.10",
|
||||||
"bitcoin:BITG": "2.1.4",
|
"bitcoin:BITG": "2.1.4",
|
||||||
"bitcoin:BSD": "2.0.10",
|
|
||||||
"bitcoin:BST": "2.1.1",
|
"bitcoin:BST": "2.1.1",
|
||||||
"bitcoin:BTC": "2.0.5",
|
"bitcoin:BTC": "2.0.5",
|
||||||
"bitcoin:BTCP": "2.0.7",
|
"bitcoin:BTCP": "2.0.7",
|
||||||
|
@ -472,29 +472,6 @@ def by_name(name: str) -> CoinInfo:
|
|||||||
curve_name='secp256k1',
|
curve_name='secp256k1',
|
||||||
confidential_assets=None,
|
confidential_assets=None,
|
||||||
)
|
)
|
||||||
elif name == "Bitsend":
|
|
||||||
return CoinInfo(
|
|
||||||
coin_name=name,
|
|
||||||
coin_shortcut="BSD",
|
|
||||||
address_type=102,
|
|
||||||
address_type_p2sh=5,
|
|
||||||
maxfee_kb=1000000,
|
|
||||||
signed_message_header="Bitsend Signed Message:\n",
|
|
||||||
xpub_magic=0x0488b21e,
|
|
||||||
xpub_magic_segwit_p2sh=0x049d7cb2,
|
|
||||||
xpub_magic_segwit_native=0x04b24746,
|
|
||||||
bech32_prefix="bsd",
|
|
||||||
cashaddr_prefix=None,
|
|
||||||
slip44=91,
|
|
||||||
segwit=True,
|
|
||||||
fork_id=None,
|
|
||||||
force_bip143=False,
|
|
||||||
bip115=False,
|
|
||||||
decred=False,
|
|
||||||
negative_fee=False,
|
|
||||||
curve_name='secp256k1',
|
|
||||||
confidential_assets=None,
|
|
||||||
)
|
|
||||||
elif name == "BlockStamp":
|
elif name == "BlockStamp":
|
||||||
return CoinInfo(
|
return CoinInfo(
|
||||||
coin_name=name,
|
coin_name=name,
|
||||||
|
File diff suppressed because one or more lines are too long
Loading…
Reference in New Issue
Block a user