Bitcoin Forum
July 04, 2024, 05:14:09 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 ... 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 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 106 107 108 109 110 111 112 113 ... 122 »
1241  Economy / Gambling discussion / Re: Primedice or Fortune Jack? on: August 21, 2017, 04:54:31 PM
FJ has been a major disappointment for me. They took off the Poker, have crappy games and don't really offer any incentive to stick around.
I don't really understand what do you mean when you say "they have crappy games", fortunejack has more than 400 slots, blackjack, roulette, dice, fortune wheel, keno, live games, video poker, lots of games with jackpots, 1BTC daily promotion(lucky jack). Strange...

OP both sites have 1% house edge and provably fair dice, both sites have dice jackpot and both sites are old and trusted - if I were you i would try dice at both sites.
They offer games from all the major providers. If their games are crappy, then definitely almost every casino in the internet has crappy games.
1242  Economy / Gambling discussion / Re: Frustration in betting. on: August 21, 2017, 02:44:52 PM
Another great strategy is to diversify the risk. That way you can bet on both low odds and high odds bet and the end result should be averagely good earnings, if you usually win of course.
1243  Economy / Gambling discussion / Re: Primedice or Fortune Jack? on: August 21, 2017, 02:39:34 PM
You shouldn't even play dice games at first. But if you really want to play I'd suggest you to play at FortuneJack. Because they have too many game options. It's not an ordinary dice site, you can find different type of games and have fun. Gambling is all about fun, you can try all and pick the most entertaining game. Don't play to take profit. If you win in the end you would be lucky.
Well, many people like dice games but I personally prefer slots since they're much more entertaining and fun.
1244  Economy / Gambling / Re: Say hello to Satoshi Dice, without the dice! on: August 21, 2017, 12:47:11 PM
Basically winners would earn at least 98%, correct?
1245  Economy / Investor-based games / Re: Turn 0.002 BTC into 1.133 BTC on: August 21, 2017, 12:44:21 PM
You should move this post to https://bitcointalk.org/index.php?board=207.0
1246  Economy / Gambling / Re: ♦♦♦ Coinasino.com | 3 Stunning Games | Multiplayer | Bitcoin only | Fair on: August 21, 2017, 10:15:32 AM
What is the withdrawal fee?
1247  Economy / Exchanges / Re: WARNING COINBASE BLOCKS ALL ACCOUNTS which send or receive to or from casinos? on: August 21, 2017, 10:10:48 AM
Nobody else replied so I will add Xapo.
It can be an alternative for gambling transactions. I've never heard that Xapo blocks accounts for gambling transactions. You only have to be ready that Xapo may ask for id verification, but it's not related to casino transactions. It's just Xapo policy, and users have to know about it.
Thanks for the warning. I will add it to the list of alternatives.
1248  Economy / Gambling discussion / Re: Primedice or Fortune Jack? on: August 21, 2017, 09:20:23 AM
The good thing about FortuneJack is they have games from lots of providers. The only country they don't really have games for is United Kingdom.
1249  Economy / Gambling / Re: ♦♦♦ Coinasino.com | 3 Stunning Games | Multiplayer | Bitcoin only | Fair on: August 21, 2017, 08:53:47 AM
Earn 0.05% (Per 1 BTC 0.0005 BTC will be earn) of your referrals wager instantly. **

What does "**" mean?
1250  Economy / Gambling / Re: ⚫️ BITOK DICE CASINO ⚫️ NEW GAME added! Play for BTC || ✔Investors welcome on: August 21, 2017, 08:49:48 AM
Do you plan on at least adding the ability to save our email so that we can recover our account if needed?
1251  Economy / Gambling discussion / Re: Primedice or Fortune Jack? on: August 21, 2017, 08:48:02 AM
Personally I think FortuneJack has a better and funnier selection of games.
1252  Economy / Exchanges / Re: [WTB] Bitstamp PHP<->API solution for.... on: August 20, 2017, 12:05:07 PM
Are you using the code from my post or the code from your post? I fixed a small glitch since I posted the code which may be the culprit.

EDIT: Yes, you're using the version with the glitch.

This is the line with the problem:
Code:
$bitstamp_eurusd=bitstamp_query("eur_usd");

You must use this instead:

Code:
$bitstamp_eurusd=bitstamp_query("eur_usd",array(),"get");
1253  Economy / Exchanges / Re: [WTB] Bitstamp PHP<->API solution for.... on: August 20, 2017, 11:37:32 AM
They have both markets available. I did USD>EUR conversion because that's what you asked.
This is all that's needed:

Code:
$bitstamp_eur_amount=10;
bitstamp_query("v2/buy/market/btceur",array("amount"=>$bitstamp_eur_amount));
1254  Economy / Exchanges / Re: [WTB] Bitstamp PHP<->API solution for.... on: August 20, 2017, 11:01:39 AM
The actual Market Buy is not included on print_r() because there is no need to output the information from it. We need to process the information from the variable instead.
1255  Economy / Exchanges / Re: [WTB] Bitstamp PHP<->API solution for.... on: August 20, 2017, 08:22:02 AM
Not the most elegant solution, but should work. You have to replace the key, secret and client id on the first line.
Of course you also need to specify the amount of USD you want to buy and the destination Bitcoin address.

