Search content
Sort by

Showing 20 of 215 results by Nshan0102
Post
Topic
Board Bitcoin Technical Support
Re: Is the wallet balance same as All address's balance together?
by
Nshan0102
on 16/09/2019, 19:45:12 UTC
Thank you all guys!
Post
Topic
Board Bitcoin Technical Support
Re: Is the wallet balance same as All address's balance together?
by
Nshan0102
on 15/09/2019, 15:20:29 UTC
Yes.

Thank you very much.
Also I want to know how to use this link of my address ( what is it for? ) -- bitcoin:35nnq5CfkBKFXJ45sa5d4a5sDAD54Samount=0.00500000&MyLabel
And is there any way to save address image using btc-cli command line?
Post
Topic
Board Bitcoin Technical Support
Topic OP
Is the wallet balance same as All address's balance together?
by
Nshan0102
on 15/09/2019, 14:42:20 UTC
Hey there!
I want to know if the all addresses created by me in the same wallet will get bitcoins directly to my wallet:
for example I have created 2 new addresses and someone sent 5 bitcoins to each address, will I see 10 BTC-s in my wallet?
Post
Topic
Board Bitcoin Technical Support
Re: Help! to connect Bitcoin Core
by
Nshan0102
on 19/08/2019, 10:17:16 UTC
Please provide the bitcoin.conf so that others can also learn from what you found.

Now my bitcoin.conf looks likes this.
Code:
# Generated by https://jlopp.github.io/bitcoin-core-config-generator/

# This config should be placed in following path:
# %UserProfile%\AppData\Roaming\Bitcoin\bitcoin.conf

server=1

# [network]
# Listen for incoming connections on non-default port.
port=8333

# [rpc]
# Listen for JSON-RPC connections on this port
rpcuser=Administrator
rpcpassword=somepassword
rpcallowip=111.222.0.0/16
rpcport=8332

Did you try to test the rpc over shh localy (on the server itself)  to ensure this works?
Yes and it works.
But I can't access it from other server.
Post
Topic
Board Bitcoin Technical Support
Re: Help! to connect Bitcoin Core
by
Nshan0102
on 17/08/2019, 14:41:43 UTC
today I have searched very long to discover if my bitcoin.conf settings are wrong, and I found some mistakes there.
After some fixes I could run commands from my Bitcoin server's command line and it works.

Now the problem is that I still can't use my rpc.

I'm sorry for this, but I just want to know if it's required to install some server like ( Apache, nginx... ) in the Bitcoin server side?
Because I'm new in this kind of stuff and have to learn many things.
Post
Topic
Board Bitcoin Technical Support
Re: Help! to connect Bitcoin Core
by
Nshan0102
on 17/08/2019, 06:27:41 UTC
did you try to use the bitcoin-qt rpc-port:
       'port'          => 8332,
Yep! I have tried but the 8332 port is closed and the response is

