Bitcoin Forum
June 24, 2024, 04:39:39 AM *
News: Voting for pizza day contest
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 2 3 4 [5] 6 7 8 »
81  Bitcoin / Bitcoin Technical Support / Re: Need help in configuring JSON RPC for Bitcoin Core - Please help on: August 15, 2017, 10:40:24 AM
Hi,

I installed bitcoin core on ubuntu server and using JSON RPC on php. I am in the process of developing a gaming site.  When a client requests a withdrawal it automatically process the transaction and the transaction fee is charged from my main balance. Is there any way to make the the transaction fees deducted from the withdrawn money by the user.

Example - If a client requests for a withdrawal of 0.1 btc, i want to deduct the fee and send the balance as withdrawal.  How do i put it in php code?  Please help me.  I dont want to charge a fixed fee from the clients.  I want to just deduct the fees that will incur for that withdrawal..

I don't know if this parameter is implemented in your bitcoin core version, but on
https://chainquery.com/bitcoin-api/sendtoaddress
You can see parameter 5: subtractfeefromamount (boolean), that is exactly what you want.

Just a general remark: it is usually more convenient for all users to know exactly what fees will be substracted.
As soon as you pass on the network fees directly to your customers, they will be encountering "random" fees, just depending on the network load. New users won't understand at all, why they received 0.1 BTC yesterday and 0.05 today.
Setting a fee that is generally a bit higher than the typical mining fees is the way of doing it predictably in the view of the users.
82  Bitcoin / Bitcoin Technical Support / Re: transfering backups to new wallets on: August 15, 2017, 10:32:55 AM
Hello there crypto people

I downloaded several crypto wallets and bought coins about 4 yrs ago. My computer that the wallets are on is an old software which doesn't support the new wallets...

I have backups from all wallets, tried downloading new wallets for some and transacting a few over but they never arrived even thought the transaction data for both are up to date.

My question is

If I have backups from my old wallets, how do I put the coins into a new wallet??..I tried sending a few to an exchange as well and they never showed there either..pretty frustrating as I have some considerable money in them

Thanks in advance

Do you have a transaction id of your transactions? That could possibly reveal why the coins aren't arriving.
83  Economy / Service Announcements / Re: The lagest Bitcoin mixer is about to stop working on: August 12, 2017, 09:06:41 PM
Another one bites the dust, bitmixer.io is legendary in this space, very sad seeing them go. It is better to be safe tan sorry though.


Yeah, but I think it's neither the general problem of bitmixer, nor the problem of bitcoin mixers at all.
Folks using bitcoin as a mean for criminal activity could and will eventually use cryptocurrencies that don't have a public blockchain at all.
For me, bitcoin mixing as such is a way of giving legit users a chance for fulfilling their right of privacy.
84  Bitcoin / Bitcoin Technical Support / Re: Lost my bitcoins on: July 31, 2017, 02:56:26 PM
Hi there,

I was transferring my bitcoins to Electrum wallet and I made a huge mistake. I entered a wrong received amount. Now my bitcoins are missing. I did not know mBTC unit was different from BTC so I didn't convert BTC amount to mBTC. How can I restore my missing bitcoins. Please help.

Typically the receive amount shouldn't make you lose coins. Do you have the possibility to get the private keys of the destination addresses?
85  Bitcoin / Bitcoin Discussion / Re: Tomorrow it comes..... on: July 31, 2017, 02:51:07 PM
Tomorrow is the 1st of August. Who has given into fear and cowardice and who has stood strong and loyal to Bitcoin ? This is it boys it's about to happen it's only a few hours away.

Who is withdrawing their coins from yobit ? Perhaps another exchange you use ?

Also those of you who are well versed in the Bitcoin world your comments would be appreciated. The question is what are you doing for tomorrow and why ? Should we even bother ?

Personally I say this is just like normal human panic where people lose their minds. Like if there is an emergency somewhere people suddenly go crazy and scream for who knows what reason and push and rush and panic to exit the building or wherever they are instead of just carrying on as they were. I think it will be like they. If you disagree say why please.

Thank you.  

If you have access to your priv keys for your bitcoin addresses, there's no reason to have fear. Just make sure you have these keys in time.
86  Bitcoin / Bitcoin Discussion / Re: Bitcoin is instant way to get rich ? on: July 31, 2017, 02:48:22 PM
what do you think about this topic?


