Bitcoin Forum
May 12, 2024, 05:30:31 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 2 3 4 5 6 7 8 9 10 [11] 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 ... 130 »
  Print  
Author Topic: [ANN][CACH] CACHeCoin released based on scrypt-jane  (Read 224367 times)
jasinlee
Hero Member
*****
Offline Offline

Activity: 742
Merit: 500


Its as easy as 0, 1, 1, 2, 3


View Profile
January 13, 2014, 10:13:15 PM
 #201

Yes, if all security gets checked out tonight we may have it up to sell shares before opening.

BTC 1JASiNZxmAN1WBS4dmGEDoPpzN3GV7dnjX DVC 1CxxZzqcy7YEVXfCn5KvgRxjeWvPpniK3                     Earn Devcoins Devtome.com
1715491831
Hero Member
*
Offline Offline

Posts: 1715491831

View Profile Personal Message (Offline)

Ignore
1715491831
Reply with quote  #2

1715491831
Report to moderator
1715491831
Hero Member
*
Offline Offline

Posts: 1715491831

View Profile Personal Message (Offline)

Ignore
1715491831
Reply with quote  #2

1715491831
Report to moderator
1715491831
Hero Member
*
Offline Offline

Posts: 1715491831

View Profile Personal Message (Offline)

Ignore
1715491831
Reply with quote  #2

1715491831
Report to moderator
You get merit points when someone likes your post enough to give you some. And for every 2 merit points you receive, you can send 1 merit point to someone else!
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1715491831
Hero Member
*
Offline Offline

Posts: 1715491831

View Profile Personal Message (Offline)

Ignore
1715491831
Reply with quote  #2

1715491831
Report to moderator
donschoe
Full Member
***
Offline Offline

Activity: 157
Merit: 100

Hello Coins


View Profile
January 13, 2014, 10:31:31 PM
 #202

I created an IRC bot for CACH, join us in #cachecoin on freenode and idle a bit Smiley

Code:
23:26:23  donschoe | .help
23:26:23 sternburg | Cachecoin Statistics: .cach .diff .solo .info 
23:26:25  donschoe | .cach
23:26:25 sternburg | Cachecoin Network Block: 4049, Difficulty: 4.36787732 PoW, 0.00024414 PoS, Reward: 19.55 CACH, Minted: 176736.93 CACH.
23:26:28  donschoe | .diff
23:26:28 sternburg | Cachecoin Difficulty: 4.36787732 PoW, 0.00024414 PoS, Current blocktime: 21.088 minutes, Network hashrate: 14.826 MH/s.
23:26:33  donschoe | .solo
23:26:33 sternburg | Shows expected time to find a block mining solo. Usage: .solo <MH/sec>.
23:26:39  donschoe | .solo 0.6 
23:26:40 sternburg | Time to find a block mining solo: 8.685 hours, Turnout: 54.023 CACH/day. 
23:26:45  donschoe | .info
23:26:45 sternburg | Sternburg is a ruby bot instance of fantasy-irc gem by v2px: https://rubygems.org/gems/fantasy-irc | Plugins for Cachecoin statistics written by don-Schoe.
23:26:45 sternburg | CACH donations for the bot accepted: CK8fDAgyPPp2KQ4kq8GMXvBbaJKuzw4afq, type .help for usage instructoins. Join ##CACH-Spam for excessive usage.

Not using Tapatalk.
Snard
Full Member
***
Offline Offline

Activity: 140
Merit: 100


View Profile
January 13, 2014, 10:38:12 PM
 #203

Yes, if all security gets checked out tonight we may have it up to sell shares before opening.

Great ! Good luck with the launch.
kalgecin (OP)
Hero Member
*****
Offline Offline

Activity: 819
Merit: 1000


View Profile
January 13, 2014, 10:54:00 PM
 #204

I created an IRC bot for CACH, join us in #cachecoin on freenode and idle a bit Smiley

