fix(facilitator): advertised fee truth-up — page now says 2.5%, matching what the code charges - #109
Merged
Merged
Conversation
The facilitator-as-a-service pricing table advertised tiered 0% / 1.0% / 0.5% fees, but the code charges a flat 2.5% default (getDefaultFeePercent in api/src/services/facilitator.ts, FACILITATOR_FEE_PERCENT fallback 2.5; per-provider override exists but no tiering logic). Copy-only truth-up — the charged rate is unchanged. Now matches for-providers.html, pricing.html, and investor.html, which already say 2.5%. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
|
Caution The consumer version of Gemini Code Assist on GitHub has been sunset. All code review activity has officially ceased. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What
Copy-only fix on
api/public/facilitator.html. The facilitator-as-a-service pricing table advertised tiered fees (Free 0% / Growth 1.0% / Scale 0.5% / Enterprise custom) while the code charges a flat 2.5% default —getDefaultFeePercent()inapi/src/services/facilitator.ts(FACILITATOR_FEE_PERCENTenv, fallback2.5), applied inapi/src/routes/facilitator.tssettle path. There is no tiering logic anywhere; the only variation is a per-providerfeePercentoverride, so the Enterprise/custom row is kept.Flagged in the 2026-07-28 review as the 0-1% vs 2.5% discrepancy.
Change
Not changed
scripts/check-price-drift.mjs— it does not cover facilitator fees and no tool/pack pricing changed; guard passes locally:price drift guard: OK — 89 charged tools, 88 x402 prices, 2 aliases, 3 packs + 4 subscriptions verified across 8 surfaces.🤖 Generated with Claude Code
Note
Low Risk
Documentation-only change on a public HTML page; no API, fee calculation, or settlement behavior is modified.
Overview
Copy-only update to the facilitator-as-a-service Pricing section on
facilitator.htmlso it matches what settlement actually charges.The intro now states a flat 2.5% per settled payment (you keep 97.5%) instead of vague “a small percentage.” The old tier table (Free 0%, Growth 1.0%, Scale 0.5%, Enterprise) is replaced with Standard at 2.5% per settled payment and Enterprise / high volume custom pricing, reflecting that there is no volume tiering in code—only the default rate and per-provider overrides.
No runtime or billing logic changes in this PR; other marketing surfaces were already at 2.5%.
Reviewed by Cursor Bugbot for commit 2ea8765. Configure here.