
Security News
Astral Launches pyx: A Python-Native Package Registry
Astral unveils pyx, a Python-native package registry in beta, designed to speed installs, enhance security, and integrate deeply with uv.
This is the Yellow Ruby SDK. This simple SDK contains couple of Ruby methods that makes it easy to integrate with the Yellow API. To get started just:
gem install yellow-sdk
require 'yellow-sdk'
# pass your API key and secret respectively
yellow = Yellow::Client.new("Eo2XE5SrHcJVdqK9uIDU", "73jnZflRHpGReqFxzwF_JtynRNmZXoQspPaxTtsy")
options = {
:base_ccy => 'USD',
:base_price => '20',
:callback => "https://anycallback.com"
}
invoice = yellow.create_invoice(options)
puts invoice
You should see something similar to the following in your terminal:
{
"address": "155xsayoDXxRFP9rxDoecmpVUo7y5xKtc7", # Invoice Address
"base_ccy": "USD",
"base_price": "0.05",
"callback": "https://example.com",
"expiration": "2015-03-10T18:17:51.248Z", # Each invoice expires after 10 minutes of creation
"id": "6dd264975861fddbfe4404ed995f1ca4", # Invoice ID (to query the invoice later if you need to!)
"invoice_ccy": "BTC",
"invoice_price": "0.00017070",
"received": "0",
"remaining": "0.00017070",
"server_time": "2015-03-10T18:07:51.454Z",
"status": "new", # Status of the invoice. Other values are "authorizing" for unconfirmed transactions, and "paid" for confirmed transactions
"url": "https://cdn.yellowpay.co/invoice.5f0d082e.html?invoiceId=6dd264975861fddbfe4404ed995f1ca4" # Direct URL for the invoice. You can use it to embed the invoice widget in an iframe on your website.
}
To query an invoice that you created, just pass in the invoice_id
to the query_invoice
method:
invoice = yellow.query_invoice("6dd264975861fddbfs4404ed995f1ca4")
puts invoice
You should see exactly the same returned data you got from create_invoice
above!
To verify that the request you just receive really is from us, we created a helper method that checks the signature of the request. This method will return true if the signature matches (verified), or false if it doesn't match (not verified).
is_verified = yellow.verify_ipn(host_url, request_signature, request_nonce, request_body)
Since this method only works in the context of a web app, check the full demo code for more info on how to use it.
FAQs
Unknown package
We found that yellow-sdk demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Astral unveils pyx, a Python-native package registry in beta, designed to speed installs, enhance security, and integrate deeply with uv.
Security News
The Latio podcast explores how static and runtime reachability help teams prioritize exploitable vulnerabilities and streamline AppSec workflows.
Security News
The latest Opengrep releases add Apex scanning, precision rule tuning, and performance gains for open source static code analysis.