Pages:
Author

Topic: [ANN][Datacoin] Datacoin blockchain start announcement (Minor code upd + logo) - page 83. (Read 171873 times)

sr. member
Activity: 350
Merit: 250
DTC unofficial team
Graph of blocks generation rate (now near 2 per minute)

That's a great graph! How/where were you able to generate it?

Just a 5-minutes PERL script and excel Smiley Most time takes getting info via RPC, near 30 minutes for getting all info (perl just sends messages to console and parses results). Now I'm creating such graph for difficulty, it'll be ready in ~10 minutes - you'll see amazing growth during last blocks

Pretty cool! I didn't realize this was possible to generate "after the fact" purely from blockchain data. Nice to learn something Smiley Can you give any tips as to which RPC calls were used or any available perl or other language script I can learn from? I can see the list of RPC calls at https://en.bitcoin.it/wiki/Original_Bitcoin_client/API_Calls_list but not sure which I would use to get generation rate or difficulty data from the past. Thanks for sharing these graphs at any rate!

you should run getblockindex (number of block), you'll get block hash. After it you should execute getblock (hash) and receive full info about block, after it you can parse it and do whatever you want Smiley
small script to get csv in format BLOCK_NUMBER,DIFFICULTY , you can run it on any linux system with datacoind up and running

Code:
use strict;

my $hash;
my $diff;
my $block_num;
open MYFILE, ">result_diff.csv";
$temp = `datacoind getmininginfo | grep blocks`;
$temp =~ /blocks" : (\d+)/;
$block_num = $1;
for (my $i=0; $i < $block_num; $i++)
{
        $hash = `datacoind getblockhash $i`;
        my $temp = `datacoind getblock $hash `;
        $temp =~ /difficulty" : ([0-9\.]+)/;
        $diff = $1;
        print MYFILE "$i,$diff\n";
}
close MYFILE;

sr. member
Activity: 458
Merit: 250
Graph of blocks generation rate (now near 2 per minute)

That's a great graph! How/where were you able to generate it?

Just a 5-minutes PERL script and excel Smiley Most time takes getting info via RPC, near 30 minutes for getting all info (perl just sends messages to console and parses results). Now I'm creating such graph for difficulty, it'll be ready in ~10 minutes - you'll see amazing growth during last blocks

Pretty cool! I didn't realize this was possible to generate "after the fact" purely from blockchain data. Nice to learn something Smiley Can you give any tips as to which RPC calls were used or any available perl or other language script I can learn from? I can see the list of RPC calls at https://en.bitcoin.it/wiki/Original_Bitcoin_client/API_Calls_list but not sure which I would use to get generation rate or difficulty data from the past. Thanks for sharing these graphs at any rate!
sr. member
Activity: 350
Merit: 250
DTC unofficial team
I have about 100 machines ready to mine datacoin but what miner to use??

(its all ubuntu 12.04)

You should build it with instructions like
https://bitcointalksearch.org/topic/xpm-primecoin-high-performance-linux-compilation-guide-259022
you only need to replace primecoin links with datacoin, all other actions - the same (build gmp, build datacoind). If all machines have the same system and architecture, you can compile daemon only on one of them, and just copy datacoind and config folder to all of them.

sssshhh 100 machines ...yikes i am getting zero coins as it is. Don't do it, bad idea go to prime or quark Smiley

Maybe there are 100 machines with 2 cores on each? Smiley I was mining with 10-20-25 32-CPU amazon instances for some time, and I cannot say that it gave me very great amount of coins (like 20-30-50%  Grin ), also I sold some of them to pay bills

edited: there are keywords for this guide in OP post, so I didn't reveal something

Grrr... they all have ubuntu 10... can't install dependencies.
No problem... gonna use to mine other way...  right now i'm mining only with 2 computers

getprimespersec
1st) 1917
2nd) 4968



try to build some dependencies from source, sometimes it helped me for old ubuntu versions.
sr. member
Activity: 966
Merit: 250
I have about 100 machines ready to mine datacoin but what miner to use??

