Tweaks for prior; update README.
This commit is contained in:
parent
1aa55f2976
commit
540479ad23
@ -141,6 +141,11 @@ version prior to the release of 1.0.
|
|||||||
ChangeLog
|
ChangeLog
|
||||||
=========
|
=========
|
||||||
|
|
||||||
|
Version 0.10.3
|
||||||
|
--------------
|
||||||
|
|
||||||
|
* add Argentum and Digibyte support to coins.py (protonn)
|
||||||
|
|
||||||
Version 0.10.2
|
Version 0.10.2
|
||||||
--------------
|
--------------
|
||||||
|
|
||||||
|
|||||||
12
lib/coins.py
12
lib/coins.py
@ -426,6 +426,7 @@ class DashTestnet(Dash):
|
|||||||
RPC_PORT = 19998
|
RPC_PORT = 19998
|
||||||
IRC_PREFIX = "d_"
|
IRC_PREFIX = "d_"
|
||||||
|
|
||||||
|
|
||||||
class Argentum(Coin):
|
class Argentum(Coin):
|
||||||
NAME = "Argentum"
|
NAME = "Argentum"
|
||||||
SHORTNAME = "ARG"
|
SHORTNAME = "ARG"
|
||||||
@ -442,7 +443,8 @@ class Argentum(Coin):
|
|||||||
TX_PER_BLOCK = 2000
|
TX_PER_BLOCK = 2000
|
||||||
IRC_PREFIX = "A_"
|
IRC_PREFIX = "A_"
|
||||||
IRC_CHANNEL = "#electrum-arg"
|
IRC_CHANNEL = "#electrum-arg"
|
||||||
RPC_PORT = 13580
|
RPC_PORT = 13581
|
||||||
|
|
||||||
|
|
||||||
class ArgentumTestnet(Argentum):
|
class ArgentumTestnet(Argentum):
|
||||||
SHORTNAME = "XRG"
|
SHORTNAME = "XRG"
|
||||||
@ -454,6 +456,7 @@ class ArgentumTestnet(Argentum):
|
|||||||
WIF_BYTE = 0xef
|
WIF_BYTE = 0xef
|
||||||
REORG_LIMIT = 2000
|
REORG_LIMIT = 2000
|
||||||
|
|
||||||
|
|
||||||
class DigiByte(Coin):
|
class DigiByte(Coin):
|
||||||
NAME = "DigiByte"
|
NAME = "DigiByte"
|
||||||
SHORTNAME = "DGB"
|
SHORTNAME = "DGB"
|
||||||
@ -470,11 +473,10 @@ class DigiByte(Coin):
|
|||||||
TX_PER_BLOCK = 1000
|
TX_PER_BLOCK = 1000
|
||||||
IRC_PREFIX = "DE_"
|
IRC_PREFIX = "DE_"
|
||||||
IRC_CHANNEL = "#electrum-dgb"
|
IRC_CHANNEL = "#electrum-dgb"
|
||||||
RPC_PORT = 12024
|
RPC_PORT = 12022
|
||||||
|
|
||||||
|
|
||||||
class DigiByteTestnet(DigiByte):
|
class DigiByteTestnet(DigiByte):
|
||||||
SHORTNAME = "DGB"
|
|
||||||
NET = "testnet"
|
NET = "testnet"
|
||||||
XPUB_VERBYTES = bytes.fromhex("043587cf")
|
XPUB_VERBYTES = bytes.fromhex("043587cf")
|
||||||
XPRV_VERBYTES = bytes.fromhex("04358394")
|
XPRV_VERBYTES = bytes.fromhex("04358394")
|
||||||
@ -485,5 +487,5 @@ class DigiByteTestnet(DigiByte):
|
|||||||
'e2a444af34c447dbd0916fa3430a68c2')
|
'e2a444af34c447dbd0916fa3430a68c2')
|
||||||
IRC_PREFIX = "DET_"
|
IRC_PREFIX = "DET_"
|
||||||
IRC_CHANNEL = "#electrum-dgb"
|
IRC_CHANNEL = "#electrum-dgb"
|
||||||
RPC_PORT = 13024
|
RPC_PORT = 15022
|
||||||
REORG_LIMIT = 2000
|
REORG_LIMIT = 2000
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user