fireblocks-webhooks

A guide for connecting an application to Fireblocks, a platform for managing digital assets, through webhook notifications. It covers receiving requests and checking that they really came from Fireblocks.

In plain words
What is it for?
Use it to build or debug handlers for transaction creation, transaction status changes, and transaction approval events.
Why use it?
It helps prevent forged or incorrectly processed notifications by explaining Fireblocks’ signature checks and the need to use the original request data.

Skill for Claude CodeCodex

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add skills/hookdeck/webhook-skills/fireblocks-webhooks
Any agent
npx skills add hookdeck/webhook-skills --skill fireblocks-webhooks
Clone the repo
git clone --depth 1 https://github.com/hookdeck/webhook-skills

Made for: Claude Code, Codex.

Per session 65 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,600 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00065 $0.01600
Opus 5 $0.00032 $0.00800
Sonnet 5 $0.00013 $0.00320
Haiku 4.5 $0.00006 $0.00160

Measured 2d ago against content hash 8d99994e2caa, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

fireblocks-webhooks scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 2d ago.

The scan reads SKILL.md. This mod also ships 9 executable files (examples/express/src/index.js, examples/express/src/verify.js, examples/express/test/webhook.test.js, …), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/fireblocks-webhooks/SKILL.md · 119 lines

How it starts

The opening of the file, as written. The whole thing — 119 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Fireblocks Webhooks

When to Use This Skill

  • How do I receive Fireblocks webhooks?
  • How do I verify the Fireblocks-Webhook-Signature header?
  • Why is my Fireblocks webhook signature verification failing?
  • How do I handle transaction.created or transaction.status.updated events?
  • How do I validate a Fireblocks detached JWS (RS512) against the JWKS endpoint?

Verification (core)

Fireblocks Webhooks v2 signs every request with a detached JWS (RS512, RSA + SHA-512) in the Fireblocks-Webhook-Signature header. The header is a compact JWS with an empty payload segment (<protected-header>..<signature>). To verify, reinsert the raw request body (base64url-encoded) as the payload, then verify against the auto-rotated regional JWKS (https://keys.fireblocks.io/.well-known/jwks.json). Use the raw body bytes — never JSON.parse first.

import { createRemoteJWKSet, compactVerify } from 'jose';

const JWKS = createRemoteJWKSet(
  new URL('https://keys.fireblocks.io/.well-known/jwks.json')
);

// signatureHeader = value of the `Fireblocks-Webhook-Signature` header (detached JWS)
export async function verifyFireblocksWebhook(rawBody, signatureHeader) {
  const [header, , signature] = signatureHeader.split('.');   // header .. signature
  const payload = Buffer.from(rawBody).toString('base64url');  // raw body as JWS payload
  const fullJws = `${header}.${payload}.${signature}`;
  const { payload: verified } = await compactVerify(fullJws, JWKS, {
    algorithms: ['RS512'],                                     // pin alg (no alg confusion)
  });
  return JSON.parse(Buffer.from(verified).toString('utf8'));   // { id, eventType, data, ... }
}

For complete handlers with route wiring, event dispatch, and tests, see:

Legacy (Webhooks v1): the older Fireblocks-Signature header (base64 RSA PKCS#1 v1.5 over the SHA-512 hash of the raw body, verified against a static per-environment PEM key) reached its migration deadline on March 20, 2026. New integrations should use the v2 JWKS scheme above. See references/verification.md for the legacy path.

Read the full file on GitHub · 119 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 2d ago First seen · 119 lines · 65 tokens per session scan A 8d99994e2caa

Subscribe to this mod's changes

fireblocks-webhooks is a skill published in the GitHub repository hookdeck/webhook-skills (84 stars, last pushed 6d ago), licensed MIT. It adds 65 tokens to every session and 1,600 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

startup-ceo

CEO coordinator that dispatches research, strategy, finance, and writer specialists via A2A and synthesizes their findings into a GO/NO-GO investment briefing. Use for multi-agent advisory workflows.

Atmosphere/atmosphere · 44 tokens

finance-agent

Financial analyst for startup economics — TAM/SAM/SOM, revenue projections, burn rate, runway, and break-even. Use when building financial models or evaluating investment cases.

Atmosphere/atmosphere · 37 tokens

billing-agent

Billing specialist for invoices, payments, refunds, and plan changes. Use when customers ask about charges, billing inquiries, or subscription management; typically reached via handoff from the support agent.

Atmosphere/atmosphere · 40 tokens

memstack-business-invoice-generator

Use this skill when the user says 'invoice', 'generate invoice', 'create invoice', 'bill client', 'line items', 'payment terms', or needs professional invoices with tax calculations and payment instructions. Do NOT use for contracts or financial projections.

cwinvestments/memstack · 57 tokens

memstack-business-financial-model

Use this skill when the user says 'financial model', 'projections', 'revenue forecast', 'unit economics', 'break-even', 'cash flow', or mentions MRR, churn, CAC, LTV, or runway. Builds monthly projections with scenario modeling. Do NOT use for pricing strategy or invoice generation.

cwinvestments/memstack · 71 tokens

memstack-business-freelancer-toolkit

Use when the user says 'track my time', 'freelancer invoice', 'billable hours', 'time tracking', 'freelance finances', 'client billing', 'project hours', or needs invoicing, time tracking, or analytics patterns for freelance work. Do NOT use for general invoice templates or proposal writing.

cwinvestments/memstack · 75 tokens