I think it is like with any other currency, you need to work hard to be successful.
There are just a lot more scam offers that are bitcoin-related. Just don't believe in get-rich-quickly schemes.
Why should you? Who should pay for you getting rich for free?
87  Bitcoin / Bitcoin Technical Support / Re: What will happen if i broadcast too many double spend trasnactions ? on: July 31, 2017, 02:08:30 PM
Technically, yes, if your nodes have a conflicting transaction. If you broadcast too many invalid transactions/nodes to a few nodes, they will note that you are a misbehaving peer and will disconnect you. However, you won't be banned from the entire network, just a few nodes.

If you are working on a transaction broadcasting service, you should implement checks to see if the transaction is valid and no other conflicting transaction is in your mempool.

okie., will do that.

so there is no global node ban list ? something like that ?

how can i check if the tx_hex is valid ?

i guess by decoding hex and checking the inputs and outputs. ?



As far as I know, there is no global list.

You can check validity by decoding it, as you mentioned, and then compare it to what you have in the mempool. If the inputs were already spent in your mempool, then there's something fishy going on...
88  Bitcoin / Bitcoin Discussion / Re: Discussion: Bitcoin controlled by US government? on: July 31, 2017, 01:47:16 PM
Doesn't seem very plausible to me. Bitcoin as a decentralized system is just not very likely to be controlled by anyone in a kind of centralized way.
89  Bitcoin / Bitcoin Discussion / Re: What is a good investment you can do with BTC? on: July 30, 2017, 10:13:10 AM
I would not invest all too much in altcoins.
If your goal is stability and long-term growth, bitcoin itself is a pretty good investment.
90  Bitcoin / Bitcoin Discussion / Re: Bitcoin on blockchain can't retrieve on: July 30, 2017, 10:10:40 AM
Well, sending bitcoins to an address where you don't have the private keys gives you very little hope for recovery.
I don't really understand who the owner of the address is you sent your bitcoins to, but maybe you can contact him, though there's little chance of success.
91  Bitcoin / Bitcoin Discussion / Re: What happens if we die? on: July 30, 2017, 10:06:13 AM
The case might be just as you described it. The coins will be lost. Forever.
Another reason why bitcoin may become more valuable on the long-run, ss the total amount that can be mined is limited.

So, you should take care that the private keys will be revealed in case of your death, including a description what you can do with it, if you want your family or other people to make use of your bitcoins. On the other hand, if you don't want anyone to know about the bitcoins, it's the perfect way of "destroying" money.
92  Bitcoin / Project Development / Re: Web based bitcoin wallet on: July 30, 2017, 09:57:43 AM
Definitely go for using bitcoin-core or similarly suited applications as your backend.
Just think of what happens if blockchain.info goes down or has temporary outages.
Your service reputation would drop and it would not even be your fault.

Be as standalone as possible!
93  Bitcoin / Project Development / Re: Are bitcoin casinos still popular? on: July 30, 2017, 09:53:25 AM
I think it will be hard to get the initial momentum required to get your game site going.
But once it starts getting more popular, there might be a lot of interested people who cling to your site and will return on a regular basis.
94  Bitcoin / Bitcoin Discussion / Re: Amazing Support for Bitcoin Cash! on: July 30, 2017, 09:46:34 AM
Not only the list you mentioned has grown in an amazing way.
The bitcoin price scaled up in the same way.
95  Bitcoin / Bitcoin Discussion / Re: Is Bitcoin Mixer a must? on: July 26, 2017, 09:36:32 AM
Almost everyone making online transactions thinks that using bitcoins would be a good way to stay anonymous. But the truth is bitcoin transactions are not really anonymous at all. All transactions are recorded and can be seen publicly through the blockchain. When you use your bitcoin to pay for goods and services online, you will need to provide some private information in some cases. This means that your transactions can be traced by a third party to find information. In order to avoid this from happening, bitcoin mixers provide services where your bitcoins are mixed with others to make it harder to be traced back from the original owner.

Do you think that it is a must for everyone to use a bitcoin mixer? Why and for what purposes?