Code:
23:26:23  donschoe | .help
23:26:23 sternburg | Cachecoin Statistics: .cach .diff .solo .info 
23:26:25  donschoe | .cach
23:26:25 sternburg | Cachecoin Network Block: 4049, Difficulty: 4.36787732 PoW, 0.00024414 PoS, Reward: 19.55 CACH, Minted: 176736.93 CACH.
23:26:28  donschoe | .diff
23:26:28 sternburg | Cachecoin Difficulty: 4.36787732 PoW, 0.00024414 PoS, Current blocktime: 21.088 minutes, Network hashrate: 14.826 MH/s.
23:26:33  donschoe | .solo
23:26:33 sternburg | Shows expected time to find a block mining solo. Usage: .solo <MH/sec>.
23:26:39  donschoe | .solo 0.6 
23:26:40 sternburg | Time to find a block mining solo: 8.685 hours, Turnout: 54.023 CACH/day. 
23:26:45  donschoe | .info
23:26:45 sternburg | Sternburg is a ruby bot instance of fantasy-irc gem by v2px: https://rubygems.org/gems/fantasy-irc | Plugins for Cachecoin statistics written by don-Schoe.
23:26:45 sternburg | CACH donations for the bot accepted: CK8fDAgyPPp2KQ4kq8GMXvBbaJKuzw4afq, type .help for usage instructoins. Join ##CACH-Spam for excessive usage.

Cool :-)

Code:
<?php
$path 
"~/cachecoin/src/cachecoind";
$action $argv[1];
if(
$action == "getdiffstats"){
echo "block,block time,difficulty,target time\n";
$lasttime = `$path getblockhash $argv[2]`;
$lasttime json_decode(`$path getblock $lasttime`,true)['time'];

for($i=$argv[2];$i<=$argv[3];$i++){
$hash = `$path getblockhash $i`;
$result json_decode(`$path getblock $hash`,true);

echo $result['height'].",".($result['time']-$lasttime).",".$result['difficulty'].",900\n";
$lasttime $result['time'];
}
}else if(
$action == "lastaverage"){
printLastAgerage();
}else if(
$action == "activestats"){
$targetDiff 60 15;
$lastBlock getBlock(null);
$timeDiff time() - $lastBlock['time'];
$genesisTimeDiff time() - getBlock(1)['time'];
$seconds $timeDiff;
$target round(($seconds 100) / $targetDiff,2);
$timeDiff = (int)($timeDiff/60);
$seconds -= $timeDiff 60;
$lastDiff $lastBlock['difficulty'];
$lastButOneBlockDiff getBlock($lastBlock['height']-1)['difficulty'];
$percIncreaseDiff round((($lastDiff $lastButOneBlockDiff) * 100) / $lastButOneBlockDiff,4);
$info json_decode(`$path getinfo`,true);
$mininginfo json_decode(`$path getmininginfo`,true);
$own round(($info['balance'] * 100) / $info['moneysupply'],2);
$genesisSeconds $genesisTimeDiff;

$genesisDays = (int)($genesisSeconds / (60 60 *24));
$genesisHrs  = (int)($genesisSeconds / (60 60)) - ($genesisDays 24);
$genesisMins = (int)($genesisSeconds 60) - ($genesisDays 24 60) - ($genesisHrs 60);
$genesisSeconds -= ($genesisDays 24 60 60) + ($genesisHrs 60 60) + ($genesisMins 60);
$genesisTimeDiffText "$genesisDays d $genesisHrs hrs $genesisMins m $genesisSeconds s";
echo "Current block being mined: ".($lastBlock['height']+1) .", difficulty: ".getNextDiff(true).", ".getNextDiff()." next\n";
printLastAgerage();
echo "$timeDiff m $seconds s since last block mined (".(time() - $lastBlock['time'])."s)\n";
echo "$target% of target\n";
echo "Total network hashpower: ".round($mininginfo['networkhashps']/1000000,2)." Mhps\n";
echo "$percIncreaseDiff% last diff increase\n";
echo "Total coins in existance: ".$info['moneysupply']." you own $own% of them\n";
echo "Time since genesis: $genesisTimeDiffText \n";
echo "Average coin generation speed ".round($info['moneysupply']/($genesisTimeDiff/(60*60)),2)." cach/hr\n";
}
function 
printLastAgerage(){
$interval 10;
$average getaveragetime($interval);
$minutes = (int)($average 60);
$average-=$minutes 60;
$average = (int)$average;
echo "Average time for last $interval blocks is $minutes minutes $average seconds\n";
}
function 
getaveragetime($interval){
global $path;
$block getBlock(null);
$lastTime $block['time'];

$last10 $block['height'] - $interval 1;
$last10block getBlock($last10);
$last10Time $last10block['time'];

$timeDiff $lastTime $last10Time;
$average $timeDiff $interval;
return $average;
}

