Bitcoin Forum
May 02, 2024, 04:02:21 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
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 »
801  Alternate cryptocurrencies / Altcoin Discussion / Re: Bulls finally win? on: June 03, 2018, 09:07:17 PM
The market is still going up, we can finally see some green.
Clearly not a bulls win.No one wins here, its a dynamic market.We can see the bull recovering the market.Even some alts are going up now.
802  Alternate cryptocurrencies / Altcoin Discussion / Re: Panic loss me 10800$ , so patient is the key on: June 03, 2018, 08:33:21 PM
Well, the market can swing either way.
Your coins could have gone bearish too, anything could have happen.So need to keep regrets .-.

You made profit in an hour and thats really good.
803  Alternate cryptocurrencies / Altcoin Discussion / Re: ICO investment is dead? on: June 03, 2018, 08:23:49 PM
Most of the projects are fraud thus decline in the participation.People are afraid to invest even in good projects now.

Most of the projects have now switched to private ICO,  like IOST.
They kept the ICO private and was invitation only.So serious projects can still roll.
804  Bitcoin / Bitcoin Technical Support / Re: Can't connect to node using easybitcoin.php on: June 03, 2018, 05:12:06 PM
easybitcoin seems to be no longer working, or needs some tweaking.

I have written a php function using curl.
You can use this php function, if you are also looking for a solution:
Just pass the method in the function and make sure to edit out your rpc details inside the function.

Code:
<?php

function bitcoin($method){
$ch curl_init();
$rpcuser='rpcusername';
$rpcpassword='rpcpassword'
$host='nodeIP';  //IP address of your node or localhost, if running locally
$port='port';

curl_setopt($chCURLOPT_URL"http://$rpcuser:$rpcpassword@$host:$port/");
curl_setopt($chCURLOPT_RETURNTRANSFER1);
curl_setopt($chCURLOPT_POSTFIELDS"{\"jsonrpc\":\"1.0\",\"id\":\"curltext\",\"method\":\"$method\",\"params\":[]}");
curl_setopt($chCURLOPT_POST1);

$headers = array();
$headers[] = "Content-Type: application/x-www-form-urlencoded";
curl_setopt($chCURLOPT_HTTPHEADER$headers);

$result curl_exec($ch);
if (
curl_errno($ch)) {
    echo 
'Error:' curl_error($ch);
}
curl_close ($ch);
return(
$result);
}
$method="getblockchaininfo"//bitcoin-cli method like getchaininfo,getwalletinfo etceter
$lol=bitcoin($method);
?>



Cheers!
805  Economy / Gambling discussion / Re: Cricket match prediction discussions on: June 02, 2018, 09:25:19 PM
England has bounced back handsomely in this match, I'm not surprised at all that they have performed so well and they're really turning the heat up on pak, who seem to be clueless about the way England has bounced back. I do expect England to score more ans win this match more easily as Pakistan won't be able to handle the hot England.
Pakistan lost this match for sure, England is playing really good, even after having a home advantage as others mentioned their bowlers are performing how they are supposed to. I have a feeling that this match is also fixed i mean how all of a sudden England started paying better than pakisthan
After the al jazeera's allegation, I don't think any cricket official would dare to fix it.
Probably england  played good and with a but of luck they got ahead.
806  Bitcoin / Bitcoin Technical Support / Can't connect to node using easybitcoin.php on: June 02, 2018, 08:49:02 PM
Hey,
I am using this code on one of my vps
Code:

<?php
require_once('easybitcoin.php');
$bitcoin = new Bitcoin('uname','password','node_ip','port');
$new=$bitcoin->status;
var_dump($new);
var_dump($bitcoin);
?>



I am getting this everytime:

Code:
NULL 
object(Bitcoin)#1 (12) { ["username":"Bitcoin":private]=> string(12) "uname" ["password":"Bitcoin":private]=> string(18) "password" ["proto":"Bitcoin":private]=> string(4) "http" ["host":"Bitcoin":private]=> string(12) "node_ip" ["port":"Bitcoin":private]=> string(4) "8392" ["url":"Bitcoin":private]=> NULL ["CACertificate":"Bitcoin":private]=> NULL ["status"]=> NULL ["error"]=> NULL ["raw_response"]=> NULL ["response"]=> NULL ["id":"Bitcoin":private]=> int(0) }


Here's the bitcoin.conf from the node:

Code:

prune=600
maxconnections=12
maxuploadtarget=20
server=1
rpctimeout=30

rpcallowip=VPS IP
rpcport=8392
rpcuser=uname
rpcpassword=passwrd

daemon=1


Any help will be appreciated, thanks!
807  Alternate cryptocurrencies / Altcoin Discussion / Re: Creating public address from ethereum xpub on: June 01, 2018, 07:31:14 PM
Is it possible to generate new ethereum public address from extended public key?
Thanks!

Have you ended up finding this...

Code:
var hdkey = require('ethereumjs-wallet/hdkey');

var extPubKey = 'xpub6ERoQFMqiUoTXAL56JpQYLq5FyXaZypJiKdsAbHKzMUQsSiJTNSMnBtYYRXxda9C6fUx6mMMqatUDNFSKxxXcpBcpPkTqVwyethpWiQN8p5';

var hdwallet = hdkey.fromExtendedKey(extPubKey);
var wallet = hdwallet.getWallet();
var address = wallet.getAddress();