cURL error 7: Failed to connect to 123.321.256.632 port 8332: Timed out (see http://curl.haxx.se/libcurl/c/libcurl-errors.html)
Post
Topic
Board Bitcoin Technical Support
Re: Help! to connect Bitcoin Core
by
Nshan0102
on 16/08/2019, 16:51:29 UTC
I have inserted that sattings to my bitcoin.conf, but still can't connect to it  Undecided Undecided Undecided
Post
Topic
Board Bitcoin Technical Support
Re: Help! to connect Bitcoin Core
by
Nshan0102
on 16/08/2019, 15:42:18 UTC
bitcoin-qt is fine, the same conf used for qt.
Bitcoin-qt is basicly the gui for bitcoind, so thats why it is the same.
Thank you very much I will try and let you know if it's the solution!
Post
Topic
Board Bitcoin Technical Support
Re: Help! to connect Bitcoin Core
by
Nshan0102
on 16/08/2019, 14:52:18 UTC
no, with core 18.0.0 it changes, so you must use rpcbind.
You can read the core change log for rpcbind.

The same applied to 'Solo Miner', as the miner can't get work from bitcoind if the rpcbind is not set.

Is it neccessary to run bitcoind deamon, or it is ok if the bitcoin-qt is running?
Post
Topic
Board Bitcoin Technical Support
Re: Help! to connect Bitcoin Core
by
Nshan0102
on 16/08/2019, 14:38:34 UTC
rpcallowip=xxx.xxx.xxx.0/24 (your local Network)
rpcbind=IP of the PC wich is running core /bitcoin-qt

isn't the rpcallowip the same as rpcbind?
Post
Topic
Board Bitcoin Technical Support
Merits 3 from 3 users
Topic OP
Help! to connect Bitcoin Core
by
Nshan0102
on 16/08/2019, 10:33:02 UTC
⭐ Merited by OmegaStarScream (1) ,ETFbitcoin (1) ,o_e_l_e_o (1)
Hi there!
I'm searching in the google for more than one week and no result.

I have a Bitcoin Core Wallet in some Hosting ( for example it is:  123.321.256.632 )
There is an laravel programmed project in other hosting ( for example it is:  127.0.0.12 ) which is going to make payment processes.
I have installed Fully unit-tested Bitcoin JSON-RPC client based on GuzzleHttp. ( here is the link to github: https://github.com/denpamusic/php-bitcoinrpc);

In the Bitcoin server I have
1. started bitcoin-qt,
2. set config file ( rpc ) in both places (C:\Users\MyUserName\AppData\Roaming\Bitcoin\bitcoin.conf) and (D:\BlockChain\bitcoin.conf)
    # Generated by https://jlopp.github.io/bitcoin-core-config-generator/

   # This config should be placed in following path:
   # %UserProfile%\AppData\Roaming\Bitcoin\bitcoin.conf

   # [network]
   # Listen for incoming connections on non-default port.
   port=8333

   # [rpc]
   # Listen for JSON-RPC connections on this port
   rpcport=8332

   # [Sections]
   # Most options automatically apply to mainnet, testnet, and regtest networks.
   # If you want to confine an option to just one network, you should add it in the relevant section.  
   # EXCEPTIONS: The options addnode, connect, port, bind, rpcport, rpcbind and wallet
   # only apply to mainnet unless they appear in the appropriate section below.

   # Options only for mainnet
   [main]

   # Options only for testnet
   [test]

   # Options only for regtest
   [regtest]


   server=1

   rpcuser=Admin
   rpcpassword=passWordAdmin
   rpcallowip=123.321.256.632
   rpcconnect=127.0.0.1

Then I want to connect to my Bitcoin Core from my laravel project and it says cURL error 52: Empty reply from server (see http://curl.haxx.se/libcurl/c/libcurl-errors.html)
Here is my code to connect with Bitcoin Core

public function btcReplenish(Request $request){

        $bitCoinD = new BitcoinClient([
            'host'          => self::RDC_HOST,
            'port'          => 8333,
            'user'          => self::RDC_USER,
            'password'      => self::RDC_PASS,
        ]);

        $balance = $bitCoinD->wallet('wallet.dat')->getbalance();
        echo $balance->get();        
        die;
    }

Please help me if there is someone who knows how to do that!
Post
Topic
Board Bounties (Altcoins)
Re: [BOUNTY]💱Yaahub Exchange | A Peer to Peer Market - 500k$ Allocated in Bounty 💱
by
Nshan0102
on 21/09/2018, 22:45:54 UTC
yes i get the same answer, and how the continuation?
He have uptadet the spreadsheet  Cool  Cool  Cool
Post
Topic
Board Altcoin Discussion
Binance Competition - 20,000 ETH Giveaway!
by
Nshan0102
on 17/09/2018, 09:02:09 UTC
I'm sorry it was SCAM

Post
Topic
Board Altcoin Discussion
Re: 100 usd enough to start trading ?
by
Nshan0102
on 16/09/2018, 15:28:00 UTC
$100 isn't small amount for now. I mean the market is down now and you can buy some ETH-s for example and then have $300 ( so it will be x3 profit ). Or you can buy some new coin which is going to susccess. Also do your own research in  the  https://coinmarketcap.com
Post
Topic
Board Bounties (Altcoins)
Re: [BOUNTY] KALC- Koala's Life Restructure Your Credit Life🚀 Up to $100,000 Reward
by
Nshan0102
on 16/09/2018, 15:03:34 UTC
There are 2 scammers in the Telegram campaign

First one is using my Telegram username👇👇👇
Spreadsheed No:  5063
BTT usr:  bjornandre

Second one is using my BTT account 👇👇👇
Spreadsheed No:  5238
Telegram usr:  @Dr2xxx
Post
Topic
Board Bounties (Altcoins)
Re: [BOUNTY] ADAB - First Islamic Crypto Exchange | $480 000 rewards
by
Nshan0102
on 16/09/2018, 14:21:16 UTC
Post
Topic
Board Speculation (Altcoins)
Re: why all coins are dropping?
by
Nshan0102
on 15/09/2018, 20:47:37 UTC
I don't understand as well as analysts, but in my opinion the reason is that there are no more investments in the altcoins. And the reason of that is because of many scam altcoins are coming everyday, and investors are afraid to invest. Just my opinion ( Correct me please so that I know what's wrong in it )