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.
namecoind name_scan d/bluishcoder 1
[
{
"name" : "d/bluishcoder",
"value" : "{\"map\":{\"\":\"69.164.206.88\"}}",
"txid" : "ebad6e9dfcb8d1204a49a6da089f6a102ea5779612c745d94766153215bc9a3f",
"expires_in" : 27317
}
]
[pentarh@pentbook src]$ ./namecoind name_history d/bit
[
{
"name" : "d/bit",
"value" : "[email protected]",
"txid" : "c584be36a35b152c87c356b9efe4499d5e6e00bc26fed5d3324ce1582fa5cc9a",
"address" : "N4u9f2h52Ft44Qe5bfo91xxMNLn1VC82au",
"expires_in" : -27256,
"expired" : 1
},
{
"name" : "d/bit",
"value" : "Krecovery",
"txid" : "f7331a599cf4e59dbe30172822889ea87057ee75f1a3a48dcafe0621be10b4dc",
"address" : "NG8iqBEqX85odxxjJCcFqyAGfVzF38TobT",
"expires_in" : -26589,
"expired" : 1
},
{
"name" : "d/bit",
"value" : "{\"map\": {\"\": \"78.47.86.43\", \"www\": \"78.47.86.43\"}}",
"txid" : "988e3a9805fc60f1fbe30fbdb061a79bd6e73f5cbff039dbdd4cde1925cef855",
"address" : "N32tEoKFnrtsbKBredM56BjxD4KmGtTdfH",
"expires_in" : -17393,
"expired" : 1
},
{
"name" : "d/bit",
"value" : "{\"ip\": \"78.47.86.43\", \"email\": \"[email protected]\", \"info\": { \"status\": \"For sale.\" }, \"map\": {\"\": \"78.47.86.43\", \"www\": \"78.47.86.43\"}}",
"txid" : "bb12684745370c4d785a640fdb1d2dfbe1f6a0ef41ff55f5b18b9c1f331ce614",
"address" : "MzMm4F3mRA9hMpa7ABN9nZCZAq3JWd4UWA",
"expires_in" : 11258
},
{
"name" : "d/bit",
"value" : "{\"ip\": \"78.47.86.43\", \"email\": \"[email protected]\", \"info\": { \"status\": \"For sale.\" }, \"map\": {\"\": \"78.47.86.43\", \"www\": \"78.47.86.43\"}}",
"txid" : "9b091fbb236b59de79f926c32b77b0348e34db5c6de3fe69dc2edd252e757d61",
"address" : "N4yKKfvMjF9NX4PNzPguiPbegMmzjhiLJ1",
"expires_in" : 22440
}
]
[pentarh@pentbook src]$ ./namecoind name_resolve d/bit
[
{
"name" : "d/bit",
"value" : "{\"ip\": \"78.47.86.43\", \"email\": \"[email protected]\", \"info\": { \"status\": \"For sale.\" }, \"map\": {\"\": \"78.47.86.43\", \"www\": \"78.47.86.43\"}}",
"txid" : "bb12684745370c4d785a640fdb1d2dfbe1f6a0ef41ff55f5b18b9c1f331ce614",
"address" : "MzMm4F3mRA9hMpa7ABN9nZCZAq3JWd4UWA",
"expires_in" : 11258
},
{
"name" : "d/bit",
"value" : "{\"ip\": \"78.47.86.43\", \"email\": \"[email protected]\", \"info\": { \"status\": \"For sale.\" }, \"map\": {\"\": \"78.47.86.43\", \"www\": \"78.47.86.43\"}}",
"txid" : "9b091fbb236b59de79f926c32b77b0348e34db5c6de3fe69dc2edd252e757d61",
"address" : "N4yKKfvMjF9NX4PNzPguiPbegMmzjhiLJ1",
"expires_in" : 22440
}
]
--- namecoin.cpp.old 2012-01-25 04:34:52.000000000 +0200
+++ namecoin.cpp.new 2012-01-25 02:01:06.000000000 +0200
@@ -677,6 +677,61 @@
return oRes;
}
+
+Value name_resolve(const Array& params, bool fHelp)
+{
+ if (fHelp || params.size() < 1)
+ throw runtime_error(
+ "name_resolve\n"
+ "Return an active name record.\n");
+
+ Array oRes;
+ vectorvchName = vchFromValue(params[0]);
+ string name = stringFromVch(vchName);
+ CRITICAL_BLOCK(cs_main)
+ {
+ vectorvtxPos;
+ CNameDB dbName("r");
+ if (!dbName.ReadName(vchName, vtxPos))
+ throw JSONRPCError(-4, "failed to read from name DB");
+
+ CDiskTxPos txPos;
+ BOOST_FOREACH(txPos, vtxPos)
+ {
+ CTransaction tx;
+ if (!tx.ReadFromDisk(txPos))
+ {
+ error("could not read txpos %s", txPos.ToString().c_str());
+ continue;
+ }
+
+ Object oName;
+ vectorvchValue;
+ int nHeight;
+ uint256 hash;
+ if (!txPos.IsNull() && GetValueOfTxPos(txPos, vchValue, hash, nHeight))
+ {
+ if(nHeight + GetDisplayExpirationDepth(nHeight) - pindexBest->nHeight <= 0)
+ {
+ // Not returning expired record
+ continue;
+ }
+ oName.push_back(Pair("name", name));
+ string value = stringFromVch(vchValue);
+ oName.push_back(Pair("value", value));
+ oName.push_back(Pair("txid", tx.GetHash().GetHex()));
+ string strAddress = "";
+ GetNameAddress(txPos, strAddress);
+ oName.push_back(Pair("address", strAddress));
+ oName.push_back(Pair("expires_in", nHeight + GetDisplayExpirationDepth(nHeight) - pindexBest->nHeight));
+ oRes.push_back(oName);
+ }
+ }
+ }
+ return oRes;
+}
+
+
Value name_scan(const Array& params, bool fHelp)
{
if (fHelp || params.size() > 2)
@@ -1197,6 +1252,7 @@
mapCallTable.insert(make_pair("name_list", &name_list));
mapCallTable.insert(make_pair("name_scan", &name_scan));
mapCallTable.insert(make_pair("name_history", &name_history));
+ mapCallTable.insert(make_pair("name_resolve", &name_resolve));
mapCallTable.insert(make_pair("name_debug", &name_debug));
mapCallTable.insert(make_pair("name_debug1", &name_debug1));
mapCallTable.insert(make_pair("name_clean", &name_clean));
[pentarh@pentbook src]$ ./namecoind name_resolve d/pent
[
{
"name" : "d/pent",
"value" : "{ \"ip\" : \"192.168.1.1\", \"ip6\" : \"2001:4860:0:1001::68\", \"i2p\": { \"destination\": \"s2bzxafMCmDEujaZF44c558MBqYKC95YvoTqNaqMVGIoV68BUlCQu4Z6pjmuxSptHWo38LPx55nEqLLaKFljX7yr30o-iRBwsIev5M1HeX62YVJYxTP5acUxTKaG15dLwKLXRsqeHES8g21vwbz9LsHYsDR9IOYaJFnsBIOfLK4H5GYgcdogazZcuSvVrvX7jdpleGI7g6I81vzuGD0X0NZ~tpj~gypQsomwIZUYknTiaZ37X9TV7DpRbeYkevX7qnSX3odnk007Lhgrt2vN07-DpUHQLmTgr-GbYUVT0Xq-PB5Q2Oi5Rfl1MKQGQ7WXQyVW7MwmQpwgFMMqzQM8SDHqpqrxpsv3VHZ~GIkcKU4rlPazOzxan6PLmvaPigtbKJ0MCHUwD~zHAU~26DuSkRLvquCtxKqfOWE5z8JyaN~zxHivj7X8J7YpibXJdD53RcQ7ozsz9bvOTi0kQItuLR9ROlrxEfReUmWr0VKaCgmV4OvLfyi8~034nj7NAdKeAAAA\", \"name\" : \"example.i2p\", \"b32\" : \"b4szsgxsqgzqg76y3gcxolir54pwjokjjkbane645myukzqrbyoq.b32.i2p\" }, \"map\" : { \"www\": { \"ip\" : \"192.168.1.2\", \"ip6\" : \"2001:4860:0:1001::69\", \"i2p\": { \"name\" : \"example.i2p\", \"b32\" : \"b4szsgxsqgzqg76y3gcxolir54pwjokjjkbane645myukzqrbyoq.b32.i2p\" } } } }",
"txid" : "f4d4b0849517767b2ef820a513902ee8dde87bd4794a2599198ed4f0b68a36f0",
"address" : "N7t7sLxHzA7tiXYMExKtBgb4jGX12cHiYN",
"expires_in" : 36000
}
]
"i2p": {
"destination": "XaZscx...0jGAAAA"
"name" : "example.i2p"
"b32" : "ukeu...nkdq.b32.i2p"
}
"i2p": {
"destination": "XaZscx...0jGAAAA"
"name" : "example.i2p"
"b32" : "ukeu...nkdq.b32.i2p"
}
[root@server ~]$ ./namecoind name_scan d/i2psupport 1
[
{
"name" : "d/i2psupport",
"value" : "{\"i2p\": { \"destination\": \"SN8pNsF~NHZek2NRUootxO465FnrcpZcdcRzQXGvjmwXER7HQKw5j~S4mEZuFEFMWTDXI3MTACJfN9y87sLBPHnJA0CEXjYKf2hM4YNJ2fLUXCZi0uLDaW-rUz4vEpUJF1-rcE~D4tiFO-2MKVNJLoGKvO87808XL0ejtdNCE-apxOWsGNBmxDdOM6dPx~F6tzmA-m8EeAzXvE-ZD8Q5yQX2dIiDXTFRTgfKQG0acyuNwBOWxRb2MvyoyxiKQFhcn2V~jR0Ub4~1eHNMq-308j1d1nZNPEPxnQPcMYY22lU427GASGYMOpngFH-Z8l1cKpiBAYCvDR1kvUASctLfBIE9U3IWRsYhQHhMPi5ZPuWNkM5U5oH4DXPctDmDsiIAtB-l4vUWTTkxmwU0~65URyb4EDFEVzcfmZuD0xMCq8Me9q1OgkhfIjdoCC-35D8cKPygCMdfZh4ZOHg932NmNLT5fTaKIiri~MSl4GwQPdC27iV7DRDZJV0YrjhIYJccAAAA\" } }",
"txid" : "9f4903a2061d78398842619e49aacfca0e2021d3e2fd2ebc8d06f9effb311b27",
"address" : "MxR1e7obQ5KcuaofuzXbceL3Aj1wfWME7v",
"expires_in" : 35983
}
]