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.
# Do not modify this file. Instead, create a nas.properties file with only the properties
# you need to change, and set them there. The values in nas.properties override those in
# nas-default.properties.
#### PEER NETWORKING ####
# Announce my IP address/hostname to peers and allow them to share it with other peers.
# If disabled, peer networking servlet will not be started at all.
nas.shareMyAddress=true
# Port for incoming peer to peer networking requests, if enabled.
nas.peerServerPort=7871
# Host interface on which to listen for peer networking requests, default all.
# Use 0.0.0.0 to listen on all IPv4 interfaces or :: to listen on all IPv4 and IPv6 interfaces
nas.peerServerHost=0.0.0.0
# My externally visible IP address or host name, to be announced to peers.
# It can optionally include a port number, which will also be announced to peers,
# and may be different from nas.peerServerPort (useful if you do port forwarding behind a router).
nas.myAddress=
# My platform, to be announced to peers.
nas.myPlatform=PC
# My hallmark, if available.
nas.myHallmark=
# A list of well known peer addresses / host names, separated by '; '.
nas.wellKnownPeers=
# Known bad peers to be blacklisted
nas.knownBlacklistedPeers=
# Peers used for testnet only.
nas.testnetPeers=bug.airdns.org; node10.mynxtcoin.org; node9.mynxtcoin.org
# Maintain active connections with at least that many peers.
nas.maxNumberOfConnectedPublicPeers=20
# Peer networking connect timeout for outgoing connections.
nas.connectTimeout=10000
# Peer networking read timeout for outgoing connections.
nas.readTimeout=20000
# Peer networking server idle timeout, milliseconds.
nas.peerServerIdleTimeout=30000
# Use the peer hallmark to only connect with peers above the defined push/pull hallmark thresholds.
nas.enableHallmarkProtection=true
# Hallmark threshold to use when sending data to peers.
nas.pushThreshold=0
# Hallmark threshold to use when requesting data from peers.
nas.pullThreshold=0
# Blacklist peers for 600000 milliseconds (i.e. 10 minutes by default).
nas.blacklistingPeriod=600000
# Consider a new transaction or block sent after 10 peers have received it.
nas.sendToPeersLimit=10
# Enable the Jetty Denial of Service Filter for the peer networking server.
nas.enablePeerServerDoSFilter=true
# Use testnet, leave set to false unless you are really testing.
# Never unlock your real accounts on testnet! Use separate accounts for testing only.
# When using testnet, all custom port settings will be ignored,
# and hardcoded ports of 6874 (peer networking), 6875 (UI) and 6876 (API) will be used.
nas.isTestnet=false
# Save known peers in the database
nas.savePeers=true
# Set to false to disable use of the peers database. This will not delete saved peers.
nas.usePeersDb=true
#### API SERVER ####
# Accept http/json API requests.
nas.enableAPIServer=true
# Hosts from which to allow http/json API requests, if enabled.
nas.allowedBotHosts=127.0.0.1; localhost; [0:0:0:0:0:0:0:1];
# Port for http/json API requests.
nas.apiServerPort=7873
# Host interface on which to listen for http/json API request, default localhost only.
# Set to 0.0.0.0 to allow the API server to accept requests from all network interfaces.
nas.apiServerHost=127.0.0.1
# Idle timeout for http/json API request connections, milliseconds.
nas.apiServerIdleTimeout=30000
# Directory with html and javascript files for the new client UI, and admin tools utilizing
# the http/json API.
nas.apiResourceBase=html/ui
# Java API documentation directory, optional.
nas.javadocResourceBase=html/doc
# Enable Cross Origin Filter for the API server.
nas.apiServerCORS=false
# Enable SSL for the API server (also need to set nas.keyStorePath and nas.keyStorePassword).
nas.apiSSL=false
# Enforce requests that require POST to only be accepted when submitted as POST.
nas.apiServerEnforcePOST=true
#### NRS USER INTERFACE ####
# Enable the deprecated NRS user interface.
nas.enableUIServer=false
# Hosts from which to allow NRS user interface requests, if enabled.
nas.allowedUserHosts=127.0.0.1; localhost; [0:0:0:0:0:0:0:1];
# Port for NRS user interface server.
nas.uiServerPort=7872
# Host interface for NRS user interface server, default localhost only.
# Set to 0.0.0.0 to allow the UI to be accessed on all network interfaces.
nas.uiServerHost=127.0.0.1
# Idle timeout for NRS user interface server, milliseconds.
nas.uiServerIdleTimeout=30000
# Directory with html and javascript files for the NRS client user interface.
nas.uiResourceBase=html/nrs
# Enable Cross Origin Filter for NRS user interface server.
nas.uiServerCORS=false
# Enable SSL for the NRS user interface (also need to set nas.keyStorePath and nas.keyStorePassword).
nas.uiSSL=false
# Enforce requests that require POST to only be accepted when submitted as POST.
nas.uiServerEnforcePOST=true
#### DEBUGGING ####
# Log file, will be overwritten at every restart.
nas.log=nas.log
# Enable debug log output.
nas.debug=false
# Enable logging of exception stack traces.
nas.enableStackTraces=true
# Enable logging of Jetty messages.
nas.debugJetty=false
# Used for debugging peer to peer communications.
nas.communicationLoggingMask=0
# Track balances of the following accounts for debugging purposes.
nas.debugTraceAccounts=
# File name for logging tracked account balances
nas.debugTraceLog=nas-trace.csv
# Separator character for trace log
nas.debugTraceSeparator=\t
# Quote character for trace log
nas.debugTraceQuote="
#### DATABASE ####
# Database connection JDBC url, see the H2 documentation for possible customizations.
# Append ;AUTO_SERVER=TRUE to enable automatic mixed mode access.
# The nxt_db folder is expected to be in the current working directory, will be created if missing.
nas.dbUrl=jdbc:h2:nas_db/nas;DB_CLOSE_ON_EXIT=FALSE
# Database connection JDBC url to use with the test network, if isTestnet=true
nas.testDbUrl=jdbc:h2:nas_test_db/nas;DB_CLOSE_ON_EXIT=FALSE
# Database connection timeout in seconds.
nas.dbLoginTimeout=70
# Database default lock timeout in seconds.
nas.dbDefaultLockTimeout=60
# Maximum simultaneous database connections.
nas.maxDbConnections=30
# The memory allocated to database cache, in kB.
# If set to 0, defaults to 50 % of the memory available to the JVM.
nas.dbCacheKB=0
#### JETTY ####
# Settings for the Jetty Denial Of Service Filter, used for the peer networking server only.
nas.peerServerDoSFilter.maxRequestsPerSec=30
nas.peerServerDoSFilter.delayMs=1000
nas.peerServerDoSFilter.maxRequestMs=300000
# keystore file and password, required if uiSSL or apiSSL are enabled.
nas.keyStorePath=keystore
nas.keyStorePassword=password
nas.myAddress=
nas.myPlatform=PC
nas.myHallmark=
nas.wellKnownPeers=99.227.137.145;222.92.62.194;nxtnode.ddns.net;cb2.flipflop.mooo.com;flipflop.mooo.com;patapato.ddns.net;89.247.173.211;89.247.163.145;62.42.108.235
nas.debug=false
nas.enableStackTraces=true
nas.debugJetty=false
IF EXIST java (
for %%X in (java.exe) do (set IS_JAVA_IN_PATH=%%~$PATH:X)
IF defined IS_JAVA_IN_PATH (
SenderPublicKey: c81c7a26f496ca23486ad5d3e55b7310812b887b35a3452f1f60ecbb6441675f
Signature: fc48fa79b83b4adcbe274b585bf8d643fcfa5f20ccad8d3125e33b49464a5e08f78caeb952c8f628ee98d4a51ca2ea1f0b48dab723739135bd731560812f789b
FeeNQT: 100000000
Type: 0
Confirmations: 53
FullHash: 035d8a2dd653dadb5191acf206d57ae940329e248009e6882a67b4ce06aa88d5
SignatureHash: 9519cb9c41e3592c6e5438502f289b560bc9a849ab2f4a968e1f0a9a75b30e4b
SenderRS: NAS-H5AW-7J9F-7VCY-DJ8NB
Subtype: 0
AmountNQT: 2000000000
Sender: 13029142609628990748
RecipientRS: NAS-VBK9-5ZXA-CJQ8-GEWVU
Recipient: 17109047578379265575
Block: 320087056910960173
BlockTimestamp: 28678874
Deadline: 1440
Timestamp: 28678845
Height: 233222
PayloadLength: 209
TotalAmountNQT: 0
Generator: 5802728473452724205
BaseTarget: 28718327414
GeneratorRS: NAS-5HZF-TPQ5-GSHF-7GV33
NextBlock: 8167957520048415331
NumberOfTransactions: 1
BlockSignature: 11a17e3a065467f92478f63967c115112fc797c1546f1f38a4c6819aa40fed0d42c6abb87ca93fbe6ffa1680a70625daa4f4020b5115b60454e93cc7f52eff1c
Version: 3
TotalFeeNQT: 100000000
PreviousBlock: 6302124221230908110
Height: 233222
Timestamp: 28679076
SenderPublicKey: c81c7a26f496ca23486ad5d3e55b7310812b887b35a3452f1f60ecbb6441675f
Signature: fc48fa79b83b4adcbe274b585bf8d643fcfa5f20ccad8d3125e33b49464a5e08f78caeb952c8f628ee98d4a51ca2ea1f0b48dab723739135bd731560812f789b
FeeNQT: 100000000
Type: 0
Confirmations: 53
FullHash: 035d8a2dd653dadb5191acf206d57ae940329e248009e6882a67b4ce06aa88d5
SignatureHash: 9519cb9c41e3592c6e5438502f289b560bc9a849ab2f4a968e1f0a9a75b30e4b
SenderRS: NAS-H5AW-7J9F-7VCY-DJ8NB
Subtype: 0
AmountNQT: 2000000000
Sender: 13029142609628990748
RecipientRS: NAS-VBK9-5ZXA-CJQ8-GEWVU
Recipient: 17109047578379265575
Block: 320087056910960173
BlockTimestamp: 28678874
Deadline: 1440
Timestamp: 28678845
Height: 233222
NAS-VBK9-5ZXA-CJQ8-GEWVU
NAS-VBK9-5ZXA-CJQ8-GEWVU
NAS-VBK9-5ZXA-CJQ8-GEWVU