Difference between revisions of "Merchant Howto"

From Bitcoin Wiki
Jump to: navigation, search
(Automated: update bits about refund - should not refund 'from address')
Line 3: Line 3:
 
==Manual==
 
==Manual==
 
# Download a bitcoin client
 
# Download a bitcoin client
# When a customer wants to buy something issue them with a bitcoin address
+
# When a customer wants to buy something send them a bitcoin address where their payment should be sent.
#* You can do this by clicking "New.." next to your address in the bitcoin client and sending that address to the customer
+
#* You can do this by clicking "New.." next to your address in the bitcoin client and sending that address to the customer.
 
# When payment comes in from that address send the goods to your customer.  Depending on your risk tolerance and the value of the purchase, you may wish to wait until the payment shows enough confirmations to protect against [[How_bitcoin_works#Double_spending|double spending]].
 
# When payment comes in from that address send the goods to your customer.  Depending on your risk tolerance and the value of the purchase, you may wish to wait until the payment shows enough confirmations to protect against [[How_bitcoin_works#Double_spending|double spending]].
 
# To issue a refund, obtain from the customer the [[Address|bitcoin address]] where the refund payment should be sent.  The refund address will likely be different from the address used when the customer sent payment, especially if an [[EWallet]] was used by the customer.
 
# To issue a refund, obtain from the customer the [[Address|bitcoin address]] where the refund payment should be sent.  The refund address will likely be different from the address used when the customer sent payment, especially if an [[EWallet]] was used by the customer.

Revision as of 16:24, 16 June 2011

This page is intended as a guide to assist merchants learn how to accept bitcoins for payment.

Manual

  1. Download a bitcoin client
  2. When a customer wants to buy something send them a bitcoin address where their payment should be sent.
    • You can do this by clicking "New.." next to your address in the bitcoin client and sending that address to the customer.
  3. When payment comes in from that address send the goods to your customer. Depending on your risk tolerance and the value of the purchase, you may wish to wait until the payment shows enough confirmations to protect against double spending.
  4. To issue a refund, obtain from the customer the bitcoin address where the refund payment should be sent. The refund address will likely be different from the address used when the customer sent payment, especially if an EWallet was used by the customer.

Automated

You can use an existing shopping cart interface or utilize the Bitcoin client's JSON-RPC API to automatically accept payments.

Setup a system that:

  1. When a customer orders something on your website it records
    • Bitcoin address that payment should be sent to
    • Order details (delivery address etc.)
    • Customer's refund address (optional - if you wish you can ask for this later, only in cases a refund is required)
    • Payment amount
  2. When payment arrives, checks that they have paid the correct amount or not, and informs you
    • You dispach the goods to the customer and mark the order as fulfilled
    • If you cannot dispach the goods you mark the order as denied and ask the customer for a refund address (unless you already have it from earlier) to send a refund.
  3. Forwards the funds to bitcoin address of your choice

Common Errors

It has been observed several times that businesses try to funnel all orders through the same bitcoin address, and ask people to send some BTC, then send email describing the timing and the amount of the transaction to 'claim' it. This is not secure, since anyone can see the transaction details using a tool such as Block Explorer, or by inspecting the block chain database directly, and then try to claim someone else's transaction as theirs. Do not do this - give each customer a unique bitcoin address, as suggested in the manual section of this page.

Listing your business on the Bitcoin Trade page

Anyone can add and update a listing on the trade page. Just register if you haven't and add to the appropriate category. If you'ld like assistance, perhaps someone in the #bitcoin-marketing IRC channel would be willing to assist.

See Also