I think it should be done by everyone. Because your data are private and belong to you and to you only.
It's a measure of security to your data and a great deal for your privacy, so what's against it? It's fairly simple to mix coins, so go for it!
96  Bitcoin / Bitcoin Discussion / Re: BTC Anonymity on: July 25, 2017, 09:48:54 PM
I try to avoid the term "anonymity", because it often suggests something you have to hide.
For most of the people, the term "privacy" fits better to the topic we are talking about.
It's about the freedom to protect your transactions from being seen by those who don't have a right to see it.

And I think that this is perfectly possible with bitcoin, especially with the many tools around.
97  Economy / Service Announcements / Re: The lagest Bitcoin mixer is about to stop working on: July 25, 2017, 09:37:55 PM
Hi all!
Despite the huge profit we earn, we are closing our activity. Let me explain why.

I'm bitcoin enthusiast since 2011. When we started this service I was convinced that any Bitcoin user has a natural right to privacy. I was totally wrong. Now I grasped that Bitcoin is transparent non-anonymous system by design. Blockchain is a great open book. I believe that Bitcoin will have a great future without dark market transactions. You may use Dash or Zerocoin if you want to buy some weed. Not Bitcoin.

I hope our decision will help to make Bitcoin ecosystem more clean and transparent. I hope our competitors will hear our message and will close their services too. Very soon this kind of activity will be considered as illegal in most of countries.

Cheers,
Bitmixer.IO


Ok. For me, it's hard to understand such a decision.
I personally continue believing in the possibility of privacy within the bitcoin payment system.

Especially today, where everyone becomes increasingly transparent, we should all work together to keep and defend our privacy more then ever.
There's an increasing number of people wanting to transfer bitcoins legally, without everyone being able to trace back their individual and private transactions.

That's why I think we continue to need bitcoin mixers. They are the essential mean that everyone can take easily to defend and keep up his privacy.

We should work together to keep bitcoin a payment system that works non-centralized and gives us the privacy standards we need. And that has enough services providing individual privacy, such that it stays attractive to everyone and gets even more adoption worldwide.

Since I started joining the bitcoin community, there arose many business, also local ones in my neighborhood that accept bitcoins as a mean of payments. They introduced bitcoin payments, because the decision makers rely on and believe in the many advantages that bitcoin offers.

Let's keep the advantages and the legal use up and encourage developers to create even more stunning apps and tools that make the use of bitcoin easy and secure and let's show the world what a great system bitcoin is!



For alternatives, check out my signature below.
98  Bitcoin / Development & Technical Discussion / Re: Question for Devs about making a wallet on: June 26, 2017, 08:23:05 PM
Hi, I was wondering how much functions can be built into a custom wallet? Like can I code a game into a wallet? Or can use API to add in features to a wallet?

As this question is very generic, I'll answer it in the same way.
If you wanted to code a wallet from scratch, you could code any kind of functionality that you desire into a wallet, as long as you can code it yourself or integrate it from existing code.
You can also extend a wallet of which the code is open source. You basically create a fork of the code and add the functionality you need.

However, the easier and more widespread way of creating software that is based on bitcoin is to use a wallet with minimum functionality like bitcoin core and then you can code a standalone application in whatever code language you want to, and then your wallet software communicates with the running bitcoin core via REST API requests.

Without knowing what your goal is, it is hard to be more specific here.
99  Bitcoin / Bitcoin Technical Support / Re: How to recover btc after windows reinstall on: June 26, 2017, 08:09:10 PM
Wow, nice and detailed explanation HI-TEC99, thumbs up for this.
100  Bitcoin / Development & Technical Discussion / Re: Spending balance with zero confirmations? on: June 26, 2017, 12:34:11 PM
That is a "Bad Idea"™

If something happens to your incoming transaction (the sender double spends it) or it never confirms because of low fees, then your outgoing transaction will never confirm... It certainly won't increase the speed at which the person you're trying to send coins to will receive them as confirmed.

Just because your inbound transaction suddenly gets a confirmation, doesn't automatically guarantee that your outbound transaction will suddenly get a confirmation. It is dependent on network load and fees etc.

I see, thank you, so what is the best course of action then? Wait for 6 confirmations?

This depends on how much guarantee you want to have that the transaction is real and will not be double spent.
Typical values for the amounts of confirmations are 3 to 6.
Pages: « 1 2 3 4 [5] 6 7 8 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!