1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-10-12 19:09:10 +00:00
trezor-firmware/common/defs/bitcoin/bitcore.json
Roman Zeyde 7210a2f56d common/defs: add 'confidential_assets' section to coin definitions (#399)
Enable 'confidential_assets' for Elements (following #66 and #317) to allow
deriving confidential addresses and signing confidential transactions.

The following Python helper script was used to update the JSON files:
```
import json
import sys

for f in sys.argv[1:]:
    d = json.load(open(f))
    d["confidential_assets"] = None
    with open(f, "w") as o:
        json.dump(d, o, indent=2)
        o.write("\n")
```

Set it to `{'address_prefix': 4, 'blech32_prefix': 'el'}` for Elements.

`coins.json` and `coininfo.py` were re-generated using:
```
$ pipenv run make gen gen_check
```
2019-08-12 12:52:20 +02:00

44 lines
1.1 KiB
JSON

{
"coin_name": "Bitcore",
"coin_shortcut": "BTX",
"coin_label": "Bitcore",
"website": "https://bitcore.cc",
"github": "https://github.com/LIMXTEC/BitCore",
"maintainer": "limxdev <limxdev@bitcore.cc>",
"curve_name": "secp256k1",
"address_type": 3,
"address_type_p2sh": 125,
"maxfee_kb": 2000000,
"minfee_kb": 1000,
"signed_message_header": "BitCore Signed Message:\n",
"hash_genesis_block": "604148281e5c4b7f2487e5d03cd60d8e6f69411d613f6448034508cea52e9574",
"xprv_magic": 76066276,
"xpub_magic": 76067358,
"xpub_magic_segwit_p2sh": 77429938,
"xpub_magic_segwit_native": 78792518,
"bech32_prefix": "btx",
"cashaddr_prefix": null,
"slip44": 160,
"segwit": true,
"decred": false,
"fork_id": null,
"force_bip143": false,
"bip115": false,
"default_fee_b": {
"Low": 10
},
"dust_limit": 546,
"blocktime_seconds": 150,
"uri_prefix": "bitcore",
"min_address_length": 27,
"max_address_length": 34,
"bitcore": [
"https://insight.bitcore.cc"
],
"blockbook": [],
"negative_fee": false,
"cooldown": 100,
"consensus_branch_id": null,
"confidential_assets": null
}