function 
getBlock($height){
global $path;
if($height == null){
$blocks json_decode(`$path getinfo`,true);
$height $blocks["blocks"];
}
$hash = `$path getblockhash $height`;
return json_decode(`$path getblock $hash`,true);
}

function 
getNextDiff($current=false){
$targetSpacing 60 15;
$targetTimespan 24 60 60;
$targetLimit hexdec("1e0fffff");

$lastBlock getBlock(null);
$lastButOneBlock getBlock($lastBlock['height']-1);
if($current)
$actualSpacing =  $lastBlock['time'] - $lastButOneBlock['time'];
else
$actualSpacing =  time() - $lastBlock['time'];// - $lastButOneBlock['time'];

$interval $targetTimespan $targetSpacing;
$newdiff hexdec($lastBlock['bits']);

$newdiff *= (($interval 1) * $targetSpacing $actualSpacing $actualSpacing);
$newdiff /= (($interval 1) * $targetSpacing);

if($newdiff $targetLimit)
$newdiff $targetLimit;
$newdiff hexdec($lastBlock['bits']) / (int)$newdiff;
if($current)
$newdiff *= $lastBlock['difficulty'];
else
$newdiff *= getNextDiff(true);

return round($newdiff,8);
}


Here's a script that I'm using. The diff stats are correct. The difficulty provided by the client is that of last mined block. By calling getNextDiff(true) you get current mining difficulty. getNextDiff() to get the next diff, which changes with time






██████████████████████████████████████████████████████████████████████████████████████████████
██████████████████████████████████████████████████████████████████████████████████████
███████████████████████████████████████████████████████████████████████▄▄▄███████████████████████
███████████████████████████████████████████████████████████████████████▀▀▀████████████████████████
██████████████████████████████████████████████████████████████████████████████████████████████████
█████████████████████████████████████████████████████████████████████████████████████████████████





...INTRODUCING WAVES........
...ULTIMATE ASSET/CUSTOM TOKEN BLOCKCHAIN PLATFORM...






kalgecin (OP)
Hero Member
*****
Offline Offline

Activity: 819
Merit: 1000


View Profile
January 13, 2014, 11:25:19 PM
 #205

added the irc channel on the OP






██████████████████████████████████████████████████████████████████████████████████████████████
██████████████████████████████████████████████████████████████████████████████████████
███████████████████████████████████████████████████████████████████████▄▄▄███████████████████████
███████████████████████████████████████████████████████████████████████▀▀▀████████████████████████
██████████████████████████████████████████████████████████████████████████████████████████████████
█████████████████████████████████████████████████████████████████████████████████████████████████





...INTRODUCING WAVES........
...ULTIMATE ASSET/CUSTOM TOKEN BLOCKCHAIN PLATFORM...






Blazr2
Full Member
***
Offline Offline

Activity: 218
Merit: 105



View Profile
January 14, 2014, 01:43:08 AM
 #206

Updated Build, at the request of jasinlee:

https://mega.co.nz/#!DAE11QoZ!JexVS1XRcfL7oAjR-dIiOwhQ0fFfOj47hBZnYJW3m-Y

kalgecin, your windows .ico is wonky, I recreated it from the .png to get it to compile.

Would love a few CACH's for my collection if there's any you might feel like sharing!

CWMBZCncyewyFGwtSoxRkme96FFZpJcZUp



donschoe
Full Member
***
Offline Offline

Activity: 157
Merit: 100

Hello Coins


View Profile
January 14, 2014, 01:51:52 AM
 #207

Damn, I really have to wait 7 days to get hands on CACH? Cheesy

Not using Tapatalk.
kalgecin (OP)
Hero Member
*****
Offline Offline

Activity: 819
Merit: 1000


View Profile
January 14, 2014, 02:36:45 AM
 #208

Updated Build, at the request of jasinlee:

https://mega.co.nz/#!DAE11QoZ!JexVS1XRcfL7oAjR-dIiOwhQ0fFfOj47hBZnYJW3m-Y

