Bawaler
|
|
June 21, 2014, 01:24:11 PM |
|
I managed to set up ABE for Truckcoin and as far as I can tell it works correctly. Also, I may have found somewhere to host it temporarily, so if all goes well it should be online in a day or so. But someone else (maybe the dev) will need to host it for the long-term.
I have free VPS for hosting. PM me.
|
⌘ This ain't just a symbol of a PoI ⌘ I recommend Yourserver.se VPS for hosting, pay with BTC.
|
|
|
HunterS
|
|
June 21, 2014, 01:27:25 PM |
|
Allcoin.com is considering listing TRK if we get a block explorer running first. Has anyone here done this before? I'd be willing to donate 5000 TRK to the first person who sets one up for Truckcoin, but only after we're listed on Allcoin.
I will also chip in 5000 TRK for the block explorer, so now the bounty is 10k TRK for a block explorer. I agree that we need this. Anyone interested? I'll add in 5k too, so we're at 15k TRK bounty for a block explorer. i will add 3k ,we're at 18k now
|
|
|
|
|
beyonders
Member
Offline
Activity: 115
Merit: 10
|
|
June 21, 2014, 04:49:02 PM |
|
Allcoin.com is considering listing TRK if we get a block explorer running first. Has anyone here done this before? I'd be willing to donate 5000 TRK to the first person who sets one up for Truckcoin, but only after we're listed on Allcoin.
I will also chip in 5000 TRK for the block explorer, so now the bounty is 10k TRK for a block explorer. I agree that we need this. Anyone interested? I'll add in 5k too, so we're at 15k TRK bounty for a block explorer. i will add 3k ,we're at 18k now +2K so we are at 20K now
|
|
|
|
Bumberchute
|
|
June 21, 2014, 11:55:51 PM |
|
Block explorer is online: http://96.126.107.185:2750/I will need someone else to host it for the long term, but I could keep it online for the next while until someone offers to move it to their host. It will be on a domain name soon, dns is propagating. Feedback is welcome. For the bounty, I'd rather if the dev could set up a donation address to collect coins for some kind of giveaway or faucet, and everyone who was going to send a bounty could send the coins there instead. Once the block explorer is added to the OP, I'll contact Allcoin and tell them we have a block explorer. Lets truck!
|
|
|
|
Real_Unhooked
|
|
June 22, 2014, 02:20:03 AM |
|
Nice we are getting somewhere.
|
|
|
|
gullu
|
|
June 22, 2014, 03:08:05 AM |
|
very nice. can a rich list be incorporated into it? would be nice...
|
|
|
|
Bumberchute
|
|
June 22, 2014, 03:26:03 AM |
|
very nice. can a rich list be incorporated into it? would be nice...
I don't know how, but if someone tells me I'll try to add a rich list.
|
|
|
|
gullu
|
|
June 22, 2014, 04:48:48 AM |
|
very nice. can a rich list be incorporated into it? would be nice...
I don't know how, but if someone tells me I'll try to add a rich list. i don't know either but good work nonetheless.
|
|
|
|
KoningSilk
|
|
June 22, 2014, 08:09:57 AM |
|
This is looking nice, when do we go to mintpal? Hopefully we got a dev who can make stuff happen, at least he got us a new kind of coin! Now all we need is some exposure.
|
|
|
|
liteuser
|
|
June 22, 2014, 12:57:43 PM |
|
very nice. can a rich list be incorporated into it? would be nice...
I don't know how, but if someone tells me I'll try to add a rich list. You need to use https://github.com/znort987/blockparser
Once modified to use TRK (changes should be similar to what you had to do with the explorer) and compiled you do something like ./blockparser/parser allBalances --limit 100
to get top 100 addresses.
|
|
|
|
Bumberchute
|
|
June 22, 2014, 02:12:56 PM Last edit: June 22, 2014, 06:55:00 PM by Bumberchute |
|
very nice. can a rich list be incorporated into it? would be nice...
I don't know how, but if someone tells me I'll try to add a rich list. You need to use https://github.com/znort987/blockparser
Once modified to use TRK (changes should be similar to what you had to do with the explorer) and compiled you do something like ./blockparser/parser allBalances --limit 100
to get top 100 addresses. Thanks for the pointers! I'll attempt to add this today. EDIT: In parser.cpp, I tried changing coinName to "/.Truckcoin/", and changing the var called "expected" to the Truckcoin magic, but I'm missing something because now it segfaults here: if(likely(0!=block->data)) { For some reason that I can't seem to figure out, in static void findLongestChain(), gMaxBlock is null when assigned to Block *block, and then in the next if statement we dereference block, causing segfault... I can't make much sense of this code, it seems overly complicated. Does anyone know what else I should try to get it to work? EDIT2: Rich list seems hard to do, if it was easy then I'm sure more coins would have it by now. Without help I'll not be able to figure out how to add it, but the good news: Block explorer is on this domain now: http://trk.cryptospread.com:2750/Dev, can you please add it to the OP?
|
|
|
|
Bumberchute
|
|
June 22, 2014, 06:51:54 PM |
|
Now that we have a block explorer, it would be good to try getting on some better exchanges. Vote for Truckcoin on: https://www.kingcoiny.com/index.php?page=votingWe're almost winning there, but we need more votes per hour if we're going to win. Go to AllCoin.com and ask in the trollbox for them to list us. Fill out a coin request for Poloniex at: https://poloniex.com/coinRequestDo whatever else you can think of and hopefully we'll be able to give Truckcoin some life and value soon.
|
|
|
|
liteuser
|
|
June 22, 2014, 08:48:03 PM |
|
very nice. can a rich list be incorporated into it? would be nice...
I don't know how, but if someone tells me I'll try to add a rich list. You need to use https://github.com/znort987/blockparser
Once modified to use TRK (changes should be similar to what you had to do with the explorer) and compiled you do something like ./blockparser/parser allBalances --limit 100
to get top 100 addresses. Thanks for the pointers! I'll attempt to add this today. EDIT: In parser.cpp, I tried changing coinName to "/.Truckcoin/", and changing the var called "expected" to the Truckcoin magic, but I'm missing something because now it segfaults here: if(likely(0!=block->data)) { For some reason that I can't seem to figure out, in static void findLongestChain(), gMaxBlock is null when assigned to Block *block, and then in the next if statement we dereference block, causing segfault... I can't make much sense of this code, it seems overly complicated. Does anyone know what else I should try to get it to work? EDIT2: Rich list seems hard to do, if it was easy then I'm sure more coins would have it by now. Without help I'll not be able to figure out how to add it, but the good news: Block explorer is on this domain now: http://trk.cryptospread.com:2750/Dev, can you please add it to the OP? I computed the richlist of a scrypt coin just for testing a month ago. Not sure if x11 coins are treated different in blockparser ... I don't have time right now to try to use the blockparser. Have you changed also util.cpp and util.h? (variable data line 432 in util.cpp and variable type line 259 in util.h). You have to change them to recognize TRK addresses. If you don't find the variables, search for LITECOIN in these files.
|
|
|
|
tom14cat14
|
|
June 22, 2014, 08:58:05 PM |
|
Maybe someone from SYNC coin can help also? They have a rich list and they were a POW X11 for a short time and are now pure POS.
|
|
|
|
Bumberchute
|
|
June 22, 2014, 08:58:29 PM Last edit: June 22, 2014, 11:33:50 PM by Bumberchute |
|
very nice. can a rich list be incorporated into it? would be nice...
I don't know how, but if someone tells me I'll try to add a rich list. You need to use https://github.com/znort987/blockparser
Once modified to use TRK (changes should be similar to what you had to do with the explorer) and compiled you do something like ./blockparser/parser allBalances --limit 100
to get top 100 addresses. Thanks for the pointers! I'll attempt to add this today. EDIT: In parser.cpp, I tried changing coinName to "/.Truckcoin/", and changing the var called "expected" to the Truckcoin magic, but I'm missing something because now it segfaults here: if(likely(0!=block->data)) { For some reason that I can't seem to figure out, in static void findLongestChain(), gMaxBlock is null when assigned to Block *block, and then in the next if statement we dereference block, causing segfault... I can't make much sense of this code, it seems overly complicated. Does anyone know what else I should try to get it to work? EDIT2: Rich list seems hard to do, if it was easy then I'm sure more coins would have it by now. Without help I'll not be able to figure out how to add it, but the good news: Block explorer is on this domain now: http://trk.cryptospread.com:2750/Dev, can you please add it to the OP? I computed the richlist of a scrypt coin just for testing a month ago. Not sure if x11 coins are treated different in blockparser ... I don't have time right now to try to use the blockparser. Have you changed also util.cpp and util.h? (variable data line 432 in util.cpp and variable type line 259 in util.h). You have to change them to recognize TRK addresses. If you don't find the variables, search for LITECOIN in these files. Thanks again, I hadn't looked in those files, will attempt the rich list again. EDIT: I tried updating those files for Truckcoin. When I try to run the parser I get this error before segfault: end of map, reason : magic is fucked 11479622 away from EOF EDIT2: When I reverse the magic bytes I get a bit further: I get tons of these warnings before segfault at the same line: warning: at depth 0 in chain, failed to locate parent block 0000000001065e1419d55cbf1f4d1edeb027853df31ea242db796cacac5cad56 What exactly am I supposed to put for uint8_t type and uint8_t data[]; ? These parent blocks that it can't seem to locate appear to be valid blocks that show in the block explorer... I'm giving up on a rich list for now because I don't understand the code of these parsers, and it has to be changed both for X11 support as well as specifically for truckcoin.
|
|
|
|
waxo
|
|
June 23, 2014, 12:31:45 AM |
|
i confirm that stack works pretty good for me wait for bittrex
|
██████████ ██ ██ ██ ██
| | ██████████ ██ ██ ██ ██
| |
|
|
|
Bumberchute
|
|
June 23, 2014, 01:54:18 AM |
|
i confirm that stack works pretty good for me wait for bittrex Bittrex staff have said on IRC that they think 200% POS is bad for a coin. I don't think they'll be interested in listing TRK ever. We need to find somewhere else where they can appreciate high-interest coins and see the good in Truckcoin. I think we need to stop trying to apply old economics to the crypto economy, because this type of economy is something not seen before. In this case no bank or other must be losing profit by offering a high interest account, so I really don't know what exchanges are afraid of with high interest coins. It's certainly not as bad as these big-hype coins that last a couple days on an exchange and then fade into obscurity.
|
|
|
|
helloword2013
|
|
June 23, 2014, 02:31:46 AM |
|
I want to sell some trucks of coin and buy some trucks of toy.
|
|
|
|
SummerMiner
Member
Offline
Activity: 109
Merit: 10
|
|
June 23, 2014, 03:02:53 AM |
|
we need bittrex exchange
|
GameleagueCoin.GLSu18XgTNrn661BCfNRzmZKqfPXMHAk96
|
|
|
|