0.0
No release in over a year
Provides a Ruby interface to the CryptoMate API, allowing easy access to cryptocurrency data and \ transaction operations. Supports retrieving currency details, creating and fetching transactions, \ and managing user information.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
 Dependencies

Runtime

~> 0.18
 Project Readme

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 install

Or install it yourself as:

gem install cryptomate_api

Configuration

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

Usage

Here's a quick example of how to use cryptomate_api:

client = CryptomateAPI::Management::Client.new
response = client.get_clients

API 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.