common/defs: add to support.json, regenerate

pull/213/head
Pavol Rusnak 5 years ago
parent a2f16ebb87
commit 751715dc15
No known key found for this signature in database
GPG Key ID: 91F3B339B9A02A3D

@ -94,6 +94,7 @@
"bitcoin:ACM": "1.7.2",
"bitcoin:AXE": "1.7.3",
"bitcoin:BCH": "1.6.2",
"bitcoin:BELL": "1.8.2",
"bitcoin:BITC": "1.7.2",
"bitcoin:BSD": "1.7.2",
"bitcoin:BST": "soon",
@ -127,6 +128,7 @@
"bitcoin:PTC": "1.7.1",
"bitcoin:QTUM": "1.8.1",
"bitcoin:REGTEST": "1.8.2",
"bitcoin:RITO": "1.8.2",
"bitcoin:RVN": "1.7.2",
"bitcoin:SMART": "1.7.1",
"bitcoin:TAZ": "1.6.2",
@ -135,6 +137,7 @@
"bitcoin:TDCR": "1.6.2",
"bitcoin:TEST": "1.5.2",
"bitcoin:VIA": "1.6.2",
"bitcoin:VIPS": "1.8.2",
"bitcoin:VTC": "1.6.1",
"bitcoin:XMY": "1.7.1",
"bitcoin:XPM": "1.8.0",
@ -143,6 +146,7 @@
"bitcoin:XZC": "1.6.2",
"bitcoin:ZCL": "1.8.0",
"bitcoin:ZEC": "1.7.1",
"bitcoin:ZNY": "1.8.2",
"bitcoin:tDASH": "1.6.2",
"bitcoin:tGRS": "1.6.2",
"bitcoin:tLTC": "1.6.2",
@ -1225,6 +1229,8 @@
"erc20:ubq:QWARK": "1.6.2",
"erc20:ubq:RICKS": "1.6.2",
"eth:AKA": "1.6.3",
"eth:AQUA": "1.8.2",
"eth:ASK": "1.8.2",
"eth:ATH": "1.6.3",
"eth:ATS": "1.8.0",
"eth:CLO": "1.6.2",
@ -1240,6 +1246,7 @@
"eth:ETSC": "1.6.2",
"eth:EXP": "1.6.2",
"eth:GO": "1.6.2",
"eth:HPB": "1.8.2",
"eth:META": "soon",
"eth:MIX": "1.7.2",
"eth:MUSIC": "1.6.3",
@ -1473,7 +1480,8 @@
"bitcoin:POLIS": "2.1.1",
"bitcoin:PTC": "2.0.8",
"bitcoin:QTUM": "2.1.1",
"bitcoin:REGTEST": "2.1.2",
"bitcoin:REGTEST": "2.1.1",
"bitcoin:RITO": "2.1.1",
"bitcoin:RVN": "2.0.10",
"bitcoin:SMART": "2.0.8",
"bitcoin:TAZ": "2.0.7",
@ -2576,6 +2584,7 @@
"erc20:ubq:RICKS": "2.0.7",
"eth:AKA": "2.0.8",
"eth:AQUA": "2.1.1",
"eth:ASK": "2.1.1",
"eth:ATH": "2.0.8",
"eth:ATS": "2.0.11",
"eth:CLO": "2.0.7",
@ -2602,16 +2611,18 @@
"eth:UBQ": "2.0.7",
"eth:tATS": "2.0.11",
"eth:tETC": "2.0.7",
"eth:tGOR": "2.1.2",
"eth:tGOR": "2.1.1",
"eth:tKOV": "2.0.7",
"eth:tRBTC": "2.0.7",
"eth:tRIN": "2.0.7",
"eth:tROP": "2.0.7",
"misc:ADA": "2.0.8",
"misc:BNB": "soon",
"misc:EOS": "2.1.1",
"misc:LSK": "2.0.7",
"misc:MAID": "2.0.10",
"misc:OMNI": "2.0.10",
"misc:ONT": "soon",
"misc:USDT": "2.0.10",
"misc:WAN": "2.0.7",
"misc:XLM": "2.0.8",

@ -1151,7 +1151,7 @@ def by_name(name: str) -> CoinInfo:
address_type=60,
address_type_p2sh=122,
maxfee_kb=2000000,
signed_message_header="Ravencoin Signed Message:\n",
signed_message_header="Raven Signed Message:\n",
xpub_magic=0x0488b21e,
xpub_magic_segwit_p2sh=None,
xpub_magic_segwit_native=None,
@ -1186,6 +1186,27 @@ def by_name(name: str) -> CoinInfo:
decred=False,
curve_name='secp256k1',
)
elif name == "Ritocoin":
return CoinInfo(
coin_name=name,
coin_shortcut="RITO",
address_type=25,
address_type_p2sh=105,
maxfee_kb=2000000,
signed_message_header="Rito Signed Message:\n",
xpub_magic=0x0534e7ca,
xpub_magic_segwit_p2sh=None,
xpub_magic_segwit_native=None,
bech32_prefix=None,
cashaddr_prefix=None,
slip44=19169,
segwit=False,
fork_id=None,
force_bip143=False,
bip115=False,
decred=False,
curve_name='secp256k1',
)
elif name == "SmartCash":
return CoinInfo(
coin_name=name,

@ -163,6 +163,13 @@ NETWORKS = [
name="EtherInc",
rskip60=False,
),
NetworkInfo(
chain_id=222,
slip44=2221,
shortcut="ASK",
name="Permission",
rskip60=False,
),
NetworkInfo(
chain_id=237,
slip44=237,

File diff suppressed because one or more lines are too long
Loading…
Cancel
Save