Bitcoin Forum
June 14, 2024, 07:17:55 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 ... 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 [101] 102 103 104 105 »
2001  Economy / Service Announcements / Re: Glados Faucet (No Fees)(24 Hour Faucet) on: July 12, 2013, 05:40:21 AM
Quote
Powered by MyFaucet - get your own fauce!
Fauce?
2002  Economy / Scam Accusations / Re: Possible Phishing Scam via PM hiddenoreo - BTC-E TradeBot / Earn .1 btc a week on: July 10, 2013, 04:02:15 PM
Why is there mine SN on your screen cap. picture:) ? Anyone has an idea how the site is actually trying to scam you btw ? I clicked on it, so I wanted to know if Iam fine
if you enter username and password at their fake forum they just stole your account.  Or if you download thaw trade bot I bet it steals all your coins.
2003  Economy / Scam Accusations / Re: Possible Phishing Scam via PM hiddenoreo - BTC-E TradeBot / Earn .1 btc a week on: July 10, 2013, 01:51:02 AM
Recieved as well from hiddenoreo, if you try clicking a link on the page it either sends you back to here at .org or it asks you to login. The "official" page to download looks shady as well http://ww<dontlinkme>w.btce-bot.me
2004  Economy / Gambling / Re: BlockEnd.net - Win Prize if TxID matches block hash. on: July 08, 2013, 08:17:47 AM
-- BlockEnd.net Terminated due to lack of participation --
2005  Alternate cryptocurrencies / Service Announcements (Altcoins) / Re: Just-Dice : FREE BTC : Play or Invest : 1% House Edge : Banter++ on: June 24, 2013, 04:23:52 AM
And.... She's back.  Grin
2006  Alternate cryptocurrencies / Service Announcements (Altcoins) / Re: Just-Dice : FREE BTC : Play or Invest : 1% House Edge : Banter++ on: June 24, 2013, 04:20:19 AM
Ahhh my addiction needs to be fulfilled
Feeling the same way. Took the weekend off and was just looking to play for a little bit
2007  Alternate cryptocurrencies / Service Announcements (Altcoins) / Re: Just-Dice : FREE BTC : Play or Invest : 1% House Edge : Banter++ on: June 24, 2013, 04:07:45 AM
The site's down at the moment.  Not sure if the server couldn't cope with the interest brought on by the 2 million competition, or if it's a DDoS.  I'll move to a bigger server and see if that helps.

I'll post here with more info when I have it.
Now that is how you drag on the suspense of a pending roll.... 0.01 BTC on 49%  Cool

But in anycase I hope to see the site back soon it has been treating me nicely lately 0.51 invested has turned into 0.53xx and have 0.6xx profits on general rolls
2008  Economy / Gambling / Re: Just-Dice : Bet Number 2,000,000 Competition : Double Your Stake, Win or Lose on: June 24, 2013, 03:17:08 AM
https://just-dice.com/roll/2000000
Made by Bugpowder
2009  Economy / Gambling / Re: [FREE 0.01 BTC] CoinsVictory.com - Become a tester and play for free! Max. 50 on: June 24, 2013, 03:13:39 AM
bitspill

Sounds like a good choice in games as opposed to standard casino games always
2010  Economy / Gambling / Re: Just-Dice : Bet Number 2,000,000 Competition : Double Your Stake, Win or Lose on: June 24, 2013, 01:33:38 AM
Who won doog?
It's not over yet, bets: 1,976,213
2011  Bitcoin / Project Development / Re: 2 BTC Bounty: PHP / JSON-RPC Sweep Key Function on: June 21, 2013, 02:06:47 AM
I actually implemented a sweep address not sweep privkey as was orifinally posted however by PM he said that was an erro on his part it should have stated a sweep privkey as it does now, and and he sent me 0.5 BTC.

Here was my code for free use:
Code: (php)
/**
 * Take the entire Balance of Address A and send it to Address B
 *
 * @param jsonRPCClient $jsonrpc A valid jsonRPCClient connected to bitcoind
 * @param string $addrA Address to sweep
 * @param string $addrB Address to receive swept funds
 * @param int $fee Fee to be applied (satoshis), is computed as ($perkb * size in kb) if $fee == -1
 *  else it is applied directly
 * @param int $perkb Fee (satoshis) to be applied per kb of transaction size
 * @param int $minconf Minimum number of confirmations required to be swept
 * @return array Result contains 2 elements, success and either message or txid.
 *  If success == true then txid contains the transaction id else message contains the error
 */
function sweepBTC($jsonrpc, $addrA, $addrB, $fee = -1, $perkb = 10000, $minconf = 0) {
    $unspent = $jsonrpc->listunspent($minconf);
    $txinputs = array();
    $addrbalance = 0;
 
    foreach ($unspent as $value) {
        if ($value["address"] == $addrA) {
            $txinputs[] = array("txid" => $value["txid"],
                "vout" => $value["vout"]);
            $addrbalance += (int) round($value["amount"] * 1e8);
        }
    }
 
    if (count($txinputs) < 1) {
        return array("success" => false, "message" => "No unspent outputs available");
    }
 
// fee calculate by ($perkb * size in kb) following the formula at:
// http://bitcoin.stackexchange.com/questions/1195/how-to-calculate-transaction-size-before-sending
    if ($fee == -1)
        $fee = (int) max($perkb * floor((count($txinputs) * 148 + 44) / 1024), $perkb);
    else if ($fee < 0) {
        return array("succes" => false, "message" => "Fee must be non-negative");
    }
 
    $btcToSend = ($addrbalance - $fee);
    if ($btcToSend < 0) {
        return array("success" => false, "message" => "Not enough funds to cover fee");
    }
    $rawtx = $jsonrpc->createrawtransaction(
            $txinputs, array(
        $addrB => ($btcToSend / 1e8)));
 
    $signedtx = $jsonrpc->signrawtransaction($rawtx);
    if ($signedtx["Complete"] == 1) {
        $txid = $jsonrpc->sendrawtransaction($signedtx["hex"]);
    } else {
        return array("success" => false, "message" => "Oddly the transaction did not sign completely...");
    }
    return array("success" => true, "txid" => $txid);
}
2012  Alternate cryptocurrencies / Service Announcements (Altcoins) / Re: Just-Dice : FREE BTC : Play or Invest on: June 20, 2013, 06:27:29 AM
User ID is: 56

