Better! Coinbase
The Coinbase gem was not maintained and missing some key features from their API. This frustrated me.
So here's what I think is a better version - I will maintain it.
An easy way to buy, send, and accept bitcoin through the Coinbase API.
This gem is a wrapper around the Coinbase JSON API. It supports both the the api key + secret authentication method as well as OAuth 2.0 for performing actions on other people's account.
Installation
Add this line to your application's Gemfile:
gem 'better-coinbase'
Then execute:
$ bundle install
Or install it yourself as:
$ gem install better-coinbase
Usage
HMAC Authentication (for accessing your own account)
Start by enabling an API Key on your account
Next, create an instance of the client and pass it your API Key + Secret as parameters.
coinbase = BetterCoinbase::Client.new(ENV['COINBASE_API_KEY'], ENV['COINBASE_API_SECRET'])
OAuth 2.0 Authentication (for accessing others' accounts)
Start by creating a new OAuth 2.0 application
user_credentials = {
:access_token => 'access_token',
:refresh_token => 'refresh_token',
:expires_at => Time.now + 1.day
}
coinbase = BetterCoinbase::OAuthClient.new(ENV['COINBASE_CLIENT_ID'], ENV['COINBASE_CLIENT_SECRET'], user_credentials)
Notice here that we did not hard code the API keys into our codebase, but set it in an environment variable instead. This is just one example, but keeping your credentials separate from your code base is a good security practice.
Now you can call methods on coinbase
similar to the ones described in the api reference. For example:
coinbase.balance
=> #<Money fractional:20035300000 currency:BTC>
coinbase.balance.format
=> "200.35300000 BTC"
coinbase.balance.to_d
=> #<BigDecimal:7ff36b091670,'0.200353E3',18(54)>
coinbase.balance.to_s
=> 200.35300000
Money objects are returned for most amounts dealing with currency. You can call to_d
, format
, or perform math operations on money objects.
Examples
Check your balance
coinbase.balance.to_s
=> "200.35300000"
Send bitcoin
r = coinbase.send_money 'user@example.com', 1.23
r.success?
=> true
r.transaction.status
=> 'pending'
r.transaction.id
=> '501a1791f8182b2071000087'
r.transaction.recipient.email
=> 'user@example.com'
r.to_hash
=> ...
You can also send money in a number of currencies. The amount will be automatically converted to the correct BTC amount using the current exchange rate.
r = coinbase.send_money 'user@example.com', 1.23.to_money('AUS')
r.transaction.amount.format
=> "0.06713955 BTC"
The first parameter can also be a bitcoin address and the third parameter can be a note or description of the transaction. Descriptions are only visible on Coinbase (not on the general bitcoin network).
r = coinbase.send_money 'mpJKwdmJKYjiyfNo26eRp4j6qGwuUUnw9x', 2.23.to_money("USD"), "thanks for the coffee!"
r.transaction.recipient_address
=> "mpJKwdmJKYjiyfNo26eRp4j6qGwuUUnw9x"
r.transaction.notes
=> "thanks for the coffee!"
Request bitcoin
This will send an email to the recipient, requesting payment, and give them an easy way to pay.
r = coinbase.request_money 'client@example.com', 50, "contractor hours in January (website redesign for 50 BTC)"
r.transaction.request?
=> true
r.transaction.id
=> '501a3554f8182b2754000003'
r = coinbase.resend_request '501a3554f8182b2754000003'
r.success?
=> true
r = coinbase.cancel_request '501a3554f8182b2754000003'
r.success?
=> true
r = coinbase.complete_request '501a3554f8182b2754000003'
r.success?
=> true
List your current transactions
Sorted in descending order by timestamp, 30 per page. You can pass an integer as the first param to page through results, for example coinbase.transactions(2)
.
r = coinbase.transactions
r.current_page
=> 1
r.num_pages
=> 7
r.transactions.collect{|t| t.transaction.id }
=> ["5018f833f8182b129c00002f", "5018f833f8182b129c00002e", ...]
r.transactions.collect{|t| t.transaction.amount.format }
=> ["-1.10000000 BTC", "42.73120000 BTC", ...]
Transactions will always have an id
attribute which is the primary way to identity them through the Coinbase api. They will also have a hsh
(bitcoin hash) attribute once they've been broadcast to the network (usually within a few seconds).
Get transaction details
This will fetch the details/status of a transaction that was made within Coinbase or outside of Coinbase
r = coinbase.transaction '5011f33df8182b142400000e'
r.transaction.status
=> 'pending'
r.transaction.recipient_address
=> 'mpJKwdmJKYjiyfNo26eRp4j6qGwuUUnw9x'
Check bitcoin prices
Check the buy or sell price by passing a quantity
of bitcoin that you'd like to buy or sell. This price includes Coinbase's fee of 1% and the bank transfer fee of $0.15.
The buy_price
and sell_price
per Bitcoin will increase and decrease respectively as quantity
increases. This slippage is normal and is influenced by the market depth on the exchanges we use.
coinbase.buy_price(1).format
=> "$17.95"
coinbase.buy_price(30).format
=> "$539.70"
coinbase.sell_price(1).format
=> "$17.93"
coinbase.sell_price(30).format
=> "$534.60"
Check the spot price of Bitcoin in a given currency
. This is usually somewhere in between the buy and sell price, current to within a few minutes and does not include any Coinbase or bank transfer fees. The default currency is USD.
coinbase.spot_price.format
=> "$431.42"
coinbase.spot_price('EUR').format
=> "€307,40"
Buy or Sell bitcoin
Buying and selling bitcoin requires you to add a payment method through the web app first.
Then you can call buy!
or sell!
and pass a quantity
of bitcoin you want to buy (as a float or integer).
r = coinbase.buy!(1)
r.transfer.code
=> '6H7GYLXZ'
r.transfer.btc.format
=> "1.00000000 BTC"
r.transfer.total.format
=> "$17.95"
r.transfer.payout_date
=> 2013-02-01 18:00:00 -0800
r = coinbase.sell!(1)
r.transfer.code
=> 'RD2OC8AL'
r.transfer.btc.format
=> "1.00000000 BTC"
r.transfer.total.format
=> "$17.93"
r.transfer.payout_date
=> 2013-02-01 18:00:00 -0800
Listing Buy/Sell History
You can use transfers
to view past buys and sells.
r = coinbase.transfers
r.current_page
=> 1
r.total_count
=> 7
r.transfers.collect{|t| t.transfer.type }
=> ["Buy", "Buy", ...]
r.transfers.collect{|t| t.transfer.btc.amount }
=> [0.01, 0.01, ...]
r.transfers.collect{|t| t.transfer.total.amount }
=> [5.72, 8.35, ...]
Create a payment button
This will create the code for a payment button (and modal window) that you can use to accept bitcoin on your website. You can read more about payment buttons here and try a demo.
The method signature is def create_button name, price, description=nil, custom=nil, options={}
. The custom
param will get passed through in callbacks to your site. The list of valid options
are described here.
r = coinbase.create_button "Your Order #1234", 42.95.to_money('EUR'), "1 widget at €42.95", "my custom tracking code for this order"
r.button.code
=> "93865b9cae83706ae59220c013bc0afd"
r.embed_html
=> "<div class=\"coinbase-button\" data-code=\"93865b9cae83706ae59220c013bc0afd\"></div><script src=\"https://coinbase.com/assets/button.js\" type=\"text/javascript\"></script>"
Create an order for a button
This will generate an order associated with a button. You can read more about creating an order for a button here.
r = coinbase.create_order_for_button "93865b9cae83706ae59220c013bc0afd"
=> "{\"success\"=>true, \"order\"=>{\"id\"=>\"ASXTKPZM\", \"created_at\"=>\"2013-12-13T01:36:47-08:00\", \"status\"=>\"new\", \"total_btc\"=>{\"cents\"=>6859115, \"currency_iso\"=>\"BTC\"}, \"total_native\"=>{\"cents\"=>4295, \"currency_iso\"=>\"EUR\"}, \"custom\"=>\"my custom tracking code for this order\", \"receive_address\"=>\"mpJKwdmJKYjiyfNo26eRp4j6qGwuUUnw9x\", \"button\"=>{\"type\"=>\"buy_now\", \"name\"=>\"Your Order #1234\", \"description\"=>\"1 widget at 42.95\", \"id\"=>\"93865b9cae83706ae59220c013bc0afd\"}, \"transaction\"=>nil}}"
Create a new user
r = coinbase.create_user "newuser@example.com", "some password"
r.user.email
=> "newuser@example.com"
r.receive_address
=> "mpJKwdmJKYjiyfNo26eRp4j6qGwuUUnw9x"
A receive address is returned also in case you need to send the new user a payment right away.
You can optionally pass in a client_id parameter that corresponds to your OAuth2 application and an array of permissions. When these are provided, the generated user will automatically have the permissions you’ve specified granted for your application. See the API Reference for more details.
r = coinbase.create_user "newuser@example.com", "some password", client_id, ['transactions', 'buy', 'sell']
r.user.email
=> "newuser@example.com"
r.receive_address
=> "mpJKwdmJKYjiyfNo26eRp4j6qGwuUUnw9x"
r.oauth.access_token
=> "93865b9cae83706ae59220c013bc0afd93865b9cae83706ae59220c013bc0afd"
Adding new methods
You can see a list of method calls here and how they are implemented. They are a wrapper around the Coinbase JSON API.
If there are any methods listed in the API Reference that haven't been added to the gem yet, you can also call get
, post
, put
, or delete
with a path
and optional params
hash for a quick implementation. The raw response will be returned. For example:
coinbase.get('/account/balance').to_hash
=> {"amount"=>"50.00000000", "currency"=>"BTC"}
Or feel free to add a new wrapper method and submit a pull request.
Security Notes
If someone gains access to your API Key they will have complete control of your Coinbase account. This includes the abillity to send all of your bitcoins elsewhere.
For this reason, API access is disabled on all Coinbase accounts by default. If you decide to enable API key access you should take precautions to store your API key securely in your application. How to do this is application specific, but it's something you should research if you have never done this before.
Decimal precision
This gem relies on the Money gem, which by default uses the BigDecimal class for arithmetic to maintain decimal precision for all values returned.
When working with currency values in your application, it's important to remember that floating point arithmetic is prone to rounding errors.
For this reason, we provide examples which use BigDecimal as the preferred way to perform arithmetic:
=> #<BigDecimal:7ff36b091670,'0.200353E3',18(54)>
Testing
If you'd like to contribute code or modify this gem, you can run the test suite with:
gem install coinbase --dev
bundle exec rspec
Contributing
- Fork this repo and make changes in your own copy
- Add a test if applicable and run the existing tests with
rspec
to make sure they pass - Commit your changes and push to your fork
git push origin master
- Create a new pull request and submit it back to us!