Bitcoin Forum
April 27, 2024, 01:16:38 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: [1]
  Print  
Author Topic: Question from newb about accepting Bitcoins for payment...  (Read 1219 times)
LH66 (OP)
Newbie
*
Offline Offline

Activity: 42
Merit: 0



View Profile
April 25, 2011, 02:26:07 PM
 #1

Hey there,

Been reading all I can find about Bitcoin and it sounds really great. I'm super excited about it. I am s/e and in a position to accept Bitcoins in exchange for my services.

I want to make sure I understand how I accept them. From what I can see, if somebody wants to pay with Bitcoins all I do is give them my Bitcoin password/key that I got from MyBitcoin.com. Is this correct? Is it really that easy or am I missing something?

Also, right now I would tie the Bitcoin price to the dollar, but I am afraid of the dollar inflating greatly. How do I manage the Bitcoin price for my services if/when the dollar begins to inflate greatly?

Thank you for your time.

Jennifer
1714180598
Hero Member
*
Offline Offline

Posts: 1714180598

View Profile Personal Message (Offline)

Ignore
1714180598
Reply with quote  #2

1714180598
Report to moderator
1714180598
Hero Member
*
Offline Offline

Posts: 1714180598

View Profile Personal Message (Offline)

Ignore
1714180598
Reply with quote  #2

1714180598
Report to moderator
Make sure you back up your wallet regularly! Unlike a bank account, nobody can help you if you lose access to your BTC.
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1714180598
Hero Member
*
Offline Offline

Posts: 1714180598

View Profile Personal Message (Offline)

Ignore
1714180598
Reply with quote  #2

1714180598
Report to moderator
1714180598
Hero Member
*
Offline Offline

Posts: 1714180598

View Profile Personal Message (Offline)

Ignore
1714180598
Reply with quote  #2

1714180598
Report to moderator
1714180598
Hero Member
*
Offline Offline

Posts: 1714180598

View Profile Personal Message (Offline)

Ignore
1714180598
Reply with quote  #2

1714180598
Report to moderator
Garrett Burgwardt
Sr. Member
****
Offline Offline

Activity: 406
Merit: 256


View Profile
April 25, 2011, 02:33:18 PM
 #2

Well ideally you'd give them a price too, I suppose Wink

But yes, it is essentially as simple as that. If you want to get more technical and manage your own money, then you would install the client and deal with your wallet.dat file yourself - Mybitcoin does that for you, in exchange for  you trusting them. But that's more advanced stuff and if you want to just get started right away, then use Mybitcoin Smiley

I've got nothing bad to say about Mybitcoin, just to be clear. They provide an excellent service and without them I'd imagine it would be much harder for many people to get started.
RodeoX
Legendary
*
Offline Offline

Activity: 3066
Merit: 1145


The revolution will be monetized!


View Profile
April 25, 2011, 02:38:20 PM
 #3

Not familiar with MyBitcoin.com, but any payment you will receive will require the sender to have your receiving address. This address can/should change. So send your key (not password) to the buyer.

As far as pricing services and goods in this kind of market, not sure. Embarrassed

The gospel according to Satoshi - https://bitcoin.org/bitcoin.pdf
Free bitcoin in ? - Stay tuned for this years Bitcoin hunt!
Cryptoman
Hero Member
*****
Offline Offline

Activity: 726
Merit: 500



View Profile
April 25, 2011, 07:01:13 PM
 #4

It is recommended that you provide a new address for each transaction.  That way, you will have no problem figuring out what the payment was for.  As far as setting exchange rates, I recommend taking an average over 24 or 48 hours so as to smooth out some of the variation.  You can see some averages on bitcoinwatch.com.  You can use the Ruby script below to compute a 48-hour weighted average, which could be used once per day to update prices on a web site. 

Code:
#!/usr/bin/env ruby
require 'open-uri'
require 'json'
total_vol = 0.0
price_vol_product = 0.0
last = 0.0
quote_str = open('http://mtgox.com/code/data/getTrades.php').read
quotes = JSON.parse(quote_str)
#puts quotes
quotes.each do |q|
   price_vol_product += q["price"] * q["amount"]
   total_vol += q["amount"]
   last = q["price"]
end
usd_per_btc = price_vol_product/total_vol
printf("Exchange rate:%7.4f\n", usd_per_btc)

"A small body of determined spirits fired by an unquenchable faith in their mission can alter the course of history." --Gandhi
LH66 (OP)
Newbie
*
Offline Offline

Activity: 42
Merit: 0



View Profile
April 27, 2011, 05:33:52 AM
 #5

Thank you everybody!
Pages: [1]
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!