Welcome to the cryptomate_api
gem! This library is designed to interface with the Cryptomate API, providing a simple and efficient way to integrate cryptocurrency data into your Ruby applications.
Add this line to your application's Gemfile:
gem 'cryptomate_api'
And then execute:
bundle install
Or install it yourself as:
gem install cryptomate_api
Before using the cryptomate_api
gem, configure the global API key as follows:
require 'cryptomate_api'
CryptomateApi.configure do |config|
config.api_key = 'your_api_key_here'
config.base_uri = 'your-sandbox-uri'
end
Here's a quick example of how to use cryptomate_api
:
client = CryptomateAPI::Management::Client.new
response = client.get_clients
For detailed information about the API endpoints and responses, visit the Cryptomate API documentation.
Bug reports and pull requests are welcome. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the code of conduct.
The gem is available as open source under the terms of the MIT License.
See CHANGELOG.md for details about each release.
Everyone interacting in the cryptomate_api
project's codebases, issue trackers, chat rooms, and mailing lists is expected to follow the code of conduct.