Guess I will have to play with this a little, hopefully it works out better than PrimeDice for me (It was fun but I kept losing)
2013  Bitcoin / Project Development / Re: 1.5 BTC Bounty: PHP / JSON-RPC Sweep Key Function on: June 18, 2013, 08:00:41 AM
Well, I feel it is mostly complete now and the fee is exposed as a parameter however if it is -1 then the fee is calculated based upon tx size.

Would you prefer I PM you, or post the code here publicly?
2014  Bitcoin / Project Development / Re: Need a hosting that support ruby on rails? on: June 18, 2013, 04:08:26 AM
Need a hosting that support ruby on rails?
It is somewhat unclear if you are providing or looking for ruby on rails hosting... I assume you are looking for it.


The host I use is http://www.webfaction.com/ or if you are so kind affiliate link

They provide a fairly simple control panel that would allow you to easily get a rails app up and running quickly
Details specific to rails can be found here http://docs.webfaction.com/software/rails.html
2015  Other / Meta / Re: This account has been compromised. on: June 17, 2013, 05:06:38 AM
I don't know if Bitcoinplus.com and the site Browsermine.com are related (the IP is not the same), as the text of the page is the same, including a syntax error: 'transfered' instead 'transferred'.
Browserminer.com is someone saving the html from bitcoinplus.com and rehosting it with their own java applet being loaded

Located near the top of the page source is a comment inserted stating it was saved from bitcoinplus.com and all of the links throughout the page link back to bitcoinplus.
2016  Bitcoin / Project Development / Re: 1.5 BTC Bounty: PHP / JSON-RPC Sweep Key Function on: June 17, 2013, 03:42:03 AM
Given a sweep address, a sweep to address and a RPC connection to Bitcoin-Qt, this function must send all the coins to the sweep to address, paying the appropriate network fee.

1.5 BTC bounty.
1) By sweep you mean to take the entire balance of "Address A" and send it to "Address B", correct?
2) "Appropriate network fee" Would you like that exposed as a parameter to the method or calculated somehow based upon the size of the transaction?


As of right now I have a crude but functional implementation that needs some error checking and other improvements.
2017  Bitcoin / Project Development / Re: [PAID] 0.5 BTC bounty for graph of unspent outputs on: June 14, 2013, 09:01:27 AM
New version of the csv file containing:
Block #, Total unspent, Transactions in block, New outputs in block

Code:
unspent_v2.csv (4.5 MB)
https://mega.co.nz/#!bZp01SQY!HRkpblOZmobu_UUNpnOtKS65zeIjRiiMoKMaGOEsHNE

Note: Still only goes up to block 237,270.
Note2: If you try to verify on blockchain.info by viewing a block by its # you must subtract 1, for example http://blockchain.info/block-height/237262 is block # 237263 in the .csv (blockchain.info first block is 0, .csv first block is 1)

Edit: looking back it seems you wanted total outputs not "new outputs in block" however you can simply add all the previous data points to get the total
2018  Bitcoin / Project Development / Re: 0.5 BTC bounty for graph of unspent outputs on: June 14, 2013, 02:42:06 AM
PAID.   I was unable to open the .xls in keynote thus couldn't copy your address.     
Thanks, and as I said I plan to update again upon downloading more of the blockchain, and add the total outputs portion as well
2019  Bitcoin / Project Development / Re: 0.5 BTC bounty for graph of unspent outputs on: June 14, 2013, 02:04:00 AM
bitspill:  I will throw in an extra 0.05BTC to rerun your script and include the 'total outputs' in addition to 'unspent' outputs.   
Something like http://blockchain.info/charts/n-transactions-total but by block rather than by date?
2020  Bitcoin / Project Development / Re: 0.5 BTC bounty for graph of unspent outputs on: June 14, 2013, 02:02:55 AM
Could you send me your bitcoin address in a form I could copy and paste vs in your graphic?
Sure, It was in the spreadsheet Wink
1DtEUTEUBHrUSWTEDLz99Mrz2a2WjaVKeM


Also, if you could export it as a .csv because I don't have .xls and Numbers will not open your .xls file because it has too many rows.
Sure can, the code exports a csv I only opened it in excel to make the graph, however if it was due to the number of rows importing from csv will still be 237k rows anyway and likely cause the same error.

Code:
unspent.csv (3.3 MB)
https://mega.co.nz/#!ONAzgaqA!CDZ8Dlr2NIXeMTaq5Pg0REH0XYFs8Fwtinvb-aiHvS0

Pages: « 1 ... 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 [101] 102 103 104 105 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!