kalgecin, your windows .ico is wonky, I recreated it from the .png to get it to compile.

Would love a few CACH's for my collection if there's any you might feel like sharing!

CWMBZCncyewyFGwtSoxRkme96FFZpJcZUp




57586a6ac6f691d6d69229772c5af4bddbe513da2348c752a23468c0363ca72a

Thanks :-) sent you some cach :-) Could you upload the ico? so i can also change it in git

anyone can setup an explorer?






██████████████████████████████████████████████████████████████████████████████████████████████
██████████████████████████████████████████████████████████████████████████████████████
███████████████████████████████████████████████████████████████████████▄▄▄███████████████████████
███████████████████████████████████████████████████████████████████████▀▀▀████████████████████████
██████████████████████████████████████████████████████████████████████████████████████████████████
█████████████████████████████████████████████████████████████████████████████████████████████████





...INTRODUCING WAVES........
...ULTIMATE ASSET/CUSTOM TOKEN BLOCKCHAIN PLATFORM...






Blazr2
Full Member
***
Offline Offline

Activity: 218
Merit: 105



View Profile
January 14, 2014, 02:44:15 AM
 #209

Updated Build, at the request of jasinlee:

https://mega.co.nz/#!DAE11QoZ!JexVS1XRcfL7oAjR-dIiOwhQ0fFfOj47hBZnYJW3m-Y

kalgecin, your windows .ico is wonky, I recreated it from the .png to get it to compile.

Would love a few CACH's for my collection if there's any you might feel like sharing!

CWMBZCncyewyFGwtSoxRkme96FFZpJcZUp




57586a6ac6f691d6d69229772c5af4bddbe513da2348c752a23468c0363ca72a

Thanks :-) sent you some cach :-) Could you upload the ico? so i can also change it in git

anyone can setup an explorer?

Thanks very much for some CACHe!!

Here's the fixed icon, just replace the one in your src/qt/res/icons folder and it should be good to go:

https://mega.co.nz/#!HE0xjIiZ!WVeZon0Dww3J4B4LYGwo21jZJy0MmStl-nCtQw7N6T4

I told jasinlee I'm happy to do recompiles for you as long as someone lets me know when the source changes.
kalgecin (OP)
Hero Member
*****
Offline Offline

Activity: 819
Merit: 1000


View Profile
January 14, 2014, 05:49:36 AM
 #210

Updated Build, at the request of jasinlee:

https://mega.co.nz/#!DAE11QoZ!JexVS1XRcfL7oAjR-dIiOwhQ0fFfOj47hBZnYJW3m-Y

kalgecin, your windows .ico is wonky, I recreated it from the .png to get it to compile.

Would love a few CACH's for my collection if there's any you might feel like sharing!

CWMBZCncyewyFGwtSoxRkme96FFZpJcZUp




57586a6ac6f691d6d69229772c5af4bddbe513da2348c752a23468c0363ca72a

Thanks :-) sent you some cach :-) Could you upload the ico? so i can also change it in git

anyone can setup an explorer?

Thanks very much for some CACHe!!

Here's the fixed icon, just replace the one in your src/qt/res/icons folder and it should be good to go:

https://mega.co.nz/#!HE0xjIiZ!WVeZon0Dww3J4B4LYGwo21jZJy0MmStl-nCtQw7N6T4

I told jasinlee I'm happy to do recompiles for you as long as someone lets me know when the source changes.

Cool :-) I'll PM you then when an update will be out :-)






██████████████████████████████████████████████████████████████████████████████████████████████
██████████████████████████████████████████████████████████████████████████████████████
███████████████████████████████████████████████████████████████████████▄▄▄███████████████████████
███████████████████████████████████████████████████████████████████████▀▀▀████████████████████████
██████████████████████████████████████████████████████████████████████████████████████████████████
█████████████████████████████████████████████████████████████████████████████████████████████████





...INTRODUCING WAVES........
...ULTIMATE ASSET/CUSTOM TOKEN BLOCKCHAIN PLATFORM...






Sy
Legendary
*
Offline Offline

Activity: 1484
Merit: 1003


Bounty Detective


View Profile
January 14, 2014, 08:58:46 AM
 #211

