Search content
Sort by

Showing 20 of 20 results by freeman1177
Post
Topic
Board Gambling
Topic OP
JSE Dice - New JSE Coin based dice game
by
freeman1177
on 29/11/2019, 20:34:38 UTC

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




Post
Topic
Board Service Announcements
Topic OP
New Advertising Network
by
freeman1177
on 07/01/2019, 16:55:28 UTC
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
Post
Topic
Board Micro Earnings
Re: livecoinz.com - New Bitcoin Faucet
by
freeman1177
on 01/01/2019, 19:24:38 UTC
There is a bot prevention method implemented
Post
Topic
Board Micro Earnings
Re: livecoinz.com - New Bitcoin Faucet
by
freeman1177
on 01/01/2019, 10:29:42 UTC
Good and unique.
No referral program,btw?


Not yet, will add in the future
Post
Topic
Board Micro Earnings
Topic OP
livecoinz.com - New Bitcoin Faucet
by
freeman1177
on 31/12/2018, 20:19:38 UTC
http://livecoinz.com/faucet

It's my first faucet

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


Post
Topic
Board Economics
Alternative currency ( paper money )
by
freeman1177
on 10/10/2018, 11:54:37 UTC
If there was an alternative currency (paper money) unregulated by the Government would you use it?
Post
Topic
Board Gambling
Re: Unique Bitcoin Game - For The Ultimate Experience
by
freeman1177
on 09/07/2018, 19:21:34 UTC
Fixed provably fair system , added ssl, added FAQ
Post
Topic
Board Gambling
Re: Unique Bitcoin Game - For The Ultimate Experience
by
freeman1177
on 07/07/2018, 12:37:04 UTC
"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

Post
Topic
Board Gambling
Re: Unique Bitcoin Game - For The Ultimate Experience
by
freeman1177
on 07/07/2018, 06:41:45 UTC

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.

Post
Topic
Board Gambling
Unique Bitcoin Game - 1000 satoshis at startup
by
freeman1177
on 06/07/2018, 07:44:32 UTC
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


Post
Topic
Board Exchanges
Re: Working with spectrocoin's API
by
freeman1177
on 06/07/2018, 07:31:59 UTC
Resolved
Post
Topic
Board Exchanges
Working with spectrocoin's API
by
freeman1177
on 01/07/2018, 14:54:27 UTC
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);

Post
Topic
Board Exchanges
Re: [ANN] SPECTROCOIN.COM Cryptocurrency Exchange, Blockchain Wallet, Prepaid Card
by
freeman1177
on 30/06/2018, 16:51:11 UTC
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);




Post
Topic
Board Services
Spectrocoin API
by
freeman1177
on 29/06/2018, 19:07:13 UTC
Are there any examples on how to use spectrocoin's API to send bitcoins to an address in PHP
Post
Topic
Board Services
Re: Not receiving payouts from cryptoo.me
by
freeman1177
on 29/06/2018, 11:37:44 UTC
What other alternatives are there to send coins?
Post
Topic
Board Services
Re: Not receiving payouts from cryptoo.me
by
freeman1177
on 28/06/2018, 17:04:08 UTC
I'm using blockchain , no transaction is shown under 'received' section. On cryptoo me under payouts status is marked as "done"
Post
Topic
Board Web Wallets
Re: Blockchain api key
by
freeman1177
on 28/06/2018, 16:54:09 UTC
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);
Post
Topic
Board Services
Not receiving payouts from cryptoo.me
by
freeman1177
on 28/06/2018, 12:47:09 UTC
I'm using the api to make payments, the transactions are are showing in the payouts section but I don't receive any coins
Post
Topic
Board Web Wallets
Blockchain api key
by
freeman1177
on 28/06/2018, 12:37:06 UTC
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
Post
Topic
Board Announcements (Altcoins)
Re: [ANN] MONKEY PROJECT [X11] [POW/POS] [LOW PREMINE] [365% - 730% - 1850% ROI]
by
freeman1177
on 19/03/2018, 14:16:27 UTC
What is the formula to calculate how many stakes I get per coins in my wallet per day