stripe-cli for stablecoins — test Furlpay webhooks and
events from your terminal. Zero dependencies.
npm install -g @furlpay/clifurlpay login --key sk_sandbox_... # store your key locally
furlpay listen --forward-to localhost:3000/api/webhooks # stream sandbox webhooks
furlpay trigger card.transaction.authorized # emit a signed test event
furlpay events # list triggerable event types
furlpay logs --tail # stream request/response cyclesEvery event the CLI emits is signed with the same HMAC-SHA256
furlpay-signature scheme the production API uses, so your webhook handler
verifies real signatures in development:
furlpay-signature: t=1719900000,v1=5257a869e7...
Verify with @furlpay/furlpay-node:
Furlpay.webhooks.constructEvent(rawBody, sigHeader, endpointSecret);MIT