Okay next one
WTB 1k @ 0.1 BTC multiple times Smiley

BOUNTY DETECTIVE


















Powered by,
AltCoinSeller
Newbie
*
Offline Offline

Activity: 49
Merit: 0


View Profile
January 14, 2014, 09:23:06 AM
 #212

Okay next one
WTB 1k @ 0.1 BTC multiple times Smiley
I will buy 1k @ 0.2BTC from you up to 50k Cache. You have 100% profit, just sell me all your Cache. Thanks.
Burninj
Legendary
*
Offline Offline

Activity: 1148
Merit: 1000


View Profile
January 14, 2014, 01:43:01 PM
 #213

mmmmh I think I will hold on my 18k cache in the end... Enough short time profit for me with crap coins clones :p
Sy
Legendary
*
Offline Offline

Activity: 1484
Merit: 1003


Bounty Detective


View Profile
January 14, 2014, 03:29:23 PM
 #214

18k? Nice Smiley

You own 10% of everything!  Grin

BOUNTY DETECTIVE


















Powered by,
Snard
Full Member
***
Offline Offline

Activity: 140
Merit: 100


View Profile
January 14, 2014, 05:25:56 PM
 #215

How many coins in total are there?

Also, who is grabbing up all these blocks!!  Pool is not getting many.
Burninj
Legendary
*
Offline Offline

Activity: 1148
Merit: 1000


View Profile
January 14, 2014, 05:30:50 PM
 #216

Selling 25k CACHE

Pm me offers.

I'm not the biggest player here, well I don't know if he solds them or not...
kalgecin (OP)
Hero Member
*****
Offline Offline

Activity: 819
Merit: 1000


View Profile
January 14, 2014, 05:35:03 PM
 #217

How many coins in total are there?

Also, who is grabbing up all these blocks!!  Pool is not getting many.

There are 177895.64 coins before block 4109 is mined. And there are a number of solo miners out there :-P :-D






██████████████████████████████████████████████████████████████████████████████████████████████
██████████████████████████████████████████████████████████████████████████████████████
███████████████████████████████████████████████████████████████████████▄▄▄███████████████████████
███████████████████████████████████████████████████████████████████████▀▀▀████████████████████████
██████████████████████████████████████████████████████████████████████████████████████████████████
█████████████████████████████████████████████████████████████████████████████████████████████████





...INTRODUCING WAVES........
...ULTIMATE ASSET/CUSTOM TOKEN BLOCKCHAIN PLATFORM...






jasinlee
Hero Member
*****
Offline Offline

Activity: 742
Merit: 500


Its as easy as 0, 1, 1, 2, 3


View Profile
January 14, 2014, 05:37:17 PM
 #218

Buying bulk amount 1btc for 30k cache.

BTC 1JASiNZxmAN1WBS4dmGEDoPpzN3GV7dnjX DVC 1CxxZzqcy7YEVXfCn5KvgRxjeWvPpniK3                     Earn Devcoins Devtome.com
kalgecin (OP)
Hero Member
*****
Offline Offline

Activity: 819
Merit: 1000


View Profile
January 14, 2014, 06:07:39 PM
 #219

Buying bulk amount 1btc for 30k cache.

doubt someone got 30k :-P






██████████████████████████████████████████████████████████████████████████████████████████████
██████████████████████████████████████████████████████████████████████████████████████
███████████████████████████████████████████████████████████████████████▄▄▄███████████████████████
███████████████████████████████████████████████████████████████████████▀▀▀████████████████████████
██████████████████████████████████████████████████████████████████████████████████████████████████
█████████████████████████████████████████████████████████████████████████████████████████████████





...INTRODUCING WAVES........
...ULTIMATE ASSET/CUSTOM TOKEN BLOCKCHAIN PLATFORM...






donschoe
Full Member
***
Offline Offline

Activity: 157
Merit: 100

Hello Coins


View Profile
January 14, 2014, 07:57:41 PM
 #220

How many coins in total are there?

Also, who is grabbing up all these blocks!!  Pool is not getting many.

Minted: 177,994.55 CACH
Grabbing Blocks: Sykh Smiley

Not using Tapatalk.
Pages: « 1 2 3 4 5 6 7 8 9 10 [11] 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 ... 130 »
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!