CryptomateApi
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.
Installation
Add this line to your application's Gemfile:
gem 'cryptomate_api'And then execute:
bundle installOr install it yourself as:
gem install cryptomate_apiConfiguration
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'
endUsage
Here's a quick example of how to use cryptomate_api:
client = CryptomateAPI::Management::Client.new
response = client.get_clientsAPI Documentation
For detailed information about the API endpoints and responses, visit the Cryptomate API documentation.
Contributing
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.
License
The gem is available as open source under the terms of the MIT License.
Changelog
See CHANGELOG.md for details about each release.
Code of Conduct
Everyone interacting in the cryptomate_api project's codebases, issue trackers, chat rooms, and mailing lists is expected to follow the code of conduct.