(its all ubuntu 12.04)

You should build it with instructions like
https://bitcointalksearch.org/topic/xpm-primecoin-high-performance-linux-compilation-guide-259022
you only need to replace primecoin links with datacoin, all other actions - the same (build gmp, build datacoind). If all machines have the same system and architecture, you can compile daemon only on one of them, and just copy datacoind and config folder to all of them.

sssshhh 100 machines ...yikes i am getting zero coins as it is. Don't do it, bad idea go to prime or quark Smiley

Maybe there are 100 machines with 2 cores on each? Smiley I was mining with 10-20-25 32-CPU amazon instances for some time, and I cannot say that it gave me very great amount of coins (like 20-30-50%  Grin ), also I sold some of them to pay bills

edited: there are keywords for this guide in OP post, so I didn't reveal something

Grrr... they all have ubuntu 10... can't install dependencies.
No problem... gonna use to mine other way...  right now i'm mining only with 2 computers

getprimespersec
1st) 1917
2nd) 4968

sr. member
Activity: 350
Merit: 250
DTC unofficial team
China has been in the promotion, but also please producers more perfect program, thank you!

Extended address:https://bitcointalk.org/index.php?topic=342867.0

Like a coin!

How much is the total?


DTC Wallet :D6UT6vhcN4ESGwp5DWoQiTamddbTZCnLrR

Total for now: 579528 DataCoins
It is because of high speed at the beginning (as usual for all coins), see my charts above. It should be produced near 20K coins per day in very near future, possible in 2-3 days.

'Perfect program' - if you mean wallet, developer promised to work at that. Hopefully we have him in this thread soon. Anyway we can create some add-ons for original wallet to get additional features.
sr. member
Activity: 350
Merit: 250
DTC unofficial team
So three charts together. (3rd chart has less little blocks than 2nd - just noticed it, can add blocks later)

Dependency of blocks generation speed on time


Dependency of difficulty on blocks number


Dependency of difficulty on time
full member
Activity: 154
Merit: 100
China has been in the promotion, but also please producers more perfect program, thank you!

Extended address:https://bitcointalk.org/index.php?topic=342867.0

Like a coin!

How much is the total?


DTC Wallet :D6UT6vhcN4ESGwp5DWoQiTamddbTZCnLrR
sr. member
Activity: 350
Merit: 250
DTC unofficial team
Graph of blocks generation rate (now near 2 per minute)

That's a great graph! How/where were you able to generate it?

Just a 5-minutes PERL script and excel Smiley Most time takes getting info via RPC, near 30 minutes for getting all info (perl just sends messages to console and parses results). Now I'm creating such graph for difficulty, it'll be ready in ~10 minutes - you'll see amazing growth during last blocks
sr. member
Activity: 458
Merit: 250
Graph of blocks generation rate (now near 2 per minute)


That's a great graph! How/where were you able to generate it?
sr. member
Activity: 350
Merit: 250
DTC unofficial team
I have about 100 machines ready to mine datacoin but what miner to use??

(its all ubuntu 12.04)

You should build it with instructions like
https://bitcointalksearch.org/topic/xpm-primecoin-high-performance-linux-compilation-guide-259022
you only need to replace primecoin links with datacoin, all other actions - the same (build gmp, build datacoind). If all machines have the same system and architecture, you can compile daemon only on one of them, and just copy datacoind and config folder to all of them.

sssshhh 100 machines ...yikes i am getting zero coins as it is. Don't do it, bad idea go to prime or quark Smiley

Maybe there are 100 machines with 2 cores on each? Smiley I was mining with 10-20-25 32-CPU amazon instances for some time, and I cannot say that it gave me very great amount of coins (like 20-30-50%  Grin ), also I sold some of them to pay bills

