Skip to content

Commit bbdd279

Browse files
authored
Make summaries more consistent (#159)
1 parent 30fbd62 commit bbdd279

19 files changed

Lines changed: 34 additions & 43 deletions

File tree

.claude/skills/grid-api/SKILL.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,7 @@ Internal Account (USD) → External Account (USD) [transfer-out]
230230

231231
When a user wants to send a payment, guide them through these steps:
232232

233-
### Sending to a UMA Address
233+
### Sending to an UMA Address
234234

235235
1. Look up the receiver: `node cli/dist/index.js receiver lookup-uma $user@domain.com`
236236
2. Show supported currencies and any required payer data

.claude/skills/grid-api/references/workflows.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ This reference describes common payment workflows using the Grid API CLI.
88

99
## Workflow 1: Send Payment to UMA Address
1010

11-
Use this when the user wants to send money to a UMA address like `$alice@example.com`.
11+
Use this when the user wants to send money to an UMA address like `$alice@example.com`.
1212

1313
### Steps
1414

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ The process consists of five main steps:
149149

150150
#### Step 1: Look up recipient UMA address
151151

152-
First, check if a UMA address is valid and retrieve supported currencies and exchange rates.
152+
First, check if an UMA address is valid and retrieve supported currencies and exchange rates.
153153

154154
```http
155155
GET /receiver/$recipient@example.com?userId=9f84e0c2a72c4fa

cli/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -303,7 +303,7 @@ node cli/dist/index.js sandbox fund <internalAccountId> --amount 100000
303303
# Simulate sending funds to a JIT quote
304304
node cli/dist/index.js sandbox send --quote-id <quoteId> --currency USDC
305305

306-
# Simulate receiving a UMA payment
306+
# Simulate receiving an UMA payment
307307
node cli/dist/index.js sandbox receive \
308308
--uma-address '$user@domain.com' \
309309
--amount 1000 \

cli/src/commands/receiver.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ export function registerReceiverCommand(
3030

3131
receiverCmd
3232
.command("lookup-uma <umaAddress>")
33-
.description("Look up a UMA address to get payment capabilities")
33+
.description("Look up an UMA address to get payment capabilities")
3434
.option("--customer-id <id>", "Sender customer ID")
3535
.option("--sender-uma <address>", "Sender UMA address")
3636
.action(async (umaAddress: string, options) => {

cli/src/commands/sandbox.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ export function registerSandboxCommand(
4545

4646
sandboxCmd
4747
.command("receive")
48-
.description("Simulate receiving a UMA payment in sandbox")
48+
.description("Simulate receiving an UMA payment in sandbox")
4949
.requiredOption("--uma-address <address>", "Receiver UMA address")
5050
.requiredOption("--amount <number>", "Amount in smallest unit")
5151
.requiredOption("--currency <code>", "Currency code")

mintlify/global-p2p/getting-started/platform-configuration.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ To send and receive using UMA with your own domain (e.g., `$alice@yourdomain.com
1515
2. Proxy inbound UMA requests to {topLevelProductName}
1616
3. Define supported currencies and, if you are a regulated institution, the counterparty information you require
1717

18-
If you do not configure a UMA domain, Grid will use the default domain `grid.lightspark.com`.
18+
If you do not configure an UMA domain, Grid will use the default domain `grid.lightspark.com`.
1919

2020
<Note>You can find more information about the UMA protocol and end user experience at [https://uma.me](https://uma.me).</Note>
2121

mintlify/global-p2p/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ With real-time funding, you'll receive payment instructions as part of the quote
5050
### Sending & Receiving Payments
5151
To send with {remittanceProductName}, you query recipient information and pricing, then execute and fund a quote. {remittanceProductName} resolves the receiver (by UMA or external bank details), returns min/max and an exchange rate, and provides funding instructions. Once funded, {remittanceProductName} handles FX and delivery to the receiving account.
5252

53-
To receive with {remittanceProductName}, you expose a UMA or supported account identifier. The platform handles conversion and offramping to the receiver’s account currency and notifies you via webhooks so you can credit the customer.
53+
To receive with {remittanceProductName}, you expose an UMA or supported account identifier. The platform handles conversion and offramping to the receiver’s account currency and notifies you via webhooks so you can credit the customer.
5454

5555
### Environments
5656
{remittanceProductName} supports two environments: **Sandbox** and **Production**.

mintlify/global-p2p/onboarding-customers/invitations.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ When the invitee clicks the URL, they will be presented with a list of UMA provi
5959

6060
## Pay-by-Link Invitations
6161

62-
The Grid API supports a "pay-by-link" feature that allows users to create invitations that include a payment amount. This is useful for scenarios where you want to send money to someone who doesn't yet have a UMA address or where the sender doesn't know the receiver's UMA address. They can simply share a link via email, SMS, whatsapp, or other channels to send money.
62+
The Grid API supports a "pay-by-link" feature that allows users to create invitations that include a payment amount. This is useful for scenarios where you want to send money to someone who doesn't yet have an UMA address or where the sender doesn't know the receiver's UMA address. They can simply share a link via email, SMS, whatsapp, or other channels to send money.
6363

6464
To create a pay-by-link invitation, include the `amountToSend` field when creating the invitation:
6565

mintlify/global-p2p/platform-tools/uma-test-wallet.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: "UMA Test Wallet"
33
description: "Test UMA payment flows with a real counterparty"
44
---
55

6-
Grid provides a UMA Test Wallet to help you test UMA payment flows with a real counterparty.
6+
Grid provides an UMA Test Wallet to help you test UMA payment flows with a real counterparty.
77

88
import UMATestWallet from '/snippets/uma-test-wallet.mdx';
99

0 commit comments

Comments
 (0)