class QuadrigaCX::Client
Attributes
api_key[R]
api_secret[R]
client_id[R]
Public Class Methods
new(options={})
click to toggle source
Initialize a LocalBitcoins::Client instance
# File lib/quadrigacx/client.rb, line 17 def initialize options={} unless options.kind_of?(Hash) raise ArgumentError, 'Options hash required' end @client_id = options[:client_id] @api_key = options[:api_key] @api_secret = options[:api_secret] end