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
# CHAIN_LENGTH = number of shares back client keeps
# REAL_CHAIN_LENGTH = maximum number of shares back client uses to compute payout
# REAL_CHAIN_LENGTH must always be <= CHAIN_LENGTH
# REAL_CHAIN_LENGTH must be changed in sync with all other clients
# changes can be done by changing one, then the other
PARENT = networks.nets['anarchistsprime']
SHARE_PERIOD = 30 # seconds
CHAIN_LENGTH = 24*60*60//1 # server keeps 1 day of shares
REAL_CHAIN_LENGTH = 12*60*60//4 # 3 Hour share chain
TARGET_LOOKBEHIND = 30 # Difficulty adjusts every 10 minutes
SPREAD = 20 # 1 hour payout adjustment at 3 minute blocks
IDENTIFIER = 'fc70035c7a81666f'.decode('hex')
PREFIX = '247666181efcd37b'.decode('hex')
P2P_PORT = 11050
MIN_TARGET = 0
MAX_TARGET = 2**256//2**32 - 1
PERSIST = False
WORKER_PORT = 9666
BOOTSTRAP_ADDRS = 'rav3n.dtdns.net mining.p2pools.com pool.hostv.pl p2pool.org acp.explorer.ssdpool.com 52.16.23.106 52.17.116.144 178.62.102.181 173.16.173.143 104.155.18.57 128.199.111.217 109.88.89.62 58.7.251.128'.split(' ')
ANNOUNCE_CHANNEL = '#p2pool-alt'
VERSION_CHECK = lambda v: True
import os
import platform
from twisted.internet import defer
from .. import data, helper
from p2pool.util import pack
P2P_PREFIX = 'f9beb4d9'.decode('hex')
P2P_PORT = 11050
ADDRESS_VERSION = 0
RPC_PORT = 21050
RPC_CHECK = defer.inlineCallbacks(lambda bitcoind: defer.returnValue(
'anarchistsprimeaddress' in (yield bitcoind.rpc_help()) and
not (yield bitcoind.rpc_getinfo())['testnet']
))
SUBSIDY_FUNC = lambda height: 32*53760000 >> (height + 1)//840000
POW_FUNC = data.hash256
BLOCK_PERIOD = 180 # s
SYMBOL = 'ACP'
CONF_FILE_FUNC = lambda: os.path.join(os.path.join(os.environ['APPDATA'], 'anarchistsprime') if platform.system() == 'Windows' else os.path.expanduser('~/Library/Application Support/AnarchistsPrime/') if platform.system() == 'Darwin' else os.path.expanduser('~/.anarchistsprime'), 'anarchistsprime.conf')
BLOCK_EXPLORER_URL_PREFIX = 'http://acp.explorer.ssdpool.com:9150/block/'
ADDRESS_EXPLORER_URL_PREFIX = 'http://acp.explorer.ssdpool.com:9150/address/'
TX_EXPLORER_URL_PREFIX = 'http://acp.explorer.ssdpool.com:9150/tx/'
SANE_TARGET_RANGE = (2**256//2**32//1000000 - 1, 2**256//2**32 - 1)
DUMB_SCRYPT_DIFF = 1
DUST_THRESHOLD = 0.001e8