yep or reddit, twitter, steam... lol i should make a bitcointalk thread tipbot haha
but yeah, the good news is the electrum stuff is almost ready for public release =]
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.
user@pc:~$ ./dogecoindarkd getrawtransaction 3dbf37b079c058a6b9ff7a4b582c6acd4497ea0e8288b46449907f64cb9b6947
01000000cafb3654010000000000000000000000000000000000000000000000000000000000000000ffffffff0c0230010107062f503253482fffffffff0100d0ed902e000000232103955ef98da45972644d075dc26a0dfcedd44e4f15e4bdea3746472362453fced3ac00000000
Break it down...
01000000 -- version
ca -- varint tx in count (202) This is in all probability wrong also but not where it fails
fb36540100000000000000000000000000000000000000000000000000000000 -- txin prev out hash
00000000 -- txin prev out index
ff -- varint uint64
ffffff0c02300101 -- uint64 (72391854380810239) it proceeds to read 72391854380810239 bytes and fails
07062f503253482fffffffff0100d0ed902e000000232103955ef98da45972644d075dc26a0dfcedd44e4f15e4bdea3746472362453fced3ac00000000 -- doesn't get parsed as it's read in the giant read
However when dogecoindarkd parses it we get
user@pc:~$ ./dogecoindarkd decoderawtransaction 01000000cafb3654010000000000000000000000000000000000000000000000000000000000000000ffffffff0c0230010107062f503253482fffffffff0100d0ed902e000000232103955ef98da45972644d075dc26a0dfcedd44e4f15e4bdea3746472362453fced3ac00000000
{
"txid" : "3dbf37b079c058a6b9ff7a4b582c6acd4497ea0e8288b46449907f64cb9b6947",
"version" : 1,
"time" : 1412889546,
"locktime" : 0,
"vin" : [
{
"coinbase" : "0230010107062f503253482f",
"sequence" : 4294967295
}
],
"vout" : [
{
"value" : 200000.00000000,
"n" : 0,
"scriptPubKey" : {
"asm" : "03955ef98da45972644d075dc26a0dfcedd44e4f15e4bdea3746472362453fced3 OP_CHECKSIG",
"hex" : "2103955ef98da45972644d075dc26a0dfcedd44e4f15e4bdea3746472362453fced3ac",
"reqSigs" : 1,
"type" : "pubkey",
"addresses" : [
"D9T4EAWW6bjpCbEvpXSmUZJEXkeVNZ3j38"
]
}
}
]
}