It was the Bitcointalk forum that inspired us to create Bitcointalksearch.org - Bitcointalk is an excellent site that should be the default page for anybody dealing in cryptocurrency, since it is a virtual gold-mine of data. However, our experience and user feedback led us create our site; Bitcointalk's search is slow, and difficult to get the results you need, because you need to log in first to find anything useful - furthermore, there are rate limiters for their search functionality.
The aim of our project is to create a faster website that yields more results and faster without having to create an account and eliminate the need to log in - your personal data, therefore, will never be in jeopardy since we are not asking for any of your data and you don't need to provide them to use our site with all of its capabilities.
We created this website with the sole purpose of users being able to search quickly and efficiently in the field of cryptocurrency so they will have access to the latest and most accurate information and thereby assisting the crypto-community at large.
from p2pool.bitcoin import networks
PARENT = networks.nets['emark']
SHARE_PERIOD = 24 # seconds
CHAIN_LENGTH = 7*24*60*60//10 # shares
REAL_CHAIN_LENGTH = 7*24*60*60//10 # shares
TARGET_LOOKBEHIND = 20 # shares
SPREAD = 15 # blocks
IDENTIFIER = '6012865EBAD2C803'.decode('hex') #654d61726b
PREFIX = ''.decode('hex')
P2P_PORT = 5556
MIN_TARGET = 0
MAX_TARGET = 2**256//2**32 - 1
PERSIST = False
WORKER_PORT = 5557
BOOTSTRAP_ADDRS = 'miner-control.de'.split(' ')
ANNOUNCE_CHANNEL = '#p2pool-alt'
VERSION_CHECK = lambda v: 60007 <= v
VERSION_WARNING = lambda v: 'Upgrade eMark to >= 1.1.0.0!' if v < 60007 else None
import os
import platform
from twisted.internet import defer
from .. import data, helper
from p2pool.util import pack
P2P_PREFIX = 'e4e8e9e5'.decode('hex')
P2P_PORT = 5556
ADDRESS_VERSION = 53
RPC_PORT = 6666
RPC_CHECK = defer.inlineCallbacks(lambda bitcoind: defer.returnValue(
'eMarkaddress' in (yield bitcoind.rpc_help()) and
not (yield bitcoind.rpc_getinfo())['testnet']
))
SUBSIDY_FUNC = lambda height: 50*210000000
POW_FUNC = data.hash256
BLOCK_PERIOD = 120 # s
SYMBOL = 'DEM'
CONF_FILE_FUNC = lambda: os.path.join(os.path.join(os.environ['APPDATA'], 'eMark') if platform.system() == 'Windows' else os.path.expanduser('~/Library/Application Support/eMark/') if platform.system() == 'Darwin' else os.path.expanduser('~/.eMark'), 'eMark.conf')
BLOCK_EXPLORER_URL_PREFIX = 'http://85.214.246.63:3009/block/'
ADDRESS_EXPLORER_URL_PREFIX = 'http://85.214.246.63:3009/address/'
TX_EXPLORER_URL_PREFIX = 'http://85.214.246.63:3009/tx/'
SANE_TARGET_RANGE = (2**256//2**32//1000000 - 1, 2**256//2**32 - 1)
DUMB_SCRYPT_DIFF = 1
DUST_THRESHOLD = 0.001e8