edited: there are keywords for this guide in OP post, so I didn't reveal something
legendary
Activity: 2100
Merit: 1167
MY RED TRUST LEFT BY SCUMBAGS - READ MY SIG
I have about 100 machines ready to mine datacoin but what miner to use??

(its all ubuntu 12.04)

You should build it with instructions like
https://bitcointalksearch.org/topic/xpm-primecoin-high-performance-linux-compilation-guide-259022
you only need to replace primecoin links with datacoin, all other actions - the same (build gmp, build datacoind). If all machines have the same system and architecture, you can compile daemon only on one of them, and just copy datacoind and config folder to all of them.

sssshhh 100 machines ...yikes i am getting zero coins as it is. Don't do it, bad idea go to prime or quark Smiley
sr. member
Activity: 350
Merit: 250
DTC unofficial team
I have about 100 machines ready to mine datacoin but what miner to use??

(its all ubuntu 12.04)

You should build it with instructions like
https://bitcointalksearch.org/topic/xpm-primecoin-high-performance-linux-compilation-guide-259022
you only need to replace primecoin links with datacoin, all other actions - the same (build gmp, build datacoind). If all machines have the same system and architecture, you can compile daemon only on one of them, and just copy datacoind and config folder to all of them.
sr. member
Activity: 350
Merit: 250
DTC unofficial team
any news on the new wallet with the tools built in? 

Still no. I tried to build QT for windows and to make some changes, but failed  while building - some dependency problems, will try to resolve it Grin
But keep in mind that users generally don't need most of that tools in their wallets! It's not 'messaging' system, and for end users of wallet this storage will be 'invisible'. We (all of us, not only OP) can create applications for using this storage - it is pretty simple with his scripts (and even without them). Or we can take existing applications and add redefine several methods of data saving (saveToFile = sendData, etc  Cheesy )
sr. member
Activity: 966
Merit: 250
I have about 100 machines ready to mine datacoin but what miner to use??

(its all ubuntu 12.04)
legendary
Activity: 2100
Merit: 1167
MY RED TRUST LEFT BY SCUMBAGS - READ MY SIG
any news on the new wallet with the tools built in? 
sr. member
Activity: 350
Merit: 250
DTC unofficial team
Graph of blocks generation rate (now near 2 per minute)
sr. member
Activity: 350
Merit: 250
DTC unofficial team
0 active connections today, wtf? Where is placed config file?

Try nodes
"addr" : "162.243.111.155:4777",
"addr" : "198.199.96.245:4777",
"addr" : "208.43.73.214:4777",
"addr" : "212.117.60.220:4777",
"addr" : "76.74.177.224:4777",
"addr" : "192.241.144.87:4777",
"addr" : "108.161.145.50:4777",
"addr" : "192.210.134.58:4777",

config file - as usual, you need to create it in ~/.datacoin/datacoin.conf
full member
Activity: 139
Merit: 100
0 active connections today, wtf? Where is placed config file?
legendary
Activity: 1218
Merit: 1002
Difficulty increased:

{
    "blocks" : 34501,
    "chainspermin" : 28,
    "chainsperday" : 23.53784770,
    "currentblocksize" : 1000,
    "currentblocktx" : 0,
    "difficulty" : 8.00375372,
    "errors" : "",
    "generate" : true,
    "genproclimit" : 12,
    "primespersec" : 3325,
    "pooledtx" : 0,
    "sieveextensions" : 9,
    "sievepercentage" : 10,
    "sievesize" : 1000000,
    "testnet" : false
}


"chainsperday" : before was 423.53784770

Now so hard
sr. member
Activity: 350
Merit: 250
DTC unofficial team
I have just translated the DataCoin launch into Chinese, and please see below:
https://bitcointalksearch.org/topic/anndatacoin-datacoin-primecoinbter-342713
Donations are welcome to DP3btUHEcmsjsyNYv6Ked1z2V9RfVrcrAF

Thanks a lot! I'll send you coins in ~2 hours when I return to my computer with wallet Smiley
Pages:
Jump to: