|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
|
|
|
# Copyright (c) 2019-2020 tecnovert
|
|
|
|
# Distributed under the MIT software license, see the accompanying
|
|
|
|
# file LICENSE or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
|
|
|
from enum import IntEnum
|
|
|
|
from .util import (
|
|
|
|
COIN,
|
|
|
|
format_amount,
|
|
|
|
make_int
|
|
|
|
)
|
|
|
|
|
|
|
|
XMR_COIN = 10 ** 12
|
|
|
|
|
|
|
|
|
|
|
|
class Coins(IntEnum):
|
|
|
|
PART = 1
|
|
|
|
BTC = 2
|
|
|
|
LTC = 3
|
|
|
|
# DCR = 4
|
|
|
|
NMC = 5
|
|
|
|
XMR = 6
|
|
|
|
|
|
|
|
|
|
|
|
chainparams = {
|
|
|
|
Coins.PART: {
|
|
|
|
'name': 'particl',
|
|
|
|
'ticker': 'PART',
|
|
|
|
'message_magic': 'Bitcoin Signed Message:\n',
|
|
|
|
'blocks_target': 60 * 2,
|
|
|
|
'decimal_places': 8,
|
|
|
|
'mainnet': {
|
|
|
|
'rpcport': 51735,
|
|
|
|
'pubkey_address': 0x38,
|
|
|
|
'script_address': 0x3c,
|
|
|
|
'key_prefix': 0x6c,
|
|
|
|
'hrp': 'pw',
|
|
|
|
'bip44': 44,
|
|
|
|
'min_amount': 1000,
|
|
|
|
'max_amount': 100000 * COIN,
|
|
|
|
},
|
|
|
|
'testnet': {
|
|
|
|
'rpcport': 51935,
|
|
|
|
'pubkey_address': 0x76,
|
|
|
|
'script_address': 0x7a,
|
|
|
|
'key_prefix': 0x2e,
|
|
|
|
'hrp': 'tpw',
|
|
|
|
'bip44': 1,
|
|
|
|
'min_amount': 1000,
|
|
|
|
'max_amount': 100000 * COIN,
|
|
|
|
},
|
|
|
|
'regtest': {
|
|
|
|
'rpcport': 51936,
|
|
|
|
'pubkey_address': 0x76,
|
|
|
|
'script_address': 0x7a,
|
|
|
|
'key_prefix': 0x2e,
|
|
|
|
'hrp': 'rtpw',
|
|
|
|
'bip44': 1,
|
|
|
|
'min_amount': 1000,
|
|
|
|
'max_amount': 100000 * COIN,
|
|
|
|
}
|
|
|
|
},
|
|
|
|
Coins.BTC: {
|
|
|
|
'name': 'bitcoin',
|
|
|
|
'ticker': 'BTC',
|
|
|
|
'message_magic': 'Bitcoin Signed Message:\n',
|
|
|
|
'blocks_target': 60 * 10,
|
|
|
|
'decimal_places': 8,
|
|
|
|
'mainnet': {
|
|
|
|
'rpcport': 8332,
|
|
|
|
'pubkey_address': 0,
|
|
|
|
'script_address': 5,
|
|
|
|
'key_prefix': 128,
|
|
|
|
'hrp': 'bc',
|
|
|
|
'bip44': 0,
|
|
|
|
'min_amount': 1000,
|
|
|
|
'max_amount': 100000 * COIN,
|
|
|
|
},
|
|
|
|
'testnet': {
|
|
|
|
'rpcport': 18332,
|
|
|
|
'pubkey_address': 111,
|
|
|
|
'script_address': 196,
|
|
|
|
'key_prefix': 239,
|
|
|
|
'hrp': 'tb',
|
|
|
|
'bip44': 1,
|
|
|
|
'min_amount': 1000,
|
|
|
|
'max_amount': 100000 * COIN,
|
|
|
|
'name': 'testnet3',
|
|
|
|
},
|
|
|
|
'regtest': {
|
|
|
|
'rpcport': 18443,
|
|
|
|
'pubkey_address': 111,
|
|
|
|
'script_address': 196,
|
|
|
|
'key_prefix': 239,
|
|
|
|
'hrp': 'bcrt',
|
|
|
|
'bip44': 1,
|
|
|
|
'min_amount': 1000,
|
|
|
|
'max_amount': 100000 * COIN,
|
|
|
|
}
|
|
|
|
},
|
|
|
|
Coins.LTC: {
|
|
|
|
'name': 'litecoin',
|
|
|
|
'ticker': 'LTC',
|
|
|
|
'message_magic': 'Litecoin Signed Message:\n',
|
|
|
|
'blocks_target': 60 * 1,
|
|
|
|
'decimal_places': 8,
|
|
|
|
'mainnet': {
|
|
|
|
'rpcport': 9332,
|
|
|
|
'pubkey_address': 48,
|
|
|
|
'script_address': 50,
|
|
|
|
'key_prefix': 176,
|
|
|
|
'hrp': 'ltc',
|
|
|
|
'bip44': 2,
|
|
|
|
'min_amount': 1000,
|
|
|
|
'max_amount': 100000 * COIN,
|
|
|
|
},
|
|
|
|
'testnet': {
|
|
|
|
'rpcport': 19332,
|
|
|
|
'pubkey_address': 111,
|
|
|
|
'script_address': 58,
|
|
|
|
'key_prefix': 239,
|
|
|
|
'hrp': 'tltc',
|
|
|
|
'bip44': 1,
|
|
|
|
'min_amount': 1000,
|
|
|
|
'max_amount': 100000 * COIN,
|
|
|
|
'name': 'testnet4',
|
|
|
|
},
|
|
|
|
'regtest': {
|
|
|
|
'rpcport': 19443,
|
|
|
|
'pubkey_address': 111,
|
|
|
|
'script_address': 58,
|
|
|
|
'key_prefix': 239,
|
|
|
|
'hrp': 'rltc',
|
|
|
|
'bip44': 1,
|
|
|
|
'min_amount': 1000,
|
|
|
|
'max_amount': 100000 * COIN,
|
|
|
|
}
|
|
|
|
},
|
|
|
|
Coins.NMC: {
|
|
|
|
'name': 'namecoin',
|
|
|
|
'ticker': 'NMC',
|
|
|
|
'message_magic': 'Namecoin Signed Message:\n',
|
|
|
|
'blocks_target': 60 * 10,
|
|
|
|
'decimal_places': 8,
|
|
|
|
'mainnet': {
|
|
|
|
'rpcport': 8336,
|
|
|
|
'pubkey_address': 52,
|
|
|
|
'script_address': 13,
|
|
|
|
'hrp': 'nc',
|
|
|
|
'bip44': 7,
|
|
|
|
'min_amount': 1000,
|
|
|
|
'max_amount': 100000 * COIN,
|
|
|
|
},
|
|
|
|
'testnet': {
|
|
|
|
'rpcport': 18336,
|
|
|
|
'pubkey_address': 111,
|
|
|
|
'script_address': 196,
|
|
|
|
'hrp': 'tn',
|
|
|
|
'bip44': 1,
|
|
|
|
'min_amount': 1000,
|
|
|
|
'max_amount': 100000 * COIN,
|
|
|
|
'name': 'testnet3',
|
|
|
|
},
|
|
|
|
'regtest': {
|
|
|
|
'rpcport': 18443,
|
|
|
|
'pubkey_address': 111,
|
|
|
|
'script_address': 196,
|
|
|
|
'hrp': 'ncrt',
|
|
|
|
'bip44': 1,
|
|
|
|
'min_amount': 1000,
|
|
|
|
'max_amount': 100000 * COIN,
|
|
|
|
}
|
|
|
|
},
|
|
|
|
Coins.XMR: {
|
|
|
|
'name': 'monero',
|
|
|
|
'ticker': 'XMR',
|
|
|
|
'client': 'xmr',
|
|
|
|
'decimal_places': 12,
|
|
|
|
'mainnet': {
|
|
|
|
'rpcport': 18081,
|
|
|
|
'walletrpcport': 18082,
|
|
|
|
'min_amount': 100000,
|
|
|
|
'max_amount': 10000 * XMR_COIN,
|
|
|
|
},
|
|
|
|
'testnet': {
|
|
|
|
'rpcport': 28081,
|
|
|
|
'walletrpcport': 28082,
|
|
|
|
'min_amount': 100000,
|
|
|
|
'max_amount': 10000 * XMR_COIN,
|
|
|
|
},
|
|
|
|
'regtest': {
|
|
|
|
'rpcport': 18081,
|
|
|
|
'walletrpcport': 18082,
|
|
|
|
'min_amount': 100000,
|
|
|
|
'max_amount': 10000 * XMR_COIN,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
class CoinInterface:
|
|
|
|
def __init__(self):
|
|
|
|
self._unknown_wallet_seed = True
|
|
|
|
|
|
|
|
def make_int(self, amount_in, r=0):
|
|
|
|
return make_int(amount_in, self.exp(), r=r)
|
|
|
|
|
|
|
|
def format_amount(self, amount_in, conv_int=False):
|
|
|
|
amount_int = make_int(amount_in, self.exp()) if conv_int else amount_in
|
|
|
|
return format_amount(amount_int, self.exp())
|
|
|
|
|
|
|
|
def coin_name(self):
|
|
|
|
return chainparams[self.coin_type()]['name'].capitalize()
|
|
|
|
|
|
|
|
def ticker(self):
|
|
|
|
return chainparams[self.coin_type()]['ticker']
|
|
|
|
|
|
|
|
def setWalletSeedWarning(self, value):
|
|
|
|
self._unknown_wallet_seed = value
|
|
|
|
|
|
|
|
def knownWalletSeed(self):
|
|
|
|
return not self._unknown_wallet_seed
|