Merge branch 'master' of github.com:kyuupichan/electrumx
This commit is contained in:
commit
992fcc7735
@ -1,3 +1,3 @@
|
|||||||
j#!/bin/sh
|
#!/bin/sh
|
||||||
echo "Launching ElectrumX server..."
|
echo "Launching ElectrumX server..."
|
||||||
exec 2>&1 envdir ./env /bin/sh -c 'envuidgid $USERNAME python3 $ELECTRUMX'
|
exec 2>&1 envdir ./env /bin/sh -c 'envuidgid $USERNAME python3 $ELECTRUMX'
|
||||||
|
|||||||
@ -1,5 +1,7 @@
|
|||||||
Installation of Python 3.6
|
#!/bin/sh
|
||||||
--------------------------
|
###########################
|
||||||
|
#Installation of Python 3.6
|
||||||
|
###########################
|
||||||
|
|
||||||
sudo add-apt-repository ppa:jonathonf/python-3.6
|
sudo add-apt-repository ppa:jonathonf/python-3.6
|
||||||
sudo apt-get update && sudo apt-get install python3.6 python3.6-dev
|
sudo apt-get update && sudo apt-get install python3.6 python3.6-dev
|
||||||
|
|||||||
@ -1,3 +1,4 @@
|
|||||||
|
#!/bin/sh
|
||||||
###################
|
###################
|
||||||
# install electrumx
|
# install electrumx
|
||||||
###################
|
###################
|
||||||
|
|||||||
@ -1,3 +1,4 @@
|
|||||||
|
#!/bin/sh
|
||||||
###############
|
###############
|
||||||
# run_electrumx
|
# run_electrumx
|
||||||
###############
|
###############
|
||||||
|
|||||||
20
lib/coins.py
20
lib/coins.py
@ -794,3 +794,23 @@ class Zcash(Coin):
|
|||||||
@classmethod
|
@classmethod
|
||||||
def deserializer(cls):
|
def deserializer(cls):
|
||||||
return DeserializerZcash
|
return DeserializerZcash
|
||||||
|
|
||||||
|
|
||||||
|
class Einsteinium(Coin):
|
||||||
|
NAME = "Einsteinium"
|
||||||
|
SHORTNAME = "EMC2"
|
||||||
|
NET = "mainnet"
|
||||||
|
# TODO add correct values for XPUB, XPRIV
|
||||||
|
XPUB_VERBYTES = bytes.fromhex("0488b21e")
|
||||||
|
XPRV_VERBYTES = bytes.fromhex("0488ade4")
|
||||||
|
P2PKH_VERBYTE = bytes.fromhex("21")
|
||||||
|
P2SH_VERBYTE = bytes.fromhex("05")
|
||||||
|
WIF_BYTE = bytes.fromhex("a1")
|
||||||
|
GENESIS_HASH = ('4e56204bb7b8ac06f860ff1c845f03f9'
|
||||||
|
'84303b5b97eb7b42868f714611aed94b')
|
||||||
|
TX_COUNT = 2087559
|
||||||
|
TX_COUNT_HEIGHT = 1358517
|
||||||
|
TX_PER_BLOCK = 2
|
||||||
|
IRC_PREFIX = "E_"
|
||||||
|
IRC_CHANNEL = "#electrum-emc2"
|
||||||
|
RPC_PORT = 41879
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user