docs(feedback): apply Tristan's revisions from RequestNetwork/request-api#806#95
docs(feedback): apply Tristan's revisions from RequestNetwork/request-api#806#95rodrigopavezi wants to merge 1 commit into
Conversation
…-api#806 7 amendments across 3 pages: 1. Welcome page subtitle rewritten: "Request Network protocol allows you to be paid and pay at scale without intermediaries across EVM and Tron. Our protocol offers the instant payment reconciliation, click-to-pay payment links, and cross-chain routing that Web3 payments need." 2. Welcome page section renamed "Three on-ramps" -> "Three Products" with new subtitle pointing at Dashboard, Secure Payment Page, and API. Renamed the Secure Payment card to "Secure Payment Page" for consistency. 3. Multi-Chain Checkout: "you fix the destination" -> "you decide of the destination" in the Why multi-chain matters section. 4. Batch Payouts What you'll build: "gas-amortized" -> "gas-sponsored". 5. Reordered the two batch modes - Hosted Batch Link is now Mode 1 (Recommended & Safer Approach), Direct Execution is Mode 2 (Advanced & Self-Secure). Added Tristan's rationale for each. 6. Cross-chain capability differences spelled out per mode: - Hosted Batch Link supports cross-chain execution from a single wallet connection with automatic routing across EVM chains. - Direct Execution is same-chain only; cross-chain requires one transaction per chain on each network's deployed contracts. 7. Added a wallet-infrastructure compatibility note: Secure Payment Page and Dashboard not compatible with Safe multisigs today; recommend Utila, DFNS, or Fireblocks for corporate treasury; WalletConnect-based infrastructure is fully compatible.
Greptile SummaryThis PR applies editorial revisions across three docs pages: a rewritten welcome subtitle, a renamed "Three Products" section, reordered batch-payout modes (Hosted Batch Link promoted to Mode 1/recommended), per-mode cross-chain capability notes, and a new wallet-infrastructure compatibility callout for Safe multisig users.
Confidence Score: 3/5The structural changes are sound, but a grammatical error was introduced into the multi-chain page and the real-world examples contradict the newly recommended mode. The "you decide of the destination" phrasing in multi-chain-checkout.mdx leaves a grammatically broken sentence in public-facing documentation. Additionally, all three real-world code examples in batch-payouts.mdx demonstrate the path now labeled "Advanced & Self-Secure", sending an implicit message opposite to the page's updated recommendation. use-cases/multi-chain-checkout.mdx (grammar error) and use-cases/batch-payouts.mdx (example code contradicts newly-promoted recommended path) Important Files Changed
Flowchart%%{init: {'theme': 'neutral'}}%%
flowchart TD
A[Need to pay multiple recipients?] --> B{Who controls the payer wallet?}
B -->|Human / Finance team| C[Mode 1: Hosted Batch Link\nRecommended & Safer]
B -->|Automated backend| D{Need cross-chain payouts?}
D -->|Yes| C
D -->|No, same-chain only| E[Mode 2: Direct Execution\nAdvanced & Self-Secure]
C --> F[POST /v2/secure-payments]
F --> G[Returns pay.request.network URL]
G --> H[Payer reviews and signs once]
E --> J[POST /v2/payouts/batch]
J --> K[Returns calldata]
K --> L[Backend broadcasts transactions]
|

7 amendments across 3 pages:
Welcome page subtitle rewritten:
"Request Network protocol allows you to be paid and pay at scale
without intermediaries across EVM and Tron. Our protocol offers the
instant payment reconciliation, click-to-pay payment links, and
cross-chain routing that Web3 payments need."
Welcome page section renamed "Three on-ramps" -> "Three Products"
with new subtitle pointing at Dashboard, Secure Payment Page, and
API. Renamed the Secure Payment card to "Secure Payment Page" for
consistency.
Multi-Chain Checkout: "you fix the destination" -> "you decide of
the destination" in the Why multi-chain matters section.
Batch Payouts What you'll build: "gas-amortized" -> "gas-sponsored".
Reordered the two batch modes - Hosted Batch Link is now Mode 1
(Recommended & Safer Approach), Direct Execution is Mode 2
(Advanced & Self-Secure). Added Tristan's rationale for each.
Cross-chain capability differences spelled out per mode:
wallet connection with automatic routing across EVM chains.
transaction per chain on each network's deployed contracts.
Added a wallet-infrastructure compatibility note: Secure Payment
Page and Dashboard not compatible with Safe multisigs today;
recommend Utila, DFNS, or Fireblocks for corporate treasury;
WalletConnect-based infrastructure is fully compatible.