Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/blockfrost/blockfrost-ruby

Ruby SDK for Blockfrost.io
https://github.com/blockfrost/blockfrost-ruby

api blockfrost cardano ipfs ruby sdk

Last synced: about 1 month ago
JSON representation

Ruby SDK for Blockfrost.io

Awesome Lists containing this project

README

        

[![Gem Version](https://badge.fury.io/rb/blockfrost-ruby.svg)](https://rubygems.org/gems/blockfrost-ruby)

# blockfrost-ruby


Ruby SDK for Blockfrost.io API.



Installation
Usage
Development



## Installation

Add the gem to your Gemfile

gem "blockfrost-ruby"

Or download the latest release directly from rubygems.org:

$ gem install blockfrost-ruby

To build the current master, download this repo to your machine, then go to the directory:

$ cd blockfrost-ruby

And run next commands:

$ git add .
$ gem build blockfrost-ruby
$ gem install ./blockfrost-ruby-0.1.0.gem

That's it! You may use the gem in your projects.

## Usage

To use this SDK, you first need to login into blockfrost.io and create your project to retrieve your API token.

And here are examples of how to use this SDK.

```ruby

require 'blockfrost-ruby'

blockfrost = Blockfrostruby::CardanoMainNet.new('your-API-key')
blockfrost.get_health
blockfrost.get_transaction('f6780212...36f0c20b6')

# The result of request is a hash object with keys [:status, :body]. Examples:
# {:status=>"200", :body=>{"is_healthy"=>true}}
# {:status=>"404", :body=>{"status_code"=>404, "error"=>"Not Found", "message"=>"The requested component has not been found."}}

# Requests which returns a list of result can be called with params.
# Allowed params are:
# :count, :page, :order, :from, :to (the same as decribed in blockfrost docs)
# :from_page, :to_page, :parallel_requests, :sleep_between_retries_ms (see below)

# Example of usage:
blockfrost.get_asset_history('81791e9e..1303035', { count: 50, page: 3, order: 'desc' })

# You may define what value should be used by default when you initialize the object.
config = { use_asc_order_as_default: false, default_count_per_page: 10 } # See the list of params below
blockfrost_configured = Blockfrostruby::CardanoMainNet.new('your-API-key', config)
blockfrost_configured.get_block_latest_transactions # will add order=asc&count=10 to request

# But you're still able to set params for specific action:
blockfrost_configured.get_block_latest_transactions({ count: 20 }) # will add order=asc&count=20 to request

# ==================
# ==================
# ==================

# On the other words:

# 1. Install the gem and require it

require 'blockfrost-ruby'

# 2. Initialize the object with the network:

blockfrost_mainnet = Blockfrostruby::CardanoMainNet.new('your-API-key')

# Or if you want to access other networks:

blockfrost_preview = Blockfrostruby::CardanoPreview.new('your-API-key')
blockfrost_preprod = Blockfrostruby::CardanoPreprod.new('your-API-key')
blockfrost_ipfs = Blockfrostruby::IPFS.new('your-API-key')

# 3. When you initialize, you may configure what params this object will use as default:

config = { default_count_per_page: 10 }
blockfrost = Blockfrostruby::CardanoMainNet.new('your-API-key', config)

# The list of values that can be defined in the config and its default values:

# config = {
# use_asc_order_as_default: true - the orders of lists will be asc by default
# default_count_per_page: 100 - 100 items per page
# parallel_requests: 10 - when fetching pages concurrently,
# that param defines how many request
# will be sent in one bunch
# sleep_between_retries_ms: 500 - when you send too many concurent requests,
# your account may reach the limit and the API will
# start to answer you with 4xx statuses. This value
# defines how long to wait between retries
# }

# 4. You may pass params explicitly for every request if that request accept params:

blockfrost.get_block_latest_transactions({ count: 20 })

# Allowed params are:
# :order, :page, :count, :from, :to - add ex. count= to the request
# :from_page, :to_page - when you want to get many pages you may define this params.
# Also note that you may define only :from_page and it will send requests until
# the not-nil response will be fetched.
# And 2 more params are:
# :parallel_requests, :sleep_between_retries_ms - the same as in config,
# but may be set directly to the request.

# Example of request:

blockfrost.get_list_of_next_blocks("hash_here", { count: 40, from_page: 11520, to_page: 11640, parallel_requests: 15 })

# 5. Webhooks

# Read about the available webhooks here: https://blockfrost.dev/docs/start-building/webhooks

# This SDK provides a module BlockfrostRuby::Webhooks you can use as a mixin in your classes. It provides you with a method for verifying the signature sent with the webhook.

# Example for Rails

# config/routes.rb
post "/webhook", to: "cardano_webhooks#create"

# app/controllers/cardano_webhooks_controller.rb
class CardanoWebhooksController < ApplicationController
include BlockfrostRuby::Webhooks

# You will find your webhook secret auth token in your webhook settings in the Blockfrost Dashboard
BLOCKFROST_SECRET_AUTH_TOKEN = "BLOCKFROST-SECRET-AUTH-TOKEN"

before_action :verify_request

def create
type = params.fetch("type")
payload = params.fetch('payload')

case type
when "transaction"
# payload is an array of Transaction events
payload.each do |tx|
puts "Transaction id: #{tx.dig 'tx', 'hash'}",
"block: #{tx.dig 'tx', 'block'} (#{tx.dig 'tx', 'block_height'})"
end
when "block"
# process Block event
puts "Received block hash #{payload['hash']}"
when "delegation"
# payload is an array of objects with fields: "tx" (an object) and "delegations" (an array)
payload.each do |tx|
tx['delegations'].each do |delegation|
puts "Delegation from an address #{delegation['address']} included in tx #{tx['tx']['hash']}"
end
end
when "epoch"
# process Epoch event
puts "Epoch switch from #{payload.dig 'previous_epoch', 'epoch'} to #{payload.dig 'current_epoch', 'epoch'}"
else
puts "Unexpected event type #{type}"
end

head 200
end

private

def verify_request
verify_webhook_signature(
request.raw_post,
request.headers['Blockfrost-Signature'],
BLOCKFROST_SECRET_AUTH_TOKEN
)

# In case of invalid signature SignatureVerificationError will be raised
rescue BlockfrostRuby::Webhooks::SignatureVerificationError => e
puts "Webhook signature is invalid. #{e.message}"
head 403 and return
end
end

# That's it! Enjoy

```
All endpoints can be found here: https://docs.blockfrost.io/

## Development

After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.

To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and the created tag, and push the `.gem` file to [rubygems.org](https://rubygems.org).

## Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/blockfrost/blockfrost-ruby.