Code:
<?php
/**
* BitStamp Order and Withdraw
* https://bitcointalk.org/index.php?topic=2102954.msg21033624#msg21033624
**/
function bitstamp_query($path, array $req = array(), $verb 'post'$key="KEY_HERE"$secret="SECRET_HERE"$client_id="CLIENT_ID_HERE"){
        
// generate a nonce as microtime, with as-string handling to avoid problems with 32bits systems
        
$mt explode(' 'microtime());
        
$req['nonce'] = $mt[1] . substr($mt[0], 26);
        
$req['key'] = $key;
        
$req['signature'] = bitstamp_get_signature($req['nonce'],$key,$secret,$client_id);

        
// generate the POST data string
$post_data http_build_query($req'''&');
// any extra headers
$headers = array();

// our curl handle (initialize if required)
static $ch null;
if (is_null($ch)){
        $ch curl_init();
        curl_setopt($chCURLOPT_RETURNTRANSFERtrue);
        curl_setopt($chCURLOPT_USERAGENT'Mozilla/4.0 (compatible; BitStamp PHP Client');
}
curl_setopt($chCURLOPT_URL'https://www.bitstamp.net/api/' $path .'/');
curl_setopt($chCURLOPT_SSL_VERIFYPEER1);  // man-in-the-middle defense by verifying ssl cert.
curl_setopt($chCURLOPT_SSL_VERIFYHOST2);  // man-in-the-middle defense by verifying ssl cert.
if ($verb == 'post'){
        curl_setopt($chCURLOPT_POSTFIELDS$post_data);
}
curl_setopt($chCURLOPT_HTTPHEADER$headers);
// run the query
$res curl_exec($ch);
if ($res === false)
        return false;
$dec json_decode($restrue);
if (is_null($dec))
        return false;
return $dec;
}
function 
bitstamp_get_signature($nonce,$key,$secret,$client_id){
$message $nonce.$client_id.$key;
return strtoupper(hash_hmac('sha256'$message$secret));
}



// Amount of USD to buy
$bitstamp_usd_amount=USD_AMOUNT_HERE;

// Bitcoin address to send to
$bitstamp_bitcoin_address="DESTINATION_BITCOIN_ADDRESS_HERE";


$bitstamp_eurusd=bitstamp_query("eur_usd",array(),"get");
$bitstamp_eur_amount=$bitstamp_usd_amount/$bitstamp_eurusd["buy"];

$bitstamp_buy_order=bitstamp_query("v2/buy/market/btceur",array("amount"=>$bitstamp_eur_amount));
$bitstamp_ordered_amount=$bitstamp_buy_order["amount"];

print_r(bitstamp_query("bitcoin_withdrawal",array(
"amount" => $bitstamp_ordered_amount,
"address" => $bitstamp_bitcoin_address,
"instant" => // set to 1 to send a BitGo instant payment. An additional fee apply.
)));


// get balance
print_r(bitstamp_query("balance",array()));

My Bitcoin address: 3KRvcgq8odGDN4DXN9iLpEMnE4mseVbmyP

Derived from a class made for BitStamp.
1256  Economy / Exchanges / Re: NOTICE OF ACCOUNT CLOSURE AND PENDING DISABLEMENT on: August 20, 2017, 07:35:33 AM
Contact CoinBase support without logging into your account:

https://support.coinbase.com/customer/portal/emails/new

You are able to chat and open a support ticket.
1257  Economy / Currency exchange / Re: Have cash? Send Western Union or MoneyGram and get Bitcoins within the next 24h! on: August 19, 2017, 05:46:29 AM
Frequently Asked Questions

Do you accept escrow?
Yes, but the price would be quite different to allow for market changes and to pay LocalBitcoins' fees. Also there would be a lower limit since I would have to take bitcoins out of my exchange accounts.

This thread is set to self moderation to remove all signature spammers and those who are not interested on this offer.

If you have a question, feel free to ask. However those posts whose only motive is to spam and/or harm will be removed.
1258  Economy / Exchanges / Re: Buying BTC in Qatar other than BitOasis? on: August 18, 2017, 06:05:12 PM
If you can send a Western Union or a MoneyGram transfer, you can order Bitcoins from me: https://bitcointalk.org/index.php?topic=2100267.0
1259  Economy / Currency exchange / Have cash? Send Western Union or MoneyGram and get Bitcoins within the next 24h! on: August 18, 2017, 06:01:19 PM


You send a Western Union (WU) or MoneyGram(MG) transfer.
I send you Bitcoins (BTC), Litecoins (LTC) or Ethereum (ETH).

Please save the receipt when sending the money.

I say "within the next 24h" to cover for any possible delays on money transfers. Most transfers take less than that. I do not work on weekends.

Send me a Private Message (PM) to start an exchange transaction

My price is EXMO +10% when buying Bitcoins. The price is set at receipt of the funds. Ask for a quote first.
If you are buying Litecoins or Ethereum, please ask for a quote first.
1260  Economy / Gambling discussion / Re: What's Your Favorite Bitcoin Gambling Site? on: August 18, 2017, 02:26:07 AM
FortuneJack and mBitCasino
Pages: « 1 ... 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 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 106 107 108 109 110 111 112 113 ... 122 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!