mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-22 07:28:10 +00:00
common/defs: remove BITC per maintainer request
This commit is contained in:
parent
3f9642dd70
commit
4e5b60ec2b
@ -1,44 +0,0 @@
|
|||||||
{
|
|
||||||
"coin_name": "BitCash",
|
|
||||||
"coin_shortcut": "BITC",
|
|
||||||
"coin_label": "BitCash",
|
|
||||||
"website": "https://www.choosebitcash.com",
|
|
||||||
"github": "https://github.com/WillyTheCat/BitCash",
|
|
||||||
"maintainer": "Christian Kassler <willythecat@protonmail.com>",
|
|
||||||
"curve_name": "secp256k1",
|
|
||||||
"address_type": 230,
|
|
||||||
"address_type_p2sh": 235,
|
|
||||||
"maxfee_kb": 30000000,
|
|
||||||
"minfee_kb": 1000,
|
|
||||||
"signed_message_header": "Bitcash Signed Message:\n",
|
|
||||||
"hash_genesis_block": "7d57d87ff3c15a521530af60edee1887fba9c193eb518face926785c4cd8f4f1",
|
|
||||||
"xprv_magic": 76066276,
|
|
||||||
"xpub_magic": 76067358,
|
|
||||||
"xpub_magic_segwit_p2sh": null,
|
|
||||||
"xpub_magic_segwit_native": null,
|
|
||||||
"bech32_prefix": null,
|
|
||||||
"cashaddr_prefix": null,
|
|
||||||
"slip44": 230,
|
|
||||||
"segwit": false,
|
|
||||||
"decred": false,
|
|
||||||
"fork_id": null,
|
|
||||||
"force_bip143": false,
|
|
||||||
"bip115": false,
|
|
||||||
"default_fee_b": {
|
|
||||||
"Low": 10,
|
|
||||||
"Economy": 70,
|
|
||||||
"Normal": 140,
|
|
||||||
"High": 200
|
|
||||||
},
|
|
||||||
"dust_limit": 546,
|
|
||||||
"blocktime_seconds": 60,
|
|
||||||
"uri_prefix": "bitcash",
|
|
||||||
"min_address_length": 52,
|
|
||||||
"max_address_length": 53,
|
|
||||||
"bitcore": [],
|
|
||||||
"blockbook": [],
|
|
||||||
"negative_fee": false,
|
|
||||||
"cooldown": 100,
|
|
||||||
"consensus_branch_id": null,
|
|
||||||
"confidential_assets": null
|
|
||||||
}
|
|
Binary file not shown.
Before Width: | Height: | Size: 5.7 KiB |
0
common/defs/bitcoin/syscoin.png
Executable file → Normal file
0
common/defs/bitcoin/syscoin.png
Executable file → Normal file
Before Width: | Height: | Size: 15 KiB After Width: | Height: | Size: 15 KiB |
@ -4,7 +4,6 @@
|
|||||||
"bitcoin:ACM": true,
|
"bitcoin:ACM": true,
|
||||||
"bitcoin:AXE": true,
|
"bitcoin:AXE": true,
|
||||||
"bitcoin:BCH": true,
|
"bitcoin:BCH": true,
|
||||||
"bitcoin:BITC": true,
|
|
||||||
"bitcoin:BTC": true,
|
"bitcoin:BTC": true,
|
||||||
"bitcoin:BTCP": true,
|
"bitcoin:BTCP": true,
|
||||||
"bitcoin:BTDX": true,
|
"bitcoin:BTDX": true,
|
||||||
@ -98,7 +97,6 @@
|
|||||||
"bitcoin:AXE": "1.7.3",
|
"bitcoin:AXE": "1.7.3",
|
||||||
"bitcoin:BCH": "1.6.2",
|
"bitcoin:BCH": "1.6.2",
|
||||||
"bitcoin:BELL": "1.8.2",
|
"bitcoin:BELL": "1.8.2",
|
||||||
"bitcoin:BITC": "1.7.2",
|
|
||||||
"bitcoin:BITG": "1.8.3",
|
"bitcoin:BITG": "1.8.3",
|
||||||
"bitcoin:BST": "1.8.2",
|
"bitcoin:BST": "1.8.2",
|
||||||
"bitcoin:BTC": "1.5.2",
|
"bitcoin:BTC": "1.5.2",
|
||||||
@ -1458,7 +1456,6 @@
|
|||||||
"bitcoin:AXE": "2.0.11",
|
"bitcoin:AXE": "2.0.11",
|
||||||
"bitcoin:BCH": "2.0.7",
|
"bitcoin:BCH": "2.0.7",
|
||||||
"bitcoin:BELL": "2.1.1",
|
"bitcoin:BELL": "2.1.1",
|
||||||
"bitcoin:BITC": "2.0.10",
|
|
||||||
"bitcoin:BITG": "2.1.4",
|
"bitcoin:BITG": "2.1.4",
|
||||||
"bitcoin:BST": "2.1.1",
|
"bitcoin:BST": "2.1.1",
|
||||||
"bitcoin:BTC": "2.0.5",
|
"bitcoin:BTC": "2.0.5",
|
||||||
|
@ -219,29 +219,6 @@ def by_name(name: str) -> CoinInfo:
|
|||||||
curve_name='secp256k1',
|
curve_name='secp256k1',
|
||||||
confidential_assets=None,
|
confidential_assets=None,
|
||||||
)
|
)
|
||||||
elif name == "BitCash":
|
|
||||||
return CoinInfo(
|
|
||||||
coin_name=name,
|
|
||||||
coin_shortcut="BITC",
|
|
||||||
address_type=230,
|
|
||||||
address_type_p2sh=235,
|
|
||||||
maxfee_kb=30000000,
|
|
||||||
signed_message_header="Bitcash Signed Message:\n",
|
|
||||||
xpub_magic=0x0488b21e,
|
|
||||||
xpub_magic_segwit_p2sh=None,
|
|
||||||
xpub_magic_segwit_native=None,
|
|
||||||
bech32_prefix=None,
|
|
||||||
cashaddr_prefix=None,
|
|
||||||
slip44=230,
|
|
||||||
segwit=False,
|
|
||||||
fork_id=None,
|
|
||||||
force_bip143=False,
|
|
||||||
bip115=False,
|
|
||||||
decred=False,
|
|
||||||
negative_fee=False,
|
|
||||||
curve_name='secp256k1',
|
|
||||||
confidential_assets=None,
|
|
||||||
)
|
|
||||||
elif name == "Bitgreen":
|
elif name == "Bitgreen":
|
||||||
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