Bitcoin Forum
June 28, 2024, 02:02:39 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: [1]
1  Alternate cryptocurrencies / Service Announcements (Altcoins) / JSE Dice - New JSE Coin based dice game on: November 29, 2019, 08:34:38 PM

JSE Dice is a new JSE Coin based dice game
Deposits and withdrawals are processed instantly
House edge: 1%
Faucet: 2.0 JSE
Play and have fun




2  Economy / Service Announcements / New Advertising Network on: January 07, 2019, 04:55:28 PM
Live Coinz Advertising Network

CPM and CPC advertising system. For advertisers, multiple ad formats and bot detection system, for publishers instant payouts , $20 minimum withdrawal limit

Rates:
CPM: $1.00
CPC: $0.05
Network Fee: 10%

http://livecoinz.com
3  Economy / Micro Earnings / Re: livecoinz.com - New Bitcoin Faucet on: January 01, 2019, 07:24:38 PM
There is a bot prevention method implemented
4  Economy / Micro Earnings / Re: livecoinz.com - New Bitcoin Faucet on: January 01, 2019, 10:29:42 AM
Good and unique.
No referral program,btw?


Not yet, will add in the future
5  Economy / Micro Earnings / livecoinz.com - New Bitcoin Faucet on: December 31, 2018, 08:19:38 PM
http://livecoinz.com/faucet

It's my first faucet

Reward: 50 satoshi
Pays to Faucet Hub
Claim every 5 minutes


6  Economy / Economics / Alternative currency ( paper money ) on: October 10, 2018, 11:54:37 AM
If there was an alternative currency (paper money) unregulated by the Government would you use it?
7  Economy / Gambling / Re: Unique Bitcoin Game - For The Ultimate Experience on: July 09, 2018, 07:21:34 PM
Fixed provably fair system , added ssl, added FAQ
8  Economy / Gambling / Re: Unique Bitcoin Game - For The Ultimate Experience on: July 07, 2018, 12:37:04 PM
"How to play" should be added because it is a new game and not all people understand how to play your game. Tried with the free 1000 satoshi bonus and bet all of it in a bet but it says "your bet exceeds 750 satoshi".
No provably fair system? So how do we know that you are not cheating us? Provably fair system is a must if you want to gain players. Otherwise, no one would be interested to play no matter how unique your game is.



Added provably fair system and "How to play".


Quote
Tried with the free 1000 satoshi bonus and bet all of it in a bet but it says "your bet exceeds 750 satoshi".

There is a maximum bet limit that will rise over time

9  Economy / Gambling / Re: Unique Bitcoin Game - For The Ultimate Experience on: July 07, 2018, 06:41:45 AM

Every player receives 1000 satoshis when making a new account. When the account balance is under 100 satoshis then the user can use the faucet.

10  Economy / Gambling / Unique Bitcoin Game - 1000 satoshis at startup on: July 06, 2018, 07:44:32 AM
You play against a bot, the round starts with a bet, every player stacks between one and three coins, the player stacking the last coin wins.
Includes 1000 satoshis at startup plus faucet, provably fair, play and have fun


11  Economy / Exchanges / Re: Working with spectrocoin's API on: July 06, 2018, 07:31:59 AM
Resolved
12  Economy / Exchanges / Working with spectrocoin's API on: July 01, 2018, 02:54:27 PM
Did anyone worked with spectrocoin's API. I am trying to send bitcoins using their API and I'm getting some error.

I've written this php code, when running I'm getting the error [{"code":99,"message":"Please check your request"}] when refreshing the token and [{"code":100,"message":"Unexpected error"}] when sending bitcoins


Code:
// auth
$url = 'https://spectrocoin.com/api/r/oauth2/auth';

$ch = curl_init($url);

$jsonData = array(
'client_id' => 'wallet_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx',
'client_secret' => 'xxxxxxxx',
'version' => '1.0',
'scope' => 'send_currency currency_exchange user_account'
);

$jsonDataEncoded = json_encode($jsonData);

curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, $jsonDataEncoded);
curl_setopt($ch,CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_HTTPHEADER, array(
'Connection: Keep-Alive',
'Content-Length: '.strlen($jsonDataEncoded),
'Content-Type: application/json',
'Host: spectrocoin.com'
));

$result = curl_exec($ch);

$manage = explode(":",$result);

$manageB = explode('"',$manage[1]);
$manageC = explode('"',$manage[4]);
$accessToken = $manageB[1];
$refreshToken = $manageC[1];


// refresh
$url = 'https://spectrocoin.com/api/r/oauth2/refresh';

$ch = curl_init($url);

$jsonData = array(
'client_id' => 'wallet_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx',
'client_secret' => 'xxxxxxxx',
'version' => '1.0',
'scoperefresh_token' => $refreshToken
);

$jsonDataEncoded = json_encode($jsonData);

curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, $jsonDataEncoded);
curl_setopt($ch,CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_HTTPHEADER, array(
'Connection: Keep-Alive',
'Content-Length: '.strlen($jsonDataEncoded),
'Content-Type: application/json',
'Host: spectrocoin.com'
));

$result = curl_exec($ch);



echo $result;




// send
$url = 'https://spectrocoin.com/api/r/wallet/send/BTC';

$ch = curl_init($url);

$jsonData = array(
'amount' => '0.00000600',
'receiver' => '1DnWpp7AeM69w14MU5TXWUSERrhWFEtP92'
);