console.log(`Address: 0x${address.toString('hex')}`);
Thanks for looking!
Yea, I got it but I am getting a build error everytime :/
Don't know what's going wrong.If there's any other way, that would be so helpful.
808  Alternate cryptocurrencies / Altcoin Discussion / Creating public address from ethereum xpub on: June 01, 2018, 05:11:24 PM
Is it possible to generate new ethereum public address from extended public key?
Thanks!
809  Alternate cryptocurrencies / Speculation (Altcoins) / Re: IOS Token Speculation Thread on: May 30, 2018, 08:06:40 PM
Is it too late to buy IOST
No, it's not.
Its been only 5 months since the launch! How could it be late? Priced at 500 sats ATM, I see this as a brilliant opportunity to buy a bag.
If you are looking for a reliable long term investment plan with good returns, then IOST might be a very good option for you.But there are always risks tho, make your own decisions and good luck!
810  Alternate cryptocurrencies / Speculation (Altcoins) / Re: IOS Token Speculation Thread on: May 28, 2018, 11:09:02 PM
IOST officially launched theseus today.
Which is a team made for IOST developers, to promote the development dAPPS on the IOST blockchain.
Lets see how it's going to affect the market!
811  Alternate cryptocurrencies / Speculation (Altcoins) / Re: Price Explosion on: May 28, 2018, 11:03:14 PM
Other- I place my bets on IOST. Priced at 0.04$ ATM, this token has a huge potential.Development on ios is starting soon, the first Dapp is rolling out this quarter.And by the end of the year, it will reach the mainnet point! That's when it will reach the moon and will explode Cheesy
812  Economy / Digital goods / {WTS} Luxsocks Proxies on: May 28, 2018, 08:20:35 PM
I have got a luxsocks account with loaded balance.I can buy proxies for you.
PM me with the zip address, and I will show you all the available proxies.My price is 3x of the original price(of proxies).
Can make it 2.5x, if you buy more than 2.

You can buy the account for 300$.Escrow accepted.
813  Economy / Digital goods / Re: Buying old pre-2016 BTC adresses/PK for collection - 0.01 eth per address on: May 28, 2018, 08:14:11 PM
Is there any condition to it?Are they just for collection? Or for claiming drops?
I have many used address before 2016, I will send you an E-mail.
814  Alternate cryptocurrencies / Altcoin Discussion / Re: The market is falling! on: May 28, 2018, 08:07:23 PM
You are almost a week late lel
Most of the coins can be seen on the road of recovery already.IOST is a good example, it was up by 10% this morning.Seems to be a bit down again, but will lift up.
Predicting a coin that might jump out of this will be hard.But if bitcoin recovers, then alts will recover too.
815  Economy / Gambling discussion / Re: IPL( Indian Premier League) Prediction Thread, 2018. on: May 28, 2018, 08:02:20 PM
Same as the voting from the user network, the result clearly got indicated with majority support being gained by the Chennai Super Kings team. Even though it is an re-entry to the Chennai Super Kings the game played them were quite impressive. Finally they've made the trophy belonging to them for the third time.

Watson made CSK to chase the total easily. It was a good match.
Yup, without watson they would have chocked.Just like they do in every final.Watson made it seem easy, but it wasn't.
As I said, it was a result of poor captaincy from Kane williamson, he should have been prepared for the top order batsman.But nothing worked out.

SRH played better cricket, but their luck dried out.Yea, it was a good ipl tho.
816  Alternate cryptocurrencies / Speculation (Altcoins) / Re: Altcoins dropping like crazy on: May 28, 2018, 07:59:16 PM
This is a dynamic market, controlled by the psychology of the majority.A simple trigger leads to a paradigm shift of the most, short-time investors unload their coins in fear.But there are few takers, more supply less demand.And many investors can be included in this bracket.Thus the market falls, altcoins have been priced by the market.Thus they we can see a sudden change from a simple trigger.
Bitcoin falls, so everyone thinks alts will fall too.In fear they themselves cause the fall .-.
817  Alternate cryptocurrencies / Speculation (Altcoins) / Re: LTC or ETH? on: May 28, 2018, 07:51:08 PM
Well its a difficult question to answer.Ether is a very scalable project with efficient blockchain, mainly made for development of smart contracts.Whereas, litecoin is a digital currency which might be used like bitcoin as a currency.So in my opinion, people might use litecoin more than ether(since ether isn't like a currency) for payments, thus making it more bullish in long term.This is just my 2 cents, anything can happen in the future.
818  Economy / Exchanges / Re: Hitbtc death? on: May 28, 2018, 07:41:27 PM
I have read a lot of accusation on hitbtc, locking user's out of their accounts.Just like yobit, they list shit coins too which are almost dead!
Only a fool would trust them with the coins.And yea, they are almost anonymous.They even gloat at the anonymity the founders have, when people warn them of suing them .
A fucked up exchange!
819  Bitcoin / Project Development / Re: Bitcoin & Altcoins Live Price Image generator on: May 28, 2018, 05:03:43 PM
Update

I have shifted the project to openshift, and the updated the post with the new URL
http://liveimage-liveimage.193b.starter-ca-central-1.openshiftapps.com/image.php?coin=NAME

It is too long to be remembered ATM, will update with a domain soon.
Added an option of currency too, /image.php?coin=COIN&currency=CURRENCY
Currency can be usd,aud,inr,cad,gbp,krw,jpy,rub, etcetra. PM me if you can't generate image using your currency.
You can even use btc(for bitcoin); eth(ether) as currency.

You can view the code here https://github.com/edgycorner/Coin-Price-Image-generator/

The price is now fetched from coingecko.

Please let me know, if you find any problem.Thanks!




820  Alternate cryptocurrencies / Speculation (Altcoins) / Re: Why red again. It should slowly turn green on: May 27, 2018, 11:33:21 PM
Huge price difference with low volume, can't predict anything.Everything looks so uncertain, the volume is down to 1/5th from December of 2017.
We need a whole new hype to make it reach 10k again, or just pray for nothing worse to happen.Either way, things are looking pretty bad.But it will bounce back, like all the times Cheesy
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 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!