$jsonDataEncoded = json_encode($jsonData);

curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, $jsonDataEncoded);
curl_setopt($ch, CURLOPT_HTTPHEADER, array(
'Authorization: Bearer '.$accessToken ,
'Connection: Keep-Alive',
'Content-Length: '.strlen($jsonDataEncoded),
'Content-Type: application/json',
'Host: spectrocoin.com'
));
$result = curl_exec($ch);

13  Economy / Exchanges / Re: [ANN] SPECTROCOIN.COM Cryptocurrency Exchange, Blockchain Wallet, Prepaid Card on: June 30, 2018, 04:51:11 PM
I've written this php code, when running I'm getting the error [{"code":99,"message":"Please check your request"}] when refreshing the token and [{"code":100,"message":"Unexpected error"}] when sending bitcoins


Code:

// auth
$url = 'https://spectrocoin.com/api/r/oauth2/auth';

$ch = curl_init($url);

$jsonData = array(
'client_id' => 'wallet_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx',
'client_secret' => 'xxxxxxxx',
'version' => '1.0',
'scope' => 'send_currency currency_exchange user_account'
);

$jsonDataEncoded = json_encode($jsonData);

curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, $jsonDataEncoded);
curl_setopt($ch,CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_HTTPHEADER, array(
'Connection: Keep-Alive',
'Content-Length: '.strlen($jsonDataEncoded),
'Content-Type: application/json',
'Host: spectrocoin.com'
));

$result = curl_exec($ch);

$manage = explode(":",$result);

$manageB = explode('"',$manage[1]);
$manageC = explode('"',$manage[4]);
$accessToken = $manageB[1];
$refreshToken = $manageC[1];


// refresh
$url = 'https://spectrocoin.com/api/r/oauth2/refresh';

$ch = curl_init($url);

$jsonData = array(
'client_id' => 'wallet_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx',
'client_secret' => 'xxxxxxxx',
'version' => '1.0',
'scoperefresh_token' => $refreshToken
);

$jsonDataEncoded = json_encode($jsonData);

curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, $jsonDataEncoded);
curl_setopt($ch,CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_HTTPHEADER, array(
'Connection: Keep-Alive',
'Content-Length: '.strlen($jsonDataEncoded),
'Content-Type: application/json',
'Host: spectrocoin.com'
));

$result = curl_exec($ch);



echo $result;




// send
$url = 'https://spectrocoin.com/api/r/wallet/send/BTC';

$ch = curl_init($url);

$jsonData = array(
'amount' => '0.00000600',
'receiver' => '1DnWpp7AeM69w14MU5TXWUSERrhWFEtP92'
);

$jsonDataEncoded = json_encode($jsonData);

curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, $jsonDataEncoded);
curl_setopt($ch, CURLOPT_HTTPHEADER, array(
'Authorization: Bearer '.$accessToken ,
'Connection: Keep-Alive',
'Content-Length: '.strlen($jsonDataEncoded),
'Content-Type: application/json',
'Host: spectrocoin.com'
));
$result = curl_exec($ch);




14  Economy / Services / Spectrocoin API on: June 29, 2018, 07:07:13 PM
Are there any examples on how to use spectrocoin's API to send bitcoins to an address in PHP
15  Economy / Services / Re: Not receiving payouts from cryptoo.me on: June 29, 2018, 11:37:44 AM
What other alternatives are there to send coins?
16  Economy / Services / Re: Not receiving payouts from cryptoo.me on: June 28, 2018, 05:04:08 PM
I'm using blockchain , no transaction is shown under 'received' section. On cryptoo me under payouts status is marked as "done"
17  Economy / Web Wallets / Re: Blockchain api key on: June 28, 2018, 04:54:09 PM
I'm getting NULL when running the code:

https://blockchain.info/merchant/xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx/sendmany?password=xxxxxx&second_password=xxxxxx&recipients=%7B%0D%0A++++++++++++++++++%221NfGMB5DNVitjvUKk2UJw2iZH28sAGP6XX%22%3A+600%0D%0A+++++++++++++++%7D

NULL



Code:
$guid="xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"; 
$firstpassword="xxxxxxxxxxx";
$secondpassword="xxxxxxxxxxx";
$amounta = "600";
$addressa = "1NfGMB5DNVitjvUKk2UJw2iZH28sAGP6XX";
$recipients = urlencode('{
                  "'.$addressa.'": '.$amounta.'
               }');

$json_url = "https://blockchain.info/merchant/$guid/sendmany?password=$firstpassword&second_password=$secondpassword&recipients=$recipients";

echo $json_url."\n";

$json_data = file_get_contents($json_url);
$json_feed = json_decode($json_data);

var_export($json_feed);
18  Economy / Services / Not receiving payouts from cryptoo.me on: June 28, 2018, 12:47:09 PM
I'm using the api to make payments, the transactions are are showing in the payouts section but I don't receive any coins
19  Economy / Web Wallets / Blockchain api key on: June 28, 2018, 12:37:06 PM
I received an api key from blockchain, I'm using it to create unique addresses so I can receive payments, how do I link that api key to my blockchain wallet account
20  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] MONKEY PROJECT [X11] [POW/POS] [LOW PREMINE] [365% - 730% - 1850% ROI] on: March 19, 2018, 02:16:27 PM
What is the formula to calculate how many stakes I get per coins in my wallet per day
Pages: [1]
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!